Text-to-Video
Diffusers
Safetensors
MiniMax H3
video
audio
text-to-audio-video
distillation
dmd2
few-step
fastvideo
fasth3
Instructions to use FastVideo/FastVideo-Minimax-FastH3-Preview-v0.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use FastVideo/FastVideo-Minimax-FastH3-Preview-v0.1 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("FastVideo/FastVideo-Minimax-FastH3-Preview-v0.1", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
docs: add linked FastH3 acknowledgements
Browse files
README.md
CHANGED
|
@@ -99,3 +99,11 @@ acceptable-use terms) before use or redistribution.
|
|
| 99 |
packaged here; its entry in `modular_model_index.json` points at the base
|
| 100 |
`MiniMaxAI/MiniMax-H3` repo and is fetched from there if used. This preview
|
| 101 |
distills the text-to-video+audio path only.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
packaged here; its entry in `modular_model_index.json` points at the base
|
| 100 |
`MiniMaxAI/MiniMax-H3` repo and is fetched from there if used. This preview
|
| 101 |
distills the text-to-video+audio path only.
|
| 102 |
+
|
| 103 |
+
## Acknowledgements
|
| 104 |
+
|
| 105 |
+
We thank [Nuva Lab](https://nuvalab.ai/) for bringing production grounding to FastH3 through its experience with real-world creative video-agent workloads. Its production-aligned post-training insights help bridge open-source research to practical data-assisted distillation for commercial video workflows, with Omni Ref as the next focus.
|
| 106 |
+
|
| 107 |
+
We thank the [NVIDIA FastGen](https://github.com/NVlabs/FastGen) team for the [DMD2](https://arxiv.org/abs/2405.14867) framework and H3 reference experiment that helped us align the score clock, modality shifts, and backward simulation.
|
| 108 |
+
|
| 109 |
+
We also thank [MiniMax](https://huggingface.co/MiniMaxAI/MiniMax-H3) for releasing H3-Base, and the [vLLM project](https://vllm.ai/), [NVIDIA](https://www.nvidia.com/en-us/), and [MBZUAI](https://mbzuai.ac.ae/) for their continued sponsorship and support of [FastVideo](https://github.com/hao-ai-lab/FastVideo).
|