MaxText is a high performance, highly scalable, open-source LLM library and reference implementation written in pure Python/JAX and targeting Google Cloud TPUs and GPUs for training.
MaxText provides a library of high performance models to choose from, including Gemma, Llama, DeepSeek, Qwen, and Mistral. For each of these models, MaxText supports pre-training (up to tens of thousands of chips) and scalable post-training, with popular techniques like Supervised Fine-Tuning (SFT) and Group Relative Policy Optimization (GRPO, a type of Reinforcement Learning).
MaxText achieves high Model FLOPs Utilization (MFU) and tokens/second from single host to very large clusters while staying simple and largely "optimization-free" thanks to the power of JAX and the XLA compiler.
MaxText is the launching point for ambitious LLM projects both in research and production. We encourage you to start by experimenting with MaxText out of the box and then fork and modify MaxText to meet your needs.
Check out our Read The Docs site or directly Get Started with your first MaxText run. If you’re interested in Diffusion models (Wan 2.1, Flux, etc), see the MaxDiffusion repository in our AI Hypercomputer GitHub organization.
We recommend installing MaxText inside a Python virtual environment.
This is the easiest way to get started with the latest stable version.
# 1. Install uv, a fast Python package installer
pip install uv
# 2. Install MaxText and its dependencies
uv pip install maxtext --resolution=lowest
install_maxtext_github_deps
Note: The
install_maxtext_github_deps
command is temporarily required to install dependencies directly from GitHub that are not yet available on PyPI.
Note: The maxtext package contains a comprehensive list of all direct and transitive dependencies, with lower bounds, generated by seed-env. We highly recommend the
--resolution=lowest
flag. It instructsuv
to install the specific, tested versions of dependencies defined by MaxText, rather than the latest available ones. This ensures a consistent and reproducible environment, which is critical for stable performance and for running benchmarks.
If you plan to contribute to MaxText or need the latest unreleased features, install from source.
# 1. Clone the repository
git clone https://github.com/AI-Hypercomputer/maxtext.git
cd maxtext
# 2. Install dependencies in editable mode
pip install uv
uv pip install -e . --resolution=lowest
install_maxtext_github_deps
After installation, you can verify the package is available with python3 -c "import MaxText"
and run training jobs with python3 -m MaxText.train ...
.
- [September 5, 2025] MaxText has moved to an
src
layout as part of RESTRUCTURE.md. For existing environments, please runpip install -e .
from MaxText root. - [August 13, 2025] The Qwen3 2507 MoE family of models is now supported: MoEs: 235B Thinking & 280B Coder as well as existing dense models: 0.6B, 4B, 8B, 14B, and 32B.
- [July 27, 2025] Updated TFLOPS/s calculation (PR) to account for causal attention, dividing the attention flops in half. Accounted for sliding window and chunked attention reduced attention flops in PR and PR. Changes impact large sequence configs, as explained in this doc
- [July 16, 2025] We will be restructuring the MaxText repository for improved organization and clarity. Please review the proposed structure and provide feedback.
- [July 11, 2025] Multi-Token Prediction (MTP) training support! Adds an auxiliary loss based on predicting multiple future tokens, inspired by DeepSeek-V3 paper, to enhance training efficiency.
- [June 25, 2025] DeepSeek R1-0528 variant is now supported
- [April 24, 2025] Llama 4 Maverick models are now supported
MaxText provides a library of models and demonstrates how to perform pre-training or post-training with high performance and scale.
MaxText leverages JAX AI libraries and presents a cohesive and comprehensive demonstration of training at scale by using Flax (neural networks), Tunix (post-training), Orbax (checkpointing), Optax (optimization), and Grain (dataloading).
In addition to pure text-based LLMs, we also support multi-modal training with Gemma 3 and Llama 4 VLMs.
If you’re building models from scratch, MaxText can serve as a reference implementation for experimentation, ideation, and inspiration - just fork and modify MaxText to train your model, whether it’s a small dense model like Llama 8B, or a large MoE like DeepSeek-V3. Experiment with configs and model design to build the most efficient model on TPU or GPU.
MaxText provides opinionated implementations for how to achieve optimal performance across a wide variety of dimensions like sharding, quantization, and checkpointing.
If you are post-training a model, whether it is proprietary or open source, MaxText provides a scalable framework using Tunix. For RL (like GRPO), we leverage vLLM for sampling and Pathways (soon) for multi-host.
Our goal is to provide a variety of models (dimension “a”) and techniques (dimension “b”), so you can easily explore (a) * (b) combinations and efficiently train the perfect model for your use case.
Check out these getting started guides:
MaxText aims to provide you with the best OSS models, whether as a reference implementation, or to post-train and then serve with vLLM.
Supported JAX models in MaxText
- Google
- Gemma 3 (4B, 12B, 27B)
- Gemma 2 (2B, 9B, 27B)
- Gemma 1 (2B, 7B)
- Alibaba
- Qwen 3 MoE 2507 (235B, 480B)
- Qwen 3 MoE (30B, 235B)
- Qwen 3 Dense (0.6B, 1.7B, 4B, 8B, 14B, 32B)
- DeepSeek
- DeepSeek-V2 (16B, 236B)
- DeepSeek-V3 0528 (671B)
- Meta
- Llama 4 Scout (109B) & Maverick (400B)
- Llama 3.3 70B, 3.1 (8B, 70B, 405B), 3.0 (8B, 70B, 405B)
- Llama 2 (7B, 13B, 70B)
- Open AI
- GPT3 (52k, 6B, 22B, 175B)
- Mistral
- Mixtral (8x7B, 8x22B)
- Mistral (7B)
- Diffusion Models
- See MaxDiffusion (Wan 2.1, Flux, SDXL, etc)
Please join our Discord Channel and if you have feedback, you can file a feature request, documentation request, or bug report here.