File size: 689 Bytes
017b12a 35e5be3 017b12a 42be0d4 beddf55 017b12a 42be0d4 20c0e41 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
---
language:
- en
base_model: black-forest-labs/FLUX.1-dev
pipeline_tag: text-to-image
tags:
- flux
- diffusers
- lora
- replicate
---
```py
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('AntDish/BACK', weight_name='back.safetensors')
image = pipeline('your prompt').images[0]
```


|