atropos/README.md
2025-04-29 23:28:58 +03:00

13 KiB

Atropos - Nous Research's LLM RL Gym

newatr-02

In Greek mythology, Atropos was the eldest of the three Fates. While her sisters spun and measured the threads of mortal lives, Atropos alone held the shears that would cut these threads, determining the final destiny of each soul. Just as Atropos guided souls to their ultimate fate, this system guides language models toward their optimal potential through reinforcement learning.

Atropos is a Language Model Reinforcement Learning Environments framework for collecting and evaluating LLM trajectories through diverse environments including:

Environment Type Examples Purpose
📚 Dataset environments GSM8K, MMLU Evaluate and improve LLM performance on static data
🎮 Online environments Crosswords, Hangman Train LLMs through interactive game-based learning
🤖 RLAIF and RLHF LLM Judge/Reward Models Fine-tune LLMs using human feedback and alignment
🔄 Multi-Turn RL deepresearch, internal tool calling Train LLMs on complex multi-step interactions

Atropos is a robust, scalable framework for Reinforcement Learning Environments with LLMs. Key features:

  • Multi-Turn & Asynchronous RL: Efficiently supports complex, multi-turn, and asynchronous interactions, decoupling environment steps from policy updates.
  • Inference Agnostic: Integrates with standard inference APIs (e.g., OpenAI, vLLM, SGLang), enabling easy switching between LLM providers and frameworks.
  • Trainer Independent: Offers a standardized training interface for experimenting with different RL algorithms and frameworks without major code changes.
  • Scalable & Decentralized: Easily scale by launching more environment instances (locally or across decentralized resources) that contribute rollouts to a central service.
  • Diverse Environment Integration: Manages many varied environment types concurrently for heterogeneous, multi-modal training.

The goal: provide a flexible, scalable, and standardized platform to accelerate LLM-based RL research across diverse, interactive settings.

🎉 Upcoming Atropos Hackathon: LLM RL Environments

Join us in San Francisco on May 18th, 2025 for an exciting hackathon focused on building and experimenting with LLM RL Environments! This in-person event will bring together researchers and developers interested in advancing the field of LLM reinforcement learning.

More details coming soon! Follow us on Twitter @NousResearch to stay updated.


Experimental results from models trained using Atropos' environments

We have been able to achieve significant improvements on specific domains or tasks with Atropos - Below are some of the results.

Tool Calling Environment Results:

Berkeley Function Calling Benchmark Type Base Model With Atropos RL Improvement
Parallel Tasks 10% 46% 4.6x ⬆️
Simple Tasks 21% 51.75% 2.5x ⬆️

Model Artifact: https://huggingface.co/NousResearch/DeepHermes-ToolCalling-Specialist-Atropos

Environment Used: https://github.com/NousResearch/Atropos/environments/tool_calling_server.py


Financial Fundamentals Prediction Environment Results:

Metric Initial Accuracy With Atropos RL Improvement
Directional Prediction Eval Accuracy 20% 50% 2.5x 📈

Model Artifact: https://huggingface.co/NousResearch/DeepHermes-Financial-Fundamentals-Prediction-Specialist-Atropos

Environment Used: https://github.com/NousResearch/Atropos/environments/fundamental_prediction_environment.py


RLAIF Experiment Artifacts

Using the RLAIF Environment to change the personality of the model, we have produced several artifacts of interesting and weird personalities.

DeepHermes Egregore v1 and v2 8B:

https://huggingface.co/NousResearch/DeepHermes-Egregore-v1-RLAIF-8b-Atropos https://huggingface.co/NousResearch/DeepHermes-Egregore-v2-RLAIF-8b-Atropos

DeepHermes Ascension Maze 8B:

https://huggingface.co/NousResearch/DeepHermes-AscensionMaze-RLAIF-8b-Atropos

Environment Used: https://github.com/NousResearch/atropos/blob/main/environments/rlaif_server.py


Navigating the Repo

Category Description
📁 atroposlib/ Core library containing base classes and utilities
🎮 environments/ Collection of ready-to-use RL environments
📚 example_trainer/ Example training scripts and configurations

Key Documents:


Installation

Get your Python 3.10 (or later) environment ready, then simply pip install:

pip install atroposlib

If you're looking to get into developing the repo or using the environments:

pip install -e .                # for using
pip install -e .[dev]           # for development
pip install -e .[examples]      # for running examples
pip install -e .[all]           # for everything

Important: If you're committing to the repository, please install the pre-commit hooks:

pre-commit install

Quick Start Guide

  1. Create Your First Environment

  2. Run an Example Environment

    # Start the API server and run the GSM8K environment
    run-api & python environments/gsm8k_server.py serve \
        --tokenizer_name="Qwen/Qwen2.5-1.5B-Instruct" \
        --model_name="Qwen/Qwen2.5-1.5B-Instruct"
    
  3. Training Your Model

    • Follow our training example guide for detailed instructions
    • Monitor progress through our built-in logging and reporting system:
      • Completion lengths
      • Evaluation accuracies
      • Full rollouts and scores

You can use multiple environments at once, just point them all to the same server.

Environments come with detailed logging and reporting support, runs track completion lengths, eval accuracies, full rollouts and scores, and more:

image


Debugging Tools

The trajectory-handler provides several debugging tools to help environment developers test and understand their environments locally without requiring the full distributed infrastructure.

  • Flexible Model Provider Support: Atropos natively supports any model provider that adheres to the OpenAI API standard. Simply provide the provider's base URL and your API key, and Atropos can integrate with their models seamlessly for testing or running environments locally.

After launching the API and your selected environments (e.g. run-api & python environments/gsm8k_server.py serve), you are then able to view them to get a quick look, or try to prepare some datasets for some offline training:

  • View Run (view-run): Launch a Gradio UI to inspect batches of rollouts generated by your environment runs. This is useful for visually debugging the interactions and data flow.
  • Offline Data Generation: Use atropos-sft-gen and atropos-dpo-gen to collect rollouts from environments and convert them into formats suitable for Supervised Fine-Tuning (SFT) or Direct Preference Optimization (DPO).

Citation

If you have found the library helpful in your work, you can cite this repository as:

@misc{atropos,
  title = {{Atropos - An Async First Environment Rollout Controller}},
  author = {Dakota Mahan, Roger Jin, Teknium, Shannon Sands, Artem Yatsenko, Jai Suphavadeeprasit, Karan Malhotra, Chen Guang, Joe Li},
  url = {https://www.github.com/NousResearch/Atropos},
  month = {4},
  year = {2025},
  version = {0.1},
}

Contributing

Atropos is built by the open-source AI community, and relies on our amazing contributors! Please see our contributing guide for more details on our code formatting, testing, etc. Please follow the Code of Conduct.


License

Atropos is licensed as Apache 2.0, see the LICENSE file here for more information