Meta FAIR Study Predicts Byte-Level Distillation Beats Token Models as Compute Scales
End-Of-Token training method cuts logit storage to one-fifth and matches token accuracy at one-sixth the data

Researchers at Meta FAIR and the University of Washington posted a paper on September 11 showing that distilling a large language model's knowledge into a byte-level student — rather than a token-level one — raises the predicted performance ceiling by 4 percentage points over token-based distillation, while requiring only a sixth of the training data to reach equivalent accuracy. The study, titled "Breaking the Token Ceiling: Distilling Smaller, Stronger Byte Models," is the first large-scale overtraining comparison of byte and token student models at matched architecture and a trillion bytes of training data, and it surfaces a structural inefficiency in standard offline distillation pipelines that has received little attention.
Tokenization Creates a Hidden Ceiling in Knowledge Distillation
Standard knowledge distillation for small language models works by training a compact student to mimic a larger teacher's probability distributions over its vocabulary. The teacher model — in this study, Llama 3-8B — predicts a likelihood score across every token in its vocabulary at every position in the text. For Llama 3-8B, that vocabulary contains 128,256 tokens.
Storing the full distribution across 128,256 candidates for every training position is impractical. A single high-quality dataset run through a teacher model would generate hundreds of terabytes of logit data if stored completely. The industry standard workaround is top-k truncation: save only the highest-probability candidates — the paper uses a top-600 threshold — and discard the rest. The student model never sees the tail of the teacher's distribution.
Byte-level models predict the next raw byte of text rather than the next subword token. Because a byte is an 8-bit unit, there are exactly 256 possible values. Even with a handful of special characters added, the byte vocabulary stays below 260 entries. The complete probability distribution for every prediction position occupies roughly 256 floats — less than half the storage of the top-600 truncated token distribution. Across a trillion-byte training run, the paper reports that byte distillation reduces logit storage to approximately one-fifth of what equivalent token distillation requires.
This storage difference is not cosmetic. When a token-level student is trained on truncated logits, it receives only an approximation of the teacher's uncertainty. The tail of a token distribution often encodes meaningful distinctions — that "tiramisu" is also plausibly "tiramisi" or "tiramisù," for example. Byte distillation captures those distinctions within a much smaller prediction space, without any truncation.
End-Of-Token vs. Marginalize-It: Two Ways to Convert Teacher Knowledge
The paper's central technical contribution is a pair of methods that convert a token-trained teacher's probability distributions into byte-level training targets. Both methods must solve the same fundamental mismatch: the teacher predicts over multi-byte tokens while the student predicts one byte at a time.
The simpler approach, called Marginalize-It, works by walking through the true byte sequence and at each position aggregating the probabilities of all teacher candidates that share the same byte prefix. If the next true byte in a training example is "i," the method sums the teacher probabilities for every candidate token that begins with "i" — isu, isk, is, and so on. When a token candidate ends mid-sequence (that is, the candidate "is" terminates while the true text continues), Marginalize-It stops tracking it and renormalizes the remaining probability mass among the candidates that still share the current prefix. This approach requires only a single teacher forward pass per position and is computationally efficient. Its limitation is that it discards the probability mass belonging to token candidates that ended early, introducing an approximation into the byte-level targets.
The second approach, End-Of-Token, takes a different path. Instead of discarding probability mass when a candidate token ends, it inserts a special end-of-token marker byte into the vocabulary. The student model can now explicitly predict "this is where the current token ends" as one of its 257 possible outputs. When the teacher assigns probability to a short candidate like "is" and the true text continues past it, End-Of-Token routes that probability mass to the end-of-token symbol, rather than throwing it away. The resulting byte-level targets preserve the full teacher distribution across all positions, without approximation. As with Marginalize-It, End-Of-Token requires only a single teacher forward pass. The extra marker byte increases training computation by approximately 30.94 percent relative to a plain byte model, because each token boundary introduces an additional prediction step.
Scaling Laws Favor Byte Students at Higher Compute
The paper's experimental design pits six model configurations against one another: three tokenization schemes (token, plain byte, byte with end-of-token marker) each trained under both standard cross-entropy supervision and distillation from Llama 3-8B. All student Transformer backbones share the same number of layers and approximately 1.28 billion layer parameters; the token student carries an additional embedding table that pushes its total parameter count to roughly 1.81 billion. Training ran up to approximately one trillion bytes.
In the early compute regime, token models learn faster. Their larger vocabulary compresses text into fewer prediction steps per sentence, which means the model sees more semantic content per training FLOP. Byte models start slower because they must predict each character one byte at a time.
As compute increases, the trend reverses. Token models plateau first. The paper's scaling analysis fits curves from bits-per-byte loss — a tokenization-agnostic prediction metric that normalizes performance to a common byte-level unit — to downstream task accuracy across eight benchmarks covering multiple-choice question answering, language generation, and machine translation. Extrapolating these curves to higher compute, the scaling laws predict the following asymptotic accuracy ceilings: token distillation reaches 48.4 percent; Marginalize-It distillation reaches 50.5 percent; End-Of-Token distillation reaches 52.4 percent. The plain byte supervised model sits at 51.2 percent. These are author-reported scaling extrapolations, not empirically validated results at those compute levels.
Three findings in these numbers deserve close attention. First, End-Of-Token distillation beats Marginalize-It by nearly 2 percentage points, which the paper attributes to the information lost when Marginalize-It drops probability mass at token boundaries. Second, Marginalize-It's ceiling actually falls below the plain byte supervised model despite the distillation signal — a result consistent with the hypothesis that the approximation error in Marginalize-It cancels out the advantage of having a teacher. Third, the End-Of-Token gap over token distillation is 4 percentage points: a meaningful difference for a sub-2B model class where competitive products from Meta, Google, and others cluster within a few points of each other.
The paper also reports a data-efficiency advantage. End-Of-Token distillation is predicted to reach the same downstream performance as token distillation while using approximately one-sixth of the training data. For offline distillation pipelines — where the teacher's logit outputs are precomputed and stored before student training begins — this means the byte approach is cheaper to operate in storage and data terms even before any compute advantage materializes.
How This Fits Into the Broader Byte Modeling Program at Meta FAIR
The research team overlaps substantially with the authors of the Byte Latent Transformer (BLT), a Meta FAIR and University of Washington paper released in December 2024 that took a different approach to eliminating tokenization. BLT trained models directly on raw byte sequences, grouping bytes dynamically into variable-length patches using next-byte entropy as a segmentation signal. At 8B parameters and 4 trillion training bytes, BLT matched the performance of BPE-tokenized Llama models for the first time, demonstrating that tokenizer-free pretraining at scale was feasible.
The current paper addresses a different practical problem. Pretraining a byte model from scratch at production scale is expensive — the BLT experiments consumed 4 trillion bytes and required substantial GPU infrastructure. Distillation from an existing token model is cheaper: it reuses the teacher's already-trained representations rather than learning them from scratch. A February 2026 paper from Bao, Leng, and colleagues also explored converting pretrained token LLMs to byte-level models through a two-stage curriculum, demonstrating that Llama, Qwen, and OLMo could retain most of their capabilities with around 125 billion bytes of distillation — far less than pretraining from scratch.
The September 2026 paper does not convert a pretrained model; it trains byte students jointly from scratch while distilling from a Llama 3-8B teacher. Its contribution is to establish, for the first time, what the scaling laws look like for this training regime — and to show that those laws predict byte distillation has a higher capability ceiling than token distillation as compute increases.
Where the Performance Gap Has Not Been Resolved
The study's most important unresolved question is inference cost. During training, End-Of-Token processes each token boundary as an additional byte prediction, adding roughly 31 percent to compute per unit of text versus a plain byte model. At inference time, a byte-level autoregressive model must also generate one output byte at a time, while a token model generates roughly four bytes' worth of text per prediction step on average. This means a byte model currently requires more forward passes to generate the same amount of text.
The paper explicitly acknowledges that it has not produced a fair inference-cost comparison between byte and token models at equivalent generation throughput. The asymptotic performance advantage of End-Of-Token distillation is a prediction at equal training compute, not at equal inference latency or equal inference FLOP budget. Whether a byte model that is 4 percentage points more accurate on downstream tasks is still competitive when accounting for its higher inference cost is the central open question the research leaves unanswered.
A second limitation is that the extrapolated accuracy figures — 52.4 percent for End-Of-Token, 48.4 percent for token distillation — are not empirically validated at the compute levels where the curves cross. The crossover is predicted to occur at 6.33×10²² FLOPs. The extrapolation depends on power-law fits that hold well in the observed range but can deviate at higher scale. An independent review from Pith, a scientific review service, confirmed the paper's technical contribution while noting that the headline 4 percent asymptotic claim rests on extrapolation that the authors themselves flag as fragile in Appendix E.
The paper's scaling laws also predict that End-Of-Token-1B will asymptotically surpass Llama 3.2-1B, Gemma-3-1B-pt, and Gemma 2B by up to 6.5, 8.1, and 2.1 percentage points, respectively. These projections carry the same caveat: they are based on scaling curves, not side-by-side evaluations at matched inference budgets.
What Closing the Inference Gap Would Mean
If future work resolves the inference overhead — through techniques such as speculative decoding, multi-byte prediction heads, or hierarchical architectures that batch byte predictions — the byte distillation approach could reshape how practitioners think about the small model design space.
The current paradigm for building capable sub-2B models is to either train with heavy compute (as with Llama 3.2-1B and Gemma-3-1B-pt) or to distill from a larger model in the same tokenization family. Both paths are bounded by the same logit truncation problem. A byte distillation pipeline that stores complete teacher distributions at one-fifth the cost, requires one-sixth the training data to reach parity, and predicts a 4-point ceiling advantage offers a structurally different tradeoff — one that benefits organizations with constrained data and storage budgets rather than those with unlimited GPU hours.
The paper's authors acknowledge that the field needs an inference-cost-controlled comparison before byte distillation can be recommended as a production strategy. Until that benchmark is published, End-Of-Token remains the highest-predicted-ceiling approach on the table and the strongest available argument that tokenization is not just an engineering legacy but an active constraint on what knowledge a distilled small model can absorb.