Views
No views yet
What this repo is: true merged turbo checkpoints (base ⊕ Turbo LoRA at full precision, then quantized), plus the Ministral text encoder and VAE they need — weights only, not a retrain. No runtime LoRA required: load the transformer and generate. The Q4-class file uses a mixed-precision recipe that exists for a measured reason — see the gotchas.
![]() | ![]() |
| **prompt:** `a red apple on a rustic wooden table beside a window, soft daylight, fine skin texture and wood grain, studio photograph, sharp focus` — 1024×1024, 12 steps, guidance 2.5, seed 12345 | **prompt:** `portrait of an older fisherman with a weathered face, natural window light, shallow depth of field, photorealistic` — 1024×1024, 12 steps, guidance 2.5, seed 99 |
![]() | |
| **prompt:** `a rain-slicked Tokyo street at night, neon signs reflecting in puddles, cinematic, 35mm photograph` — 1024×1024, 12 steps, guidance 2.5, seed 1234 |
![]() | ![]() | ![]() | ![]() |
| **source** — txt2img output of this build (`a dramatic mountain landscape at golden hour, snow-capped peaks, alpine lake reflection, photorealistic, 35mm photograph`, seed 42) | **img2img prompt:** `An oil painting of a dramatic mountain landscape at sunset, thick impasto brushstrokes` — 1024×1024, 12 steps, **guidance 3.5**, **strength 0.85**, seed 42 | **img2img prompt:** `A watercolor painting of a mountain valley at dawn, soft wet-on-wet washes` — 1024×1024, 12 steps, **guidance 3.5**, **strength 0.85**, seed 42 | **img2img prompt:** `A detailed pencil sketch of a mountain landscape in warm sepia and sanguine tones` — 1024×1024, 12 steps, **guidance 3.5**, **strength 0.85**, seed 42 |
strength 0.7 (the production default) preserves more of the source and reads
as a lighter restyle; 0.85 is the value for a genuine change of medium. At
either value the composition — peaks, valley, lake, reflection — survives.| Parameter | Production value | Meaning |
|---|---|---|
width | 1024 | Output width in pixels |
height | 1024 | Output height in pixels |
steps | 12 | Denoising steps (dynamic-shifted schedule) |
guidance | 2.5 | Embedded guidance (txt2img) |
guidance (img2img) | 3.5 | Stronger prompt adherence for restyling |
strength | 0.7 | img2img denoise strength (0.85 for style transfer) |
txt2img, img2imgflux2-dev-turbo-Q4_K_M-mixed.gguf therefore keeps the
Q4_K_M bulk but holds the artifact-carrying tensors — single-block
linear2, the attention out-projections, and every
modulation/embedding/conditioning tensor — at Q6_K/Q8_0. Verified
equivalent to an exact-delta (runtime-LoRA) reference in same-seed A/B
tests; 21.0 GB, ≈22.6 GB VRAM peak at 1024².steps × strength — schedule more if you lower strength.split/text_encoders/config/), and the VAE. Any GGUF-capable Flux2 loader
that accepts explicit per-component paths can consume this directly — no LoRA
handling required.A genericdiffuserssnippet is deliberately omitted. This is a split layout with a substituted encoder, so an upstream example will not load it unmodified.
| File | Size | Role |
|---|---|---|
split/gguf/flux2-dev-turbo-Q4_K_M-mixed.gguf | 21.02 GB | merged turbo transformer, mixed-precision Q4-class — fits 32 GB at 1024²; the tier these settings were measured on |
split/gguf/flux2-dev-turbo-Q6_K.gguf | 26.73 GB | merged turbo transformer, uniform Q6_K (needs >32 GB at 1024²) |
split/gguf/flux2-dev-turbo-Q8_0.gguf | 34.47 GB | merged turbo transformer, uniform Q8_0 (server/RunPod tier) |
split/text_encoders/Ministral-3-14B-Instruct-2512-Q3_K_S.gguf | 6.07 GB | text encoder |
split/text_encoders/mmproj-Ministral-3-14B-Instruct-2512-F16.gguf | 878 MB | multimodal projector (vision path, optional) |
split/vae/diffusion_pytorch_model.safetensors | 336 MB | VAE |
split/text_encoders/config/ | ≈34 MB | tokenizer + encoder configs |
black-forest-labs/FLUX.2-dev (upstream license: FLUX.2-dev Non-Commercial License)fal/FLUX.2-dev-Turbo, merged at full precision before quantizationunknown in this repo's metadata. Refer to the upstream licenses for redistribution and commercial-use terms — the FLUX.2-dev base is non-commercial.