What Counts as an AI Research Organization
Most large tech companies maintain a research arm that sits apart from (but feeds into) product engineering. Some are dedicated labs; some AI-native companies are essentially research organizations with a product wrapped around them.
| Company | Research unit | Style |
|---|---|---|
| Google / Alphabet | Google Research, Google DeepMind | Merged research + applied lab |
| Microsoft | Microsoft Research (MSR) | Long-running academic-style lab, est. 1991 |
| Meta | FAIR (Fundamental AI Research) | Publication-heavy, semi-independent |
| Amazon | Amazon Science, AWS AI Labs | Product-adjacent applied research |
| IBM | IBM Research | Oldest corporate lab (1945), multiple global sites |
| OpenAI / Anthropic / Moonshot AI | The company itself | Research-first; product is downstream of the research |
The Core Research Loop
Unlike a chemistry or physics lab, AI research has no physical experiments in the traditional sense. Almost all of it happens on a laptop and a compute cluster. The work follows a repeating cycle:
Iterate — most runs underperform, so this cycle repeats often hundreds of times before something ships.
Literature review
Reading papers on arXiv and at conferences (NeurIPS, ICML, ICLR, ACL) to see what's been tried and where gaps are.
Hypothesis
Forming a specific, testable idea (e.g. "a linear-attention variant will cut memory cost without hurting long-context accuracy").
Implementation
Writing the model/training code, usually in Python with PyTorch or JAX.
Large-scale training
Running the idea on a GPU/TPU cluster; big runs can take days to weeks and cost thousands to millions in compute.
Evaluation
Testing the result against benchmarks (coding, reasoning, math, safety, etc.).
Ablation studies
Removing or swapping one component at a time to isolate what's actually responsible for a result.
Transformer-XL / XLNet
Yang Zhilin's PhD-era papers at Carnegie Mellon addressed a specific hypothesis — that transformers were losing track of context beyond a fixed window. The fix (a recurrence mechanism) was implemented, trained, benchmarked against existing language models, and published — then years later became foundational to Moonshot AI's long-context products.
Research Lab vs. Product Engineering
| Dimension | Research team | Product / applied engineering team |
|---|---|---|
| Goal | Push capability forward; publish or validate new methods | Ship reliable features on a roadmap |
| Timeline | Can span months to years per project | Weeks to a quarter, tighter deadlines |
| Output | Papers, model checkpoints, benchmarks | Shipped product, APIs, user-facing features |
| Risk tolerance | High — most experiments are expected to fail | Low — stability and reliability prioritized |
| Typical company | OpenAI, Anthropic, DeepMind, Moonshot AI, FAIR | Startups building on top of existing model APIs |
Note: Many startups skip a formal research division entirely, building applied products on top of existing foundation models via API to avoid massive compute costs.
Quick Glossary
Mixture-of-Experts (MoE)
An architecture where only a subset of the model's parameters activate per input, making very large models cheaper to run.
Context window
How much text/data a model can consider at once when generating a response, measured in tokens.
Ablation study
An experiment where one component is removed or altered to measure its individual contribution to performance.
RLHF
Reinforcement Learning from Human Feedback: a post-training technique using human preference data to steer model behavior.
Benchmark
A standardized test used to compare model performance on a specific skill (coding, math, reasoning, etc.).
Open weights
Making a trained model's parameters publicly downloadable, as opposed to only offering access via a paid API.