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