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
Add diffusers format weights
#5
by multimodalart HF Staff - opened
- README.md +23 -31
- assets/action-reference.mov +3 -0
- assets/character-action-reference.png +3 -0
- assets/character-replacement-action-reference.mp4 +3 -0
- assets/fashion-glasses-ad.mp4 +3 -0
- assets/fashion-glasses-reference-1.png +3 -0
- assets/fashion-glasses-reference-2.png +3 -0
- assets/fashion-glasses-reference-3.png +3 -0
- assets/fashion-glasses-reference-4.png +3 -0
- assets/fl2va-clay-fox-reference.png +3 -0
- assets/fl2va-clay-fox.mp4 +3 -0
- assets/h3-architecture.png +3 -0
- assets/h3-cinematic-shot.mp4 +3 -0
- assets/h3-suspense-title.mp4 +3 -0
- assets/logo.svg +16 -0
- assets/reference-image-1.png +3 -0
- assets/reference-image-2.png +3 -0
- assets/robot-arm-red-cube.mp4 +3 -0
- assets/t2va-768p-demo.mp4 +3 -0
- model_index.json +0 -131
README.md
CHANGED
|
@@ -28,27 +28,16 @@ tags:
|
|
| 28 |
<a href="https://hailuoai.video" target="_blank"><img src="https://img.shields.io/badge/Hailuo%20AI-FF6C37?logo=minimax&logoColor=white" alt="Hailuo AI"></a>
|
| 29 |
<a href="https://platform.minimax.io/docs/guides/text-generation" target="_blank"><img src="https://img.shields.io/badge/API-FF6C37?logo=minimax&logoColor=white" alt="API"></a>
|
| 30 |
<a href="https://www.minimax.io" target="_blank"><img src="https://img.shields.io/badge/MiniMax%20Website-FF6C37?logo=minimax&logoColor=white" alt="MiniMax Website"></a>
|
| 31 |
-
<a href="https://github.com/MiniMax-AI/MiniMax-H3" target="_blank"><img src="https://img.shields.io/badge/GitHub-181717?logo=github&logoColor=white" alt="GitHub"></a>
|
| 32 |
-
<a href="https://huggingface.co/MiniMaxAI/MiniMax-H3" target="_blank"><img src="https://img.shields.io/badge/Hugging%20Face-FFD21E?logo=huggingface&logoColor=black" alt="Hugging Face"></a>
|
| 33 |
<br>
|
| 34 |
<a href="https://modelscope.cn/organization/minimax" target="_blank" rel="noopener noreferrer"><img alt="ModelScope MiniMax AI" src="https://img.shields.io/badge/ModelScope-MiniMax%20AI-white?labelColor=%23EF3D5D"></a>
|
| 35 |
<a href="https://platform.minimaxi.com/docs/faq/contact-us" target="_blank"><img src="https://img.shields.io/badge/WeChat-07C160?logo=wechat&logoColor=white" alt="WeChat"></a>
|
| 36 |
<a href="https://discord.com/invite/dbMxutw7tP" target="_blank"><img src="https://img.shields.io/badge/Discord-5865F2?logo=discord&logoColor=white" alt="Discord"></a>
|
| 37 |
-
<a href="https://huggingface.co/MiniMaxAI
|
|
|
|
| 38 |
</p>
|
| 39 |
|
| 40 |
-
|
| 41 |
# MiniMax H3
|
| 42 |
|
| 43 |
-
## Online API
|
| 44 |
-
Use MiniMax\-H3 directly via API\.
|
| 45 |
-
- Global: [platform\.minimax\.io](https://platform.minimax.io/docs/api-reference/video-generation-v2-create) \| CN: [platform\.minimaxi\.com](https://platform.minimaxi.com/docs/api-reference/video-generation-v2-create)
|
| 46 |
-
|
| 47 |
-
## Online App
|
| 48 |
-
Use MiniMax\-H3 directly via App\.
|
| 49 |
-
- WebApp Global: [hailuoai\.video](https://hailuoai.video) \| CN: [hailuoai\.com](https://hailuoai.com/)
|
| 50 |
-
- Desktop Global: [hub\.minimax\.io](https://hub.minimax.io/) \| CN: [hub\.minimaxi\.com](https://hub.minimaxi.com/)
|
| 51 |
-
|
| 52 |
## System Overview
|
| 53 |
MiniMax H3 is a general-purpose, omni-modal generative system. It supports unified understanding of multimodal contexts composed of text, images, video, and audio, and can generate video with native stereo audio at resolutions up to 2K and durations of up to 15 seconds. Thanks to its task-generalization-oriented system design, H3 already possesses broad multimodal context understanding and generation capabilities at the pre-training stage, enabling outstanding performance in following complex multimodal instructions.
|
| 54 |
|
|
@@ -77,6 +66,20 @@ The complete H3 system consists of the following three modules:
|
|
| 77 |
- H3-Base: Generates audio and video based on the H3-Context-IR output, producing results at 768p resolution.
|
| 78 |
- H3-Regenerate-2K: Feeds the 768p result together with the original context back into H3 to regenerate the output at 2K resolution. This process leverages both H3’s powerful generative capabilities and the rich information contained in the original context, enabling it to produce high-resolution outputs with more accurate details and greater visual fidelity.
|
| 79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
## Model Architecture
|
| 81 |
|
| 82 |
### H3\-Context\-IR
|
|
@@ -189,27 +192,19 @@ Each checkpoint is distributed as a self\-contained Hugging Face\-style reposito
|
|
| 189 |
└── audio_vae/
|
| 190 |
```
|
| 191 |
|
| 192 |
-
Download the model
|
| 193 |
-
|
| 194 |
-
`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`.
|
| 195 |
|
| 196 |
```bash
|
| 197 |
-
|
| 198 |
-
hf download MiniMaxAI/MiniMax-H3 --include "model_index.json" "FL2VA/*" "Ref2VA/*" --local-dir MiniMax-H3
|
| 199 |
-
|
| 200 |
-
# Or a single task family:
|
| 201 |
-
hf download MiniMaxAI/MiniMax-H3 --include "model_index.json" "FL2VA/*" --local-dir MiniMax-H3
|
| 202 |
```
|
| 203 |
|
| 204 |
-
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.
|
| 205 |
-
|
| 206 |
We recommend the following inference frameworks to serve the model:
|
| 207 |
|
| 208 |
- [SGLang](https://docs.sglang.io/) \- see [cookbook](https://docs.sglang.io/cookbook/diffusion/MiniMax/MiniMax-H3)
|
| 209 |
|
| 210 |
- [vLLM](https://github.com/vllm-project/vllm) \- see [vllm recipes](https://recipes.vllm.ai/MiniMaxAI/MiniMax-H3)
|
| 211 |
|
| 212 |
-
- [diffusers](https://github.com/huggingface/diffusers) \- see [diffusers docs](https://
|
| 213 |
|
| 214 |
- [ComfyUI](https://github.com/Comfy-Org/ComfyUI) \- see [Comfy tutorial](https://docs.comfy.org/tutorials/video/minimax/minimax-h3); use [R2V template](https://github.com/Comfy-Org/workflow_templates/blob/main/templates/video_minimax_h3_r2v.json) / [T2V template](https://github.com/Comfy-Org/workflow_templates/blob/main/templates/video_minimax_h3_t2v.json)
|
| 215 |
|
|
@@ -274,11 +269,8 @@ TOKEN="<token>"
|
|
| 274 |
|
| 275 |
MiniMax platform:
|
| 276 |
|
| 277 |
-
|
| 278 |
-
-
|
| 279 |
-
- H3-Context-IR:use /video-generation-v2-h3-context-ir [EN-docs](https://platform.minimax.io/docs/api-reference/video-generation-v2-h3-context-ir), [CN-docs](https://platform.minimaxi.com/docs/api-reference/video-generation-v2-h3-context-ir)
|
| 280 |
-
- H3-Regenerate-2K:use /video-generation-v2-regeneration [EN-docs](https://platform.minimax.io/docs/api-reference/video-generation-v2-regeneration), [CN-docs](https://platform.minimaxi.com/docs/api-reference/video-generation-v2-regeneration)
|
| 281 |
-
|
| 282 |
|
| 283 |
The examples below encode local H3\-Base output files as Base64 Data URLs\. For production use, uploading the video to a publicly accessible URL and passing that URL as `base_video` is recommended\.
|
| 284 |
|
|
@@ -407,11 +399,11 @@ For each case below, we provide reference outputs at both 2K and 768p generated
|
|
| 407 |
|
| 408 |
[VIDEO\_PROMPT\_WRITING\_GUIDE\_ref\_en\.md](docs/VIDEO_PROMPT_WRITING_GUIDE_ref_en.md)
|
| 409 |
|
| 410 |
-
|
| 411 |
|
| 412 |
## License
|
| 413 |
|
| 414 |
-
MiniMax H3 is released under the [MiniMax H3 Community License Agreement](
|
| 415 |
|
| 416 |
## Contact Us
|
| 417 |
|
|
|
|
| 28 |
<a href="https://hailuoai.video" target="_blank"><img src="https://img.shields.io/badge/Hailuo%20AI-FF6C37?logo=minimax&logoColor=white" alt="Hailuo AI"></a>
|
| 29 |
<a href="https://platform.minimax.io/docs/guides/text-generation" target="_blank"><img src="https://img.shields.io/badge/API-FF6C37?logo=minimax&logoColor=white" alt="API"></a>
|
| 30 |
<a href="https://www.minimax.io" target="_blank"><img src="https://img.shields.io/badge/MiniMax%20Website-FF6C37?logo=minimax&logoColor=white" alt="MiniMax Website"></a>
|
|
|
|
|
|
|
| 31 |
<br>
|
| 32 |
<a href="https://modelscope.cn/organization/minimax" target="_blank" rel="noopener noreferrer"><img alt="ModelScope MiniMax AI" src="https://img.shields.io/badge/ModelScope-MiniMax%20AI-white?labelColor=%23EF3D5D"></a>
|
| 33 |
<a href="https://platform.minimaxi.com/docs/faq/contact-us" target="_blank"><img src="https://img.shields.io/badge/WeChat-07C160?logo=wechat&logoColor=white" alt="WeChat"></a>
|
| 34 |
<a href="https://discord.com/invite/dbMxutw7tP" target="_blank"><img src="https://img.shields.io/badge/Discord-5865F2?logo=discord&logoColor=white" alt="Discord"></a>
|
| 35 |
+
<a href="https://huggingface.co/MiniMaxAI" target="_blank"><img src="https://img.shields.io/badge/Hugging%20Face-FFD21E?logo=huggingface&logoColor=black" alt="Hugging Face"></a>
|
| 36 |
+
<a href="https://huggingface.co/MiniMaxAI/MiniMax-H3/blob/main/LICENSE" target="_blank"><img src="https://img.shields.io/badge/LICENSE-4CAF50?logo=creativecommons&logoColor=white" alt="LICENSE"></a>
|
| 37 |
</p>
|
| 38 |
|
|
|
|
| 39 |
# MiniMax H3
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
## System Overview
|
| 42 |
MiniMax H3 is a general-purpose, omni-modal generative system. It supports unified understanding of multimodal contexts composed of text, images, video, and audio, and can generate video with native stereo audio at resolutions up to 2K and durations of up to 15 seconds. Thanks to its task-generalization-oriented system design, H3 already possesses broad multimodal context understanding and generation capabilities at the pre-training stage, enabling outstanding performance in following complex multimodal instructions.
|
| 43 |
|
|
|
|
| 66 |
- H3-Base: Generates audio and video based on the H3-Context-IR output, producing results at 768p resolution.
|
| 67 |
- H3-Regenerate-2K: Feeds the 768p result together with the original context back into H3 to regenerate the output at 2K resolution. This process leverages both H3’s powerful generative capabilities and the rich information contained in the original context, enabling it to produce high-resolution outputs with more accurate details and greater visual fidelity.
|
| 68 |
|
| 69 |
+
## Online API
|
| 70 |
+
|
| 71 |
+
Use MiniMax\-H3 directly via API\.
|
| 72 |
+
|
| 73 |
+
- Global: [platform\.minimax\.io](https://platform.minimax.io/docs/api-reference/video-generation-v2-create) \| CN: [platform\.minimaxi\.com](https://platform.minimaxi.com/docs/api-reference/video-generation-v2-create)
|
| 74 |
+
|
| 75 |
+
## Online App
|
| 76 |
+
|
| 77 |
+
Use MiniMax\-H3 directly via App\.
|
| 78 |
+
|
| 79 |
+
- WebApp Global: [hailuoai\.video](https://hailuoai.video) \| CN: [hailuoai\.com](https://hailuoai.com/)
|
| 80 |
+
|
| 81 |
+
- Desktop Global: [hub\.minimax\.io](https://hub.minimax.io/) \| CN: [hub\.minimaxi\.com](https://hub.minimaxi.com/)
|
| 82 |
+
|
| 83 |
## Model Architecture
|
| 84 |
|
| 85 |
### H3\-Context\-IR
|
|
|
|
| 192 |
└── audio_vae/
|
| 193 |
```
|
| 194 |
|
| 195 |
+
Download the model:
|
|
|
|
|
|
|
| 196 |
|
| 197 |
```bash
|
| 198 |
+
hf download MiniMaxAI/MiniMax-H3 --local-dir MiniMax-H3
|
|
|
|
|
|
|
|
|
|
|
|
|
| 199 |
```
|
| 200 |
|
|
|
|
|
|
|
| 201 |
We recommend the following inference frameworks to serve the model:
|
| 202 |
|
| 203 |
- [SGLang](https://docs.sglang.io/) \- see [cookbook](https://docs.sglang.io/cookbook/diffusion/MiniMax/MiniMax-H3)
|
| 204 |
|
| 205 |
- [vLLM](https://github.com/vllm-project/vllm) \- see [vllm recipes](https://recipes.vllm.ai/MiniMaxAI/MiniMax-H3)
|
| 206 |
|
| 207 |
+
- [diffusers](https://github.com/huggingface/diffusers) \- see [diffusers docs](https://huggingface.co/docs/diffusers/en/api/models/autoencoderkl_minimax_h3)
|
| 208 |
|
| 209 |
- [ComfyUI](https://github.com/Comfy-Org/ComfyUI) \- see [Comfy tutorial](https://docs.comfy.org/tutorials/video/minimax/minimax-h3); use [R2V template](https://github.com/Comfy-Org/workflow_templates/blob/main/templates/video_minimax_h3_r2v.json) / [T2V template](https://github.com/Comfy-Org/workflow_templates/blob/main/templates/video_minimax_h3_t2v.json)
|
| 210 |
|
|
|
|
| 269 |
|
| 270 |
MiniMax platform:
|
| 271 |
|
| 272 |
+
- CN: https://platform.minimaxi.com
|
| 273 |
+
- Global: https://platform.minimax.io
|
|
|
|
|
|
|
|
|
|
| 274 |
|
| 275 |
The examples below encode local H3\-Base output files as Base64 Data URLs\. For production use, uploading the video to a publicly accessible URL and passing that URL as `base_video` is recommended\.
|
| 276 |
|
|
|
|
| 399 |
|
| 400 |
[VIDEO\_PROMPT\_WRITING\_GUIDE\_ref\_en\.md](docs/VIDEO_PROMPT_WRITING_GUIDE_ref_en.md)
|
| 401 |
|
| 402 |
+
|
| 403 |
|
| 404 |
## License
|
| 405 |
|
| 406 |
+
MiniMax H3 is released under the [MiniMax H3 Community License Agreement](LICENSE). [Q&A about License](docs/QA-about-License.md)
|
| 407 |
|
| 408 |
## Contact Us
|
| 409 |
|
assets/action-reference.mov
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:116e0f08a399834e7ffc3472d036659b33250f4ba4f0b7e63f17ec07cb58e4dc
|
| 3 |
+
size 31446151
|
assets/character-action-reference.png
ADDED
|
Git LFS Details
|
assets/character-replacement-action-reference.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:796c264126110d87992dcb54213ac0697920cb4ddf3d5a06aa36069386fc4fa1
|
| 3 |
+
size 8223683
|
assets/fashion-glasses-ad.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a11e6b0095dd7766b724bb886edf4d7d9930af44da6839ee195269ac4fc60ba4
|
| 3 |
+
size 10938085
|
assets/fashion-glasses-reference-1.png
ADDED
|
Git LFS Details
|
assets/fashion-glasses-reference-2.png
ADDED
|
Git LFS Details
|
assets/fashion-glasses-reference-3.png
ADDED
|
Git LFS Details
|
assets/fashion-glasses-reference-4.png
ADDED
|
Git LFS Details
|
assets/fl2va-clay-fox-reference.png
ADDED
|
Git LFS Details
|
assets/fl2va-clay-fox.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4604b0838b736ecaa209c978f880bfacbb3a0fc82a8a0517c1f5aa16454b50ef
|
| 3 |
+
size 10931936
|
assets/h3-architecture.png
ADDED
|
Git LFS Details
|
assets/h3-cinematic-shot.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:436defc81cfa7d53aef423f368be82ead20056088087e0be308b6e3865e8fb81
|
| 3 |
+
size 4361547
|
assets/h3-suspense-title.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90ebbd7edc71c9a0151c3064126acd2dbb5b7cba58ce459e223e29f2c04f9186
|
| 3 |
+
size 16809220
|
assets/logo.svg
ADDED
|
|
assets/reference-image-1.png
ADDED
|
Git LFS Details
|
assets/reference-image-2.png
ADDED
|
Git LFS Details
|
assets/robot-arm-red-cube.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a751e6100dbf6502a99a2adc0b12171304ca7b17eecea70e2ed035a73ea692c
|
| 3 |
+
size 2259732
|
assets/t2va-768p-demo.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d66903241362e224085cc93f7a5e70fba6ab378d0ac6ff6af83acf2559849a42
|
| 3 |
+
size 1637373
|
model_index.json
DELETED
|
@@ -1,131 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"_class_name": "MiniMaxH3ModularPipeline",
|
| 3 |
-
"_diffusers_version": "0.36.0.dev0",
|
| 4 |
-
"_blocks_class_name": "MiniMaxH3Blocks",
|
| 5 |
-
"text_encoder": [
|
| 6 |
-
"transformers",
|
| 7 |
-
"Qwen3VLForConditionalGeneration",
|
| 8 |
-
{
|
| 9 |
-
"type_hint": [
|
| 10 |
-
"transformers",
|
| 11 |
-
"Qwen3VLForConditionalGeneration"
|
| 12 |
-
],
|
| 13 |
-
"pretrained_model_name_or_path": "MiniMaxAI/MiniMax-H3",
|
| 14 |
-
"subfolder": "text_encoder",
|
| 15 |
-
"variant": null,
|
| 16 |
-
"revision": null
|
| 17 |
-
}
|
| 18 |
-
],
|
| 19 |
-
"tokenizer": [
|
| 20 |
-
"transformers",
|
| 21 |
-
"Qwen2TokenizerFast",
|
| 22 |
-
{
|
| 23 |
-
"type_hint": [
|
| 24 |
-
"transformers",
|
| 25 |
-
"Qwen2TokenizerFast"
|
| 26 |
-
],
|
| 27 |
-
"pretrained_model_name_or_path": "MiniMaxAI/MiniMax-H3",
|
| 28 |
-
"subfolder": "tokenizer",
|
| 29 |
-
"variant": null,
|
| 30 |
-
"revision": null
|
| 31 |
-
}
|
| 32 |
-
],
|
| 33 |
-
"processor": [
|
| 34 |
-
"transformers",
|
| 35 |
-
"Qwen3VLProcessor",
|
| 36 |
-
{
|
| 37 |
-
"type_hint": [
|
| 38 |
-
"transformers",
|
| 39 |
-
"Qwen3VLProcessor"
|
| 40 |
-
],
|
| 41 |
-
"pretrained_model_name_or_path": "MiniMaxAI/MiniMax-H3",
|
| 42 |
-
"subfolder": "processor",
|
| 43 |
-
"variant": null,
|
| 44 |
-
"revision": null
|
| 45 |
-
}
|
| 46 |
-
],
|
| 47 |
-
"vae": [
|
| 48 |
-
"diffusers",
|
| 49 |
-
"AutoencoderKLMiniMaxH3",
|
| 50 |
-
{
|
| 51 |
-
"type_hint": [
|
| 52 |
-
"diffusers",
|
| 53 |
-
"AutoencoderKLMiniMaxH3"
|
| 54 |
-
],
|
| 55 |
-
"pretrained_model_name_or_path": "MiniMaxAI/MiniMax-H3",
|
| 56 |
-
"subfolder": "vae",
|
| 57 |
-
"variant": null,
|
| 58 |
-
"revision": null
|
| 59 |
-
}
|
| 60 |
-
],
|
| 61 |
-
"audio_vae": [
|
| 62 |
-
"diffusers",
|
| 63 |
-
"AutoencoderKLMiniMaxH3Audio",
|
| 64 |
-
{
|
| 65 |
-
"type_hint": [
|
| 66 |
-
"diffusers",
|
| 67 |
-
"AutoencoderKLMiniMaxH3Audio"
|
| 68 |
-
],
|
| 69 |
-
"pretrained_model_name_or_path": "MiniMaxAI/MiniMax-H3",
|
| 70 |
-
"subfolder": "audio_vae",
|
| 71 |
-
"variant": null,
|
| 72 |
-
"revision": null
|
| 73 |
-
}
|
| 74 |
-
],
|
| 75 |
-
"transformer": [
|
| 76 |
-
"diffusers",
|
| 77 |
-
"MiniMaxH3Transformer3DModel",
|
| 78 |
-
{
|
| 79 |
-
"type_hint": [
|
| 80 |
-
"diffusers",
|
| 81 |
-
"MiniMaxH3Transformer3DModel"
|
| 82 |
-
],
|
| 83 |
-
"pretrained_model_name_or_path": "MiniMaxAI/MiniMax-H3",
|
| 84 |
-
"subfolder": "transformer",
|
| 85 |
-
"variant": null,
|
| 86 |
-
"revision": null
|
| 87 |
-
}
|
| 88 |
-
],
|
| 89 |
-
"transformer_ref": [
|
| 90 |
-
"diffusers",
|
| 91 |
-
"MiniMaxH3Transformer3DModel",
|
| 92 |
-
{
|
| 93 |
-
"type_hint": [
|
| 94 |
-
"diffusers",
|
| 95 |
-
"MiniMaxH3Transformer3DModel"
|
| 96 |
-
],
|
| 97 |
-
"pretrained_model_name_or_path": "MiniMaxAI/MiniMax-H3",
|
| 98 |
-
"subfolder": "transformer_ref",
|
| 99 |
-
"variant": null,
|
| 100 |
-
"revision": null
|
| 101 |
-
}
|
| 102 |
-
],
|
| 103 |
-
"scheduler": [
|
| 104 |
-
"diffusers",
|
| 105 |
-
"MiniMaxH3Scheduler",
|
| 106 |
-
{
|
| 107 |
-
"type_hint": [
|
| 108 |
-
"diffusers",
|
| 109 |
-
"MiniMaxH3Scheduler"
|
| 110 |
-
],
|
| 111 |
-
"pretrained_model_name_or_path": "MiniMaxAI/MiniMax-H3",
|
| 112 |
-
"subfolder": "scheduler",
|
| 113 |
-
"variant": null,
|
| 114 |
-
"revision": null
|
| 115 |
-
}
|
| 116 |
-
],
|
| 117 |
-
"audio_scheduler": [
|
| 118 |
-
"diffusers",
|
| 119 |
-
"MiniMaxH3Scheduler",
|
| 120 |
-
{
|
| 121 |
-
"type_hint": [
|
| 122 |
-
"diffusers",
|
| 123 |
-
"MiniMaxH3Scheduler"
|
| 124 |
-
],
|
| 125 |
-
"pretrained_model_name_or_path": "MiniMaxAI/MiniMax-H3",
|
| 126 |
-
"subfolder": "audio_scheduler",
|
| 127 |
-
"variant": null,
|
| 128 |
-
"revision": null
|
| 129 |
-
}
|
| 130 |
-
]
|
| 131 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|