Instructions to use Flo444/example-lora-realistic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Flo444/example-lora-realistic with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stable-diffusion-v1-5/stable-diffusion-v1-5", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Flo444/example-lora-realistic") prompt = "Beautiful realistic landscape, mountains, river" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
File size: 149 Bytes
1be828b | 1 2 3 4 5 6 7 | {
"model_type": "stable-diffusion",
"architecture": "StableDiffusionPipeline",
"weights": "Lora-10.safetensors",
"config": "config.json"
}
|