Views
No views yet
| Name | Description |
|---|---|
| FLUX.2-dev-Fun-Controlnet-Union-2602.safetensors | Compared to the previous version of the model, we have added Scribble and Gray controls. Similar to Z-Image-Turbo, the Flux2 model loses its CFG distillation capability after Control training, which is why the previous version performed poorly. Building upon the previous version, we trained on a better dataset and performed CFG distillation after training, resulting in superior performance. |
| FLUX.2-dev-Fun-Controlnet-Union.safetensors | ControlNet weights for Flux2. The model supports multiple control conditions such as Canny, HED, Depth, Pose and MLSD. |
| Pose + Ref | Output |
![]() ![]() | ![]() |
| Pose | Output |
![]() | ![]() |
| Pose | Output |
![]() | ![]() |
| Canny | Output |
![]() | ![]() |
| HED | Output |
![]() | ![]() |
| Depth | Output |
![]() | ![]() |
| Gray | Output |
![]() | ![]() |
| Pose + Inpaint | Output |
![]() ![]() ![]() | ![]() |
1# clone code
2git clone https://github.com/aigc-apps/VideoX-Fun.git
3
4# enter VideoX-Fun's dir
5cd VideoX-Fun
6
7# download weights
8mkdir models/Diffusion_Transformer
9mkdir models/Personalized_Model📦 models/
├── 📂 Diffusion_Transformer/
│ └── 📂 FLUX.2-dev/
├── 📂 Personalized_Model/
│ ├── 📦 FLUX.2-dev-Fun-Controlnet-Union-2602.safetensors
│ └── 📦 FLUX.2-dev-Fun-Controlnet-Union.safetensorsexamples/flux2_fun/predict_t2i_control.py.