A blind Fly engineer builds image description on open-source vision models, using everyday accessibility problems — find the coffee cup, find the light switch.
Why it mattersA worked example of assembling open-source vision-language models into an accessibility tool, showing what self-hosted image description can do versus commercial apps like Be My AI or Seeing AI.

Why it mattersSmaller vectors at comparable retrieval accuracy cut vector database cost directly, and 16K context lets you embed longer chunks without splitting them.

Vibe-Eval opens 269 expert-written image-text prompts with ground-truth answers, built hard enough that frontier models miss half the hard split.
Why it mattersAn open, deliberately hard multimodal eval with ground-truth responses rather than multiple choice, plus a documented finding that hard prompts increase human rater disagreement and complicate partial credit.
LinkedIn's engineering account of shipping a generative AI feature.
Why it mattersA candid build log for retrieval-grounded agent products, including how queries get routed to specialist agents and which parts of quality proved hardest to reach.

Reka's flagship multimodal model, trained from scratch, lands with 128K context and native image, video and audio understanding.
Why it mattersA frontier-class multimodal model with 128K context and image, video, and audio input ships via API, on-prem, or on-device, offering a rare deployment-flexible alternative when data cannot leave your infrastructure.

Adversarial validation as a simple way to detect drift.
Why it mattersA cheap, infrastructure-free way to catch the silent killer of eval validity — your eval set no longer matching what production actually sends your model.

Diffusion models moved from image synthesis to video, a strictly harder problem because temporal consistency across frames demands world knowledge a single image never needed.
Why it mattersA structured survey of how diffusion models extend from image to video generation, unpacking the temporal-consistency and data-scarcity problems that define the current research frontier.

Evals for classification, summarization, translation, copyright regurgitation, and toxicity.
Why it mattersIt breaks down which eval approaches actually work for specific tasks like summarization, translation, and toxicity detection.

Hamel Husain's argument that unsuccessful LLM products almost always share one root cause, the absence of a robust evaluation system, drawn from five years of building and consulting on them.
Why it mattersThis is the reference playbook for eval systems — the single highest-leverage practice separating LLM products that improve past the demo stage from ones that stall.
Qwen1.5-MoE-A2.7B is a small mixture-of-experts model that matches 7B performance with about a third of the parameters activated, part of the wave of MoE work that followed Mixtral.
Why it mattersQwen1.5-MoE-A2.7B delivers roughly 7B-class quality while only activating 2.7B parameters, meaning cheaper and faster inference for anyone self-hosting or running cost-sensitive LLM workloads.
Hamel Husain's answer to growing disillusionment with fine-tuning: it remains valuable in specific situations, and the case against it usually generalises from the wrong ones.
Why it mattersGives a clear decision framework for whether to invest in fine-tuning.
LinkedIn and Hany Farid describe a detector for AI-generated faces that aims to generalize across generator families, not just the one it was trained on, extending earlier work that caught 99.6 percent of StyleGAN profile photos under a strict false positive budget.
Why it mattersSynthetic profile photos are cheap to produce, and this documents a detection approach that holds up across different image generators while keeping false positives low at platform scale.

What a survey of the 900 most popular open-source AI repositories shows about how the ecosystem has changed, four years after the same exercise on the open ML landscape.
Why it mattersA structured, data-driven map of the open source AI tooling landscape — organized into infrastructure, model development, and application layers.

Instead of ranking models and picking one, predict which model a user would prefer for a specific prompt, turning human preference data from a leaderboard into a routing signal.
Why it mattersIf you're deciding which LLM to call for each prompt, this lays out how to predict which model a user will prefer per-query and route accordingly.

How unit testing machine learning code differs from typical software practices
Why it mattersIf you write tests for ML pipelines, this explains why mocking models hides real failures and what to validate instead — practical guidance for keeping AI code reliable as it evolves.

Reka Flash is a 21B multimodal model trained from scratch, benchmarked against Gemini Pro and GPT-3.5 on MMLU, GPQA, HumanEval and vision/video suites.
Why it mattersA 21B model competitive with Gemini Pro and GPT-3.5 across language and vision benchmarks, plus a 7B variant for on-device use, offering a size/quality point worth considering when picking a multimodal backbone.

Overcoming the bottleneck of human annotations in instruction-tuning, preference-tuning, and pretraining.
Why it mattersIf you're finetuning models and blocked by the cost of human annotation, this walks through concrete synthetic data generation strategies for instruction-tuning, preference-tuning, and pretraining.

Most task-specific labelled data comes from human annotation, which makes annotator disagreement, expertise and incentives a modelling problem rather than an operational detail.
Why it mattersA deep dive into the mechanics of high-quality human annotation and RLHF labeling — covering rater agreement, aggregation, and quality-control techniques that directly affect the data your alignment and fine-tuning pipelines depend on.

How generation is actually configured.
Why it mattersIt demystifies why LLM outputs are inconsistent and how sampling knobs (temperature, top-k, top-p) plus test-time compute actually shape responses.

How to use open-source, permissive-use data and collect less labeled samples for our tasks.
Why it mattersIf you're building hallucination detection or other classifiers with limited labeled data, this shows how to bootstrap from out-of-domain, permissively-licensed datasets to cut annotation costs while still hitting task performance.

A survey of adversarial attacks and jailbreak prompts against language models.
Why it mattersA rigorous, research-grounded map of how jailbreaks and adversarial prompts actually work against aligned LLMs, giving engineers the vocabulary and threat models needed to red-team and harden their own AI products.

Runway's diversity fine-tuning approach attacks text-to-image skew at the data level.
Why it mattersThe approach offers a concrete recipe for debiasing text-to-image models using synthetic data built from combinatorial prompt attributes, with released prompts and code and measured group fairness gains on both SD1.5 and SDXL.

A primer on multimodality and large multimodal models.
Why it mattersA clear, foundational-to-frontier walkthrough of how multimodal models actually work — from CLIP and Flamingo to modern adapter-based LMMs — giving engineers the conceptual grounding to reason about and build with vision-language systems.

Runway's CTO walks through the sequencing behind the Gen models.
Why it mattersThis explains why video generation was staged, with structure-conditioned Gen-1 coming before open text-to-video, and frames next-frame prediction as the video analogue of next-token prediction for learning world structure.

Applies operating-system paging to the KV cache so serving stops wasting most of its memory on fragmentation, raising throughput several-fold.
Why it mattersThe reason an inference server can hold many concurrent requests: treating the KV cache like virtual memory pages instead of one contiguous block removes the fragmentation that was wasting most of the GPU.

Reference, context, and preference-based metrics, self-consistency, and catching hallucinations.
Why it mattersIf you're shipping summarization features, this lays out concrete metrics — reference-based, context-based, preference-based, and self-consistency checks.

Ten major open research directions in language models, drawn from conversations across industry and academia.
Why it mattersA structured tour of the 10 hardest open problems in LLM research — from measuring hallucination to non-GPU compute — with curated primary papers for each, giving engineers a map of where the field is heading and what to watch.

Shopify's Sidekick team details two fixes for streaming chat UX.
Why it mattersStreaming LLM output re-renders half-formed Markdown as raw text and stalls behind multi-hop tool calls; selective buffering plus a multiplexed event stream fixes both without waiting for the full response.

Evals, RAG, fine-tuning, caching, guardrails, defensive UX, and collecting user feedback.
Why it mattersA comprehensive field guide to the seven practical patterns behind production LLM systems—covering how to structure evals, RAG, caching, and guardrails—so you can build reliable AI products instead of stitching together demos.

A survey of LLM-powered autonomous agents built around planning, memory and tool use, drawing on AutoGPT, GPT-Engineer and BabyAGI as early proofs of concept.
Why it mattersA clear, canonical breakdown of the core components of LLM agents — planning with subgoal decomposition and reflection, short/long-term memory via vector stores, and tool use.

Derives preference training as a simple classification loss on the policy itself, removing the reward model and the reinforcement-learning loop from RLHF.
Why it mattersIt stripped most of the machinery out of preference training: no separate reward model, no RL loop, just a classification loss that reaches comparable quality and is stable enough to run without a research team.

Backpropagates through a frozen 4-bit quantized model into LoRA adapters, putting 65B-parameter finetuning on a single GPU without measurable quality loss.
Why it mattersIt collapsed the hardware bar for fine-tuning a large model from a cluster to one GPU, by backpropagating through 4-bit frozen weights into low-rank adapters.

Interpolates between multi-head and multi-query attention using grouped key-value heads, recovering multi-query speed while keeping most of multi-head quality.
Why it mattersThe compromise nearly every current model ships: grouped key-value heads give you multi-query's small cache without the quality drop, and the paper shows you can convert an existing multi-head checkpoint rather than retrain from scratch.

What's the big deal, intuition on query-key-value vectors, multiple heads, multiple layers, and more.
Why it mattersA clear, intuition-first walkthrough of query-key-value attention, multi-head, and multi-layer mechanics — useful if you want to actually understand why the Transformer works rather than just memorize the diagram.

An argument that chat became the default LLM interface by inertia rather than fit.
Why it mattersChallenges the reflexive choice of a chat box as the LLM interface, arguing better interaction patterns exist — a design decision that shapes every AI product before a single model call is made.

9 patterns including HITL, hard mining, reframing, cascade, data flywheel, business rules layer, and more.
Why it mattersA compact catalog of production ML design patterns — like cascade models, hard negative mining, data flywheels, and business-rules layers.

A survey of prompt engineering as in-context steering of an autoregressive model without touching its weights, treated as an empirical science whose methods vary sharply between models.
Why it mattersA rigorous, practitioner-oriented survey of in-context prompting methods — few-shot, chain-of-thought, self-consistency, and more.

Runway's second-generation video model dropped the requirement for structure conditioning: text alone, or a single driving image, produces a clip.
Why it mattersGen-2 was the point at which text-to-video became usable without a driving video, establishing the mode vocabulary covering text, image, stylization, mask, and render that later video models inherited.

How Shopify extended its Ray-based ML platform from batch to real-time prediction.
Why it mattersShows how a general-purpose model-serving layer is built on Ray with a Feast-backed offline/online feature store, and where the latency and generalization tradeoffs land when many teams deploy to one platform.

A rewritten and roughly doubled survey of transformer architecture variants, restructured and brought up to date with the improvements proposed since the original 2020 version.
Why it mattersA thorough, notation-consistent reference on transformer architecture variants — from attention mechanisms to positional encodings and efficiency tricks.

Why inference on large transformers is hard and what actually helps.
Why it mattersA rigorous survey of how to cut transformer inference cost in time and memory — quantization, pruning, sparsity, and distillation — giving engineers a practical map for deploying large models affordably at scale.
Qwen's OFASys tackles the practical pain of multimodal multitask learning, the batching and stability problems the team hit building OFA, aiming to make multitask setups a one-line affair.
Why it mattersIf you're wrangling multitask, multimodal training pipelines, OFASys reduces the boilerplate of setting up heterogeneous tasks and modalities into a declarative interface, tackling the batchification and training-stability headaches that usually derail generalist-model experiments.
CLIP became both a foundation model and a bridge between vision and language, but cross-modal retrieval needs language-specific versions. This is an open-sourced Chinese CLIP.
Why it mattersIf you're building cross-modal retrieval or text-to-image pipelines for Chinese content, this gives you a purpose-trained Chinese CLIP rather than forcing English-centric embeddings onto Chinese text and image data.

Anthropic's method for training a harmless assistant from AI feedback against a written set of principles, replacing most human harm labels with model self-critique.
Why it mattersIt is how you train a model to refuse well without a human labelling every bad output: the model critiques and revises its own responses against an explicit written constitution.

Runway's first video model generates new footage from existing footage, transferring style from an image or prompt while the source clip supplies structure.
Why it mattersGen-1 solved temporal consistency by conditioning on a source video's structure, which was the intermediate step that made open text-to-video tractable a few months later.

Runs a small draft model ahead of the large one and verifies its guesses in parallel, producing identical output several times faster.
Why it mattersIt makes generation faster without changing what the model outputs — a small model drafts, the large one verifies in parallel, rejected tokens fall back.

Interleaves reasoning traces with tool actions in a single loop, so a model can plan, act against an external source, and revise from what it observes.
Why it mattersThis is the loop nearly every agent framework implements: think, act, observe, repeat.

Shopify classified millions of buyer chat messages by fixing the data instead of the model.
Why it mattersAccuracy came from taxonomy design and annotator agreement, not model choice. The same discipline decides whether an eval set or a classifier inside an agent pipeline measures what you think it measures.

Vision-language systems traditionally bolt an object detector onto a text decoder.
Why it mattersA structured survey of how to graft visual understanding onto pre-trained language models, covering the design choices behind modern VLMs — useful grounding for anyone building or fine-tuning multimodal AI systems.

Makes exact attention fast by minimising reads and writes between GPU memory levels rather than approximating it — an IO-aware algorithm, not a cheaper estimate.
Why it mattersThe insight that attention was memory-bound rather than compute-bound, and that tiling it to avoid round-trips to slow GPU memory makes it several times faster while staying exact.
An index of the vibe-coding frontier. Corrections welcome.