›What files do I need to run MiniMax H3 locally?
Four things: one diffusion model (fl2va for frame-driven, ref2va for reference-driven), the Qwen3-VL 32B text encoder, the video VAE and the audio VAE. The encoder and both VAEs are non-optional — the diffusion model alone will not run.
›Where do MiniMax H3 model files go in ComfyUI?
Diffusion models go in ComfyUI/models/diffusion_models/, the text encoder in ComfyUI/models/text_encoders/, and both VAE files in ComfyUI/models/vae/. The Comfy-Org repack is packaged specifically to drop into those three folders.
›Why does MiniMax H3 need so much memory?
Because the text encoder is Qwen3-VL 32B. Most size comparisons quote only the diffusion weights, but the encoder must be resident while your prompt is encoded and is frequently the larger of the two files. That is why machines that look sufficient on paper still run out of memory.
›What is the difference between the pruned and standard checkpoints?
Pruned INT8 checkpoints are roughly 40% smaller than standard INT8 thanks to precomputed adaLN curve tables. They are a good way to save space, and they do not lock you out of the turbo LoRA — the publisher supports pruned and curve variants alongside the full ones, with the ComfyUI node detecting a pruned base automatically.