Buckets:
| # Examples | |
| TRL provides **notebooks** for quick experimentation and **scripts** for production training. | |
| - **Notebooks**: Most run on free Google Colab. Great for learning and prototyping. | |
| - **Scripts**: Run on single GPU, multi-GPU, or with DeepSpeed. Ready for production. | |
| ## Getting Started | |
| ```bash | |
| pip install --upgrade trl[quantization] | |
| ``` | |
| For scripts, configure ๐ค Accelerate (recommended for multi-GPU): | |
| ```bash | |
| accelerate config | |
| ``` | |
| ## ๐ Notebooks | |
| Interactive notebooks for quick experimentation. Find them in [`examples/notebooks/`](https://github.com/huggingface/trl/tree/main/examples/notebooks/). | |
| ### ๐ Getting started | |
| Generic notebooks that work with any model. Start here! | |
| | Notebook | Method | Model | Colab | | |
| |----------|:------:|:-----:|:-----:| | |
| | [SFT a 14B model with LoRA/QLoRA on Free Colab](https://github.com/huggingface/trl/tree/main/examples/notebooks/sft_trl_lora_qlora.ipynb) | SFT | Qwen3-14B | [](https://colab.research.google.com/github/huggingface/trl/blob/main/examples/notebooks/sft_trl_lora_qlora.ipynb) | | |
| | [GRPO a 7B model with LoRA/QLoRA on Free Colab](https://github.com/huggingface/trl/tree/main/examples/notebooks/grpo_trl_lora_qlora.ipynb) | GRPO | Qwen2-7B | [](https://colab.research.google.com/github/huggingface/trl/blob/main/examples/notebooks/grpo_trl_lora_qlora.ipynb) | | |
| ### ๐ค Agents | |
| Train models for agentic tasks and tool use. | |
| | Notebook | Method | Model | Colab | | |
| |----------|:------:|-------|:-----:| | |
| | [Agent Training Qwen3-1.7B with Tool Calling (BioGRID SQL)](https://github.com/huggingface/trl/tree/main/examples/notebooks/grpo_agent.ipynb) | GRPO | Qwen3-1.7B | โ ๏ธ Larger GPU | | |
| ### ๐ฎ OpenEnv | |
| Train agents in interactive environments using [OpenEnv](openenv). | |
| | Notebook | Method | Model | Colab | | |
| |----------|:------:|-------|:-----:| | |
| | [Train Qwen3-1.7B to Play Wordle](https://github.com/huggingface/trl/tree/main/examples/notebooks/openenv_wordle_grpo.ipynb) | GRPO | Qwen3-1.7B | [](https://colab.research.google.com/github/huggingface/trl/blob/main/examples/notebooks/openenv_wordle_grpo.ipynb) | | |
| | [FunctionGemma for Browser Control (BrowserGym)](https://github.com/huggingface/trl/tree/main/examples/notebooks/grpo_functiongemma_browsergym_openenv.ipynb) | GRPO | FunctionGemma-270M | [](https://colab.research.google.com/github/huggingface/trl/blob/main/examples/notebooks/grpo_functiongemma_browsergym_openenv.ipynb) | | |
| ### ๐ฏ Model-specific | |
| Notebooks for specific models, including Vision Language Models (VLM) and reasoning. | |
| | Notebook | Method | Model | VLM | Colab | | |
| |----------|:------:|-------|:---:|:-----:| | |
| | [Add Reasoning Capabilities to rnj-1-instruct-1B with GRPO and QLoRA](https://github.com/huggingface/trl/tree/main/examples/notebooks/grpo_rnj_1_instruct.ipynb) | GRPO | rnj-1-instruct-1B | | [](https://colab.research.google.com/github/huggingface/trl/blob/main/examples/notebooks/grpo_rnj_1_instruct.ipynb) | | |
| | [SFT Ministral-3B VLM with QLoRA on Free Colab](https://github.com/huggingface/trl/tree/main/examples/notebooks/sft_ministral3_vl.ipynb) | SFT | Ministral-3B | โ | [](https://colab.research.google.com/github/huggingface/trl/blob/main/examples/notebooks/sft_ministral3_vl.ipynb) | | |
| | [GRPO Ministral-3B VLM with QLoRA on Free Colab](https://github.com/huggingface/trl/tree/main/examples/notebooks/grpo_ministral3_vl.ipynb) | GRPO | Ministral-3B | โ | [](https://colab.research.google.com/github/huggingface/trl/blob/main/examples/notebooks/grpo_ministral3_vl.ipynb) | | |
| | [SFT Qwen3-VL with QLoRA on Free Colab](https://github.com/huggingface/trl/tree/main/examples/notebooks/sft_qwen_vl.ipynb) | SFT | Qwen3-VL | โ | [](https://colab.research.google.com/github/huggingface/trl/blob/main/examples/notebooks/sft_qwen_vl.ipynb) | | |
| | [GRPO Qwen3-VL with QLoRA on Free Colab](https://github.com/huggingface/trl/tree/main/examples/notebooks/grpo_qwen3_vl.ipynb) | GRPO | Qwen3-VL | โ | [](https://colab.research.google.com/github/huggingface/trl/blob/main/examples/notebooks/grpo_qwen3_vl.ipynb) | | |
| ## ๐ Scripts | |
| Scripts are maintained in the [`trl/scripts`](https://github.com/huggingface/trl/blob/main/trl/scripts) and [`examples/scripts`](https://github.com/huggingface/trl/blob/main/examples/scripts) directories. They show how to use different trainers such as `SFTTrainer`, `PPOTrainer`, `DPOTrainer`, `GRPOTrainer`, and more. | |
| | File | Description | | |
| | --- | --- | | |
| | [`examples/scripts/bco.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/bco.py) | This script shows how to use the [experimental.kto.KTOTrainer](/docs/trl/pr_4624/en/kto_trainer#trl.KTOTrainer) with the BCO loss to fine-tune a model to increase instruction-following, truthfulness, honesty, and helpfulness using the [openbmb/UltraFeedback](https://huggingface.co/datasets/openbmb/UltraFeedback) dataset. | | |
| | [`examples/scripts/cpo.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/cpo.py) | This script shows how to use the [experimental.cpo.CPOTrainer](/docs/trl/pr_4624/en/cpo_trainer#trl.CPOTrainer) to fine-tune a model to increase helpfulness and harmlessness using the [Anthropic/hh-rlhf](https://huggingface.co/datasets/Anthropic/hh-rlhf) dataset. | | |
| | [`trl/scripts/dpo.py`](https://github.com/huggingface/trl/blob/main/trl/scripts/dpo.py) | This script shows how to use the [DPOTrainer](/docs/trl/pr_4624/en/dpo_trainer#trl.DPOTrainer) to fine-tune a model. | | |
| | [`examples/scripts/dpo_vlm.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/dpo_vlm.py) | This script shows how to use the [DPOTrainer](/docs/trl/pr_4624/en/dpo_trainer#trl.DPOTrainer) to fine-tune a Vision Language Model to reduce hallucinations using the [openbmb/RLAIF-V-Dataset](https://huggingface.co/datasets/openbmb/RLAIF-V-Dataset) dataset. | | |
| | [`examples/scripts/evals/judge_tldr.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/evals/judge_tldr.py) | This script shows how to use [experimental.judges.HfPairwiseJudge](/docs/trl/pr_4624/en/judges#trl.HfPairwiseJudge) or [experimental.judges.OpenAIPairwiseJudge](/docs/trl/pr_4624/en/judges#trl.OpenAIPairwiseJudge) to judge model generations. | | |
| | [`examples/scripts/gkd.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/gkd.py) | This script shows how to use the [experimental.gkd.GKDTrainer](/docs/trl/pr_4624/en/gkd_trainer#trl.GKDTrainer) to fine-tune a model. | | |
| | [`trl/scripts/grpo.py`](https://github.com/huggingface/trl/blob/main/trl/scripts/grpo.py) | This script shows how to use the [GRPOTrainer](/docs/trl/pr_4624/en/grpo_trainer#trl.GRPOTrainer) to fine-tune a model. | | |
| | [`trl/scripts/grpo_agent.py`](https://github.com/huggingface/trl/blob/main/trl/scripts/grpo_agent.py) | This script shows how to use the [GRPOTrainer](/docs/trl/pr_4624/en/grpo_trainer#trl.GRPOTrainer) to fine-tune a model to enable agentic usage. | | |
| | [`examples/scripts/grpo_vlm.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/grpo_vlm.py) | This script shows how to use the [GRPOTrainer](/docs/trl/pr_4624/en/grpo_trainer#trl.GRPOTrainer) to fine-tune a multimodal model for reasoning using the [lmms-lab/multimodal-open-r1-8k-verified](https://huggingface.co/datasets/lmms-lab/multimodal-open-r1-8k-verified) dataset. | | |
| | [`examples/scripts/gspo.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/gspo.py) | This script shows how to use GSPO via the [GRPOTrainer](/docs/trl/pr_4624/en/grpo_trainer#trl.GRPOTrainer) to fine-tune model for reasoning using the [AI-MO/NuminaMath-TIR](https://huggingface.co/datasets/AI-MO/NuminaMath-TIR) dataset. | | |
| | [`examples/scripts/gspo_vlm.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/gspo_vlm.py) | This script shows how to use GSPO via the [GRPOTrainer](/docs/trl/pr_4624/en/grpo_trainer#trl.GRPOTrainer) to fine-tune a multimodal model for reasoning using the [lmms-lab/multimodal-open-r1-8k-verified](https://huggingface.co/datasets/lmms-lab/multimodal-open-r1-8k-verified) dataset. | | |
| | [`examples/scripts/kto.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/kto.py) | This script shows how to use the [experimental.kto.KTOTrainer](/docs/trl/pr_4624/en/kto_trainer#trl.KTOTrainer) to fine-tune a model. | | |
| | [`examples/scripts/mpo_vlm.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/mpo_vlm.py) | This script shows how to use MPO via the [DPOTrainer](/docs/trl/pr_4624/en/dpo_trainer#trl.DPOTrainer) to align a model based on preferences using the [HuggingFaceH4/rlaif-v_formatted](https://huggingface.co/datasets/HuggingFaceH4/rlaif-v_formatted) dataset and a set of loss weights with weights. | | |
| | [`examples/scripts/nash_md.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/nash_md.py) | This script shows how to use the [experimental.nash_md.NashMDTrainer](/docs/trl/pr_4624/en/nash_md_trainer#trl.NashMDTrainer) to fine-tune a model. | | |
| | [`examples/scripts/online_dpo.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/online_dpo.py) | This script shows how to use the [experimental.online_dpo.OnlineDPOTrainer](/docs/trl/pr_4624/en/online_dpo_trainer#trl.OnlineDPOTrainer) to fine-tune a model. | | |
| | [`examples/scripts/online_dpo_vlm.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/online_dpo_vlm.py) | This script shows how to use the [experimental.online_dpo.OnlineDPOTrainer](/docs/trl/pr_4624/en/online_dpo_trainer#trl.OnlineDPOTrainer) to fine-tune a a Vision Language Model. | | |
| | [`examples/scripts/openenv/browsergym.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/openenv/browsergym.py) | Simple script to run GRPO training via the [GRPOTrainer](/docs/trl/pr_4624/en/grpo_trainer#trl.GRPOTrainer) with OpenEnv's BrowserGym environment and vLLM for VLMs | | |
| | [`examples/scripts/openenv/browsergym_llm.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/openenv/browsergym_llm.py) | Simple script to run GRPO training via the [GRPOTrainer](/docs/trl/pr_4624/en/grpo_trainer#trl.GRPOTrainer) with OpenEnv's BrowserGym environment and vLLM for LLMs | | |
| | [`examples/scripts/openenv/catch.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/openenv/catch.py) | Simple script to run GRPO training via the [GRPOTrainer](/docs/trl/pr_4624/en/grpo_trainer#trl.GRPOTrainer) with OpenEnv's Catch environment (OpenSpiel) and vLLM | | |
| | [`examples/scripts/openenv/echo.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/openenv/echo.py) | Simple script to run GRPO training via the [GRPOTrainer](/docs/trl/pr_4624/en/grpo_trainer#trl.GRPOTrainer) with OpenEnv's Echo environment and vLLM. | | |
| | [`examples/scripts/openenv/wordle.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/openenv/wordle.py) | Simple script to run GRPO training via the [GRPOTrainer](/docs/trl/pr_4624/en/grpo_trainer#trl.GRPOTrainer) with OpenEnv's Wordle environment and vLLM. | | |
| | [`examples/scripts/orpo.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/orpo.py) | This script shows how to use the [experimental.orpo.ORPOTrainer](/docs/trl/pr_4624/en/orpo_trainer#trl.ORPOTrainer) to fine-tune a model to increase helpfulness and harmlessness using the [Anthropic/hh-rlhf](https://huggingface.co/datasets/Anthropic/hh-rlhf) dataset. | | |
| | [`examples/scripts/ppo/ppo.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/ppo/ppo.py) | This script shows how to use the [experimental.ppo.PPOTrainer](/docs/trl/pr_4624/en/ppo_trainer#trl.PPOTrainer) to fine-tune a model to improve its ability to continue text with positive sentiment or physically descriptive language. | | |
| | [`examples/scripts/ppo/ppo_tldr.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/ppo/ppo_tldr.py) | This script shows how to use the [experimental.ppo.PPOTrainer](/docs/trl/pr_4624/en/ppo_trainer#trl.PPOTrainer) to fine-tune a model to improve its ability to generate TL;DR summaries. | | |
| | [`examples/scripts/prm.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/prm.py) | This script shows how to use the [experimental.prm.PRMTrainer](/docs/trl/pr_4624/en/prm_trainer#trl.PRMTrainer) to fine-tune a Process-supervised Reward Model (PRM). | | |
| | [`examples/scripts/reward_modeling.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/reward_modeling.py) | This script shows how to use the [RewardTrainer](/docs/trl/pr_4624/en/reward_trainer#trl.RewardTrainer) to train an Outcome Reward Model (ORM) on your own dataset. | | |
| | [`examples/scripts/rloo.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/rloo.py) | This script shows how to use the [RLOOTrainer](/docs/trl/pr_4624/en/rloo_trainer#trl.RLOOTrainer) to fine-tune a model to improve its ability to solve math questions. | | |
| | [`examples/scripts/sft.py`](https://github.com/huggingface/trl/blob/main/trl/scripts/sft.py) | This script shows how to use the [SFTTrainer](/docs/trl/pr_4624/en/sft_trainer#trl.SFTTrainer) to fine-tune a model. | | |
| | [`examples/scripts/sft_gemma3.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/sft_gemma3.py) | This script shows how to use the [SFTTrainer](/docs/trl/pr_4624/en/sft_trainer#trl.SFTTrainer) to fine-tune a Gemma 3 model. | | |
| | [`examples/scripts/sft_video_llm.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/sft_video_llm.py) | This script shows how to use the [SFTTrainer](/docs/trl/pr_4624/en/sft_trainer#trl.SFTTrainer) to fine-tune a Video Language Model. | | |
| | [`examples/scripts/sft_vlm.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/sft_vlm.py) | This script shows how to use the [SFTTrainer](/docs/trl/pr_4624/en/sft_trainer#trl.SFTTrainer) to fine-tune a Vision Language Model in a chat setting. The script has only been tested with [LLaVA 1.5](https://huggingface.co/llava-hf/llava-1.5-7b-hf), [LLaVA 1.6](https://huggingface.co/llava-hf/llava-v1.6-mistral-7b-hf), and [Llama-3.2-11B-Vision-Instruct](https://huggingface.co/meta-llama/Llama-3.2-11B-Vision-Instruct) models, so users may see unexpected behaviour in other model architectures. | | |
| | [`examples/scripts/sft_vlm_gemma3.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/sft_vlm_gemma3.py) | This script shows how to use the [SFTTrainer](/docs/trl/pr_4624/en/sft_trainer#trl.SFTTrainer) to fine-tune a Gemma 3 model on vision to text tasks. | | |
| | [`examples/scripts/sft_vlm_smol_vlm.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/sft_vlm_smol_vlm.py) | This script shows how to use the [SFTTrainer](/docs/trl/pr_4624/en/sft_trainer#trl.SFTTrainer) to fine-tune a SmolVLM model. | | |
| | [`examples/scripts/xpo.py`](https://github.com/huggingface/trl/blob/main/examples/scripts/xpo.py) | This script shows how to use the [experimental.xpo.XPOTrainer](/docs/trl/pr_4624/en/xpo_trainer#trl.XPOTrainer) to fine-tune a model. | | |
| ## Distributed Training (for scripts) | |
| You can run scripts on multiple GPUs with ๐ค Accelerate: | |
| ```shell | |
| accelerate launch --config_file=examples/accelerate_configs/multi_gpu.yaml --num_processes {NUM_GPUS} path_to_script.py --all_arguments_of_the_script | |
| ``` | |
| For DeepSpeed ZeRO-{1,2,3}: | |
| ```shell | |
| accelerate launch --config_file=examples/accelerate_configs/deepspeed_zero{1,2,3}.yaml --num_processes {NUM_GPUS} path_to_script.py --all_arguments_of_the_script | |
| ``` | |
| Adjust `NUM_GPUS` and `--all_arguments_of_the_script` as needed. | |
Xet Storage Details
- Size:
- 16.1 kB
- Xet hash:
- a1af6fd7b1a81bb98ae76a3f6920151a6446607bd71573ae6eeef8b863a69cc9
ยท
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.