AntDish commited on
Commit
beddf55
·
verified ·
1 Parent(s): f0117ef

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -0
README.md ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from diffusers import AutoPipelineForText2Image
2
+ import torch
3
+
4
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
5
+ pipeline.load_lora_weights('AntDish/BACK', weight_name='back.safetensors')
6
+ image = pipeline('your prompt').images[0]