ussoewwin commited on
Commit
d15adef
Β·
verified Β·
1 Parent(s): f1c3389

docs: remove unsupported VideoX-Fun direct script usage, clarify ComfyUI custom node execution only

Browse files
Files changed (1) hide show
  1. README.md +7 -37
README.md CHANGED
@@ -69,52 +69,22 @@ The **ConvRot INT8** format applies rotational transformation matrix optimizatio
69
 
70
  ---
71
 
72
- ## πŸš€ How to Use
73
 
74
- ### 1. ComfyUI (Dedicated Loader Required)
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
- #### Installation:
81
- ```bash
82
- cd ComfyUI/custom_nodes
83
- git clone https://github.com/ussoewwin/ComfyUI-HSWQ-Loader-and-Tools.git
84
- ```
85
 
86
- Place the `.safetensors` file into your ComfyUI `models/controlnet` directory and load it using the dedicated loader nodes from the extension.
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
- git clone https://github.com/aigc-apps/VideoX-Fun.git
94
- cd VideoX-Fun
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
- Execute standard prediction pipelines:
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