Instructions to use jimchoi/simpletuner-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use jimchoi/simpletuner-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("stabilityai/stable-diffusion-3-medium-diffusers", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("jimchoi/simpletuner-lora") prompt = "A swift and agile elven archer perched in a tree, nocking an arrow." image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -100,16 +100,16 @@ Note: The validation settings are not necessarily the same as the [training sett
|
|
| 100 |
|
| 101 |
You can find some example images in the following gallery:
|
| 102 |
|
| 103 |
-
<div style="display: flex; flex-wrap: wrap; gap:
|
| 104 |
-
<div style="flex: 1 1
|
| 105 |
<img src="./assets/image_1_0.png" alt="A swift and agile elven archer perched in a tree, nocking an arrow" style="width: 100%;">
|
| 106 |
<p>prompt: A swift and agile elven archer perched in a tree, nocking an arrow.</p>
|
| 107 |
</div>
|
| 108 |
-
<div style="flex: 1 1
|
| 109 |
<img src="./assets/image_5_0.png" alt="A powerful demonic sorcerer casting a spell in a dark, mysterious chamber" style="width: 100%;">
|
| 110 |
<p>prompt: A powerful demonic sorcerer casting a spell in a dark, mysterious chamber.</p>
|
| 111 |
</div>
|
| 112 |
-
<div style="flex: 1 1
|
| 113 |
<img src="./assets/image_10_0.png" alt="A wise medieval wizard in a towering castle, studying ancient tomes of magic" style="width: 100%;">
|
| 114 |
<p>prompt: A wise medieval wizard in a towering castle, studying ancient tomes of magic.</p>
|
| 115 |
</div>
|
|
|
|
| 100 |
|
| 101 |
You can find some example images in the following gallery:
|
| 102 |
|
| 103 |
+
<div style="display: flex; flex-wrap: wrap; gap: 10px;">
|
| 104 |
+
<div style="flex: 1 1 30%;">
|
| 105 |
<img src="./assets/image_1_0.png" alt="A swift and agile elven archer perched in a tree, nocking an arrow" style="width: 100%;">
|
| 106 |
<p>prompt: A swift and agile elven archer perched in a tree, nocking an arrow.</p>
|
| 107 |
</div>
|
| 108 |
+
<div style="flex: 1 1 30%;">
|
| 109 |
<img src="./assets/image_5_0.png" alt="A powerful demonic sorcerer casting a spell in a dark, mysterious chamber" style="width: 100%;">
|
| 110 |
<p>prompt: A powerful demonic sorcerer casting a spell in a dark, mysterious chamber.</p>
|
| 111 |
</div>
|
| 112 |
+
<div style="flex: 1 1 30%;">
|
| 113 |
<img src="./assets/image_10_0.png" alt="A wise medieval wizard in a towering castle, studying ancient tomes of magic" style="width: 100%;">
|
| 114 |
<p>prompt: A wise medieval wizard in a towering castle, studying ancient tomes of magic.</p>
|
| 115 |
</div>
|