long context
FDE interview questions tagged long context, across every topic.
5 questions · 1 unlocked for you
Concepts behind "long context"
The curriculum that explains the ideas these questions test.
Core
RoPE and Positional EncodingsSelf-attention has no built-in sense of word order, so transformers inject position information into the token vectors. Rotary position embeddings (RoPE) rotate query and key vectors by a position-dependent angle so relative position falls out of the dot product, which is why RoPE underpins almost every long-context model and why extending a context window means rescaling RoPE.🧠 Foundations of LLMs & GenAISign in
Advanced
Context Failure ModesLong context does not fail by overflowing. It fails by degrading, and it does so in four distinct ways that look identical from the outside: poisoning, overload, brevity bias and collapse. Naming which one you are seeing is what turns a vague complaint that the model got worse into a fix.🤖 Retrieval & Agents🔒 Premium
