Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Ateras
/
kohya_ss
like
0
Build error
App
Files
Files
Community
fe6327d
kohya_ss
/
library
/
utils.py
Ateras
Upload folder using huggingface_hub
fe6327d
about 1 year ago
raw
Copy download link
history
blame
Safe
144 Bytes
import
threading
from
typing
import
*
def
fire_in_thread
(
f, *args, **kwargs
):
threading.Thread(target=f, args=args, kwargs=kwargs).start()