SODA answered how to scale a flattened discrete-audio LM. It did not answer whether flattening is
the right thing to scale.
So: at matched training compute, does a CSM/Moshi-style hierarchical factorization model speech
better?
SODA turns each 80 ms audio frame into 8 Mimi RVQ tokens (1 semantic + 7 acoustic) and
flattens them into one long
stream, which a single decoder models with uniform cross-entropy. Our scaling study derived
compute-optimal allocation rules for that setup. But an allocation rule only covers the design space it
was fit on—if a different
factorization has a different frontier, the rules move with it. Testing that is the natural next step on
our own result.
The alternative, such as
CSM (Sesame) and
Moshi (Kyutai), factorizes hierarchically: a
backbone transformer whose
positions are “steps” (one text token, or one whole audio frame summed from its codebook
embeddings), plus a small depth
transformer that predicts the remaining acoustic codebooks inside each frame. It is what much of the field
builds. Comparisons
between the two families, though, tend to differ in data, tokenizer and compute budget as well as in
factorization, which makes the
contribution of the factorization itself hard to isolate. We built this campaign so the two arms differ in
exactly one thing.
There is also a standing practical reason to want the answer before scaling further. The hierarchy carries
a KV cache of length
T instead of 8T, and decodes audio for roughly 7× fewer FLOPs per
generated second. If it is
also competitive in quality, that changes what is worth serving.
Two positions this study could support:
- Flattened. Within-frame left-to-right attention over all 8 codebooks is worth what it
costs, and a single head
over a 144,644-token vocabulary is a strong joint model.
- Hierarchical. Spending sequence positions 8× more cheaply frees backbone
capacity for long-range structure,
and a small depth transformer suffices for within-frame acoustics. We do not apply a
delay pattern, keeping the comparison against the flattened arm as tight as possible.