Instructions to use Momozarelle13/Lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Momozarelle13/Lora with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("XLabs-AI/flux-RealismLora", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Momozarelle13/Lora") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -6,7 +6,7 @@ tags:
|
|
| 6 |
- diffusers
|
| 7 |
- fal
|
| 8 |
base_model:
|
| 9 |
-
-
|
| 10 |
instance_prompt: null
|
| 11 |
license: other
|
| 12 |
license_name: flux-1-dev-non-commercial-license
|
|
|
|
| 6 |
- diffusers
|
| 7 |
- fal
|
| 8 |
base_model:
|
| 9 |
+
- XLabs-AI/flux-RealismLora
|
| 10 |
instance_prompt: null
|
| 11 |
license: other
|
| 12 |
license_name: flux-1-dev-non-commercial-license
|