Minimial implementation of PPO for learning a robotics policy in Jax.
step.mp4
This is a minimalist implementation of training and inferencing a PPO policy for making humanoid robots walk.
- Install dependencies:
pip install --pre -r requirements.txt
- Start training a model:
python -m train
- Run inference on the trained model:
python -m play
video will be saved to video.mp4
Before committing changes, run the following formatting commands:
make format
make static-checks