Image-Text-to-Video
English
Chinese
fp8
int8
quantized
text-to-video
image-to-video
video-generation
unsloth
Instructions to use unsloth/MiniMax-H3-FP8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use unsloth/MiniMax-H3-FP8 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 unsloth/MiniMax-H3-FP8 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 unsloth/MiniMax-H3-FP8 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for unsloth/MiniMax-H3-FP8 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="unsloth/MiniMax-H3-FP8", max_seq_length=2048, )
File size: 1,536 Bytes
b7653bb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | unsloth/MiniMax-H3-FP8
"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). Both files start from minimax_h3_fl2va_pruned_bf16.safetensors as
published by Comfy-Org (https://huggingface.co/Comfy-Org/MiniMax-H3), which is the
H3-Base FL2VA diffusion transformer with the dense adaLN modulation projection replaced
by a rank-8 factorization of the time-embedding curve. That pruning is Comfy-Org's work
and not Unsloth's.
* MiniMax-H3-INT8.pt: the 200 main-block 2-D matmul weights
(blocks.N.{attn.qkv_proj, attn.out_proj, mlp.fc1, mlp.fc2}.weight) quantized to
signed 8-bit integers with per-output-channel absmax scales, which changes the
numerics. No block-Hadamard rotation is applied. Every other tensor is copied
through bit-identical at its source precision.
* MiniMax-H3-FP8.pt: the same 200 weights quantized to float8 e4m3 with
per-output-channel absmax scales, which changes the numerics. Every other tensor is
copied through bit-identical at its source precision.
Both are serialized as torchao pre-quantized state dicts rather than as safetensors.
Not an official MiniMax or Comfy-Org product, and not endorsed by either.
|