Instructions to use TatsuyaXAI/Virginia_BALANCE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use TatsuyaXAI/Virginia_BALANCE with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("TatsuyaXAI/Virginia_BALANCE", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# **Virginia BALANCE** from **The Irregular at The Magic High School**
|
| 2 |
|
| 3 |
<u><b>Trigger Words:</b></u> **Virginia BALANCE**, **long hair**, **grey eyes**, **mature female**, **grey hair**
|
|
@@ -7,4 +10,25 @@
|
|
| 7 |
<u><b>Outfit:</b></u>
|
| 8 |
1) **black jacket**, **black suit**, **collared shirt**, **light blue undershirt**, **long sleeves**
|
| 9 |
- **black skirt**, **pencil skirt**, **skirt suit**
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: diffusers
|
| 3 |
+
---
|
| 4 |
# **Virginia BALANCE** from **The Irregular at The Magic High School**
|
| 5 |
|
| 6 |
<u><b>Trigger Words:</b></u> **Virginia BALANCE**, **long hair**, **grey eyes**, **mature female**, **grey hair**
|
|
|
|
| 10 |
<u><b>Outfit:</b></u>
|
| 11 |
1) **black jacket**, **black suit**, **collared shirt**, **light blue undershirt**, **long sleeves**
|
| 12 |
- **black skirt**, **pencil skirt**, **skirt suit**
|
| 13 |
+
|
| 14 |
+
Previews (Illustrious):
|
| 15 |
+
<style>
|
| 16 |
+
.custom-table { width: 100%; }
|
| 17 |
+
.custom-table td { width: 33.33%; }
|
| 18 |
+
.custom-image-container { position: relative; overflow: hidden; border-radius: 0.5em; }
|
| 19 |
+
.custom-image { width: 100%; height: auto; border-radius: 0.5em; transition: transform 0.25s; }
|
| 20 |
+
.custom-image-container:hover .custom-image { transform: scale(1.2); }
|
| 21 |
+
</style>
|
| 22 |
+
|
| 23 |
+
<table class="custom-table">
|
| 24 |
+
<tr>
|
| 25 |
+
<td><div class="custom-image-container"><img class="custom-image" src="IllustriousPreview/P1.png"></div></td>
|
| 26 |
+
<td><div class="custom-image-container"><img class="custom-image" src="IllustriousPreview/P2.png"></div></td>
|
| 27 |
+
<td><div class="custom-image-container"><img class="custom-image" src="IllustriousPreview/P3.png"></div></td>
|
| 28 |
+
</tr>
|
| 29 |
+
<tr>
|
| 30 |
+
<td><div class="custom-image-container"><img class="custom-image" src="IllustriousPreview/P4.png"></div></td>
|
| 31 |
+
<td><div class="custom-image-container"><img class="custom-image" src="IllustriousPreview/P5.png"></div></td>
|
| 32 |
+
<td><div class="custom-image-container"><img class="custom-image" src="IllustriousPreview/P6.png"></div></td>
|
| 33 |
+
</tr>
|
| 34 |
+
</table>
|