# Checkpoints (pointers only — no weights in Git) This directory intentionally contains **no model weights**. Trained adapters/encoders are distributed separately (Hugging Face) and are pulled in by you. See [../MODEL_CARD.md](../MODEL_CARD.md) for what each one is and its gate result. > ⚠️ **Before any of these are uploaded/redistributed:** confirm the > MiniMax-Music3 license permits derivative-weight redistribution (see > [../THIRD_PARTY.md](../THIRD_PARTY.md)). These checkpoints were trained through > the frozen Music3 decoder / on captured Music3 state and may be governed by it. ## Expected layout once downloaded Place downloaded checkpoints here (git-ignored) or point configs at them: ``` checkpoints/ ├── flow-encoder/encoder.safetensors # base continuous encoder (~1.34 ms) ├── external-finetune/encoder.safetensors # rejected real-music specialist ├── masked-flow-inpaint/adapter.safetensors # captured-condition inpaint pilot ├── native-state-stage0-v3/native_state_stage0.safetensors ├── native-state-distill/native_state_distilled.safetensors └── ... # failed-experiment adapters (see MODEL_CARD) ``` ## Downloading (once the HF repo exists and license is confirmed) ```bash hf download /music3lab-adapters --local-dir ./checkpoints ``` `/music3lab-adapters` is a placeholder — replace with the real Hugging Face repo id after the license review. Until then, this directory is a pointer only.