Frontier Lab Notes

Open Research Questions Frontier LLM Architectures

This note turns the learning sphere into research taste. A frontier researcher is always asking which bottleneck matters, what evidence would be convincing, and what experiment would change their mind.

Architecture

Attention And Memory

MoE

Scaling

Data

Post-Training

Systems

Personal Research Practice

For each question, maintain:

How To Turn A Question Into A Project

Use this pattern:

  1. Pick one bottleneck.
  2. Write the current best guess.
  3. Find the strongest baseline.
  4. Build the smallest toy version.
  5. Measure loss, capability, and systems cost.
  6. Inspect failures manually.
  7. Decide whether the idea deserves scale.

Example:

Question: Does GQA hurt retrieval at long context?
Toy project: train or load small MHA/GQA models, run controlled retrieval tasks, sweep context length, measure KV memory and accuracy by answer position.
Connected notes: [Attention Mechanics and KV Cache](Attention%20Mechanics%20and%20KV%20Cache.md), [Long Context and Efficient Sequence Models](Long%20Context%20and%20Efficient%20Sequence%20Models.md), [Evaluation Benchmarks and Scientific Method](Evaluation%20Benchmarks%20and%20Scientific%20Method.md).

Related