kohya_ss / library /utils.py
Ateras's picture
Upload folder using huggingface_hub
fe6327d
raw
history blame
No virus
144 Bytes
import threading
from typing import *
def fire_in_thread(f, *args, **kwargs):
threading.Thread(target=f, args=args, kwargs=kwargs).start()