Instructions to use AIImageStudio/RadianceChromeVoluptuous_Krea2Turbo_v1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use AIImageStudio/RadianceChromeVoluptuous_Krea2Turbo_v1.0 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("krea/Krea-2-Turbo", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("AIImageStudio/RadianceChromeVoluptuous_Krea2Turbo_v1.0") prompt = "lighting and shadow effects, color cast, wrong white balance, expired film, A young East Asian woman, standing in a doorway, back partially turned to camera, long wavy brown hair cascading over her shoulders, face in profile with gaze directed toward the right, lips slightly parted, subtle seductive expression, visible cleavage, breasts partially obscured by sheer black top, slim waist, wide hips, legs in black lace thigh-high stockings, one hand resting on a weathered red-framed price sign, other hand raised near shoulder, feet not visible, wearing a sheer black long-sleeved top with ruffled hem, yellow underwear visible beneath, black lace thigh-high stockings, background of green foliage and wooden fence with partial \"ALL VEH CHAIN RIGHT LAN\" sign, bright natural sunlight casting soft shadows, cinematic lighting with golden hour glow, shallow depth of field, medium close-up shot, composition centered on the figure with natural framing by doorway, dominant colors of black, yellow, and green." image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Commit ·
0f1445c
verified ·
0
Parent(s):
initial commit
Browse files- .gitattributes +55 -0
- README.md +144 -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,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-image
|
| 4 |
+
- lora
|
| 5 |
+
- diffusers
|
| 6 |
+
- template:diffusion-lora
|
| 7 |
+
widget:
|
| 8 |
+
- output:
|
| 9 |
+
url: >-
|
| 10 |
+
images/2026-06-26_130545-krea2_turbo_fp8_scaled-549116458028373-er_sde_8_basic.png
|
| 11 |
+
text: >-
|
| 12 |
+
lighting and shadow effects, color cast, wrong white balance, expired film,
|
| 13 |
+
A young East Asian woman, standing in a doorway, back partially turned to
|
| 14 |
+
camera, long wavy brown hair cascading over her shoulders, face in profile
|
| 15 |
+
with gaze directed toward the right, lips slightly parted, subtle seductive
|
| 16 |
+
expression, visible cleavage, breasts partially obscured by sheer black top,
|
| 17 |
+
slim waist, wide hips, legs in black lace thigh-high stockings, one hand
|
| 18 |
+
resting on a weathered red-framed price sign, other hand raised near
|
| 19 |
+
shoulder, feet not visible, wearing a sheer black long-sleeved top with
|
| 20 |
+
ruffled hem, yellow underwear visible beneath, black lace thigh-high
|
| 21 |
+
stockings, background of green foliage and wooden fence with partial "ALL
|
| 22 |
+
VEH CHAIN RIGHT LAN" sign, bright natural sunlight casting soft shadows,
|
| 23 |
+
cinematic lighting with golden hour glow, shallow depth of field, medium
|
| 24 |
+
close-up shot, composition centered on the figure with natural framing by
|
| 25 |
+
doorway, dominant colors of black, yellow, and green.
|
| 26 |
+
- output:
|
| 27 |
+
url: >-
|
| 28 |
+
images/2026-06-26_130806-krea2_turbo_fp8_scaled-644151207210426-er_sde_8_basic.png
|
| 29 |
+
text: >-
|
| 30 |
+
lighting and shadow effects, color cast, wrong white balance, expired film,
|
| 31 |
+
wide angle,A Japanese beautiful woman with a curvy figure featuring
|
| 32 |
+
prominent bust, slim waist, and long legs sits elegantly on an ornate
|
| 33 |
+
floral-patterned velvet armchair in a vintage-style room; she wears a glossy
|
| 34 |
+
black satin corset adorned with sparkling silver embellishments at the hip
|
| 35 |
+
paired with sheer fishnet stockings that have lace trim around the thighs
|
| 36 |
+
and garter straps; her dark brown hair is styled up in voluminous curls
|
| 37 |
+
framing her face as she gazes directly into the camera with one hand gently
|
| 38 |
+
touching near her temple while wearing delicate earrings; behind her stands
|
| 39 |
+
a tall gold-framed floor lamp with two amber glass globes casting warm
|
| 40 |
+
ambient lighting across the scene which highlights soft shadows under the
|
| 41 |
+
chair’s arms and along her silhouette against the backdrop of pink-toned
|
| 42 |
+
wallpaper decorated with rose motifs and a matching patterned rug beneath
|
| 43 |
+
polished hardwood floors; the composition utilizes a medium close-up angle
|
| 44 |
+
from slightly above eye level capturing her upper body to mid-thighs within
|
| 45 |
+
a diagonally framed shot emphasizing depth through layered furniture
|
| 46 |
+
including a reddish-pink bookshelf holding decorative objects; the overall
|
| 47 |
+
color palette leans toward rich jewel tones—deep blacks, muted pinks,
|
| 48 |
+
metallic gold accents—with balanced white balance enhancing skin tone
|
| 49 |
+
realism without overpowering the dramatic warmth emitted by artificial
|
| 50 |
+
illumination sources creating a luxurious yet intimate mood suitable for
|
| 51 |
+
high-end fashion or sensual photography contexts.
|
| 52 |
+
- output:
|
| 53 |
+
url: >-
|
| 54 |
+
images/2026-06-26_130908-krea2_turbo_fp8_scaled-981273253761715-er_sde_8_basic.png
|
| 55 |
+
text: >-
|
| 56 |
+
lighting and shadow effects, color cast, wrong white balance, expired film,
|
| 57 |
+
wide angle,A young East Asian beautiful woman with long dark brown hair
|
| 58 |
+
styled in a half-updo with bangs sits cross-legged on the floor or low
|
| 59 |
+
surface wearing an off-the-shoulder fluffy white knit sweater that drapes
|
| 60 |
+
loosely over her shoulders; she has fair skin, bright eyes looking directly
|
| 61 |
+
at camera with a cheerful smile showing upper teeth, natural makeup
|
| 62 |
+
enhancing soft cheeks and lips, visible slender waistline accentuated by
|
| 63 |
+
tight posture of bent knees, legs smooth and toned but not overly muscular,
|
| 64 |
+
no bra visible under sleeveless top suggesting casual intimacy; background
|
| 65 |
+
features blurred indoor setting with large windows allowing diffused
|
| 66 |
+
daylight to illuminate scene evenly from front-left side casting minimal
|
| 67 |
+
hard shadows while maintaining gentle highlights across face and limbs,
|
| 68 |
+
shelves behind hold rustic wooden planters with greenery and row of
|
| 69 |
+
translucent teal glass bottles creating depth without distraction; shallow
|
| 70 |
+
focus isolates subject sharply against softly defocused backdrop emphasizing
|
| 71 |
+
warmth and coziness; photograph taken at eye-level close shot capturing
|
| 72 |
+
torso-to-thigh range with slight downward angle subtly framing body as
|
| 73 |
+
center of composition using rule-of-thirds implied through placement of arms
|
| 74 |
+
crossed near chest and legs folded inward; overall tone is warm neutral with
|
| 75 |
+
slightly cool undertones balanced by high-key lighting ensuring even
|
| 76 |
+
exposure avoiding harsh contrast; color palette dominated by whites creams
|
| 77 |
+
beiges and muted greens complemented by pops of teal adding visual interest
|
| 78 |
+
yet preserving serene aesthetic; ambient light suggests midday sun filtered
|
| 79 |
+
through sheer curtains giving airy feel to space; atmospheric impression
|
| 80 |
+
conveys comfort tranquility and approachable charm evoking homey
|
| 81 |
+
domesticity.
|
| 82 |
+
- output:
|
| 83 |
+
url: >-
|
| 84 |
+
images/2026-06-26_131454-krea2_turbo_fp8_scaled-1055482629632456-er_sde_8_basic.png
|
| 85 |
+
text: >-
|
| 86 |
+
Reversal Film Gravure, analog film photography, lighting and shadow effects,
|
| 87 |
+
color cast, wrong white balance, expired film, wide angle,
|
| 88 |
+
- output:
|
| 89 |
+
url: >-
|
| 90 |
+
images/2026-06-26_131638-krea2_turbo_fp8_scaled-482228565271194-er_sde_8_basic.png
|
| 91 |
+
text: >-
|
| 92 |
+
Reversal Film Gravure, analog film photography, lighting and shadow effects,
|
| 93 |
+
color cast, wrong white balance, expired film, wide angle,
|
| 94 |
+
- output:
|
| 95 |
+
url: >-
|
| 96 |
+
images/2026-06-26_131923-krea2_turbo_fp8_scaled-848356520441542-er_sde_8_basic.png
|
| 97 |
+
text: >-
|
| 98 |
+
grok film style, Reversal Film Gravure, analog film photography, lighting
|
| 99 |
+
and shadow effects, color cast, wrong white balance, expired film, wide
|
| 100 |
+
angle,
|
| 101 |
+
- output:
|
| 102 |
+
url: >-
|
| 103 |
+
images/2026-06-26_132016-krea2_turbo_fp8_scaled-64204638114358-er_sde_8_basic.png
|
| 104 |
+
text: >-
|
| 105 |
+
Reversal Film Gravure, analog film photography, lighting and shadow effects,
|
| 106 |
+
color cast, wrong white balance, expired film, wide angle,
|
| 107 |
+
- output:
|
| 108 |
+
url: >-
|
| 109 |
+
images/2026-06-26_132120-krea2_turbo_fp8_scaled-341722359354068-er_sde_8_basic.png
|
| 110 |
+
text: >-
|
| 111 |
+
Reversal Film Gravure, analog film photography, lighting and shadow effects,
|
| 112 |
+
color cast, wrong white balance, expired film, wide angle,
|
| 113 |
+
- output:
|
| 114 |
+
url: >-
|
| 115 |
+
images/2026-06-26_140611-krea2_turbo_fp8_scaled-850513664209212-er_sde_8_basic.png
|
| 116 |
+
text: >-
|
| 117 |
+
lighting and shadow effects, color cast, a beautiful young woman, natural
|
| 118 |
+
breasts sag, wearing linen shirt, with messy bun (hairstyle), environmental
|
| 119 |
+
portrait, sitting with hands on knees, Flowers, hdr, kodak t-max 100 film
|
| 120 |
+
analog film, magic lighting, de-noise effects, rich color modifier, long
|
| 121 |
+
lens,,
|
| 122 |
+
base_model: krea/Krea-2-Turbo
|
| 123 |
+
instance_prompt: null
|
| 124 |
+
license: apache-2.0
|
| 125 |
+
---
|
| 126 |
+
# RadianceChromeVoluptuous for Krea2Turbo v1.0
|
| 127 |
+
|
| 128 |
+
<Gallery />
|
| 129 |
+
|
| 130 |
+
## Model description
|
| 131 |
+
|
| 132 |
+
Main characteristics are as follows:
|
| 133 |
+
· Reversal film / slide film style, with strong contrast and rich, intense color saturation.
|
| 134 |
+
· Improved lighting and shadow effects, especially extremely powerful and expressive sunlight rendering.
|
| 135 |
+
· Based on personal aesthetic preference, female characters tend toward large breasts, slim waist, and wide hips.
|
| 136 |
+
|
| 137 |
+
Recommended strength: 0.5–1.0, best on 0.75 in my test.
|
| 138 |
+
Recommended sampler & scheduler: er_sde simple.
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Download model
|
| 142 |
+
|
| 143 |
+
|
| 144 |
+
[Download](/AIImageStudio/RadianceChromeVoluptuous_Krea2Turbo_v1.0/tree/main) them in the Files & versions tab.
|