A2Perf provides benchmark environments in the following domains:
- Web Navigation - This environment facilitates the creation of compositional tasks represented by dependency graphs, where automatically generated websites are completed by the trained agent.
- Quadruped Locomotion - This quadruped locomotion environment aims to teach a legged robot with 18 degrees of freedom to replicate animal-like behaviors by imitating real-world motion data to develop a diverse repertoire of skills.
- Circuit Training - Chip floorplanning, a complex and traditionally manual process, has been addressed by Google's open-source Circuit Training framework, which uses reinforcement learning to optimize chip layouts for multiple objectives.
A2Perf can be installed directly from PyPI:
pip install a2perf[all]
A2Perf can also be installed from source for development purposes:
git clone https://github.com/Farama-Foundation/A2Perf.git --recursive
pip install -e .[all]
To install specific packages, you can use the following commands:
# From PyPI
pip install a2perf[web_navigation]
pip install a2perf[circuit_training]
pip install a2perf[quadruped_locomotion]
# From source
pip install -e .[web_navigation]
pip install -e .[quadruped_locomotion]
pip install -e .[circuit_training]
Both x86-64 and Arch64 (ARM64) architectures are supported.
Please note that the Windows version is not as well-tested as Linux and macOS
versions.
It can be used for development and testing but if you want to conduct serious (
time and resource-extensive) experiments on Windows,
please consider
using Docker
or WSL.
Environments in A2Perf are registered under specific names for each domain and task. Here are the available environments:
-
Quadruped Locomotion:
QuadrupedLocomotion-DogPace-v0
QuadrupedLocomotion-DogTrot-v0
QuadrupedLocomotion-DogSpin-v0
-
Web Navigation:
WebNavigation-Difficulty-01-v0
WebNavigation-Difficulty-02-v0
WebNavigation-Difficulty-03-v0
-
Circuit Training:
CircuitTraining-ToyMacro-v0
CircuitTraining-Ariane-v0
For example, you can create an instance of the WebNavigation-Difficulty-01-v0
environment as follows:
import gymnasium as gym
from a2perf.domains import web_navigation
env = gym.make("WebNavigation-DifficultyLevel-01-v0", num_websites=10, seed=0)
A beginners guide to benchmarking with A2Perf is described here.
- Users can pull the template repository
at https://github.com/Farama-Foundation/a2perf-benchmark-submission
- The submission repository must include:
train.py
- defines a globaltrain
function with the following signature:def train(): """Trains the user's model."""
inference.py
- defines the following functions:def load_policy(env, **load_kwargs): """Loads a trained policy model from the specified directory.""" def infer_once(policy, observation): """Runs a single inference step using the given policy and observation.""" def preprocess_observation(observation): """Preprocesses a raw observation from the environment into a format compatible with the policy."""
requirements.txt
- lists the required Python packages and their versions for running the user's code__init__.py
- an empty file that allows the submission to be imported as a Python module
- The submission repository must include:
Under
a2perf/submission/configs
,
there are default gin configuration files for training and inference for each
domain. These files define various settings and parameters for
benchmarking.
Here's an example of an training.gin
file for web navigation:
# ----------------------
# IMPORTS
# ----------------------
import a2perf.submission.submission_util
# ----------------------
# SUBMISSION SETUP
# ----------------------
# Set up submission object
Submission.mode = %BenchmarkMode.TRAIN
Submission.domain = %BenchmarkDomain.WEB_NAVIGATION
Submission.run_offline_metrics_only = False
Submission.measure_emissions = True
# ----------------------
# SYSTEM METRICS SETUP
# ----------------------
# Set up codecarbon for system metrics
track_emissions_decorator.project_name = 'a2perf_web_navigation_train'
track_emissions_decorator.measure_power_secs = 5
track_emissions_decorator.save_to_file = True # Save data to file
track_emissions_decorator.save_to_logger = False # Do not save data to logger
track_emissions_decorator.gpu_ids = None # Enter list of specific GPU IDs to track if desired
track_emissions_decorator.log_level = 'info' # Log level set to 'info'
track_emissions_decorator.country_iso_code = 'USA'
track_emissions_decorator.region = 'Massachusetts'
track_emissions_decorator.offline = True
Baselines for all tasks are provided and are described in the article supporting A2Perf.
A2Perf keeps strict versioning for reproducibility reasons. All environments end in a suffix like "-v0". When changes are made to environments that might impact learning results, the number is increased by one to prevent potential confusion. This follows the Gymnasium convention.