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

Update README.md

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