Views
No views yet
| File | Size | Description |
|---|---|---|
decoder.pt | 212MB | Fine-tuned speech decoder weights |
audio_head.pt | 124MB | Fine-tuned audio prediction head |
projection.pt | 4MB | Fine-tuned projection layer |
model_merged.pt | 2.9GB | Full merged model (ready to load) |
1# Load the merged model directly
2import torch
3
4# The merged model can be loaded as a drop-in replacement for CSM-1B
5model_state = torch.load("model_merged.pt", map_location="cuda")
6
7# Or load individual components for surgical replacement
8decoder_state = torch.load("decoder.pt", map_location="cuda")
9audio_head_state = torch.load("audio_head.pt", map_location="cuda")
10projection_state = torch.load("projection.pt", map_location="cuda")1@misc{csm2025sesame,
2 title={CSM: Conversational Speech Model},
3 author={Sesame},
4 year={2025},
5 url={https://github.com/SesameAILabs/csm}
6}