Text-to-Audio
Diffusers
Safetensors
PyTorch
minimax_music3
music-generation
text-to-music
sglang-omni
Instructions to use MiniMaxAI/MiniMax-Music3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use MiniMaxAI/MiniMax-Music3 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-Music3", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -118,9 +118,7 @@ We recommend the following inference frameworks to serve the model:
|
|
| 118 |
### Serve with SGLang-Omni
|
| 119 |
|
| 120 |
```bash
|
| 121 |
-
sgl-omni serve
|
| 122 |
-
--model-path /path/to/minimax_ttm \
|
| 123 |
-
--port 8000
|
| 124 |
```
|
| 125 |
|
| 126 |
### Generate Music
|
|
|
|
| 118 |
### Serve with SGLang-Omni
|
| 119 |
|
| 120 |
```bash
|
| 121 |
+
sgl-omni serve --model-path MiniMaxAI/MiniMax-Music3 --port 8000
|
|
|
|
|
|
|
| 122 |
```
|
| 123 |
|
| 124 |
### Generate Music
|