Update README.md
Browse files
README.md
CHANGED
|
@@ -18,6 +18,7 @@ from diffusers import AutoPipelineForText2Image
|
|
| 18 |
import torch
|
| 19 |
|
| 20 |
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
|
|
|
| 21 |
pipeline.load_lora_weights('janannfndnd/SABA', weight_name='lora.safetensors')
|
| 22 |
image = pipeline("your prompt").images[
|
| 23 |
```
|
|
|
|
| 18 |
import torch
|
| 19 |
|
| 20 |
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
| 21 |
+
pipeline.load_lora_weights('XLabs-AI/flux-lora-collection', weight_name='mjv6_lora.safetensors')
|
| 22 |
pipeline.load_lora_weights('janannfndnd/SABA', weight_name='lora.safetensors')
|
| 23 |
image = pipeline("your prompt").images[
|
| 24 |
```
|