oumi-ai
oumi
Python

Easily fine-tune, evaluate and deploy Gemma 4, Qwen3.5, Qwen3.6, gpt-oss, DeepSeek-R1, or any open source LLM / VLM!

Last updated Jul 7, 2026
9.3k
Stars
783
Forks
21
Issues
+3
Stars/day
Attention Score
90
Language breakdown
Python 90.3%
Jupyter Notebook 8.4%
Shell 1.0%
Jinja 0.2%
Makefile 0.1%
Dockerfile 0.0%
โ–ธ Files click to expand
README

Oumi Logo

Documentation Blog Twitter Discord PyPI version License Tests GPU Tests GitHub Repo stars Code style: black pre-commit About

Everything you need to build state-of-the-art foundation models, end-to-end

GitHub trending

๐Ÿ”ฅ News

Older updates

๐Ÿ”Ž About

Oumi is a fully open-source platform that streamlines the entire lifecycle of foundation models - from data preparation and training to evaluation and deployment. Whether you're developing on a laptop, launching large scale experiments on a cluster, or deploying models in production, Oumi provides the tools and workflows you need.

With Oumi, you can:

  • ๐Ÿš€ Train and fine-tune models from 10M to 405B parameters using state-of-the-art techniques (SFT, LoRA, QLoRA, GRPO, and more)
  • ๐Ÿค– Work with both text and multimodal models (Llama, DeepSeek, Qwen, Phi, and others)
  • ๐Ÿ”„ Synthesize and curate training data with LLM judges
  • โšก๏ธ Deploy models efficiently with popular inference engines (vLLM, SGLang)
  • ๐Ÿ“Š Evaluate models comprehensively across standard benchmarks
  • ๐ŸŒŽ Run anywhere - from laptops to clusters to clouds (AWS, Azure, GCP, Lambda, and more)
  • ๐Ÿ”Œ Integrate with both open models and commercial APIs (OpenAI, Anthropic, Vertex AI, Together, Parasail, ...)
All with one consistent API, production-grade reliability, and all the flexibility you need for research.

Learn more at oumi.ai, or jump right in with the quickstart guide.

๐Ÿš€ Getting Started

| Notebook | Try in Colab | Goal | |----------|--------------|-------------| | ๐ŸŽฏ Getting Started: A Tour | Open In Colab | Quick tour of core features: training, evaluation, inference, and job management | | ๐Ÿ”ง Model Finetuning Guide | Open In Colab | End-to-end guide to LoRA tuning with data prep, training, and evaluation | | ๐Ÿ“š Model Distillation | Open In Colab | Guide to distilling large models into smaller, efficient ones | | ๐Ÿ“‹ Model Evaluation | Open In Colab | Comprehensive model evaluation using Oumi's evaluation framework | | โ˜๏ธ Remote Training | Open In Colab | Launch and monitor training jobs on cloud (AWS, Azure, GCP, Lambda, etc.) platforms | | ๐Ÿ“ˆ LLM-as-a-Judge | Open In Colab | Filter and curate training data with built-in judges |

๐Ÿ”ง Usage

Installation

Choose the installation method that works best for you:

Using pip (Recommended)

# Basic installation
uv pip install oumi

With GPU support

uv pip install 'oumi[gpu]'

Latest development version

uv pip install git+https://github.com/oumi-ai/oumi.git

Don't have uv? Install it or use pip instead.

Using Docker

# Pull the latest image
docker pull ghcr.io/oumi-ai/oumi:latest

Run oumi commands

docker run --gpus all -it ghcr.io/oumi-ai/oumi:latest oumi --help

Train with a mounted config

docker run --gpus all -v $(pwd):/workspace -it ghcr.io/oumi-ai/oumi:latest \ oumi train --config /workspace/my_config.yaml

Quick Install Script (Experimental)

Try Oumi without setting up a Python environment. This installs Oumi in an isolated environment:

curl -LsSf https://oumi.ai/install.sh | bash

For more advanced installation options, see the installation guide.

Oumi CLI

You can quickly use the oumi command to train, evaluate, and infer models using one of the existing recipes:

# Training
oumi train -c configs/recipes/smollm/sft/135m/quickstart_train.yaml

Evaluation

oumi evaluate -c configs/recipes/smollm/evaluation/135m/quickstart_eval.yaml

Inference

oumi infer -c configs/recipes/smollm/inference/135m_infer.yaml --interactive

For more advanced options, see the training, evaluation, inference, and llm-as-a-judge guides.

Running Jobs Remotely

You can run jobs remotely on cloud platforms (AWS, Azure, GCP, Lambda, etc.) using the oumi launch command:

# GCP
oumi launch up -c configs/recipes/smollm/sft/135m/quickstartgcpjob.yaml

AWS

oumi launch up -c configs/recipes/smollm/sft/135m/quickstartgcpjob.yaml --resources.cloud aws

Azure

oumi launch up -c configs/recipes/smollm/sft/135m/quickstartgcpjob.yaml --resources.cloud azure

Lambda

oumi launch up -c configs/recipes/smollm/sft/135m/quickstartgcpjob.yaml --resources.cloud lambda

Note: Oumi is in beta and under active development. The core features are stable, but some advanced features might change as the platform improves.

๐Ÿ’ป Why use Oumi?

If you need a comprehensive platform for training, evaluating, or deploying models, Oumi is a great choice.

Here are some of the key features that make Oumi stand out:

  • ๐Ÿ”ง Zero Boilerplate: Get started in minutes with ready-to-use recipes for popular models and workflows. No need to write training loops or data pipelines.
  • ๐Ÿข Enterprise-Grade: Built and validated by teams training models at scale
  • ๐ŸŽฏ Research Ready: Perfect for ML research with easily reproducible experiments, and flexible interfaces for customizing each component.
  • ๐ŸŒ Broad Model Support: Works with most popular model architectures - from tiny models to the largest ones, text-only to multimodal.
  • ๐Ÿš€ SOTA Performance: Native support for distributed training techniques (FSDP, DeepSpeed, DDP) and optimized inference engines (vLLM, SGLang).
  • ๐Ÿค Community First: 100% open source with an active community. No vendor lock-in, no strings attached.

๐Ÿ“š Examples & Recipes

Explore the growing collection of ready-to-use configurations for state-of-the-art models and training workflows:

Note: These configurations are not an exhaustive list of what's supported, simply examples to get you started. You can find a more exhaustive list of supported models, and datasets (supervised fine-tuning, pre-training, preference tuning, and vision-language finetuning) in the oumi documentation.

Qwen Family

| Model | Example Configurations | |-------|------------------------| | Qwen3-Next 80B A3B | LoRA โ€ข Inference โ€ข Inference (Instruct) โ€ข Evaluation | | Qwen3 30B A3B | LoRA โ€ข Inference โ€ข Evaluation | | Qwen3 32B | LoRA โ€ข Inference โ€ข Evaluation | | Qwen3 14B | LoRA โ€ข Inference โ€ข Evaluation | | Qwen3 8B | FFT โ€ข Inference โ€ข Evaluation | | Qwen3 4B | FFT โ€ข Inference โ€ข Evaluation | | Qwen3 1.7B | FFT โ€ข Inference โ€ข Evaluation | | Qwen3 0.6B | FFT โ€ข Inference โ€ข Evaluation | | QwQ 32B | FFT โ€ข LoRA โ€ข QLoRA โ€ข Inference โ€ข Evaluation | | Qwen2.5-VL 3B | SFT โ€ข LoRAโ€ข Inference (vLLM) โ€ข Inference | | Qwen2-VL 2B | SFT โ€ข LoRA โ€ข Inference (vLLM) โ€ข Inference (SGLang) โ€ข Inference โ€ข Evaluation |

๐Ÿ‹ DeepSeek R1 Family

| Model | Example Configurations | |-------|------------------------| | DeepSeek R1 671B | Inference (Together AI) | | Distilled Llama 8B | FFT โ€ข LoRA โ€ข QLoRA โ€ข Inference โ€ข Evaluation | | Distilled Llama 70B | FFT โ€ข LoRA โ€ข QLoRA โ€ข Inference โ€ข Evaluation | | Distilled Qwen 1.5B | FFT โ€ข LoRA โ€ข Inference โ€ข Evaluation | | Distilled Qwen 32B | LoRA โ€ข Inference โ€ข Evaluation |

๐Ÿฆ™ Llama Family

| Model | Example Configurations | |-------|------------------------| | Llama 4 Scout Instruct 17B | FFT โ€ข LoRA โ€ข QLoRA โ€ข Inference (vLLM) โ€ข Inference โ€ข Inference (Together.ai) | | Llama 4 Scout 17B | FFT | | Llama 3.1 8B | FFT โ€ข LoRA โ€ข QLoRA โ€ข Pre-training โ€ข Inference (vLLM) โ€ข Inference โ€ข Evaluation | | Llama 3.1 70B | FFT โ€ข LoRA โ€ข QLoRA โ€ข Inference โ€ข Evaluation | | Llama 3.1 405B | FFT โ€ข LoRA โ€ข QLoRA | | Llama 3.2 1B | FFT โ€ข LoRA โ€ข QLoRA โ€ข Inference (vLLM) โ€ข Inference (SGLang) โ€ข Inference โ€ข Evaluation | | Llama 3.2 3B | FFT โ€ข LoRA โ€ข QLoRA โ€ข Inference (vLLM) โ€ข Inference (SGLang) โ€ข Inference โ€ข Evaluation | | Llama 3.3 70B | FFT โ€ข LoRA โ€ข QLoRA โ€ข Inference (vLLM) โ€ข Inference โ€ข Evaluation | | Llama 3.2 Vision 11B | SFT โ€ข Inference (vLLM) โ€ข Inference (SGLang) โ€ข Evaluation |

๐Ÿฆ… Falcon family

| Model | Example Configurations | |-------|------------------------| | Falcon-H1 | FFT โ€ข Inference โ€ข Evaluation | | Falcon-E (BitNet) | FFT โ€ข DPO โ€ข Evaluation |

๐Ÿ’Ž Gemma 3 Family

| Model | Example Configurations | |-------|------------------------| | Gemma 3 4B Instruct | FFT โ€ข Inference โ€ข Evaluation | | Gemma 3 12B Instruct | LoRA โ€ข Inference โ€ข Evaluation | | Gemma 3 27B Instruct | LoRA โ€ข Inference โ€ข Evaluation |

๐Ÿฆ‰ OLMo 3 Family

| Model | Example Configurations | |-------|------------------------| | OLMo 3 7B Instruct | FFT โ€ข Inference โ€ข Evaluation | | OLMo 3 32B Instruct | LoRA โ€ข Inference โ€ข Evaluation |

๐ŸŽจ Vision Models

| Model | Example Configurations | |-------|------------------------| | Llama 3.2 Vision 11B | SFT โ€ข LoRA โ€ข Inference (vLLM) โ€ข Inference (SGLang) โ€ข Evaluation | | LLaVA 7B | SFT โ€ข Inference (vLLM) โ€ข Inference | | Phi3 Vision 4.2B | SFT โ€ข LoRA โ€ข Inference (vLLM) | | Phi4 Vision 5.6B | SFT โ€ข LoRA โ€ข Inference (vLLM) โ€ข Inference | | Qwen2-VL 2B | SFT โ€ข LoRA โ€ข Inference (vLLM) โ€ข Inference (SGLang) โ€ข Inference โ€ข Evaluation | | Qwen3-VL 2B | Inference | | Qwen3-VL 4B | Inference | | Qwen3-VL 8B | Inference | | Qwen2.5-VL 3B | SFT โ€ข LoRAโ€ข Inference (vLLM) โ€ข Inference | | SmolVLM-Instruct 2B | SFT โ€ข LoRA |

๐Ÿ” Even more options

This section lists all the language models that can be used with Oumi. Thanks to the integration with the ๐Ÿค— Transformers library, you can easily use any of these models for training, evaluation, or inference.

Models prefixed with a checkmark (โœ…) have been thoroughly tested and validated by the Oumi community, with ready-to-use recipes available in the configs/recipes directory.

๐Ÿ“‹ Click to see more supported models

Instruct Models

| Model | Size | Paper | HF Hub | License | Open [^1] | |-------|------|-------|---------|----------|------| | โœ… SmolLM-Instruct | 135M/360M/1.7B | Blog | Hub | Apache 2.0 | โœ… | | โœ… DeepSeek R1 Family | 1.5B/8B/32B/70B/671B | Blog | Hub | MIT | โŒ | | โœ… Llama 3.1 Instruct | 8B/70B/405B | Paper | Hub | License | โŒ | | โœ… Llama 3.2 Instruct | 1B/3B | Paper | Hub | License | โŒ | | โœ… Llama 3.3 Instruct | 70B | Paper | Hub | License | โŒ | | โœ… Phi-3.5-Instruct | 4B/14B | Paper | Hub | License | โŒ | | โœ… Qwen3 | 0.6B-32B | Paper | Hub | License | โŒ | | Qwen2.5-Instruct | 0.5B-70B | Paper | Hub | License | โŒ | | OLMo 2 Instruct | 7B | Paper | Hub | Apache 2.0 | โœ… | | โœ… OLMo 3 Instruct | 7B/32B | Paper | Hub | Apache 2.0 | โœ… | | MPT-Instruct | 7B | Blog | Hub | Apache 2.0 | โœ… | | Command R | 35B/104B | Blog | Hub | License | โŒ | | Granite-3.1-Instruct | 2B/8B | Paper | Hub | Apache 2.0 | โŒ | | Gemma 2 Instruct | 2B/9B | Blog | Hub | License | โŒ | | โœ… Gemma 3 Instruct | 4B/12B/27B | Blog | Hub | License | โŒ | | DBRX-Instruct | 130B MoE | Blog | Hub | Apache 2.0 | โŒ | | Falcon-Instruct | 7B/40B | Paper | Hub | Apache 2.0 | โŒ | | โœ… Llama 4 Scout Instruct | 17B (Activated) 109B (Total) | Paper | Hub | License | โŒ | | โœ… Llama 4 Maverick Instruct | 17B (Activated) 400B (Total) | Paper | Hub | License | โŒ |

Vision-Language Models

| Model | Size | Paper | HF Hub | License | Open | |-------|------|-------|---------|----------|------| | โœ… Llama 3.2 Vision | 11B | Paper | Hub | License | โŒ | | โœ… LLaVA-1.5 | 7B | Paper | Hub | License | โŒ | | โœ… Phi-3 Vision | 4.2B | Paper | Hub | License | โŒ | | โœ… BLIP-2 | 3.6B | Paper | Hub | MIT | โŒ | | โœ… Qwen2-VL | 2B | Blog | Hub | License | โŒ | | โœ… Qwen3-VL | 2B/4B/8B | Blog | Hub | License | โŒ | | โœ… SmolVLM-Instruct | 2B | Blog | Hub | Apache 2.0 | โœ… |

Base Models

| Model | Size | Paper | HF Hub | License | Open | |-------|------|-------|---------|----------|------| | โœ… SmolLM2 | 135M/360M/1.7B | Blog | Hub | Apache 2.0 | โœ… | | โœ… Llama 3.2 | 1B/3B | Paper | Hub | License | โŒ | | โœ… Llama 3.1 | 8B/70B/405B | Paper | Hub | License | โŒ | | โœ… GPT-2 | 124M-1.5B | Paper | Hub | MIT | โœ… | | DeepSeek V2 | 7B/13B | Blog | Hub | License | โŒ | | Gemma2 | 2B/9B | Blog | Hub | License | โŒ | | GPT-J | 6B | Blog | Hub | Apache 2.0 | โœ… | | GPT-NeoX | 20B | Paper | Hub | Apache 2.0 | โœ… | | Mistral | 7B | Paper | Hub | Apache 2.0 | โŒ | | Mixtral | 8x7B/8x22B | Blog | Hub | Apache 2.0 | โŒ | | MPT | 7B | Blog | Hub | Apache 2.0 | โœ… | | OLMo | 1B/7B | Paper | Hub | Apache 2.0 | โœ… | | โœ… Llama 4 Scout | 17B (Activated) 109B (Total) | Paper | Hub | License | โŒ |

Reasoning Models

| Model | Size | Paper | HF Hub | License | Open | |-------|------|-------|---------|----------|------| | โœ… gpt-oss | 20B/120B | Paper | Hub | Apache 2.0 | โŒ | | โœ… Qwen3 | 0.6B-32B | Paper | Hub | License | โŒ | | โœ… Qwen3-Next | 80B-A3B | Blog | Hub | License | โŒ | | Qwen QwQ | 32B | Blog | Hub | License | โŒ |

Code Models

| Model | Size | Paper | HF Hub | License | Open | |-------|------|-------|---------|----------|------| | โœ… Qwen2.5 Coder | 0.5B-32B | Blog | Hub | License | โŒ | | DeepSeek Coder | 1.3B-33B | Paper | Hub | License | โŒ | | StarCoder 2 | 3B/7B/15B | Paper | Hub | License | โœ… |

Math Models

| Model | Size | Paper | HF Hub | License | Open | |-------|------|-------|---------|----------|------| | DeepSeek Math | 7B | Paper | Hub | License | โŒ | |

๐Ÿ“– Documentation

To learn more about all the platform's capabilities, see the Oumi documentation.

๐Ÿค Join the Community

Oumi is a community-first effort. Whether you are a developer, a researcher, or a non-technical user, all contributions are very welcome!

  • To contribute to the oumi repository, please check the CONTRIBUTING.md for guidance on how to contribute to send your first Pull Request.
  • Make sure to join our Discord community to get help, share your experiences, and contribute to the project!
  • If you are interested in joining one of the community's open-science efforts, check out our open collaboration page.

๐Ÿ™ Acknowledgements

Oumi makes use of several libraries and tools from the open-source community. We would like to acknowledge and deeply thank the contributors of these projects! โœจ ๐ŸŒŸ ๐Ÿ’ซ

๐Ÿ“ Citation

If you find Oumi useful in your research, please consider citing it:

@software{oumi2025,
  author = {Oumi Community},
  title = {Oumi: an Open, End-to-end Platform for Building Large Foundation Models},
  month = {January},
  year = {2025},
  url = {https://github.com/oumi-ai/oumi}
}

๐Ÿ“œ License

This project is licensed under the Apache License 2.0. See the LICENSE file for details.

[^1]: Open models are defined as models with fully open weights, training code, and data, and a permissive license. See Open Source Definitions for more information.

ยฉ 2026 GitRepoTrend ยท oumi-ai/oumi ยท Updated daily from GitHub