Long-context evaluation · sequence mixers

Mixing Matters? Evidence and Its Limits for Position Bias Across Sequence Mixers

Author list withheld pending review New in ML @ NeurIPS 2026 · under submission

Summary

The same evidence, moved

The same evidence is not equally usable everywhere. The measured curve depends on the model, prompt, and task.

Hide an answer inside a long context and models find it more easily near the edges than in the middle. That "lost in the middle" result was measured on transformers, but it now gets quoted as a fact about long context itself, including for architectures that work nothing like one.

So we tested it. Within each question, we slide one answer-bearing passage through every position of a fixed document set while preserving the distractors, question, and decoding setup. We repeat that paired sweep across attention, state-space, and hybrid models on identical exploratory questions.

The exploratory 2.8B family curves split at the beginning. Pythia favours the opening, while the two compared Mamba checkpoints do not, and all three favour the end. Depth, positional encoding, state size, checkpoint family, and capability remain confounded, so this is a measured family difference rather than an isolated architecture effect.

Intervention

One passage, ten positions, nothing else moved

The unit of analysis is the question, not the generation. Every bootstrap resample draws complete bundles of all ten positions together, so the interval covers variation across questions rather than across independently sampled prompts.

Design of the position sweep

Answer-bearing passage: the one document that contains the answer Distractor: retrieved for the same question, but does not answer it The question, always last
Position 1 Position 5 Position 10 Question Question Question 1 2 3 4 5 6 7 8 9 10 The nine distractors keep their identity and their relative order in every row.
Each question contributes twelve generations per model: ten gold positions, one closed-book condition that anchors guessing, and one gold-only oracle condition that anchors answerability. Within a question, prompt length varies by at most one token across the ten positions.

How the two effects are measured

Both numbers are one subtraction: an end of the context, minus the middle.

start middle end A₁ A₂ A₃ A₄ A₅ A₆ A₇ A₈ A₉ A₁₀ slot 1 2 3 4 5 6 7 8 9 10

Each slot above has its own accuracy. A5 is how often the model answers correctly when the answer sits in slot 5, and so on for every slot.

primacy = accuracy at start accuracy in middle
12 ( A1+A2 ) 12 ( A5+A6 )
recency = accuracy at end accuracy in middle
12 ( A9+A10 ) 12 ( A5+A6 )
Positive primacy means the opening is read better than the middle; positive recency, the closing. An effect of +5 points is five more correct answers per hundred questions. Every number comes from a question set held separate from a larger one that has never been opened.
Main result

Position curves by sequence mixer

Switch between the exploratory family comparison, the tightly matched 8B checkpoint contrast, the corpus control, and the production systems. Colour encodes the mixer class: attention, state-space, hybrid.

Why the matched 8B panel matters, and why it is not a verdict

If attention contributes to primacy, the released pure and hybrid 8B checkpoints provide the tightest comparison in this study. They come from the same lab, training data, and scale, but the hybrid changes both attention and MLP composition, so the contrast is not attention-only.

The hybrid does show a primacy effect on its own, and the pure model does not. But the honest comparison is the gap between them, and that gap is small with an interval that still includes zero. So the result points the same way as the main comparison without proving the case.

All comparisons

Which differences hold up

Every comparison on this page puts two models against each other on exactly the same questions. That matters: it means the difference is measured directly, rather than inferred from two separate scores.

Model size

The measured gap is not present at every size

Repeating the family comparison at five approximate size pairs finds a near-zero gap in the two weakest pairs and a positive gap in the three capable pairs. This descriptive pattern does not establish a causal size threshold.

Calibration

Proving the instrument can see the effect

A null result is only informative if the measurement could have detected a real effect. Before any model comparison, the harness was shown to recover a known position effect end to end.

Citation

Cite this work

The public author list and archival URL are not yet available. Until they are, please cite by title.

@misc{mixingmatters2026,
  title  = {Mixing Matters? Evidence and Its Limits for Position Bias
            Across Sequence Mixers},
  note   = {New in ML workshop submission},
  year   = {2026}
}

This work builds on the position-intervention protocol of Liu et al. (2024) and evaluates models introduced by Biderman et al. (2023), Gu and Dao (2024), Dao and Gu (2024), and Waleffe et al. (2024). Synthetic retrieval uses RULER; the sink analysis follows Xiao et al. (2024).