The encoder stack applies full bidirectional self-attention over the input sequence to produce contextual representations in one parallel pass. The decoder stack autoregressively generates the output: each decoder layer runs causal (masked) self-attention over tokens generated so far, then cross-attention where decoder queries attend over the encoder's output keys/values, then a feed-forward block. Sinusoidal positional encodings inject order; multi-head attention lets different heads specialize. This replaced recurrence entirely, making training parallelizable across sequence positions and unlocking the scaling that all later LLMs build on.
Papers & references (2)
Take only the Transformer's encoder stack, so every token attends to every other token in both directions, and pretrain with masked language modeling: randomly mask ~15% of tokens and predict them from full bidirectional context. The result is a deep contextual representation of the whole input in a single parallel forward pass β no autoregressive loop. Downstream you attach a small head (a classifier on [CLS], a token tagger, or a pooling layer for embeddings) and fine-tune. RoBERTa showed BERT was undertrained (more data/steps, dynamic masking, drop NSP); DeBERTa added disentangled content/position attention; ModernBERT (2024) retrofitted the recipe with RoPE, GeGLU, alternating local/global attention, Flash Attention, 8k context, and 2T training tokens.
Papers & references (4)
Keep both Transformer stacks but pretrain on denoising: T5 masks contiguous spans and trains the decoder to emit the missing spans (span corruption), casting every task β translation, summarization, QA, classification β as 'text in, text out' with a task prefix. BART instead corrupts whole documents (deletion, shuffling, infilling) and reconstructs them, which transfers especially well to summarization. UL2 unified the objectives as mixture-of-denoisers (short spans, long spans, prefix-LM) switchable by a mode token. The 2025 revival, T5Gemma (paper title 'Encoder-Decoder Gemma'), adapts pretrained decoder-only Gemma 2 checkpoints into encoder-decoder form via UL2/prefix-LM continued pretraining, showing better quality-per-inference-FLOP than the source decoder-only models on input-heavy tasks.
Papers & references (7)
Token IDs are embedded via a BPE vocabulary and summed with a learned absolute position embedding table, then pushed through N identical blocks: causally-masked multi-head self-attention followed by a 4x-width two-layer GELU MLP, each wrapped in a residual connection with LayerNorm. GPT-1 placed LayerNorm after each sublayer (post-norm, as in the 2017 Transformer decoder minus cross-attention); GPT-2 moved it before each sublayer and added a final LayerNorm, which is what made 48+ layer training stable. A final LayerNorm feeds an unembedding projection (weight-tied to the input embedding) producing next-token logits; the entire training objective is next-token prediction. GPT-3 kept this recipe at 175B, alternating dense and locally-banded sparse attention layers.
Papers & references (4)
Keeps the GPT causal-decoder skeleton but swaps every component: RMSNorm (rescale by root-mean-square only, no mean-centering or bias) is applied before each sublayer; positions are injected inside attention by rotating query/key vectors with position-dependent angles (RoPE), giving relative encoding and enabling long-context extension via theta rescaling. The MLP becomes SwiGLU β SiLU(gate_proj(x)) * up_proj(x) fed to down_proj, with hidden width ~8/3Β·d to hold parameter count. Attention uses grouped-query attention: many query heads share a small set of K/V heads, shrinking the KV cache several-fold with near-MHA quality; linear layers drop bias terms. Llama 1 established pre-RMSNorm+RoPE+SwiGLU (still MHA); Llama 2 70B and Mistral 7B added GQA; Llama 3 applied GQA at every size with a 128K vocab and RoPE theta 500k.
Papers & references (10)
In multi-head attention (MHA) every one of the h query heads has its own K and V head, so the decode-time KV cache costs 2 x n_layers x n_kv_heads x d_head x bytes per token β for a Llama-2-70B-shaped model (80 layers, 64 heads, d_head 128, fp16) that is ~2.6 MB per token, which dominates GPU memory and bandwidth at long context and large batch. MQA (Shazeer 2019) keeps h query heads but a single shared K/V head, cutting the cache by h-fold (~41 KB/token in the same config) at some quality cost. GQA interpolates: query heads are partitioned into g groups, each sharing one KV head (Llama 2 70B uses g=8, ~0.33 MB/token), recovering near-MHA quality; the GQA paper also showed an existing MHA checkpoint can be converted by mean-pooling its KV heads and uptraining with ~5% of original compute.
Papers & references (3)
Instead of caching per-head keys and values, a learned down-projection compresses the token's hidden state into a single latent c_KV (DeepSeek-V2: 512 dims) plus a small decoupled RoPE key (64 dims) β only ~576 floats per token per layer are cached, versus 2 x 128 heads x 128 dims = 32,768 for equivalent MHA (~57x smaller per layer; DeepSeek reports 93.3% total KV reduction, comparable to GQA with just 2.25 groups). At attention time, up-projection matrices reconstruct all 128 per-head K/V β and because these are linear, they can be absorbed into the query and output projections so inference attends over the latent directly. The RoPE path must be decoupled because rotary position rotation does not commute with the low-rank compression.
Papers & references (2)
The attention mask is banded: token t attends only to the previous W tokens, making per-layer cost O(n x W) instead of O(n^2) and capping that layer's KV cache at W entries (a rolling buffer overwrites older ones). Receptive field still grows with depth β L layers of window W reach ~L x W tokens. Longformer (2020) combined the sliding window with task-specific global tokens; Mistral 7B shipped it in a mainstream LLM (W=4096, rolling-buffer cache). Gemma 2 interleaves local and global layers 1:1 (W=4096); Gemma 3 pushes to 5 local (W=1024) per 1 global layer with only global layers using long-range RoPE, collapsing long-context KV memory (the paper shows cache overhead dropping from ~60% to well under 15% at 32k context). OpenAI's gpt-oss alternates full and W=128 banded layers.
Papers & references (6)
Unlike post-hoc sparsification, the sparsity pattern is part of the architecture and trained end-to-end. NSA (DeepSeek) gives each query three parallel branches β compressed coarse-grained tokens, top-n selected fine-grained blocks, and a sliding window β merged by a learned gate; the blockwise selection is aligned to GPU tensor-core granularity, yielding real wall-clock speedups (up to ~9-11x on 64k-context forward/decode) while matching or beating full attention on benchmarks. MoBA (Moonshot) partitions context into blocks and routes each query to its top-k blocks via affinity between the query and mean-pooled block keys β MoE-style gating applied to attention, hot-swappable with full attention during training. DeepSeek productionized a descendant, DSA (a lightning indexer plus fine-grained top-k token selection), in DeepSeek-V3.2-Exp to cut long-context API costs.
Papers & references (3)
Linear attention rewrites softmax(QK^T)V as phi(Q)(phi(K)^T V): the d x d running sum phi(K)^T V acts as a recurrent state updated once per token, giving O(n) time and constant memory β no KV cache growth at all. Performer's FAVOR+ constructs phi from random features that unbiasedly approximate the softmax kernel. Pure linear attention loses precise recall, so the 2025-era answer is hybridization: MiniMax-01 interleaves 7 lightning-attention layers (an I/O-aware tiled linear attention) per 1 softmax layer at 456B total parameters; Qwen3-Next-80B mixes Gated DeltaNet linear layers with gated full-attention layers 3:1 (its 'gated attention' β output gating that also eliminates attention sinks β is documented in Qwen's Gated Attention paper); Kimi Linear interleaves Kimi Delta Attention with global MLA 3:1, cutting KV cache ~75%. Notably, MiniMax's later M2 reverted to full attention, so the frontier verdict is still contested.
Papers & references (8)
A small gating network scores every expert for each token; only the top-k experts (k=2-4 in Shazeer, k=2 in GShard, k=1 in Switch) actually run, and their outputs are combined weighted by the gate scores. Because unchosen experts do no work, total parameters scale with N while per-token FLOPs scale with k. Load is kept even with auxiliary balancing losses and a fixed per-expert capacity factor β tokens overflowing an expert's buffer are dropped and pass through the residual connection. GShard shards experts across accelerators (expert parallelism) so the MoE layer's weights live on different chips and tokens are exchanged via all-to-all.
Papers & references (4)
Every FFN of a decoder-only Transformer is replaced by a MoE layer holding a handful of full-width SwiGLU experts (Mixtral: 8), and a linear router picks the top-2 per token per layer, combining outputs by softmax weight. Mixtral 8x7B activates ~13B of 47B params yet matches much larger dense models; Grok-1 uses the same 8-expert/top-2 shape at 314B. GPT-OSS keeps this shared-expert-free token-choice design but goes wider and finer (gpt-oss-120b: 128 experts, top-4, 5.1B active of 117B), showing the lineage scaled into 2025.
Papers & references (4)
Mamba makes the SSM parameters Delta, B, C input-dependent, so the recurrence can selectively write, retain, or reset state based on content β recovering the selection ability that time-invariant SSMs like S4 lacked. Input dependence breaks the convolution trick, so Mamba trains with a hardware-aware parallel scan that keeps the expanded state in GPU SRAM, staying O(n) in sequence length. A single homogeneous Mamba block (gated MLP fused with the selective SSM) replaces the attention+MLP pair; there is no KV cache, so generation memory is constant regardless of context length.
Papers & references (4)
Structured State Space Duality shows that an SSM with scalar-times-identity state transitions is exactly a form of masked linear attention (a 1-semiseparable matrix), so one layer has two algorithms: a quadratic attention-like form ideal for short chunks and a linear recurrent form across chunks. Mamba-2 restricts A to a scalar per head, adopts multi-head-style projections, and uses a chunked block decomposition that runs mostly on matmuls β enabling roughly 8x larger recurrent states at similar or better speed than Mamba-1. The duality also unified the SSM and linear-attention research threads, which is why later 'linear attention' hybrids (Gated DeltaNet, Kimi Linear) are siblings of Mamba-2 rather than rivals.
Papers & references (2)
RWKV v4 replaces attention with a 'time-mix' that blends past values under a learned per-channel exponential decay (the WKV operator), keeping training parallelizable while inference runs as a pure RNN with O(1) state per token. v5 'Eagle' upgrades to matrix-valued states (linear-attention-style outer products); v6 'Finch' makes the decay data-dependent via low-rank dynamic projections. v7 'Goose' adopts a generalized delta rule: the state is updated with input-dependent targeted replacement as well as decay, improving in-context state tracking and pushing expressivity beyond what fixed-decay linear layers can do.
Papers & references (3)
The Real-Gated Linear Recurrent Unit (RG-LRU) is a diagonal linear recurrence h_t = a_t * h_{t-1} + sqrt(1 - a_t^2) * (i_t * x_t) with a recurrence gate a_t and input gate i_t computed from the input β a gated RNN with no softmax and no state expansion. Hawk stacks RG-LRU residual blocks alone; Griffin interleaves two RG-LRU blocks with one local sliding-window attention block, so the recurrence carries global context while the window provides exact recent-token recall with a bounded KV cache. Inference memory is fixed (state + small window) regardless of context length, and the models matched much more token-hungry Transformer baselines at up to 14B scale.
Papers & references (2)
AI21's production hybrid: 1 attention layer per 8, MoE on alternate layers; 256K context with a ~8x smaller KV cache, fitting a single 80GB GPU at up to ~140K-token inputs. Zyphra's Mamba tower with ONE shared attention block re-applied every ~6 layers β repeated global attention for the parameter cost of one block. Microsoft's strictly-linear hybrid: Mamba -> MLP -> sliding-window attention -> MLP per unit; trained at 4K, streams past 1M tokens. Mamba-2-heavy hybrids (~92% of layers) at 8B-56B: ~3x faster inference at similar accuracy; Nano 2 tunes the recipe for reasoning. 9 Mamba-2 blocks per 1 attention block, no positional encodings, MoE variants; IBM reports >70% serving-memory reduction. Apache 2.0. Falcon-H1 instead runs attention and Mamba-2 heads in parallel inside every block.
Papers & references (6)
Gated DeltaNet (NVIDIA/MIT, 2024) combines the delta rule β a rank-1 targeted edit that overwrites the old value stored under a key in the fixed-size matrix state, S_t = a_t * S_{t-1}(I - b_t k_t k_t^T) + b_t v_t k_t^T β with Mamba-2-style global decay gating, beating both Mamba-2 and plain DeltaNet. Qwen3-Next 80B-A3B interleaves three Gated DeltaNet layers per one gated full-attention layer with an ultra-sparse MoE (3B active), reporting roughly 10x throughput versus Qwen3-32B beyond 32K context; Kimi Linear (Moonshot, 2025) refines the operator into Kimi Delta Attention (finer channel-wise decay, chunked kernels) at a 3:1 KDA:MLA ratio in a 48B-A3B model, cutting KV cache by up to 75%. Via the SSD duality these are siblings of Mamba-2 β the SSM and linear-attention branches have effectively merged.
Papers & references (5)
Kimi K3 shipped its open weights on 2026-07-27, so the architecture is no longer announcement-level: it can be read straight from config.json. The released checkpoint is a 93-layer, 2,779,931,837,184-parameter (2.78T) model β the safetensors metadata shows ~2.72T of those params stored as U8, i.e. it ships natively 8-bit quantized (the card is tagged compressed-tensors / 8-bit). It is not text-only: the architecture class is KimiK3ForConditionalGeneration with a vision tower (patchmergerv2 projector, mm_hidden_size 1024, 2Γ2 patch merging) whose position embeddings carry a time axis β so image and video in, text out (pipeline tag image-text-to-text). The MoE is exactly what was reported and is now confirmed: num_experts 896 with num_experts_per_token 16, plus num_shared_experts 2 (a figure Moonshot never published), sigmoid router scoring with aux-loss-free noaux_tc top-k selection and latent_moe_use_norm β the "Stable LatentMoE" branding. Attention is the KDA hybrid, and the config settles the ratio arithmetically: linear_attn_config lists 69 KDA layers against 24 full-attention layers placed at every 4th position (4, 8, 12 β¦ 92), i.e. 2.88:1 β the 3:1 pattern Moonshot showed in its blog diagram. KDA runs 96 heads at head_dim 128 with a 4-wide short convolution and a full-rank gate; the full-attention layers are MLA (kv_lora_rank 512, q_lora_rank 1536, 96 heads, 128 NoPE + 64 RoPE dims). Attention Residuals are real and parameterized: attn_res_block_size 12. Context is 1,048,576 tokens, vocab 163,840. Note the released config sets num_nextn_predict_layers 0 β no multi-token-prediction head in this checkpoint.
Papers & references (6)
GLM-5.2 is a 78-layer `glm_moe_dsa` transformer: each layer pairs MLA (q_lora_rank 2048 / kv_lora_rank 512 latents, 64 heads, 256-dim QK = 192 NoPE + 64 decoupled RoPE) with a DeepSeek-Sparse-Attention core where a lightweight "lightning indexer" (32 heads x 128 dim) scores past tokens and core attention runs only over the top-2048 (index_topk), cutting attention from O(L^2) to O(Lk). The DSA indexer itself stays O(L^2) and in GLM-5/5.1 ran at every layer, so IndexShare (the linked paper is titled "IndexCache", arXiv:2603.12201) runs real indexers only in "full" layers β layers 0-2 plus every 4th (index_topk_freq=4; 21 of 78) β while the 57 "shared" layers reuse the nearest full layer's top-k indices; in the paper's training-aware variant, retained indexers are distilled against the averaged attention distributions of the layers they serve (the likely deployed recipe, though Z.ai doesn't say outright β see undisclosed). Z.ai claims 2.9x per-token FLOPs reduction at 1M context (vendor-only figure, HF card + NIM); the paper independently measured up to 1.82x prefill / 1.48x decode and 75% indexer-compute removal on a 30B DSA model. The FFN side is DeepSeek-V3-style MoE: 3 dense layers then 75 MoE layers with 256 routed experts (8 active) + 1 shared expert, sigmoid scoring with aux-loss-free `noaux_tc` routing β 753B total all-in; the GLM-5 report's 744B figure covers the main model incl. embeddings/output head but excl. the ~9.9B MTP layer (convention derived from config-param math β the report doesn't state it), 40B active (active figure stated for GLM-5, whose config shape is identical). One MTP layer (num_nextn_predict_layers=1; the GLM-5 report trains 3 MTP layers sharing one parameter set) drives speculative decoding and also reuses the shared indices (`index_share_for_mtp_iteration: true`); Z.ai claims up to 20% longer acceptance length vs 5.1. Context is 1,048,576 positions (rope_theta 8M, up from 202,752 / theta 1M in GLM-5/5.1) with 128K max output on the API; "thinking effort" is purely an inference-time API control (`reasoning_effort`), not an architecture mechanism.
Papers & references (5)
A contrastively pretrained ViT (CLIP or SigLIP) encodes the image into patch features; a small connector β a linear layer or 2-layer MLP in LLaVA, a single-layer cross-attention resampler compressing to 256 tokens in Qwen-VL β maps them into the LLM's embedding space, where they are spliced into the token sequence like ordinary word embeddings. Training is staged: first align only the projector on image-caption pairs, then visual instruction-tune with the LLM (and often later the ViT) unfrozen. Modern variants handle native/dynamic resolution via tiling (InternVL 1.5) or M-RoPE with a ViT trained alongside the LLM (Qwen2-VL), and compress patches (2x2 token merge, pixel-shuffle) to keep image token counts manageable.
Papers & references (9)
A frozen vision encoder feeds a Perceiver Resampler that compresses any number of images or video frames into a fixed set of 64 latent tokens (Flamingo). Newly inserted gated cross-attention-dense layers, interleaved between the frozen LM's blocks, read those latents as keys/values; a tanh gate initialized at zero means the model starts out exactly equal to the original text LM and learns to open the visual pathway during training. Llama 3.2 Vision (disclosed in The Llama 3 Herd of Models) applies the same compositional idea: a ViT encoder plus cross-attention layers inserted every 4th decoder layer, with the text weights kept frozen so text-only performance is provably unchanged. Image information never occupies positions in the token sequence.
Papers & references (3)
Instead of grafting vision onto a text model, one transformer is trained from the start on interleaved multimodal sequences. Chameleon VQ-quantizes each 512x512 image into 1024 discrete tokens from an 8192-entry codebook and trains a single autoregressive model over mixed text+image tokens β requiring QK-norm and revised norm placement for stability at scale β so the same softmax can emit words or pixels. Fuyu goes further and deletes the encoder entirely: raw image patches are linearly projected straight into the decoder's first layer at arbitrary resolution, with an image-newline token marking row breaks. GPT-4o and Gemini are disclosed only at the capability level β a single model trained end-to-end (OpenAI) / jointly from the start (Google) across text, vision, and audio β with internal mechanics undisclosed.
Papers & references (6)
GPT-4o's system card discloses a single autoregressive model that accepts any mix of text, audio, image, and video and emits text, audio, and image from the same network, collapsing voice latency to roughly 300ms versus the old three-model ASRβLLMβTTS pipeline; internals are undisclosed. Qwen2.5-Omni discloses a full open recipe: a Thinker (LLM decoder) ingests all modalities β audio and video time-aligned by TMRoPE, a time-interleaved multimodal RoPE β and produces text plus high-level hidden states, while a Talker, a dual-track autoregressive speech-token model, streams speech tokens conditioned on those states through a sliding-window DiT vocoder for real-time audio. Moshi runs full-duplex: one backbone (Helium 7B) jointly models the user's and the system's audio streams via the Mimi neural codec plus an inner-monologue text stream, reaching ~160ms theoretical latency.
Papers & references (3)
Instead of left-to-right next-token prediction, the model is trained on a forward corruption process (randomly masking or noising tokens) and learns the reverse process: given a partially masked sequence, predict all masked tokens simultaneously. Generation starts from a fully masked block and runs a few refinement steps, each one committing the most confident tokens and re-predicting the rest. The backbone is still a standard Transformer, but with bidirectional (non-causal) attention, and speed comes from emitting many tokens per forward pass. LLaDA showed this trained-from-scratch at 8B rivals autoregressive peers; Mercury and Gemini Diffusion showed commercial-grade throughput (1,000+ tokens/sec).
Papers & references (4)
BitNet replaces every nn.Linear in the Transformer with a BitLinear layer whose weights are constrained to {-1, 0, +1} (~1.58 bits) during training itself β quantization is native, not applied after the fact, so the model learns around the constraint (a straight-through estimator passes gradients while latent full-precision weights are kept for the optimizer). Activations are quantized to 8 bits. Because weights are ternary, matrix multiplication reduces to integer additions and sign flips, slashing memory, energy, and latency. The 2024 paper showed ternary matches FP16 quality from ~3B params; Microsoft's open BitNet b1.58 2B4T (2B params, 4T tokens) ships with a CPU-friendly runtime at ~0.4 GB memory.
Papers & references (4)
Honest note for the field guide: despite the branding, o1/R1-style 'reasoning models' are not a new neural architecture. The DeepSeek-R1 paper is explicit that R1 is DeepSeek-V3-Base β a standard MoE transformer (671B total / 37B active) β post-trained with reinforcement learning (GRPO) using rule-based rewards, which spontaneously incentivizes long chain-of-thought, self-verification, and backtracking (R1-Zero used pure RL, R1 added a small cold-start SFT stage). OpenAI's o1 System Card likewise describes large-scale RL to 'think before answering' via chain-of-thought, disclosing nothing about a changed architecture. What changes at inference is behavior and compute allocation (many more generated thinking tokens), not the network.
Papers & references (3)
MobileLLM (Meta) systematically studied sub-billion-parameter design and found the opposite of conventional wisdom at that scale: allocating parameters to depth (more, thinner layers) beats width, and combining that with embedding sharing, grouped-query attention, and immediate block-wise layer sharing (reusing a block twice before moving on) yields 2-4+ point accuracy jumps over prior 125M/350M models with no extra memory. The SmolLM line (Hugging Face) attacks the same target from the data side: SmolLM2-1.7B is a fairly standard architecture trained on ~11T tokens with multi-stage rebalancing of curated datasets (FineMath, Stack-Edu, SmolTalk), showing meticulous data-centric training makes small models punch far above their weight. SmolLM3-3B adds GQA plus NoPE-style positional handling and dual-mode (think/no-think) reasoning at 3B.
Papers & references (4)
MoR unifies two efficiency ideas in one recursive Transformer: parameter sharing and adaptive compute. A single block of layers is reused up to N times (recursion), so the parameter count stays small; a lightweight router then decides per token how many recursion steps that token gets β easy tokens exit after one pass, hard tokens loop more, in the spirit of mixture-of-experts routing but over depth. Recursion-wise KV caching keeps attention cost consistent with each token's actual depth. At 135M-1.7B scale it forms a new Pareto frontier over vanilla and prior recursive baselines at equal training FLOPs, with higher inference throughput.
Papers & references (1)
BLT (Meta) removes the tokenizer entirely and operates on raw bytes, solving the compute problem with a three-part design: a small local encoder groups bytes into dynamically sized patches β patch boundaries are placed where a tiny byte-LM's next-byte entropy is high, so predictable stretches get long patches and hard spots get short ones β a large latent transformer runs only over patch representations, and a small local decoder maps latent outputs back to bytes. Because patches average longer than BPE tokens where text is easy, compute is allocated to where prediction is genuinely hard. Scaled to 8B parameters and 4T training bytes, BLT matches tokenization-based Llama-3-style training while cutting inference FLOPs up to ~50%, and is markedly more robust to spelling noise, character-level tasks, and rare scripts.
Papers & references (2)
| Family | Version | Year | Architecture | Params | Ctx | Architecture notes | Refs |
|---|---|---|---|---|---|---|---|
Llama Meta | LLaMA | 2023 | dense decoder | 7Bβ65B | 2k | Pre-norm RMSNorm, SwiGLU, RoPE, MHA; research-only weights; the template most later open models copied. | 2302.13971 β |
Llama Meta | Llama 2 | 2023 | dense decoder | 7B / 13B / 70B | 4k | Adds GQA on the 70B; first commercial-use community license; RLHF-tuned Chat variants. | 2307.09288 β |
Llama Meta | Llama 3 / 3.1 | 2024 | dense decoder | 8B / 70B / 405B | 8k β 128k (3.1) | GQA at every size, 128K-token vocab; 3.1 adds 405B and 128k ctx; 3.2 adds vision adapters and 1B/3B. | 2407.21783 β |
Llama Meta | Llama 4 | 2025 | sparse MoE | Scout 109B / 17B active (16 exp); Maverick 400B / 17B active (128 exp) | 10M (Scout) / 1M (Maverick) | First Llama MoE; early-fusion native multimodality; iRoPE interleaved no-position layers for extreme ctx; Behemoth unreleased. | report β |
Qwen Alibaba | Qwen | 2023 | dense decoder | 1.8Bβ72B | 2kβ32k | RoPE, SwiGLU, RMSNorm, untied embeddings, QKV bias; dynamic-NTK/logn ctx extension; Tongyi Qianwen license. | 2309.16609 β |
Qwen Alibaba | Qwen2 | 2024 | dense decoder | 0.5Bβ72B dense; 57B total / 14B active MoE | 32kβ128k | GQA at all sizes; dual chunk attention + YARN for long ctx; fine-grained-expert A14B MoE; succeeds interim Qwen1.5. | 2407.10671 β |
Qwen Alibaba | Qwen2.5 | 2024 | dense decoder | 0.5Bβ72B | 128k (1M variant) | 18T-token pretrain on same GQA dense stack; Qwen2.5-1M uses DCA + sparse attention; Turbo/Plus MoE are API-only. | 2412.15115 β |
Qwen Alibaba | Qwen3 | 2025 | sparse MoE | Dense 0.6Bβ32B; MoE 30B / 3B active and 235B / 22B active | 32k native (128k YaRN; 256k in 2507 refresh) | QK-Norm replaces QKV bias; MoE: 128 experts, 8 active, no shared expert; one model switches thinking/non-thinking. | 2505.09388 β |
Qwen Alibaba | Qwen3.8-27B | 2026 | SSM / hybrid | 27.8B dense | 256k | Apache-2.0. Qwen3_5ForConditionalGeneration (multimodal class), 64 layers, GQA 24q/4kv β and linear_* + mamba_ssm_dtype config keys: the hybrid linear-attention recipe now ships in the small dense tier too. | report β |
Qwen Alibaba | Qwen3.8-2.4T-A95B | 2026 | SSM / hybrid | 2.45T total / ~95B active (512 experts, 10 routed) | 256k | Qwen3_5MoeForCausalLM, 92 layers, hidden 8192, GQA 64q/4kv, vocab 248k; carries the same linear/Mamba hybrid keys. Custom qwen3.8-max license. Alibaba's largest published checkpoint. | report β |
DeepSeek DeepSeek-AI | DeepSeek LLM | 2024 | dense decoder | 7B / 67B | 4k | LLaMA-style; GQA on the 67B; hyperparameter scaling-law study; permissive DeepSeek model license. | 2401.02954 β |
DeepSeek DeepSeek-AI | DeepSeek-V2 | 2024 | sparse MoE | 236B total / 21B active | 128k | Introduces Multi-head Latent Attention (low-rank KV compression) + DeepSeekMoE shared/fine-grained experts; ~93% KV-cache cut. | 2405.04434 β |
DeepSeek DeepSeek-AI | DeepSeek-V3 | 2024 | sparse MoE | 671B total / 37B active | 128k | MLA; 256 routed + 1 shared experts (8 active); aux-loss-free load balancing; multi-token prediction; FP8 pretraining. | 2412.19437 β |
DeepSeek DeepSeek-AI | DeepSeek-R1 | 2025 | sparse MoE | 671B total / 37B active | 128k | Same V3 architecture; GRPO RL for reasoning (R1-Zero: pure RL, no SFT); distilled dense 1.5Bβ70B releases; MIT weights. | 2501.12948 β |
DeepSeek DeepSeek-AI | DeepSeek-V3.1 | 2025 | sparse MoE | 671B total / 37B active | 128k | One model with thinking and non-thinking chat templates; UE8M0 FP8 scale format; long-ctx extended pretrain over V3. | report β |
DeepSeek DeepSeek-AI | DeepSeek-V3.2-Exp | 2025 | sparse MoE | 671B total / 37B active | 128k | Adds DeepSeek Sparse Attention (lightning indexer + top-k token selection) for near-linear long-context cost. | report β |
DeepSeek DeepSeek-AI | DeepSeek-V4-Flash | 2026 | sparse MoE | 304.2B total (MoE) | 1M | MIT. The fast/cheap half of the V4 line, released 2026-07-31 β 304B vs V4-Pro's 1.65T, same 1M-context family. | report β |
DeepSeek DeepSeek-AI | DeepSeek-V4-Pro | 2026 | sparse MoE | 1.65T total / 384 routed + 1 shared (6 active) | 1M | MIT β the largest permissively-licensed model here. 61 layers, MLA (128 heads, 1 KV), vocab 129k, and index_topk/index_n_heads keys: DeepSeek Sparse Attention carries into V4. Context 128k β 1M vs V3. | report β |
Mistral Mistral AI | Mistral 7B | 2023 | dense decoder | 7.3B | 8k (4k sliding window) | GQA + sliding-window attention with rolling KV cache; Apache 2.0. | 2310.06825 β |
Mistral Mistral AI | Mixtral 8x7B / 8x22B | 2023 | sparse MoE | 8x7B: 47B / 13B active; 8x22B: 141B / 39B active | 32k / 64k | Top-2-of-8 sparse MoE feedforward, GQA; Apache 2.0; 8x22B (2024) extends ctx to 64k. | 2401.04088 β |
Mistral Mistral AI | Mistral Large 2 | 2024 | dense decoder | 123B | 128k | Dense decoder; weights open under Mistral Research License (non-commercial), unlike Apache-2.0 siblings. | report β |
Mistral Mistral AI | Mistral Small 3 / 3.1 | 2025 | dense decoder | 24B | 32k β 128k (3.1) | Latency-optimized shallow dense stack; Apache 2.0; 3.1 adds a vision encoder and 128k ctx; 3.2 tune follows. | report β report β |
Mistral Mistral AI | Magistral | 2025 | dense decoder | 24B (Small); Medium undisclosed | 128k (best β€40k) | Magistral Medium: RL-alone reasoning (GRPO variant) atop Mistral Medium 3; Magistral Small (from Mistral Small 3.1) adds cold-start SFT from Medium traces + RL; Small Apache 2.0, Medium API-only. | 2506.10910 β report β |
Mistral Mistral AI | Mistral 3 (Large 3 + Ministral 3) | 2025 | sparse MoE | Large 3: 675B total / 41B active; Ministral 3B / 8B / 14B dense | 256k | First Mistral MoE since Mixtral; image understanding; NVFP4 checkpoint for Blackwell; entire family Apache 2.0. | report β report β |
Gemma Google | Gemma | 2024 | dense decoder | 2B / 7B | 8k | GeGLU, RoPE; MQA on 2B, MHA on 7B; open weights under Gemma terms of use. | 2403.08295 β |
Gemma Google | Gemma 2 | 2024 | dense decoder | 2B / 9B / 27B | 8k | Alternating 4k-local / 8k-global layers, GQA, logit soft-capping, pre+post RMSNorm; 2B/9B distilled from larger teachers. | 2408.00118 β |
Gemma Google | Gemma 3 | 2025 | adapter multimodal | 1B / 4B / 12B / 27B | 128k (1B: 32k) | SigLIP vision encoder on 4B+; 5:1 local:global attention, QK-norm replaces soft-caps; official QAT int4 checkpoints. | 2503.19786 β |
Phi Microsoft | Phi-1 / Phi-1.5 | 2023 | dense decoder | 1.3B | 2k | 'Textbooks Are All You Need' synthetic-data thesis; phi-1 code-only, phi-1.5 common-sense reasoning. | 2306.11644 β 2309.05463 β |
Phi Microsoft | Phi-2 | 2023 | dense decoder | 2.7B | 2k | Scaled phi-1.5 recipe with knowledge transfer from phi-1.5 initialization; MIT-licensed in Jan 2024. | report β |
Phi Microsoft | Phi-3 | 2024 | dense decoder | 3.8B mini / 7B small / 14B medium | 4k / 128k via LongRoPE | mini uses a Llama-2-compatible block and runs on-phone; small adds GQA + blocksparse attention; Phi-3.5-MoE 42B/6.6B active sibling. | 2404.14219 β |
Phi Microsoft | Phi-4 | 2024 | dense decoder | 14B | 16k | Synthetic-data-centric pretrain + pivotal-token DPO; 2025 mini/multimodal (LoRA vision-audio adapters) and reasoning variants. | 2412.08905 β |
GLM / ChatGLM Zhipu AI / Z.ai | ChatGLM-6B | 2023 | dense decoder | 6B | 2k (32k by ChatGLM2/3) | GLM autoregressive blank-infilling with bidirectional prefix attention; GLM-130B (2022) was the 130B sibling. | 2103.10360 β 2210.02414 β |
GLM / ChatGLM Zhipu AI / Z.ai | GLM-4 (9B) | 2024 | dense decoder | 9B | 128k (1M variant) | Moves to a standard causal decoder with GQA, RoPE, RMSNorm; All Tools agent tuning; GLM-4-9B-Chat-1M long-ctx variant. | 2406.12793 β |
GLM / ChatGLM Zhipu AI / Z.ai | GLM-4.5 | 2025 | sparse MoE | 355B total / 32B active; Air: 106B / 12B active | 128k | Deep-narrow MoE; GQA with partial RoPE, QK-Norm, MTP layer, Muon optimizer; unified thinking/non-thinking; MIT. | 2508.06471 β |
GLM / ChatGLM Zhipu AI / Z.ai | GLM-4.6 | 2025 | sparse MoE | 355B total / 32B active | 200k | Same base architecture as 4.5 with context extended 128k β 200k; agentic-coding focus; MIT weights. | report β |
GLM / ChatGLM Zhipu AI / Z.ai | GLM-5 | 2026 | sparse MoE | 744B / 40B active (~753B all-in) | ~200k | Released 2026-02-11/12, MIT. "From Vibe Coding to Agentic Engineering"; 28.5T-token base; DSA added via continued pre-training and called lossles | 2602.15763 β report β |
GLM / ChatGLM Zhipu AI / Z.ai | GLM-5.1 | 2026 | sparse MoE | 744B / 40B active (~753B all-in) | ~200k | Released 2026-04-03 (HF) / 2026-04-07 (docs.z.ai), MIT. Flagship for long-horizon agentic engineering; Z.ai claims up to 8 hours of continuous au | report β report β |
GLM / ChatGLM Zhipu AI / Z.ai | GLM-5.2 | 2026 | sparse MoE | 753B total / 40B active | 1M | IndexShare: DSA indexer run in 21 of 78 layers, reused Γ4; MLA base; MTP shares indices; MIT, BF16+FP8 weights | report β 2603.12201 β |
Kimi Moonshot AI | Kimi K2 | 2025 | sparse MoE | 1.04T total / 32B active | 128k | 384 experts (8 routed + 1 shared), MLA attention, 64 heads; MuonClip kept the 15.5T-token run spike-free; modified-MIT. | 2507.20534 β |
Kimi Moonshot AI | Kimi K2 Thinking | 2025 | sparse MoE | 1T total / 32B active | 256k | Interleaved step-by-step reasoning with tool calls (hundreds of sequential calls); native INT4 QAT serving; same K2 MoE base. | report β |
Kimi Moonshot AI | Kimi K2.5 | 2026 | sparse MoE | 1T total / 32B active | 256K | moonshotai/Kimi-K2.5 on HF, updated ~2026-04-30, ~1.05M downloads/mo (1,053,459); Modified MIT; iterative K2 successor before K3 | report β |
Kimi Moonshot AI | Kimi K2.6 | 2026 | sparse MoE | 1T total / 32B active | 256K | moonshotai/Kimi-K2.6 on HF, updated ~2026-05-19, ~1.15M downloads/mo (1,151,976); Modified MIT | report β |
Kimi Moonshot AI | Kimi K2.7-Code | 2026 | sparse MoE | 1T total / 32B active | 256K | moonshotai/Kimi-K2.7-Code on HF, updated ~2026-06-15, ~722K downloads/mo (722,058); Modified MIT; last K2-family drop before K3 | report β |
Kimi Moonshot AI | Kimi K3 | 2026 | sparse MoE | 2.78T total / 16-of-896 experts + 2 shared | 1M | Open weights 2026-07-27 (custom kimi-k3 license, ships 8-bit). 93 layers, KDA:MLA 69:24, AttnRes, natively multimodal (image+video in), 1M ctx β all config-verified. | report β report β |
GPT-OSS OpenAI | gpt-oss-20b | 2025 | sparse MoE | 20.9B total / 3.6B active | 128k | 32 experts top-4; alternating dense + 128-token banded-sparse attention, GQA (8 KV heads), attention sinks, RoPE + YaRN. | 2508.10925 β |
GPT-OSS OpenAI | gpt-oss-120b | 2025 | sparse MoE | 116.8B total / 5.1B active | 128k | 128 experts top-4; MXFP4 MoE weights fit a single 80GB GPU; adjustable low/medium/high reasoning effort. | 2508.10925 β report β |
OLMo Allen Institute for AI (Ai2) | OLMo | 2024 | dense decoder | 1B / 7B | 2k | Non-parametric LayerNorm, SwiGLU, RoPE; Dolma corpus + full training code released; Apache 2.0. | 2402.00838 β |
OLMo Allen Institute for AI (Ai2) | OLMo 2 | 2024 | dense decoder | 7B / 13B; 32B (2025) | 4k | Reordered post-block RMSNorm + QK-norm for training stability; Dolmino mid-training mix; 32B added Mar 2025. | 2501.00656 β |
OLMo Allen Institute for AI (Ai2) | Olmo 3 | 2025 | dense decoder | 7B / 32B | 65k | Base/Think/Instruct/RL-Zero variants; releases the full 'model flow' (Dolma 3 data, checkpoints, code). | report β |
Falcon TII (UAE) | Falcon 7B/40B/180B | 2023 | dense decoder | 7B / 40B / 180B | 2k | Multiquery (7B) / multigroup (40B, 180B) attention, parallel attn+MLP blocks; web-only RefinedWeb data; Apache 2.0 (180B custom license). | 2311.16867 β |
Falcon TII (UAE) | Falcon 2 | 2024 | dense decoder | 11B | 8k | Multi-stage long-context training to 8k; 11B-VLM sibling adds vision; permissive TII license. | 2407.14885 β |
Falcon TII (UAE) | Falcon Mamba | 2024 | SSM / hybrid | 7B | trained 8k; constant-memory decode | Pure Mamba-1 SSM, fully attention-free (not actually a hybrid); extra RMSNorms for stability; TII Falcon license. | 2410.05355 β |
Falcon TII (UAE) | Falcon 3 | 2024 | dense decoder | 1Bβ10B | 32k (8k on 1B) | GQA small models; 10B built from 7B via depth upscaling; quantized and Mamba-refresh variants in the family. | report β |
Falcon TII (UAE) | Falcon-H1 | 2025 | SSM / hybrid | 0.5Bβ34B | up to 256k | Parallel hybrid: attention heads and Mamba-2 SSM heads run side-by-side within each block; 18 languages. | 2507.22448 β |
Command Cohere | Command R | 2024 | dense decoder | 35B | 128k | RAG and tool use with grounded citations; Aug-2024 refresh (32B) adds GQA; CC-BY-NC 4.0 + acceptable-use policy. | report β |
Command Cohere | Command R+ | 2024 | dense decoder | 104B | 128k | GQA; multilingual, multi-step tool use; CC-BY-NC 4.0 non-commercial license. | report β |
Command Cohere | Command A | 2025 | dense decoder | 111B | 256k | Interleaved 3 sliding-window : 1 full-attention layers with NoPE in the full-attn layers; serveable on 2 GPUs; CC-BY-NC. | 2504.00698 β |
Nemotron NVIDIA | Nemotron-4 | 2024 | dense decoder | 15B; 340B | 4k | RoPE, squared-ReLU MLP, GQA, no biases; 340B ships Base/Instruct/Reward for synthetic-data generation. | 2402.16819 β 2406.11704 β |
Nemotron NVIDIA | Llama-Nemotron | 2025 | dense decoder | Nano 8B / Super 49B / Ultra 253B | 128k | Puzzle NAS-compressed Llama 3 derivatives with irregular per-layer blocks; runtime 'detailed thinking on/off' toggle. | 2505.00949 β |
Nemotron NVIDIA | Nemotron-H | 2025 | SSM / hybrid | 8B / 47B / 56B | undisclosed | Majority of attention layers replaced by Mamba-2 (constant per-token compute); FP8 pretraining; 47B distilled via MiniPuzzle. | 2504.03624 β |
Nemotron NVIDIA | Nemotron Nano 2 | 2025 | SSM / hybrid | 9B (pruned from 12B) | 128k | Mamba-2-heavy hybrid reasoner, up to ~6x decode throughput vs similar-size transformers; most pretraining data released. | 2508.14444 β |
Granite IBM | Granite 3.x | 2024 | dense decoder | 2B / 8B dense; MoE 1B & 3B (400M / 800M active) | 4k β 128k (3.1+) | GQA, RoPE; fine-grained dropless MoE variants; 3.1β3.3 extend ctx to 128k and add reasoning + speculative decoding. | report β |
Granite IBM | Granite 4.0 | 2025 | SSM / hybrid | Small 32B / 9B active; Tiny 7B / 1B active; Micro 3B dense | 128k validated (NoPE: length-flexible) | 9:1 Mamba-2:transformer blocks with no positional encodings; Small/Tiny are hybrid MoE, Micro dense; ISO 42001 certified. | report β |
OpenAI GPT + o-series OpenAI Β· proprietary | GPT-1 | 2018 | dense decoder | 117M | 512 | 12-layer decoder-only Transformer; generative pretraining + supervised task finetuning. Fully disclosed. | report β |
OpenAI GPT + o-series OpenAI Β· proprietary | GPT-2 | 2019 | dense decoder | 1.5B | 1k | 48-layer decoder-only; scaled GPT-1 with pre-LayerNorm tweaks. Weights fully released (staged, 2019). | report β |
OpenAI GPT + o-series OpenAI Β· proprietary | GPT-3 | 2020 | dense decoder | 175B | 2k | 96 layers, 96 heads, d_model 12288; alternating dense + locally banded sparse attention. Last fully disclosed GPT. | 2005.14165 β |
OpenAI GPT + o-series OpenAI Β· proprietary | GPT-3.5 / ChatGPT | 2022 | dense decoder | undisclosed (GPT-3 lineage) | 4k-16k | RLHF-tuned GPT-3-series models (InstructGPT method). No new architecture disclosed; exact sizes undisclosed. | 2203.02155 β report β |
OpenAI GPT + o-series OpenAI Β· proprietary | GPT-4 | 2023 | undisclosed | undisclosed (~1.8T MoE reported) | 8k / 32k | Tech report explicitly withholds size and architecture. MoE with ~16 experts widely reported (reported, undisclosed). | 2303.08774 β report β |
OpenAI GPT + o-series OpenAI Β· proprietary | GPT-4 Turbo | 2023 | undisclosed | undisclosed | 128k | Cheaper, faster GPT-4 tier with 128k ctx and newer knowledge cutoff; zero architecture facts disclosed. | report β |
OpenAI GPT + o-series OpenAI Β· proprietary | GPT-4o | 2024 | native multimodal | undisclosed | 128k | Disclosed: one network trained end-to-end across text/vision/audio (no adapter pipeline). Size and internals undisclosed. | report β 2410.21276 β |
OpenAI GPT + o-series OpenAI Β· proprietary | GPT-4.1 | 2025 | undisclosed | undisclosed | 1M | API-focused line with 1M-token context; long-context training improvements described, architecture not. | report β |
OpenAI GPT + o-series OpenAI Β· proprietary | o1 (training-paradigm note) | 2024 | undisclosed | undisclosed | 128k (preview) / 200k | Paradigm shift, not a disclosed arch: large-scale RL on chain-of-thought (hidden reasoning tokens). Internals undisclosed. | report β 2412.16720 β |
OpenAI GPT + o-series OpenAI Β· proprietary | o3 (training-paradigm note) | 2025 | undisclosed | undisclosed | 200k | o1 successor: further-scaled RL on CoT plus agentic tool use inside the reasoning chain. Architecture undisclosed. | report β |
OpenAI GPT + o-series OpenAI Β· proprietary | GPT-5 | 2025 | undisclosed | undisclosed | 400k (API) | Disclosed only at system level: real-time router over a fast model and a deeper reasoning model. Component archs undisclosed. | report β report β |
Anthropic Claude Anthropic Β· proprietary | Claude 1 | 2023 | undisclosed | undisclosed | 9k β 100k (May 2023) | No arch/params ever disclosed. Training method is public: RLHF + Constitutional AI. Ctx jumped 9kβ100k mid-2023. | report β 2212.08073 β |
Anthropic Claude Anthropic Β· proprietary | Claude 2 | 2023 | undisclosed | undisclosed | 100k (2.1: 200k) | Model card covers evals and safety only; no architecture facts. 100k ctx; Claude 2.1 raised it to 200k. | report β |
Anthropic Claude Anthropic Β· proprietary | Claude 3 (Haiku / Sonnet / Opus) | 2024 | undisclosed | undisclosed | 200k | First multimodal (vision-input) tier, three sizes. Model card gives evals and ctx; params/architecture undisclosed. | report β report β |
Anthropic Claude Anthropic Β· proprietary | Claude 3.5 Sonnet | 2024 | undisclosed | undisclosed | 200k | Mid-generation upgrade (speed/cost/evals disclosed; later 3.5 Haiku and computer use). Architecture undisclosed. | report β |
Anthropic Claude Anthropic Β· proprietary | Claude 3.7 Sonnet | 2025 | undisclosed | undisclosed | 200k | First 'hybrid reasoning' Claude: one model, optional extended-thinking token budget. Paradigm disclosed, architecture not. | report β |
Anthropic Claude Anthropic Β· proprietary | Claude 4 family (Opus 4 / Sonnet 4, later 4.1 / 4.5) | 2025 | undisclosed | undisclosed | 200k (Sonnet 4: 1M beta) | Hybrid reasoning with tool use during extended thinking; detailed system cards published. Architecture undisclosed. | report β |
Google Gemini (+ PaLM lineage) Google / Google DeepMind Β· proprietary | PaLM (precursor) | 2022 | dense decoder | 540B | 2k | Fully disclosed: decoder-only, SwiGLU, parallel layers, multi-query attention, RoPE; 540B dense trained on Pathways. | 2204.02311 β |
Google Gemini (+ PaLM lineage) Google / Google DeepMind Β· proprietary | PaLM 2 (precursor) | 2023 | undisclosed | undisclosed (stated smaller than PaLM) | undisclosed | Report discloses compute-optimal scaling and mixture-of-objectives training but withholds size and architecture details. | 2305.10403 β |
Google Gemini (+ PaLM lineage) Google / Google DeepMind Β· proprietary | Gemini 1 | 2023 | native multimodal | undisclosed (Nano-1 1.8B / Nano-2 3.25B disclosed) | 32k | Decoder-only Transformers with multi-query attention; natively multimodal over interleaved text/image/audio/video. | 2312.11805 β |
Google Gemini (+ PaLM lineage) Google / Google DeepMind Β· proprietary | Gemini 1.5 | 2024 | sparse MoE | undisclosed | 1M (10M in research) | Tech report explicitly discloses a sparse mixture-of-experts Transformer; expert count and params withheld. | 2403.05530 β |
Google Gemini (+ PaLM lineage) Google / Google DeepMind Β· proprietary | Gemini 2.0 | 2024 | undisclosed | undisclosed | 1M | Agentic-era release: native tool use, native image + audio output (Flash first). Blog discloses capabilities, not architecture. | report β |
Google Gemini (+ PaLM lineage) Google / Google DeepMind Β· proprietary | Gemini 2.5 | 2025 | sparse MoE | undisclosed | 1M | Report: sparse-MoE Transformers, natively multimodal, with 'thinking' (RL on chain-of-thought). Params undisclosed. | 2507.06261 β |
xAI Grok xAI Β· proprietary | Grok-1 | 2023 | sparse MoE | 314B total / ~25% active per token (2-of-8 experts) | 8k | Open-sourced Mar 2024 under Apache-2.0: 8-expert MoE, 2 active per token β the one fully disclosed Grok. | report β report β |
xAI Grok xAI Β· proprietary | Grok-1.5 | 2024 | undisclosed | undisclosed | 128k | 128k ctx and improved reasoning/math; no architecture disclosure (1.5V added vision via unstated means). | report β |
xAI Grok xAI Β· proprietary | Grok-2 | 2024 | sparse MoE | undisclosed at launch | 128k | No disclosure at launch; weights published on Hugging Face in Aug 2025, making the large-MoE checkpoint inspectable. | report β report β |
xAI Grok xAI Β· proprietary | Grok 3 | 2025 | undisclosed | undisclosed | 1M | Trained on Colossus (~200k GPUs); Reasoning variants with test-time compute ('Think'). No architecture facts disclosed. | report β |
xAI Grok xAI Β· proprietary | Grok 4 | 2025 | undisclosed | undisclosed | 256k | RL scaled toward pretraining-level compute; native tool use and multi-agent 'Heavy' variant. Architecture undisclosed. | report β |
Amazon Nova Amazon (AGI) Β· proprietary | Nova 1.0 (Micro / Lite / Pro) | 2024 | undisclosed | undisclosed | 128k (Micro) / 300k (Lite, Pro) | Transformer-based per tech report; Lite/Pro take text+image+video input, Micro text-only. No params or topology disclosed. | report β 2506.12103 β |
Amazon Nova Amazon (AGI) Β· proprietary | Nova Premier | 2025 | undisclosed | undisclosed | 1M | Top tier with 1M ctx, positioned as a teacher model for distillation into smaller Novas. Architecture undisclosed. | 2506.12103 β |
Mistral Large (proprietary tier) Mistral AI Β· proprietary | Mistral Large | 2024 | undisclosed | undisclosed | 32k | API/Azure flagship; announcement gives benchmarks, multilingual claims, and 32k ctx only. No architecture disclosure. | report β |
Mistral Large (proprietary tier) Mistral AI Β· proprietary | Mistral Large 2 (2407) | 2024 | dense decoder | 123B | 128k | Disclosed 123B dense decoder, 128k ctx; weights downloadable under the non-commercial Mistral Research License. | report β |