Text-to-Image
Diffusers
Safetensors
stable-diffusion
stable-diffusion-diffusers
diffusers-training
lora
Instructions to use Oedon42/oldpainter-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Oedon42/oldpainter-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("stable-diffusion-v1-5/stable-diffusion-v1-5", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Oedon42/oldpainter-lora") 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -45,16 +45,16 @@ Here are some preview results of the model:
|
|
| 45 |
|
| 46 |
<div style="display: flex; flex-wrap: wrap;">
|
| 47 |
<div style="flex: 50%; padding: 1px;">
|
| 48 |
-
<img src="./image_0.png" alt="Preview 1" style="width:
|
| 49 |
</div>
|
| 50 |
<div style="flex: 50%; padding: 1px;">
|
| 51 |
-
<img src="./image_1.png" alt="Preview 2" style="width:
|
| 52 |
</div>
|
| 53 |
<div style="flex: 50%; padding: 1px;">
|
| 54 |
-
<img src="./image_2.png" alt="Preview 3" style="width:
|
| 55 |
</div>
|
| 56 |
<div style="flex: 50%; padding: 1px;">
|
| 57 |
-
<img src="./image_3.png" alt="Preview 4" style="width:
|
| 58 |
</div>
|
| 59 |
</div>
|
| 60 |
|
|
|
|
| 45 |
|
| 46 |
<div style="display: flex; flex-wrap: wrap;">
|
| 47 |
<div style="flex: 50%; padding: 1px;">
|
| 48 |
+
<img src="./image_0.png" alt="Preview 1" style="width: 90%;"/>
|
| 49 |
</div>
|
| 50 |
<div style="flex: 50%; padding: 1px;">
|
| 51 |
+
<img src="./image_1.png" alt="Preview 2" style="width: 90%;"/>
|
| 52 |
</div>
|
| 53 |
<div style="flex: 50%; padding: 1px;">
|
| 54 |
+
<img src="./image_2.png" alt="Preview 3" style="width: 90%;"/>
|
| 55 |
</div>
|
| 56 |
<div style="flex: 50%; padding: 1px;">
|
| 57 |
+
<img src="./image_3.png" alt="Preview 4" style="width: 90%;"/>
|
| 58 |
</div>
|
| 59 |
</div>
|
| 60 |
|