# Spirit LM Checkpoints ## Download Checkpoints Checkpoints are in this repo Please note that Spirit LM is made available under the **FAIR Noncommercial Research License** License is here: https://github.com/facebookresearch/spiritlm/blob/main/LICENSE ## Structure The checkpoints directory should look like this: ``` checkpoints/ ├── README.md ├── speech_tokenizer │   ├── hifigan_spiritlm_base │   │   ├── config.json │   │   ├── generator.pt │   │   ├── speakers.txt │   │   └── styles.txt │   ├── hifigan_spiritlm_expressive_w2v2 │   │   ├── config.json │   │   ├── generator.pt │   │   └── speakers.txt │   ├── hubert_25hz │   │   ├── L11_quantizer_500.pt │   │   └── mhubert_base_25hz.pt │   ├── style_encoder_w2v2 │   │   ├── config.json │   │   └── pytorch_model.bin │   └── vqvae_f0_quantizer │   ├── config.yaml │   └── model.pt └── spiritlm_model ├── spirit-lm-base-7b │   ├── config.json │   ├── generation_config.json │   ├── pytorch_model.bin │   ├── special_tokens_map.json │   ├── tokenizer_config.json │   └── tokenizer.model └── spirit-lm-expressive-7b ├── config.json ├── generation_config.json ├── pytorch_model.bin ├── special_tokens_map.json ├── tokenizer_config.json └── tokenizer.model ```