Image-Text-to-Video
Diffusers
Safetensors
MiniMaxH3ModularPipeline
text-to-video
image-to-video
video-to-video
text-to-audio-video
image-to-audio-video
image-text-to-audio-video
video-to-audio-video
audio-to-audio-video
audio-video-generation
multimodal
synchronized-audio-video
reference-to-audio-video
Instructions to use MiniMaxAI/MiniMax-H3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use MiniMaxAI/MiniMax-H3 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("MiniMaxAI/MiniMax-H3", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
yuanhe commited on
Commit ·
83db0c0
1
Parent(s): fa9c8ab
Make model_index the public entry
Browse files- README.md +3 -3
- model_index.json +0 -8
README.md
CHANGED
|
@@ -190,14 +190,14 @@ Each checkpoint is distributed as a self\-contained Hugging Face\-style reposito
|
|
| 190 |
|
| 191 |
Download the model. The repository hosts the original checkpoint (`FL2VA/`, `Ref2VA/`) and the diffusers format side by side, so scope the download to what your framework needs:
|
| 192 |
|
| 193 |
-
`model_index.json` is the repository-level
|
| 194 |
|
| 195 |
```bash
|
| 196 |
# Original checkpoint, both task families (SGLang, vLLM):
|
| 197 |
-
hf download MiniMaxAI/MiniMax-H3 --include "model_index.json" "
|
| 198 |
|
| 199 |
# Or a single task family:
|
| 200 |
-
hf download MiniMaxAI/MiniMax-H3 --include "model_index.json" "
|
| 201 |
```
|
| 202 |
|
| 203 |
diffusers users do not need a manual download: `ModularPipeline.from_pretrained("MiniMaxAI/MiniMax-H3")` fetches exactly the components it needs. See the [diffusers documentation](https://github.com/huggingface/diffusers/blob/minimax-h3/docs/source/en/api/pipelines/minimax_h3.md) for loading recipes.
|
|
|
|
| 190 |
|
| 191 |
Download the model. The repository hosts the original checkpoint (`FL2VA/`, `Ref2VA/`) and the diffusers format side by side, so scope the download to what your framework needs:
|
| 192 |
|
| 193 |
+
`model_index.json` is the repository-level public entry. The task-family-specific diffusers indexes remain under `FL2VA/model_index.json` and `Ref2VA/model_index.json`.
|
| 194 |
|
| 195 |
```bash
|
| 196 |
# Original checkpoint, both task families (SGLang, vLLM):
|
| 197 |
+
hf download MiniMaxAI/MiniMax-H3 --include "model_index.json" "FL2VA/*" "Ref2VA/*" --local-dir MiniMax-H3
|
| 198 |
|
| 199 |
# Or a single task family:
|
| 200 |
+
hf download MiniMaxAI/MiniMax-H3 --include "model_index.json" "FL2VA/*" --local-dir MiniMax-H3
|
| 201 |
```
|
| 202 |
|
| 203 |
diffusers users do not need a manual download: `ModularPipeline.from_pretrained("MiniMaxAI/MiniMax-H3")` fetches exactly the components it needs. See the [diffusers documentation](https://github.com/huggingface/diffusers/blob/minimax-h3/docs/source/en/api/pipelines/minimax_h3.md) for loading recipes.
|
model_index.json
CHANGED
|
@@ -2,14 +2,6 @@
|
|
| 2 |
"_class_name": "MiniMaxH3ModularPipeline",
|
| 3 |
"_diffusers_version": "0.36.0.dev0",
|
| 4 |
"_blocks_class_name": "MiniMaxH3Blocks",
|
| 5 |
-
"_minimax_h3": {
|
| 6 |
-
"schema_version": 1,
|
| 7 |
-
"index_scope": "repository",
|
| 8 |
-
"task_family_indexes": {
|
| 9 |
-
"fl2va": "FL2VA/model_index.json",
|
| 10 |
-
"ref2va": "Ref2VA/model_index.json"
|
| 11 |
-
}
|
| 12 |
-
},
|
| 13 |
"text_encoder": [
|
| 14 |
"transformers",
|
| 15 |
"Qwen3VLForConditionalGeneration",
|
|
|
|
| 2 |
"_class_name": "MiniMaxH3ModularPipeline",
|
| 3 |
"_diffusers_version": "0.36.0.dev0",
|
| 4 |
"_blocks_class_name": "MiniMaxH3Blocks",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
"text_encoder": [
|
| 6 |
"transformers",
|
| 7 |
"Qwen3VLForConditionalGeneration",
|