SAVRN
Search Contact SAVRN

Open-weight model · Text to video

MiniMax-H3-Acc-LoRAs-ComfyUI

by AP aptech0081/MiniMax-H3-Acc-LoRAs-ComfyUI

ComfyUI-key repackaging of the official 8-step PDD acceleration LoRAs for MiniMax-H3 — full audio+video generation in 8 (or 4) sampler steps, CFG-free. These are not plain LoRAs.

Parameters
Context
Weights37.4 GB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads44.6k

Model Card

By AP, published under apache-2.0, revision acd4775bfc61.

ComfyUI-key repackaging of the official 8-step PDD acceleration LoRAs for MiniMax-H3 — full audio+video generation in 8 (or 4) sampler steps, CFG-free. These are not plain LoRAs. Each file carries a rank-64 trunk LoRA plus a Parallel Decoding Distillation head bank (32 per-interval final-layer projections per modality, PDD — arXiv:2607.26004). Loading them requires the (also loads the original alibaba-pai files directly — this repo just saves you the in-memory conversion and gives you inspectable standard LoRA keys). Put the LoRA files in ComfyUI/models/pddacc/. Pair FL2VA with an fl2va UNET, Ref2VA with ref2va (bf16 or int8-convrot builds both work). The baked checkpoint goes in…

Read AP's full model card

MiniMax-H3 Acc LoRAs — ComfyUI conversion

ComfyUI-key repackaging of the official alibaba-pai/MiniMax-H3-Acc-LoRAs 8-step PDD acceleration LoRAs for MiniMax-H3 — full audio+video generation in 8 (or 4) sampler steps, CFG-free.

These are not plain LoRAs. Each file carries a rank-64 trunk LoRA plus a Parallel Decoding Distillation head bank (32 per-interval final-layer projections per modality, PDD — arXiv:2607.26004). Loading them requires the companion custom node pack:

Jalen-Brunson/ComfyUI-MiniMax-H3-PDD-Acc (also loads the original alibaba-pai files directly — this repo just saves you the in-memory conversion and gives you inspectable standard LoRA keys).

Files

File What it is sha256
minimax_h3_fl2va_pdd_acc_8step_comfyui.safetensors LoRA + head bank for FL2VA trunk 1dce71b9…5cda0ea
minimax_h3_ref2va_pdd_acc_8step_comfyui.safetensors LoRA + head bank for Ref2VA trunk 5531fa0d…bdc78a1
minimax_h3_ref2va_pdd_acc_8step_baked_int8_convrot.safetensors full Ref2VA int8-convrot checkpoint, trunk LoRA pre-merged — for cards that can't fully load the model (see below) fe8e58d8…cd1e111e

Put the LoRA files in ComfyUI/models/pdd_acc/. Pair FL2VA with an fl2va UNET, Ref2VA with ref2va (bf16 or int8-convrot builds both work). The baked checkpoint goes in ComfyUI/models/diffusion_models/ instead.

Usage (recipe is mandatory)

UNETLoader → MiniMaxH3SigmaShift (12/3) → MiniMax H3 PDD Acc LoRA (Apply) → BasicGuider (CFG 1.0), sampler euler, sigmas = the Apply node's sigmas output (the trained PDD block boundaries) into SamplerCustomAdvanced. Strengths 1.0, nfe 8 (4 is also official). Remove other distill LoRAs (turbo); don't stack step-caching nodes. A ready-to-run workflow ships in the node pack's example_workflows/.

Baked Ref2VA trunk (for cards that can't fully load the model)

minimax_h3_ref2va_pdd_acc_8step_baked_int8_convrot.safetensors (34 GB) is Comfy-Org/MiniMax-H3's minimax_h3_ref2va_int8_convrot checkpoint with this repo's Ref2VA trunk LoRA pre-merged at strength 1.0 (dequantize → add → requantize with the same comfy-kitchen int8-convrot kernels ComfyUI itself uses; every tensor keeps its exact dtype, shape and byte length). The PDD head bank is not in this file — it stays runtime, so you still need the node pack and one of the LoRA files above.

Why it exists: ComfyUI merges LoRA patches into weights only for modules that fit in VRAM; offloaded modules get a per-forward lowvram patch — the LoRA (plus a dequantize) is re-applied on every step. On cards at the VRAM edge that fixed cost is large: ~2× s/it at 864×480 on a 32 GB RTX 5090 (node pack issue #4). Baking removes the patch term entirely — measured on a fully-offloaded H200: 2.44 → 2.06 s/it (lowvram patches: 258 → 0); the win grows as the card gets smaller. If your card fully loads the trunk, this file buys you nothing — use a LoRA file above on a stock trunk.

Usage: put it in ComfyUI/models/diffusion_models/, load it with a plain UNETLoader, and run the exact recipe above with the Apply node's lora_strength set to 0.0 (baked-trunk mode: trunk patching skipped; head bank / sigmas / guards unchanged — the node's info output confirms it). Point the Apply node at the Ref2VA LoRA file above (it still supplies the head bank and the trained sigmas). Everything else is identical: SigmaShift 12/3, the Apply node's sigmas → euler, CFG 1.0, nfe 8 (4 also official).

Caveats: the merge strength is frozen into the file — for another strength, the FL2VA trunk, or a bf16/pruned base, bake_pdd_trunk.py in the node pack bakes any base yourself (streaming write, a few GB of RAM). On an unbaked trunk, lora_strength 0.0 silently renders the un-distilled model with PDD heads — if unsure, check the file's safetensors metadata for pdd_acc_baked: true (full bake provenance — source shas, strength, date — is embedded there).

What was converted

Trunk LoRA renamed from diffusers to ComfyUI H3 keys (diffusion_model.*.lora_A/B.weight + .alpha, 258 modules):

  • to_q/to_k/to_vattn.qkv_proj: concatenated lora_A, block-diagonal lora_B, alpha ×3 (keeps the per-branch scale exactly 1.0)
  • ff.net.0.projmlp.fc1: SwiGLU [value;gate][gate;value] lora_B row half-swap
  • to_out.0attn.out_proj, ff.net.2mlp.fc2, adaln_proj.linear copied 1:1 (modulation layouts verified bit-identical between the two implementations)
  • token_refiner.refiner_blocks.Ntoken_refiner.blocks.N

The PDD head bank (proj_out [32,96,5376], audio_proj_out [32,32,5376] + biases) is kept byte-for-byte unchanged. Conversion is verified bit-identical to what the node pack computes in memory from the original files, and the converter CLI + 13-test suite live in the GitHub repo. Full provenance (source file sha256, transform description) is embedded in each file's safetensors metadata.

Credits

All training credit to alibaba-pai (Apache-2.0 release) and the PDD authors (Shaul et al.); base model by MiniMaxAI. This repo is a format conversion only.

Identity and Version

Repository
aptech0081/MiniMax-H3-Acc-LoRAs-ComfyUI
Publisher
AP
Task
Text to video
Modality
Video
Library
minimax-h3
Parameters
Not stated by the source
Languages
Not stated by the source
Revision
acd4775bfc614a38c764729399632de2f423e1e7
First published
2026-08-26
Last updated
2026-08-30

Files and Weights

5 files, 37.4 GB in total. The weights are 3 files totalling 37.4 GB in safetensors.

Weights3 files · 37.4 GB
Documentation1 file · 5.9 KB
Repository1 file · 1.5 KB
Every file
FileTypeSizeSHA-256
minimax_h3_fl2va_pdd_acc_8step_comfyui.safetensorsWeights1.7 GB 1dce71b90e5d
minimax_h3_ref2va_pdd_acc_8step_baked_int8_convrot.safetensorsWeights34.0 GB fe8e58d8028e
minimax_h3_ref2va_pdd_acc_8step_comfyui.safetensorsWeights1.7 GB 5531fa0da887
README.mdDocumentation5.9 KB
.gitattributesRepository1.5 KB

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
37.4 GB
Download from AP

Released by AP through its official repository on Hugging Face. Read the license.

Built From

Memory Requirements

PrecisionWeights in memory
As published37.4 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About MiniMax-H3-Acc-LoRAs-ComfyUI

Can I use MiniMax-H3-Acc-LoRAs-ComfyUI commercially?

Yes. MiniMax-H3-Acc-LoRAs-ComfyUI is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

Similar Models

Model · Text to video

Wan2.2-T2V-A14B-GGUF

QuantStack

This GGUF file is a direct conversion of Wan-AI/Wan2.2-T2V-A14B Since this is a quantized model, all original licensing terms and usage restrictions remain in effect. Usage The model can be used with the ComfyUI custom node ComfyUI-GGUF by city96 Place model files in ComfyUI/models/unet see the GitHub readme for further installation instructions.

Open weights apache-2.0 gguf

Model · Text to video

MiniMax-H3-Turbo-Lora

Larryvrh

A LoRA for MiniMax-H3 that renders joint video + synchronized stereo audio in as few as 4 sampling steps instead of the usual ~20 — a ~5× sampling speedup — and keeps getting better as you add steps. For most work, use minimaxh3turbov4step600ema.safetensors. It's the markedly better micro-detail (faces, fingers, fine texture), and the over-sharpening / plastic look of the earlier v1 (~850) line is fully resolved. v4 introduced a static-frame enhancement — a big win for static and small-motion content. The one trade-off shows up only at 4 steps with large, fast motion, where v4 can produce motion-smear / trailing ghosting (we're actively fixing this). Two things address it: - Use 6–8 steps.…

Open weights apache-2.0 minimax-h3

Model · Text to video

MiniMax-H3-Turbo-Lora-ComfyUI

DRBAPH

This repository contains MiniMax-H3 Turbo LoRAs converted and optimized for ComfyUI: These LoRAs accelerate MiniMax-H3 video and synchronized-audio generation by reducing the required number of sampling steps. Newly added LoRA, located in the experimental/ folder: Manual recommended sigmas: 3-step 1.0, 0.961165, 0.853333, 0.0 4-step 1.0, 0.970874, 0.907249, 0.640000, 0.0 Three LoRAs extracted from VDN-H3 8 step: The main 8-step LoRA works on both FL2VA and Ref2VA. If you are running a pruned base, choose the pruned version that corresponds to your base — the pruned versions need their own matching pruned base. Three dynamically resized BF16 LoRAs are now included. Their source weights were…

Open weights apache-2.0 minimax-h3

Model · Text to video

Sulphur-2-base

Sulphur

Sulphur 2 An uncensored video generation model based on LTX 2.3 supporting both t2v and i2v natively, as well as all of the other ltx 2.3 formats. Follow us on X Join our Discord Support the next version of the project, even just a few dollars would go a long way: Kofi To get started with the model, I recommend downloading either of the dev versions, (fp8mixed or bf16) and downloading the distill lora provided. By the way, I'm aware the workflows contain sulphurfinal right now, just use the lora or use the full models, don't use both at the same time. This model contains a prompt enhancer. The easiest way to get started with the prompt enhancer is by using it on lmstudio. The way to…

Open weights diffusers

Model · Text to video

Wan2.1-VACE-1.3B-GGUF

Sam

Wan2.1 is an open-source suite of video foundation models, compatible with consumer-grade GPUs, that excels in various video generation tasks like text-to-video, image-to-video, and video editing, even supporting visual text generation. Download models using huggingface-cli: You can also download directly from this page. This model is a derivative work of the original model licensed under the Apache 2.0 License, and is therefore distributed under the terms of the same license. Thanks to Patrick Gillespie for creating the ASCII text art tool used in this project https://patorjk.com/software/taag/ Wan-AI for the Wan model https://huggingface.co/Wan-AI/Wan2.1-VACE-1.3B…

Open weights apache-2.0 diffusers

Model · Text to video

Wan2.1-T2V-1.3B-GGUF

Sam

Wan2.1 is an open-source suite of video foundation models, compatible with consumer-grade GPUs, that excels in various video generation tasks like text-to-video, image-to-video, and video editing, even supporting visual text generation. Download models using huggingface-cli: You can also download directly from this page. This model is a derivative work of the original model licensed under the Apache 2.0 License, and is therefore distributed under the terms of the same license. Thanks to Patrick Gillespie for creating the ASCII text art tool used in this project https://patorjk.com/software/taag/ Wan-AI for the Wan model https://huggingface.co/Wan-AI/Wan2.1-T2V-1.3B…

Open weights apache-2.0 diffusers