Views
No views yet
73372e6cf53e414edd3ab03e357717fb0602e758.transformer, transformer_ref, and the Qwen3-VL
text_encoder are stored and executed through OrbitQuant's native packed W4A4
path. Non-quantized boundaries use BF16 compute. The visual vae and
audio_vae are byte-for-byte FP32 source copies and are never quantized.video_minimax_h3_t2v.json
and preserves the official preset's readable composition.
tEXt workflow chunk contains the same six-node graph with
balanced, 608×480, 124 frames, 24 steps, and the detailed example prompt.ComfyUI/custom_nodes, restart ComfyUI, import the workflow, and set
OrbitQuant Release Loader.model_path to this downloaded model directory. The
graph uses only the generic public nodes OrbitQuant Release Loader and
OrbitQuant Generate Video; there are no MiniMax-specific public node classes.1python main.py --listen 0.0.0.0 --port 8188 \
2 --disable-cuda-malloc \
3 --disable-dynamic-vram \
4 --disable-async-offload| Profile | GPU | Task | Placement | Process peak | Denoise | Generation |
|---|---|---|---|---|---|---|
balanced (default) | RTX PRO 6000 | T2VA | streamed leaf offload, 12 GiB cap | 6.36 GiB child; 6.90 GiB incl. idle ComfyUI | 46.68 s | — |
speed | RTX PRO 6000 | T2VA | resident transformer | 21.14 GiB | 46.84 s | 51.10 s |
minimum_vram | RTX 4090 | T2VA | low-CPU-memory streamed leaf offload, 8 GiB cap | 4.07 GiB | 154.25 s | 188.70 s |
speed | RTX PRO 6000 | Ref2VA | resident transformer_ref | 24.06 GiB | 118.48 s | 155.42 s |
balanced is the recommended Pareto recipe. On the tested PRO 6000, streamed
weight movement overlaps denoising closely enough to match the resident path
while cutting the child process's physical CUDA peak by about 70%.
minimum_vram is the verified absolute-minimum endpoint. speed removes
transformer transfers when VRAM is available.1pip install "orbitquant[hf,kernels]>=0.9.2,<0.10"
2pip install "diffusers @ git+https://github.com/huggingface/diffusers.git@abc5e9bf71fd38f53cd471bc3acaa84bc5ecbfdc"
3pip install "transformers>=5.13,<6" accelerate av soundfilepip install -r runtime-requirements.txt1python scripts/run_quantized_example.py \
2 --release . \
3 --output balanced.mp4 \
4 --save-latents balanced.latents.pt \
5 --prompt "$(cat prompt.txt)" \
6 --seed 42 --width 608 --height 480 --num-frames 124 --steps 24 \
7 --manual-stage-offload \
8 --text-encoder-sequential-offload \
9 --transformer-group-offload-type leaf_level \
10 --group-offload-use-stream \
11 --cuda-memory-cap-gib 12 \
12 --transformer-runtime-mode auto_fused \
13 --checkpoint-dir checkpoints/balanced--manual-stage-offload --text-encoder-sequential-offload.--group-offload-low-cpu-mem-usage --cuda-memory-cap-gib 8.1python scripts/run_quantized_example.py \
2 --release . \
3 --output ref2va.mp4 \
4 --save-latents ref2va.latents.pt \
5 --prompt "$(cat prompt.txt)" \
6 --task ref2va --reference reference.png \
7 --seed 42 --width 608 --height 480 --num-frames 124 --steps 24 \
8 --manual-stage-offload \
9 --text-encoder-sequential-offload \
10 --reference-vae-sequential-offload --reference-vae-tile-size 128 \
11 --transformer-runtime-mode auto_fused \
12 --checkpoint-dir checkpoints/ref2va1python scripts/decode_h3_latents.py \
2 --latents balanced.latents.pt \
3 --vae vae \
4 --audio-vae audio_vae \
5 --output balanced.master-crf1.mp4 \
6 --preview-output balanced.mp4| Component | Stored mode | Artifact GiB | Eligible linear coverage | OrbitQuant modules | AdaLN INT4 |
|---|---|---|---|---|---|
transformer | W4A4 | 17.03 | 97.45% | 300 | 50 |
transformer_ref | W4A4 | 17.03 | 97.45% | 300 | 50 |
text_encoder | W4A4 | 18.55 | 95.80% | 448 | 0 |
vae | source FP32 copy | 9.70 | exact source copy | 0 | 0 |
audio_vae | source FP32 copy | 0.56 | exact source copy | 0 | 0 |
cd58b4ecf77f22b8c4116b3d0b7d4af258e16ba3.abc5e9bf71fd38f53cd471bc3acaa84bc5ecbfdc.pass through /prompt and
produced the standard VIDEO output.validation/source_component_copy_audit.json.SHA256SUMS.comfyui/report.json.LICENSE. See NOTICE,
MODIFICATIONS.md, and the upstream
QA-about-License.