multimodalart HF Staff commited on
Commit
ab5ad1e
·
1 Parent(s): 57e8935

Load weights from MiniMaxAI/MiniMax-Music3 (#1)

Browse files

- Load weights from MiniMaxAI/MiniMax-Music3 (5272e579dbcc4b947e9021bbf13c10c28cfa8ab0)
- Rebase on main (theme-aware logo), keep only the MiniMaxAI/MiniMax-Music3 swap (bc8fe79830f9f35182f9f2cdbda38953219cd761)
- Rebuild on current main (57e8935): keep only the MiniMaxAI/MiniMax-Music3 swap (30702c273ba7eb4d5152157d91f2f1f5178a4182)

Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +1 -1
README.md CHANGED
@@ -17,7 +17,7 @@ The input surface is a single Suno-inspired custom `gr.HTML` composer (Simple
17
  chips, structured-caption fields per the official prompting guide) that drives Gradio events via
18
  `trigger()`/`props.value`; styling uses only theme CSS vars so it follows the Citrus theme natively.
19
 
20
- - Weights: `diffusers-internal-dev/MiniMax-Music3-Diffusers` (private)
21
  - AoTI kernels: `diffusers-internal-dev/MiniMax-Music3-aoti` (compiled on RTX Pro 6000, matching ZeroGPU hardware)
22
  - Generation streams chunk by chunk with a configurable playback headroom. The 8B language-model stage runs eager
23
  on ZeroGPU (its JIT StaticCache ladder needs a persistent process); AoTI-exporting the LM decode step per cache
 
17
  chips, structured-caption fields per the official prompting guide) that drives Gradio events via
18
  `trigger()`/`props.value`; styling uses only theme CSS vars so it follows the Citrus theme natively.
19
 
20
+ - Weights: `MiniMaxAI/MiniMax-Music3`
21
  - AoTI kernels: `diffusers-internal-dev/MiniMax-Music3-aoti` (compiled on RTX Pro 6000, matching ZeroGPU hardware)
22
  - Generation streams chunk by chunk with a configurable playback headroom. The 8B language-model stage runs eager
23
  on ZeroGPU (its JIT StaticCache ladder needs a persistent process); AoTI-exporting the LM decode step per cache
app.py CHANGED
@@ -14,7 +14,7 @@ from huggingface_hub import snapshot_download
14
  from diffusers import ModularPipeline
15
  from diffusers.models.modeling_outputs import Transformer2DModelOutput
16
 
17
- PIPE = ModularPipeline.from_pretrained("diffusers-internal-dev/MiniMax-Music3-Diffusers")
18
  PIPE.load_components(dtype=torch.bfloat16)
19
  PIPE.to("cuda")
20
 
 
14
  from diffusers import ModularPipeline
15
  from diffusers.models.modeling_outputs import Transformer2DModelOutput
16
 
17
+ PIPE = ModularPipeline.from_pretrained("MiniMaxAI/MiniMax-Music3")
18
  PIPE.load_components(dtype=torch.bfloat16)
19
  PIPE.to("cuda")
20