You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,9 +119,9 @@ MFLUX supports the following model families. They have different strengths and w
119
119
120
120
| Model | Release date | Size | Type | Training | Description |
121
121
| --- | --- | --- | --- | --- | --- |
122
-
|[Z-Image](src/mflux/models/z_image/README.md)| Nov 2025 | 6B | Distilled & Base | Yes |Best all-rounder: fast, small, very good quality and realism. |
122
+
|[Z-Image](src/mflux/models/z_image/README.md)| Nov 2025 | 6B | Distilled & Base | Yes |Fast, small, very good quality and realism. |
123
123
|[FLUX.2](src/mflux/models/flux2/README.md)| Jan 2026 | 4B & 9B | Distilled & Base | Yes | Fastest + smallest with very good qaility and edit capabilities. |
124
-
|[FIBO](src/mflux/models/fibo/README.md)| Oct 2025 | 8B | Base | No | Very good JSON-based prompt understanding and editability, medium speed|
124
+
|[FIBO](src/mflux/models/fibo/README.md)| Oct 2025+| 8B |Distilled & Base | No | Very good JSON-based prompt understanding and editability.|
125
125
|[SeedVR2](src/mflux/models/seedvr2/README.md)| Jun 2025 | 3B & 7B | — | No | Best upscaling model. |
126
126
|[Qwen Image](src/mflux/models/qwen/README.md)| Aug 2025+ | 20B | Base | No | Large model (slower); strong prompt understanding and world knowledge. Has edit capabilities |
127
127
|[Depth Pro](src/mflux/models/depth_pro/README.md)| Oct 2024 | — | — | No | Very fast and accurate depth estimation model from Apple. |
Copy file name to clipboardExpand all lines: src/mflux/models/fibo/README.md
+33-1Lines changed: 33 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,38 @@ Most text-to-image models excel at imagination—but not control. FIBO is traine
13
13
-**Strong prompt adherence**: High alignment on PRISM-style evaluations
14
14
-**Enterprise-grade**: 100% licensed data with governance, repeatability, and legal clarity
15
15
16
+
## FIBO Lite
17
+
18
+
[FIBO Lite](https://huggingface.co/briaai/Fibo-lite) is a two-stage distilled variant combining CFG distillation and SCFM for fast few-step generation. Use `--model fibo-lite` for ~10x speed: 8 steps, `guidance=1.0`, no negative prompt needed. Slight quality tradeoff vs. base FIBO.
19
+
20
+
```sh
21
+
mflux-generate-fibo \
22
+
--model fibo-lite \
23
+
--prompt "A tiny watercolor robot in a garden" \
24
+
--steps 8 \
25
+
--seed 42
26
+
```
27
+
28
+
<details>
29
+
<summary>Python API</summary>
30
+
31
+
```python
32
+
from mflux.models.common.config import ModelConfig
33
+
from mflux.models.fibo.variants.txt2img.fibo importFIBO
34
+
from mflux.models.fibo_vlm.model.fibo_vlm import FiboVLM
35
+
36
+
vlm = FiboVLM()
37
+
json_prompt = vlm.generate(prompt="A tiny watercolor robot in a garden", seed=42)
38
+
model = FIBO(model_config=ModelConfig.fibo_lite())
> FIBO requires downloading the `briaai/FIBO` model weights (~24GB) and the `briaai/FIBO-vlm` vision-language model (~8GB), totaling ~32GB for the full model, or use quantization for smaller sizes.
369
+
> FIBO requires downloading the `briaai/FIBO`or `briaai/FIBO-lite`model weights (~24GB) and the `briaai/FIBO-vlm` vision-language model (~8GB), totaling ~32GB for the full model, or use quantization for smaller sizes.
0 commit comments