model releaseCohere

Cohere Releases Command A+: 218B-Parameter MoE Model With 4-Bit Quantization Runs on Single B200 GPU

TL;DR

Cohere has released Command A+, an open-source sparse mixture-of-experts model with 218 billion total parameters and 25 billion active parameters. The model features W4A4 quantization allowing deployment on a single Nvidia B200 GPU, supports 128K input context, and includes built-in chain-of-thought reasoning with vision capabilities.

2 min read
0

Cohere Releases Command A+: 218B-Parameter MoE Model With 4-Bit Quantization Runs on Single B200 GPU

Cohere has released Command A+, an open-source sparse mixture-of-experts (MoE) model with 218 billion total parameters and 25 billion active parameters. The model's W4A4 quantization enables deployment on a single Nvidia B200 GPU, significantly reducing hardware requirements compared to full-precision variants.

Technical Specifications

Command A+ uses a decoder-only architecture with 128 experts, activating 8 per token plus one shared expert. The model supports:

  • Context length: 128K input, 64K output
  • Quantization options: BF16 (requires 4x B200 or 8x H100), FP8 (2x B200 or 4x H100), W4A4 (1x B200 or 2x H100)
  • Languages: 48 languages including English, Chinese, Japanese, Korean, and major European and Asian languages
  • Modalities: Text and image inputs
  • License: Apache 2.0

Cohere states all three quantization levels show "negligible differences in benchmark quality," though specific benchmark scores were not disclosed in the model card.

Quantization Methodology

The W4A4 quantization applies NVFP4 4-bit precision to MoE experts only, while keeping attention layers (Q/K/V/O projections and KV cache) at full precision. According to Cohere, this selective approach addresses the "outsized quantization tax" that reasoning models typically face, where per-token errors compound during long decoding traces.

The company used Quantization-Aware Distillation (QAD) during post-training, training the quantized model to match the full-precision version's output distribution using fake quantization operators in forward passes and straight-through estimators on backward passes.

Architecture Details

The model interleaves sliding-window attention layers with rotational positional embeddings and global attention layers without positional embeddings in a 3:1 ratio, building on the architecture introduced in Command A. The sparse MoE layer uses a token-choice router with additive-bias-based load balancing and replaces the standard softmax activation with normalized sigmoid over top-k expert logits.

Command A+ includes native chain-of-thought reasoning, generating intermediate thinking steps between <START_THINKING> and <END_THINKING> tags. The model also supports conversational tool use through JSON schema-based function calling integrated into the chat template.

Deployment Requirements

The W4A4 variant requires vLLM version 0.21.0 or higher and Cohere's melody library (version 0.9.0+) for accurate response parsing. Cohere recommends sampling parameters of temperature=0.9, top_p=0.95, and repetition_penalty=1.04.

Pricing information for API access has not been disclosed.

What This Means

Command A+'s ability to run on a single B200 GPU represents a meaningful reduction in deployment costs for models in the 200B+ parameter range. The selective quantization approach—preserving full precision in attention while compressing experts—suggests a practical path for maintaining reasoning quality while reducing memory footprint. However, without published benchmark scores, it's unclear how Command A+ compares to frontier models like GPT-4, Claude 3.5 Sonnet, or DeepSeek V3 on standard reasoning tasks. The model's support for 48 languages and tool use capabilities positions it for enterprise agentic applications, though real-world performance validation remains to be seen.

Related Articles

model release

Thinking Machines Lab releases Inkling: 975B-parameter open-weights multimodal model under Apache-2.0

Thinking Machines Lab released Inkling, a Mixture-of-Experts transformer with 975B total parameters and 41B active parameters, trained on 45 trillion tokens of text, images, audio and video. The Apache-2.0 licensed model is designed as a base for fine-tuning rather than a frontier model.

model release

Cohere releases 2B parameter Arabic speech recognition model with 25.9% average WER

Cohere and Cohere Labs released Cohere Transcribe Arabic, a 2B parameter automatic speech recognition model optimized for Arabic dialects and Arabic-English code-switching. The open-source model achieves a 25.9% average word error rate across major Arabic ASR benchmarks, outperforming models up to 30B parameters.

model release

Moonshot AI's Kimi k3 claims top performance among Chinese models with 1M token context

Moonshot AI has released Kimi k3, positioning it as China's leading AI model. The company claims the model features a 1 million token context window and improved reasoning capabilities, though independent benchmarks are not yet available.

model release

Moonshot AI Releases Kimi K3: Open-Weight Multimodal Reasoning Model with 1M Context Window

Moonshot AI has released Kimi K3, an open-weight multimodal reasoning model with a 1-million token context window. The model is priced at $3 per 1M input tokens and $15 per 1M output tokens, available through OpenRouter.

Comments

Loading...