-
-
Notifications
You must be signed in to change notification settings - Fork 453
FLUX
FLUX.1 family consists of 3 variations:
-
Pro
Model weights are NOT released, model is available only via Black Forest Labs -
Dev
Open-weight, guidance-distilled from Pro variation, available for non-commercial applications -
Schnell
Open-weight, timestep-distilled from Dev variation, available under Apache2.0 license
Additionally SD.Next includes pre-quantized variations of FLUX.1 Dev variation: qint8
, qint4
and nf4
To use either any variations or quantizations, simply select it from Networks -> Reference
and model will be auto-downloaded on first use
note: Do not download base model manually!
- FLUX.1 is based on Flow-matching scheduling, only supported sampler is Euler Flow Match (Default)
Setting any other sampler will be ignored - Use of FLUX.1 LoRAs is included with limited support - not all LoRAs are supported with more variations coming soon
- FLUX.1 VAE does not support FP16, it is recommended to use BF16 if you have a compatible GPU
Otherwise, VAE will be upcast to FP32 which takes more memory and time - To enable image previews during generate, set Settings -> Live Preview -> Method to TAESD
- To further speed up generation, you can disable "full quality" which triggers use of TAESD instead of full VAE to decode final image
FLUX.1 is a massive model at ~32GB and as such it is recommended to use offloading
To set offloading, see Settings -> Diffusers -> Model offload mode:
- Recommended for high VRAM GPUs: Balanced
Faster but requires compatible GPU and sufficient VRAM - Recommended for low VRAM GPUs: Sequential
Much slower but allows FLUX.1 to run on GPUs with 6GB VRAM
Note: Quantization can significantly reduce memory requirements, but it can also slightly reduce quality of outputs
-
qint8
andqint8
quantization requireoptimum-quanto
which will be auto-installed on first use
note: qint quantization requires torch==2.4.0
note: is not compatible with balanced offload -
nf4
quantization requiresbitsandbytes
which will be auto-installed on first use
note:bitsandbytes
package is not compatible with all platforms and gpus
There are already many FLUX.1 unofficial variations available
Any Diffuser-based variation can be downloaded and loaded into SD.Next using Models -> Huggingface -> Download
For example, interesting variation is a merge of Dev and Schnell variations by sayakpaul: sayakpaul/FLUX.1-merged
SD.Next includes support for basic FLUX.1 LoRAs
Since LoRA keys vary singnificantly between tools used to train LoRA, support for additional LoRAs will be added in the future
Loading of single-file safetensors is experimental:
- Supported for transformer (otherwise known as UNet) part of the FLUX.1 model only!
- Safetensors that contain full model with VAE and text-encoder are not supported at the moment and will be added in the future
- Safetensors in pre-quantized format are not supported at the moment and will be added in the future
To load a Unet safetensors file:
- Download safetensors file from desired source and place it in
models/UNET
folder
example: FastFlux Unchained - Load FLUX.1 model as usual and then
- Replace transformer with one in desired safetensors file using:
Settings -> Execution & Models -> UNet
Tip
For convience, you can add that setting to your quicksettings by adding Settings -> User Interface -> Quicksettings list -> sd_unet
SD.Next allows changing optional text encoder on-the-fly
Go to Settings -> Models -> Text encoder and select the desired text encoder
T5 enhances text rendering and some details, but its otherwise very lightly used and optional
Loading lighter T5 will greatly decrease model resource usage, but may not be compatible with all offloading modes
Tip
If you want to frequently switch between text encoders, you can add that setting to quicksettings by adding Settings -> User Interface -> Quicksettings list -> sd_text_encoder
SD.Next allows changing VAE model used by FLUX.1 on-the-fly
There are no alternative VAE models released, so this setting is mostly for future use
Tip
If you want to frequently switch between text encoders, you can add that setting to quicksettings by adding Settings -> User Interface -> Quicksettings list -> sd_vae
Additional core support will be added in diffusers==0.31
and subsequently included in SD.Next:
- Additional LoRAs
- Additional loading of individual safetensors: https://github.com/huggingface/diffusers/pull/9244 https://github.com/huggingface/diffusers/pull/9243
- Diffusers generic quantization: https://github.com/huggingface/diffusers/issues/9174
- IP-Adapter: https://huggingface.co/XLabs-AI/flux-ip-adapter
- Fuse-QKV: https://github.com/huggingface/diffusers/pull/9185
- ControlNet: https://github.com/huggingface/diffusers/pull/9175
- Inpaint and Img2Img: https://github.com/huggingface/diffusers/pull/9135
- Differential diffusion: https://github.com/huggingface/diffusers/pull/9268
- Additional schedulers
- GGUF support
- FP8 quantization