easygoing0114 commited on
Commit
a3cab09
Β·
verified Β·
1 Parent(s): 22158e6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -28
README.md CHANGED
@@ -46,34 +46,18 @@ For better results, please use it in conjunction with the dedicated VAE, **[Z-Im
46
 
47
  ---
48
 
49
- ## Model Format and Quality
50
-
51
- Generally, model size and image quality are proportional.
52
-
53
- - **FP32 > FP16 β‰’ BF16 > MXFP8 > FP8_scaled > NVFP4 > FP8**
54
-
55
- Generation time varies greatly depending on **whether the model can be loaded into VRAM**, and the supported formats are determined by the **GPU generation**.
56
-
57
- | | FP32 | FP16 | BF16 | FP8 | FP8_scaled | MXFP8 | FP4 |
58
- |--|:--:|:--:|:--:|:--:|:--:|:--:|:--:|
59
- | **NVIDIA** | | | | | | | |
60
- | RTX 5000 (Blackwell) | βœ… | βœ… | βœ… | βœ… | βœ… | βœ… | βœ… |
61
- | RTX 4000 (Ada Lovelace) | βœ… | βœ… | βœ… | βœ… | βœ… | ❌ | ❌ |
62
- | RTX 3000 (Ampere) | βœ… | βœ… | βœ… | ❌ | ❌ | ❌ | ❌ |
63
- | RTX 2000 (Turing) | βœ… | βœ… | ❌ | ❌ | ❌ | ❌ | ❌ |
64
- | GTX 1000 (Pascal) | βœ… | ⚠️ | ❌ | ❌ | ❌ | ❌ | ❌ |
65
- | **AMD** | | | | | | | |
66
- | RX 9000 (RDNA4) | βœ… | βœ… | βœ… | βœ… | βœ… | ❌ | ❌ |
67
- | RX 7000 (RDNA3) | βœ… | βœ… | βœ… | ❌ | ❌ | ❌ | ❌ |
68
- | RX 6000 (RDNA2) | βœ… | βœ… | ❌ | ❌ | ❌ | ❌ | ❌ |
69
- | RX 5000 (RDNA1) | βœ… | βœ… | ❌ | ❌ | ❌ | ❌ | ❌ |
70
- | **Intel** | | | | | | | |
71
- | Arc B (Battlemage) | βœ… | βœ… | βœ… | ❌ | ❌ | ❌ | ❌ |
72
- | Arc A (Alchemist) | βœ… | βœ… | βœ… | ❌ | ❌ | ❌ | ❌ |
73
-
74
- **MXFP8** and **NVFP4** are the latest standards designed for the **RTX 5000 series**. On unsupported GPUs, however, fallback mechanisms will actually **slow down** processing, so their use is not highly recommended.
75
-
76
- For a comparison of image quality and generation time by format, please see [this page](https://www.ai-image-journey.com/2026/06/floating-point-precision-speed.html).
77
 
78
  ---
79
 
 
46
 
47
  ---
48
 
49
+ ## Model Formats and Image Quality
50
+
51
+ Generally, the image quality ranks in the following order:
52
+
53
+ **FP32 > FP16 β‰’ BF16 > INT8_ConvRot_HQ > MXFP8 > FP8_svd_scaled > FP8**
54
+
55
+ - **FP32** is mainly recommended for training purposes.
56
+ - **FP16 / BF16** can generate high-quality illustrations.
57
+ - **INT8_ConvRot_HQ** offers an excellent balance of speed and quality while using roughly half the VRAM of FP16 / BF16.
58
+ - **MXFP8, FP8_svd_scaled, and FP8** are currently **not recommended**, as they are inferior to INT8_ConvRot_HQ in both speed and image quality.
59
+
60
+ For a detailed comparison of each format, please refer to [this page](https://www.ai-image-journey.com/2026/06/floating-point-precision-speed.html).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
 
62
  ---
63