Views
No views yet
| Architecture | hierarchical (backbone over steps + depth transformer over codebook slots) |
| Loss recipe | uniform cross-entropy over all tokens |
| Compute budget (3× forward FLOPs) | 3e18 |
| Backbone | d=768, L=8 |
| Depth transformer | d=384, L=4 |
| Window | 1024 steps |
| Total parameters (incl. embeddings) | 308M |
| Training step | 56570 |
| 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/p1b-hier-uniform-ddf05167", trust_remote_code=True)
4model = AutoModelForCausalLM.from_pretrained("soda-research/p1b-hier-uniform-ddf05167", trust_remote_code=True)