Instructions to use Andyrasika/lora_diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Andyrasika/lora_diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Andyrasika/lora_diffusion", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Commit ·
f3eb465
1
Parent(s): 50f0536
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,6 +10,8 @@ The model is created using the following steps:
|
|
| 10 |
|
| 11 |
|
| 12 |
```
|
|
|
|
|
|
|
| 13 |
pipeline = DiffusionPipeline.from_pretrained(
|
| 14 |
"Andyrasika/lora_diffusion"
|
| 15 |
,custom_pipeline = "lpw_stable_diffusion"
|
|
|
|
| 10 |
|
| 11 |
|
| 12 |
```
|
| 13 |
+
from diffusers import DiffusionPipeline
|
| 14 |
+
import torch
|
| 15 |
pipeline = DiffusionPipeline.from_pretrained(
|
| 16 |
"Andyrasika/lora_diffusion"
|
| 17 |
,custom_pipeline = "lpw_stable_diffusion"
|