Adversarial Motion Prior (AMP) reinforcement learning extension for PPO based on RSL-RL.
Project description
AMP-RSL-RL
AMP-RSL-RL is a reinforcement learning library that extends the Proximal Policy Optimization (PPO) implementation of RSL-RL to incorporate Adversarial Motion Priors (AMP). This framework enables humanoid agents to learn motor skills from motion capture data using adversarial imitation learning techniques.
📦 Installation
The repository is available on PyPI under the package name amp-rl-rsl. You can install it directly using pip:
pip install amp-rsl-rl
Alternatively, if you prefer to clone the repository and install it locally, follow these steps:
-
Clone the repository:
git clone https://github.com/gbionics/amp_rsl_rl.git cd amp_rsl_rl
-
Install the package:
pip install .
For editable/development mode:
pip install -e .
If you want to run the examples, please install with:
pip install .[examples]
The required dependencies include:
numpyscipytorchrsl-rl-lib
These will be automatically installed via pip.
📂 Project Structure
amp_rsl_rl/
│
├── algorithms/ # AMP and PPO implementations
├── networks/ # Neural networks for policy and discriminator
├── runners/ # Training and evaluation routines
├── storage/ # Replay buffer for experience collection
├── utils/ # Dataset loaders and motion tools
📁 Dataset Structure
The AMP-RSL-RL framework expects motion capture datasets in .npy format. Each .npy file must contain a Python dictionary with the following keys:
-
joints_list:List[str]
A list of joint names. These should correspond to the joint order expected by the agent. -
joint_positions:List[np.ndarray]
A list where each element is a NumPy array representing the joint positions at a frame. All arrays should have the same shape(N,), whereNis the number of joints. -
root_position:List[np.ndarray]
A list of 3D vectors representing the position of the base (root) of the agent in world coordinates for each frame. -
root_quaternion:List[np.ndarray]
A list of unit quaternions inxyzwformat (SciPy convention), representing the base orientation of the agent for each frame. -
fps:float
The number of frames per second in the original dataset. This is used to resample the data to match the simulator's timestep.
Example
Here’s an example of how the structure might look when loaded in Python:
{
"joints_list": ["hip", "knee", "ankle"],
"joint_positions": [np.array([0.1, -0.2, 0.3]), np.array([0.11, -0.21, 0.31]), ...],
"root_position": [np.array([0.0, 0.0, 1.0]), np.array([0.01, 0.0, 1.0]), ...],
"root_quaternion": [np.array([0.0, 0.0, 0.0, 1.0]), np.array([0.0, 0.0, 0.1, 0.99]), ...],
"fps": 120.0
}
All lists must have the same number of entries (i.e. one per frame). The dataset should represent smooth motion captured over time.
📚 Supported Dataset
For a ready-to-use motion capture dataset, you can use the AMP Dataset on Hugging Face. This dataset is curated to work seamlessly with the AMP-RSL-RL framework.
🧑💻 Authors
- Giulio Romualdi – @GiulioRomualdi
- Giuseppe L'Erario – @Giulero
📄 License
BSD 3-Clause License © 2025 Istituto Italiano di Tecnologia
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file amp_rsl_rl-1.2.0.tar.gz.
File metadata
- Download URL: amp_rsl_rl-1.2.0.tar.gz
- Upload date:
- Size: 36.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31935a4cd0b1b2e48d2f90ed75ba5081dd191fdb73d8ed4189e8091ca8b8f3b6
|
|
| MD5 |
88b0f5f7d147bc17579506d07daa5a51
|
|
| BLAKE2b-256 |
6f0b9a2dfdc1a705a7129234bf9afa3e4ff859936209b8a2c8fad64815b49184
|
File details
Details for the file amp_rsl_rl-1.2.0-py3-none-any.whl.
File metadata
- Download URL: amp_rsl_rl-1.2.0-py3-none-any.whl
- Upload date:
- Size: 34.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
243d536e25dd5d6d22771a6a0e8a50227df6384c01c10f263fc559a6192fdf10
|
|
| MD5 |
5bdb6f99881028869a93866950834c61
|
|
| BLAKE2b-256 |
fde86352cd97a733bc6ea66082b0570727059aad19f1e1d9ab1fc45054f86941
|