Image-Text-to-Video
GGUF
English
Chinese
text-to-video
image-to-video
video-generation
stable-diffusion.cpp
unsloth
Instructions to use myhuggingbb/MiniMax-H3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use myhuggingbb/MiniMax-H3-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for myhuggingbb/MiniMax-H3-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for myhuggingbb/MiniMax-H3-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for myhuggingbb/MiniMax-H3-GGUF to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="myhuggingbb/MiniMax-H3-GGUF", max_seq_length=2048, )
| unsloth/MiniMax-H3-GGUF | |
| "MiniMax H3 is licensed under the MiniMax H3 Community License Agreement, | |
| Copyright (c) 2026 MiniMax. All Rights Reserved." | |
| The weights here derive from MiniMax-H3 (https://huggingface.co/MiniMaxAI/MiniMax-H3). | |
| LICENSE is the text MiniMax ships at | |
| https://huggingface.co/MiniMaxAI/MiniMax-H3/blob/main/LICENSE, verbatim. | |
| Modified files and the changes made to them (MiniMax H3 Community License Agreement, | |
| Section III.2): | |
| * minimax_h3_fl2va_pruned-*.gguf: the H3-Base FL2VA diffusion transformer, converted | |
| from safetensors to GGUF and quantized at six uniform precisions (Q2_K, Q3_K, Q4_K, | |
| Q5_0, Q6_K, Q8_0) and two mixed-precision ones (UD-Q2_K_XL, UD-Q3_K_XL), which | |
| changes the numerics. The modulation path is the pruned form published by Comfy-Org | |
| (https://huggingface.co/Comfy-Org/MiniMax-H3) rather than the dense original. The | |
| 1-D norm scales and condition_proj are held at bf16 in every build. | |
| * qwen3vl_32b_minimax_h3-*.gguf: the Qwen3-VL-32B text encoder MiniMax ship with H3, | |
| converted to GGUF and quantized at Q2_K_M and Q4_K_M, which changes the numerics. | |
| That encoder is Qwen3-VL-32B (https://huggingface.co/Qwen/Qwen3-VL-32B-Instruct), | |
| Apache-2.0, as redistributed by MiniMax inside the H3 repository. | |
| Not an official MiniMax product, and not endorsed by MiniMax. | |