docs: remove unsupported VideoX-Fun direct script usage, clarify ComfyUI custom node execution only
Browse files
README.md
CHANGED
|
@@ -69,52 +69,22 @@ The **ConvRot INT8** format applies rotational transformation matrix optimizatio
|
|
| 69 |
|
| 70 |
---
|
| 71 |
|
| 72 |
-
## π
|
| 73 |
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
Standard / vanilla ComfyUI does not natively support the **ConvRot INT8** format for ControlNet models. To load and execute these weights in ComfyUI, the dedicated loader extension is required:
|
| 77 |
|
| 78 |
- **Dedicated Loader Extension:** [ComfyUI-HSWQ-Loader-and-Tools](https://github.com/ussoewwin/ComfyUI-HSWQ-Loader-and-Tools)
|
| 79 |
|
| 80 |
-
###
|
| 81 |
-
```bash
|
| 82 |
-
cd ComfyUI/custom_nodes
|
| 83 |
-
git clone https://github.com/ussoewwin/ComfyUI-HSWQ-Loader-and-Tools.git
|
| 84 |
-
```
|
| 85 |
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
### 2. VideoX-Fun Framework
|
| 89 |
-
|
| 90 |
-
Clone the upstream [VideoX-Fun](https://github.com/aigc-apps/VideoX-Fun) repository:
|
| 91 |
|
| 92 |
```bash
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
mkdir -p models/Diffusion_Transformer
|
| 97 |
-
mkdir -p models/Personalized_Model
|
| 98 |
-
```
|
| 99 |
-
|
| 100 |
-
Place the quantized model under `models/Personalized_Model/`:
|
| 101 |
-
|
| 102 |
-
```
|
| 103 |
-
models/
|
| 104 |
-
βββ Diffusion_Transformer/
|
| 105 |
-
β βββ Qwen-Image-2512/
|
| 106 |
-
βββ Personalized_Model/
|
| 107 |
-
βββ Qwen-Image-2512-Fun-Controlnet-Union-2602_convrot_int8.safetensors
|
| 108 |
```
|
| 109 |
|
| 110 |
-
|
| 111 |
-
```bash
|
| 112 |
-
# Text-to-Image with ControlNet
|
| 113 |
-
python examples/qwenimage_fun/predict_t2i_control.py
|
| 114 |
-
|
| 115 |
-
# Image-to-Image with Inpainting + ControlNet
|
| 116 |
-
python examples/qwenimage_fun/predict_i2i_inpaint.py
|
| 117 |
-
```
|
| 118 |
|
| 119 |
---
|
| 120 |
|
|
|
|
| 69 |
|
| 70 |
---
|
| 71 |
|
| 72 |
+
## π Usage in ComfyUI
|
| 73 |
|
| 74 |
+
Standard / vanilla ComfyUI does not natively support the **ConvRot INT8** format for ControlNet models. To load and execute these weights, the dedicated loader extension is required:
|
|
|
|
|
|
|
| 75 |
|
| 76 |
- **Dedicated Loader Extension:** [ComfyUI-HSWQ-Loader-and-Tools](https://github.com/ussoewwin/ComfyUI-HSWQ-Loader-and-Tools)
|
| 77 |
|
| 78 |
+
### Installation
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
|
| 80 |
+
Clone the repository into your ComfyUI `custom_nodes` directory:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
|
| 82 |
```bash
|
| 83 |
+
cd ComfyUI/custom_nodes
|
| 84 |
+
git clone https://github.com/ussoewwin/ComfyUI-HSWQ-Loader-and-Tools.git
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
```
|
| 86 |
|
| 87 |
+
Place `Qwen-Image-2512-Fun-Controlnet-Union-2602_convrot_int8.safetensors` into your ComfyUI `models/controlnet/` folder and load it using the dedicated loader nodes from the extension.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
|
| 89 |
---
|
| 90 |
|