ZeroShotMind

Papers

Foundational reinforcement-learning and alignment papers, each paired with an interactive visualization you can poke at.

V-JEPA extends the JEPA recipe to video: mask spatiotemporal tubes of a clip and predict their representations from the visible context, in latent space. With no pixel reconstruction and no contrastive loss, it learns features that transfer strongly to action recognition — especially motion-driven tasks — at lower compute than pixel-reconstruction baselines.

StreamingLLM identifies the 'attention sink' — the first few tokens absorb a huge share of attention regardless of meaning. Keeping those sink tokens plus a sliding window lets a model generate over effectively unbounded streams without re-computation, at a 22× speedup over the recompute baseline.

Language models consistently perform worse when relevant information appears in the middle of a long context, regardless of model size or context length — a U-shaped performance curve with peaks at the beginning and end that reveals a structural attention bias in models trained on short sequences.

DiT replaces the diffusion U-Net with a Vision Transformer that patchifies image latents and conditions through adaLN-Zero. It finds that diffusion scales with model size and compute the way language models do — DiT-XL/2 reaches FID 2.27 on ImageNet 256×256 — and became the backbone for Sora and Stable Diffusion 3.

Classifier-free guidance gets the fidelity boost of classifier guidance without the classifier: train one conditional model that randomly drops its conditioning, then at sampling time extrapolate along the line from the unconditional to the conditional prediction. It is the guidance method behind Stable Diffusion, DALL·E 2, and Imagen.

The paper that pushed diffusion past GANs on ImageNet. It introduced adaptive group normalization (AdaGN) for timestep and class conditioning, and classifier guidance — using a separately trained classifier's gradients to steer the reverse process toward a target class.

DDIM keeps DDPM's training objective untouched but replaces the Markovian reverse chain with a non-Markovian one, yielding a deterministic sampler that reaches DDPM-quality images in 20–50 steps instead of 1000 — and a stable, invertible map between noise and image.

DDPM turns image generation into a thousand-step denoising problem: a fixed forward process grinds an image into Gaussian noise, and a U-Net learns to reverse it one step at a time — trained by the deceptively simple objective of predicting the noise.

The paper that introduced the Transformer — multi-head self-attention with no recurrence and no convolution. It set a new BLEU record on WMT 2014 English-German, trained faster than the RNNs it replaced, and became the substrate for every large language model since.