Views
No views yet
| Architecture | hierarchical (backbone over steps + depth transformer over codebook slots) |
| Loss recipe | Moshi-style alpha = 100/100/1 (text/semantic/acoustic) |
| Compute budget (3× forward FLOPs) | 3e18 |
| Backbone | d=512, L=6 |
| Depth transformer | d=256, L=4 |
| Window | 1024 steps |
| Total parameters (incl. embeddings) | 178M |
| Training step | 56222 |
| Audio | Mimi RVQ, 1 semantic + 7 acoustic codebooks, 12.5 Hz |
modeling_soda_hier.py, configuration_soda_hier.py) and loads with
trust_remote_code:1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tok = AutoTokenizer.from_pretrained("soda-research/p2-hier-d512-09a1dd5a", trust_remote_code=True)
4model = AutoModelForCausalLM.from_pretrained("soda-research/p2-hier-d512-09a1dd5a", trust_remote_code=True)