Instructions to use Minoumimi/PGR-Illustrious with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Minoumimi/PGR-Illustrious with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("calcuis/illustrious", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Minoumimi/PGR-Illustrious") prompt = "-" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Commit ·
a62d3e2
verified ·
0
Parent(s):
initial commit
Browse files- .gitattributes +55 -0
- README.md +203 -0
.gitattributes
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.lz4 filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
# Audio files - uncompressed
|
| 38 |
+
*.pcm filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
*.sam filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
*.raw filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
# Audio files - compressed
|
| 42 |
+
*.aac filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
*.flac filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
*.ogg filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
*.wav filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
# Image files - uncompressed
|
| 48 |
+
*.bmp filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
*.tiff filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
# Image files - compressed
|
| 53 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
*.webp filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,203 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-image
|
| 4 |
+
- lora
|
| 5 |
+
- diffusers
|
| 6 |
+
- template:diffusion-lora
|
| 7 |
+
widget:
|
| 8 |
+
- output:
|
| 9 |
+
url: images/[PGR] Ayla v2 1.jpg
|
| 10 |
+
text: '-'
|
| 11 |
+
- output:
|
| 12 |
+
url: images/[PGR] Ayla v2 11.jpg
|
| 13 |
+
text: '-'
|
| 14 |
+
- output:
|
| 15 |
+
url: images/[PGR] Bambinata v2 1.jpg
|
| 16 |
+
text: '-'
|
| 17 |
+
- output:
|
| 18 |
+
url: images/[PGR] Bianca v2 1.jpg
|
| 19 |
+
text: '-'
|
| 20 |
+
- output:
|
| 21 |
+
url: images/[PGR] Bridget v2 1.jpg
|
| 22 |
+
text: '-'
|
| 23 |
+
- output:
|
| 24 |
+
url: images/[PGR] Discord v2 1.jpg
|
| 25 |
+
text: '-'
|
| 26 |
+
- output:
|
| 27 |
+
url: images/[PGR] Hanying v2 1.jpg
|
| 28 |
+
text: '-'
|
| 29 |
+
- output:
|
| 30 |
+
url: images/[PGR] Ishmael v2 11.jpg
|
| 31 |
+
text: '-'
|
| 32 |
+
- output:
|
| 33 |
+
url: images/[PGR] Jetavie v2 11.jpg
|
| 34 |
+
text: '-'
|
| 35 |
+
- output:
|
| 36 |
+
url: images/[PGR] Karenina v2 1.jpg
|
| 37 |
+
text: '-'
|
| 38 |
+
- output:
|
| 39 |
+
url: images/[PGR] Karenina v2 111.jpg
|
| 40 |
+
text: '-'
|
| 41 |
+
- output:
|
| 42 |
+
url: images/[PGR] Lamia v2 1.jpg
|
| 43 |
+
text: '-'
|
| 44 |
+
- output:
|
| 45 |
+
url: images/[PGR] Lilith v2 1111.jpg
|
| 46 |
+
text: '-'
|
| 47 |
+
- output:
|
| 48 |
+
url: images/[PGR] Liv v2 111.jpg
|
| 49 |
+
text: '-'
|
| 50 |
+
- output:
|
| 51 |
+
url: images/[PGR] Lucia v2 1.jpg
|
| 52 |
+
text: '-'
|
| 53 |
+
- output:
|
| 54 |
+
url: images/[PGR] Luna v2 1.jpg
|
| 55 |
+
text: '-'
|
| 56 |
+
- output:
|
| 57 |
+
url: images/[PGR] Nanami v2 1.jpg
|
| 58 |
+
text: '-'
|
| 59 |
+
- output:
|
| 60 |
+
url: images/[PGR] No.21 v2 11.jpg
|
| 61 |
+
text: '-'
|
| 62 |
+
- output:
|
| 63 |
+
url: images/[PGR] Pulao v2 1.jpg
|
| 64 |
+
text: '-'
|
| 65 |
+
- output:
|
| 66 |
+
url: images/[PGR] Qu v2 11.jpg
|
| 67 |
+
text: '-'
|
| 68 |
+
- output:
|
| 69 |
+
url: images/[PGR] Rosetta v2 1.jpg
|
| 70 |
+
text: '-'
|
| 71 |
+
- output:
|
| 72 |
+
url: images/[PGR] Selena v2 1.jpg
|
| 73 |
+
text: '-'
|
| 74 |
+
- output:
|
| 75 |
+
url: images/[PGR] Sophia v2 1.jpg
|
| 76 |
+
text: '-'
|
| 77 |
+
- output:
|
| 78 |
+
url: images/[PGR] Teddy v2 1.jpg
|
| 79 |
+
text: '-'
|
| 80 |
+
- output:
|
| 81 |
+
url: images/[PGR] Vera v2 1.jpg
|
| 82 |
+
text: '-'
|
| 83 |
+
- output:
|
| 84 |
+
url: images/[PGR] Vera v2 111111111.jpg
|
| 85 |
+
text: '-'
|
| 86 |
+
- output:
|
| 87 |
+
url: images/[PGR] Veronica v2 1.jpg
|
| 88 |
+
text: '-'
|
| 89 |
+
- output:
|
| 90 |
+
url: images/[PGR] Alisa v2 11.jpg
|
| 91 |
+
text: '-'
|
| 92 |
+
- output:
|
| 93 |
+
url: images/[PGR] Alpha v2 1.jpg
|
| 94 |
+
text: '-'
|
| 95 |
+
base_model: calcuis/illustrious
|
| 96 |
+
instance_prompt: null
|
| 97 |
+
license: apache-2.0
|
| 98 |
+
---
|
| 99 |
+
# Punishing Gray Raven [Illustrious]
|
| 100 |
+
|
| 101 |
+
<Gallery />
|
| 102 |
+
|
| 103 |
+
## Model description
|
| 104 |
+
|
| 105 |
+
Punishing Gray Raven
|
| 106 |
+
|
| 107 |
+
|
| 108 |
+
• Alisa
|
| 109 |
+
(PGR_Alisa, short hair, blue hair, purple eyes, earrings, hat, jacket, necktie, shirt, gloves, skirt, thigh boots, high heels),
|
| 110 |
+
|
| 111 |
+
• Alpha
|
| 112 |
+
(PGR_Alpha, long hair, white hair, heterochromia, blue eyes, red eyes, headgear, red scarf, jacket, crop top, asymmetrical clothes, single pantsleg, mechanical arms, gloves, thigh strap, boots),
|
| 113 |
+
|
| 114 |
+
• Ayla
|
| 115 |
+
(PGR_Ayla, long hair, pink hair, pink eyes, bangs, braid, drill hair, hair ornament, hairband, hat, elbow gloves, bodysuit, thighhighs, thigh strap, high heels),
|
| 116 |
+
|
| 117 |
+
• Bambinata
|
| 118 |
+
(PGR_Bambinata, multicolored hair, white hair, black hair, two-tone hair, braid, blue eyes, animal ears, tail, joints, doll joints, hair ornament, dress, frills, bow, high heels),
|
| 119 |
+
|
| 120 |
+
• Bianca
|
| 121 |
+
(PGR_Bianca, outfit1, long hair, blonde hair, bangs, yellow eyes, hair ornament, white dress, gloves, thigh boots, high heels),
|
| 122 |
+
(PGR_Bianca, outfit2, long hair, blonde hair, bangs, ponytail, braid, purple eyes, purple lips, earrings, gauntlets, bodysuit, high heels),
|
| 123 |
+
|
| 124 |
+
• Bridget
|
| 125 |
+
(PGR_Bridget, brown hair, blue eyes, bangs, hair bun, eyewear on head, necktie, leotard, sideboob, mecha musume, mechanical legs, mechanical arms, high heels,
|
| 126 |
+
|
| 127 |
+
• Discord
|
| 128 |
+
(PGR_Discord, long hair, blue hair, blue eyes, hair between eyes, maid headdress, maid, dress, gloves, necktie, apron, thighhighs, high heels),
|
| 129 |
+
|
| 130 |
+
• Hanying
|
| 131 |
+
(PGR_Hanying, long hair, green hair, brown eyes, jewelry, earrings, necklace, hair ornament, dress, gloves, chinese clothes, thighhighs, high heels, hand fan),
|
| 132 |
+
|
| 133 |
+
• Ishmael
|
| 134 |
+
(PGR_Ishmael, long hair, pink hair, blue eyes, bangs, braid, hair ornament, jewelry, earrings, black nails, black dress, bare shoulders, long sleeves, cross, high heels),
|
| 135 |
+
|
| 136 |
+
• Jetavie
|
| 137 |
+
(PGR_Jetavie, outfit1, long hair, twintails, multicolored hair, streaked hair, black hair, grey hair, red eyes, pointy ears, hair ornament, earrings, black dress, bare shoulders, elbow gloves, thigh boots, high heels),
|
| 138 |
+
(PGR_Jetavie, outfit2, very long hair, twintails, multicolored hair, streaked hair, blue hair, pink hair, white hair, pink eyes, pointy ears, horns, tail, visor cap, swimsuit, detached sleeves, bikini, thigh strap, sandals),
|
| 139 |
+
|
| 140 |
+
• Karenina
|
| 141 |
+
(PGR_Karenina, outfit1, Blast_Outfit, long hair, white hair, sidelocks, yellow eyes, jacket, hood, horns, black shorts, black footwear),
|
| 142 |
+
(PGR_Karenina, outfit2, Ember_Outfit, long hair, grey hair, drill hair, twin drills, yellow eyes, hair ornament, dress, bodysuit, elbow gloves, boots),
|
| 143 |
+
(PGR_Karenina, outfit3, Scire_Outfit, long hair, white hair, twin tails, yellow eyes, tail, headgear, shirt, sideboob, skirt, mechanical gloves, thigh boots),
|
| 144 |
+
|
| 145 |
+
• Lamia
|
| 146 |
+
(PGR_Lamia, long hair, blue hair, purple eyes, hair between eyes, bangs, hair ornament, dress, elbow gloves, high heels),
|
| 147 |
+
|
| 148 |
+
• Lilith
|
| 149 |
+
(PGR_Lilith, long hair, multicolored hair, grey hair, black hair, purple eyes, jewelry, earrings, hat, gloves, dress, umbrella, fishnets, high heels),
|
| 150 |
+
|
| 151 |
+
• Liv
|
| 152 |
+
(PGR_Liv, long hair, multicolored hair, streaked hair, pink hair, white hair, pink eyes, bangs, headgear, dress, gloves, thighhighs, high heels),
|
| 153 |
+
|
| 154 |
+
• Lucia
|
| 155 |
+
(PGR_Lucia, Lucia_Dawn, long hair, multicolored hair, red hair, black hair, bangs, twintails, hair between eyes, red eyes, black jacket, black dress, single thighhigh, thigh strap, high heels),
|
| 156 |
+
(PGR_Lucia, Lucia_Lotus, long hair, multicolored hair, red hair, black hair, hair between eyes, red eyes, horns, hair ornament, red scarf, jacket, shirt, skirt, fingerlessgloves, pantyhose, high heels),
|
| 157 |
+
(PGR_Lucia, Lucia_Plume, long hair, multicolored hair, red hair, black hair, twintails, red eyes, black jacket, gloves, mechanical arms, dress, thighhighs, high heels),
|
| 158 |
+
(PGR_Lucia, Lucia_Pyroath, long hair, multicolored hair, red hair, black hair, twintails, red eyes, horns, headgear, mechanical arms, dress, single thighhigh, thigh strap, high heels, sword),
|
| 159 |
+
|
| 160 |
+
• Luna
|
| 161 |
+
(PGR_Luna, long hair, white hair, twintails, bangs, yellow eyes, hair between eyes, hair ornament, bodysuit, thighhighs, boots, high heels),
|
| 162 |
+
|
| 163 |
+
• Nanami
|
| 164 |
+
(PGR_Nanami, long hair, grey hair, grey eyes, ponytail, headgear, mechanical legs, mechanical arms, gloves, black dress, pantyhose, high heels),
|
| 165 |
+
|
| 166 |
+
• No.21
|
| 167 |
+
(PGR_21, long hair, white hair, heterochromia, purple eyes, grey eyes, hair ornament, hairband, animal ears, leotard, detached sleeves, sleeves past wrists, thighhighs, high heels),
|
| 168 |
+
|
| 169 |
+
• Pulao
|
| 170 |
+
(PGR_Pulao, long hair, black hair, red eyes, hair rings, twintails, hair ornament, choker, chinese clothes, gloves, dress, thighhighs, shoes),
|
| 171 |
+
|
| 172 |
+
• Qu
|
| 173 |
+
(PGR_Qu, outfit1, long hair, black hair, grey eyes, hair ornament, jewelry, earrings, necklace, dress, pelvic curtain, long sleeves, cleavage, gloves, thighhighs, anklet, boots, high heels),
|
| 174 |
+
(PGR_Qu, outfit2, long hair, multicolored hair, black hair, green hair, green eyes, jewelry, aqua nails, hair ornament, fingerless gloves, tassel, chinese clothes, anklet, high heels),
|
| 175 |
+
|
| 176 |
+
•
|
| 177 |
+
• Teddy
|
| 178 |
+
(PGR_Teddy, long hair, pink hair, bangs, purple eyes, hair ornament, jacket, dress, thighhighs, elbow gloves, boots, holographic interface),
|
| 179 |
+
|
| 180 |
+
• Rosetta
|
| 181 |
+
(PGR_Rosetta, grey hair, bangs, yellow eyes, hair ornament, bodysuit, mechanical wings, mecha musume, armor, high heels, science fiction),
|
| 182 |
+
|
| 183 |
+
• Selena
|
| 184 |
+
(PGR_Selena, long hair, multicolored hair, two-tone hair, colored inner hair, blue hair, black hair, purple eyes, hair ornament, jewelry, earrings, dress, ribbon, gloves, high heels),
|
| 185 |
+
|
| 186 |
+
• Sophia
|
| 187 |
+
(PGR_Sophia, short hair, white hair, orange eyes, dark skin, dark-skinned female, hairclip, leotard, fingerless gloves, thighhighs, boots),
|
| 188 |
+
|
| 189 |
+
• Vera
|
| 190 |
+
(PGR_Vera, Vera_Garnet, long hair, red hair, red eyes, ponytail, jacket, bodysuit, thigh boots, high heels),
|
| 191 |
+
(PGR_Vera, Vera_Geiravor, long hair, red hair, red eyes, jewelry, earrings, horns, tattoo, armor, shoulder armor, thigh boots. high heels),
|
| 192 |
+
(PGR_Vera, Vera_Geiravor, long hair, red hair, red eyes, jewelry, earrings, horns, hair ornament, black gloves, black dress, chain, thigh boots, high heels),
|
| 193 |
+
(PGR_Vera, Vera_Rozen, very long hair, bangs, red hair, red eyes, hairband, eyepatch, nurse cap, mecha bodysuit, bandages, high heels),
|
| 194 |
+
|
| 195 |
+
• Veronica
|
| 196 |
+
(PGR_Veronica, long hair, multicolored hair, red hair, white hair, red eyes, earrings, headgear, horns, leotard, armor, gauntlets, thigh boots, high heels),
|
| 197 |
+
|
| 198 |
+
|
| 199 |
+
|
| 200 |
+
## Download model
|
| 201 |
+
|
| 202 |
+
|
| 203 |
+
[Download](/Minoumimi/PGR-Illustrious/tree/main) them in the Files & versions tab.
|