The pause is a feature.
Every stage ends at a decision point: continue, ask a follow-up, or turn the explanation into a revision card.
stage 03 / 06
Derivation
Var(q · k) ≈ dₖ. Without scaling, softmax saturates and the useful gradient disappears.
Built for active recall
Chat is optimized to keep answering. LiminalML is designed to stop, let you think, and make you produce the next step yourself.
Every stage ends at a decision point: continue, ask a follow-up, or turn the explanation into a revision card.
def attention(q, k, v, mask):
scores = q @ k.transpose(-2, -1)
scores /= q.size(-1) ** 0.5
scores.masked_fill_(~mask, -inf)
return scores.softmax(-1) @ vEvery thread saves at the exact stage where you stopped. No repeated setup and no lost follow-up questions.
Add a resume only if you want to. Stage 6 can then ask you to defend choices you actually shipped.
Your retrieval system had a 30ms budget. Which attention layer would you remove first, and what quality loss would you expect?
Orient
Start with the problem, the constraints, and the mental model that makes every later equation feel inevitable.
Leaves you with a durable mental model.
The real interface
Run a scripted Attention Mechanisms session here. It uses the exact rendering, pauses, math, code, and diagrams of the live product without spending a model call.
Try it right here
A recorded replay of a real six-stage session, including the exact pauses where the tutor stops and waits, plus two follow-ups you can ask. No account, no model calls.
6 stages · the same math, code, and diagrams a live session renders · ~3 minutes
Six stages, in order, never compressed. The pause after each one is the point.
Two tracks, one method
Interview prep is the sharpest use case, but the product is built for any engineer who wants a concept to survive beyond the tab they learned it in.
Transformers, optimization, RLHF, distributed training, serving, and the mathematics underneath modern systems.
Rendering, caching, databases, data structures, backend architecture, and production tradeoffs.
Only Pro takes a card. The trial does not charge for seven days and cancels in one click.
Start before you sign up
Leave able to derive it, implement it, and explain where it fails.
Start a deep study session2 sessions without an account · 8 / month when you sign in · unlimited on Pro