lightx2v/Minimax-h3-Turbo
Summary
Hugging Face page for the Minimax-h3-Turbo video generation model, with instructions for using it via Diffusers and Colab/Kaggle notebooks.
View Cached Full Text
Cached at: 08/07/26, 07:47 PM
lightx2v/Minimax-h3-Turbo · Hugging Face
Source: https://huggingface.co/lightx2v/Minimax-h3-Turbo
Instructions to use lightx2v/Minimax-h3-Turbo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- DiffusersHow to use lightx2v/Minimax-h3-Turbo with Diffusers:
pip install -U diffusers transformers accelerateimport torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("lightx2v/Minimax-h3-Turbo", dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Similar Articles
Abiray/Minimax-H3-nvfp4-INT4-INT8-Convrot
This Hugging Face repository provides community-compiled quantized and pruned weights for MiniMax H3 (Hailuo 3.0), enabling local text/image/audio-to-video generation on consumer GPUs with 16-24GB VRAM. It includes INT4, INT8, and NVFP4 variants with hardware-specific guides.
MiniMax H3 (10 minute read)
MiniMax launches H3, an open multimodal generation model that handles text, images, video, and audio, generating up to 15 seconds of 2K video with native stereo sound, and plans to open-source the weights.
realrebelai/MiniMax-H3_GGUFs
Hugging Face repository providing GGUF quantizations of MiniMax-H3 models for use with ComfyUI, including directory structure and links to required VAEs.
Kijai/MiniMax-H3_comfy
A Hugging Face repository hosting MiniMax-H3 models converted for ComfyUI usage, along with a Lightx2v distill LoRA for faster inference.
Unsloth Minimax M3 GGUF
Unsloth is uploading a GGUF quantized version of the MiniMax M3 model to Hugging Face.