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 ·
650c6e9
1
Parent(s): d59e138
Update README.md
Browse files
README.md
CHANGED
|
@@ -30,4 +30,9 @@ a branch of flower, traditional chinese ink painting
|
|
| 30 |
"""
|
| 31 |
image = pipeline(prompt).images[0]
|
| 32 |
image
|
| 33 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
"""
|
| 31 |
image = pipeline(prompt).images[0]
|
| 32 |
image
|
| 33 |
+
```
|
| 34 |
+
<hr>
|
| 35 |
+
|
| 36 |
+
Since this is only the first official release, I believe there are still many, many imperfections.
|
| 37 |
+
Please provide feedback in time, and I will continuously make corrections, thank you!
|
| 38 |
+
|