thorfinn0330's picture
Upload folder using huggingface_hub
11c2c17 verified
raw
history blame contribute delete
144 Bytes
import threading
from typing import *
def fire_in_thread(f, *args, **kwargs):
threading.Thread(target=f, args=args, kwargs=kwargs).start()