Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Autodraft
/
CM2000112
like
0
Follow
Autodraft
6
Text-to-Image
Diffusers
StableDiffusionPipeline
Inference Endpoints
Model card
Files
Files and versions
Community
Train
Deploy
Use this model
22df957
CM2000112
/
external
/
llite
/
library
/
utils.py
jayparmr
Upload folder using huggingface_hub
ea5c647
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()