Update README.md
Browse files
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 |
+
```
|