Views
No views yet
v4 (step 600) or v1 (850)?minimax_h3_turbo_v4_step600_ema.safetensors. It's the
strongest checkpoint we've released: much better static and small-motion shots,
markedly better micro-detail (faces, fingers, fine texture), and the
over-sharpening / plastic look of the earlier v1 (~850) line is fully
resolved.v1 ~850
checkpoint can still be the friendlier pick.Using 6–8 steps? ── yes ──► v4-600 (recommended)
│ no (4 steps)
▼
Heavy / fast motion? ── no ──► v4-600 (recommended)
│ yes
▼
v1-850 (friendlier at 4-step heavy motion)1.0. It's tuned for 1.0 and holds up well across the 4–8
step range. Only reach for the strength dial if a specific clip misbehaves —
then blurry ghosting / smear → nudge up (~1.05–1.2), over-sharp grain →
nudge down (~0.8–0.95).simple.git clone into ComfyUI/custom_nodes) and put
a .safetensors from this repo into ComfyUI/models/loras/. You also need the
base MiniMax-H3 model, VAEs and text encoder — see the
MiniMax-H3 tutorial.SamplerCustomAdvanced from MiniMax-H3 Turbo Sampler, and set the
scheduler to simple at ≥ 4 steps.minimax_h3_t2v_turbo.json) — drag it in.bf16, int8_convrot) and the
pruned/curve variants (pruned_int8, pruned_fp8). The node auto-detects a
pruned base and re-injects the time-conditioning at run time, so one LoRA file
covers every base.low_vram switch: off applies the LoRA at run time (sharpest,
recommended); on merges it into the weights for the lowest peak VRAM (a bit
softer on quantized bases). Turn it on only if you run out of memory.ModelSamplingAV) and older ComfyUI doesn't — the Turbo Sampler
detects which and does the right thing either way, so nothing to change when you
update ComfyUI.W_eff = W + lora_B @ lora_A, alpha = rank, so no extra scaling). Prefer the
EMA files; the non-EMA ones are for comparison.| file | notes |
|---|---|
minimax_h3_turbo_v4_step600_ema.safetensors | recommended — current best. Strong static/small-motion, good micro-detail, no over-sharpening. |
minimax_h3_turbo_v4_step600.safetensors | v4-600 non-EMA (comparison). |
minimax_h3_turbo_v4_step150_ema.safetensors | earlier v4 checkpoint. |
minimax_h3_turbo_4step_ema_ckpt850.safetensors | v1 line (~850) — over-sharpened / plastic in general, but the friendlier pick for 4-step heavy motion (see above). |
minimax_h3_turbo_4step_ema_ckpt500.safetensors | older v1 (~500), softer. |
minimax_h3_turbo_4step_ema.safetensors | initial release (~200). |
v4 is the current training recipe and stepN is the training step.
Older files carry the previous 4step_ckptN naming, where 4step referred to the
sampler-step count.generate.py is a single self-contained file — it loads the base DiT + a LoRA,
encodes the prompt, runs the few-step dual-schedule sampler, decodes and muxes an
mp4. It still needs a ComfyUI checkout for the H3 model / VAE / text-encoder
definitions:1git clone https://github.com/comfyanonymous/ComfyUI
2cd ComfyUI && pip install -r requirements.txt && cd ..
3pip install -r requirements.txt # this repo: torch, safetensors, imageio-ffmpeg
4
5# base weights from Comfy-Org/MiniMax-H3 into a models/ tree, then:
6python generate.py \
7 --comfyui ./ComfyUI \
8 --base models/diffusion_models/minimax_h3_fl2va_bf16.safetensors \
9 --lora minimax_h3_turbo_v4_step600_ema.safetensors \
10 --te models/text_encoders/qwen3vl_32b_minimax_h3_int8_convrot.safetensors \
11 --video-vae models/vae/minimax_h3_video_vae_fp16.safetensors \
12 --audio-vae models/vae/minimax_h3_audio_vae_fp32.safetensors \
13 --prompt "A corgi in a chef hat flipping a pancake, sizzling sounds and a cheerful bark." \
14 --width 1344 --height 768 --frames 124 --steps 6 --out corgi.mp4low_vram
switch, so it runs on much smaller GPUs. In the standalone script,
--offload-adaln trades ~13 GB of VRAM for CPU RAM.