├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── bipedal ├── bipedal.ptm └── bipedal.py ├── cartpole-v1 ├── cartpole-v1.ptm └── cartpole-v1.py ├── cartpole-v2 ├── cartpole-v2.ptm └── cartpole-v2.py ├── handstand ├── handstand.ptm └── handstand.py ├── pingpong ├── pingpong.ptm └── pingpong.py └── quadrotor ├── quadrotor.ptm └── quadrotor.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | logs/ 2 | tensorboard/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/README.md -------------------------------------------------------------------------------- /bipedal/bipedal.ptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/bipedal/bipedal.ptm -------------------------------------------------------------------------------- /bipedal/bipedal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/bipedal/bipedal.py -------------------------------------------------------------------------------- /cartpole-v1/cartpole-v1.ptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/cartpole-v1/cartpole-v1.ptm -------------------------------------------------------------------------------- /cartpole-v1/cartpole-v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/cartpole-v1/cartpole-v1.py -------------------------------------------------------------------------------- /cartpole-v2/cartpole-v2.ptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/cartpole-v2/cartpole-v2.ptm -------------------------------------------------------------------------------- /cartpole-v2/cartpole-v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/cartpole-v2/cartpole-v2.py -------------------------------------------------------------------------------- /handstand/handstand.ptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/handstand/handstand.ptm -------------------------------------------------------------------------------- /handstand/handstand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/handstand/handstand.py -------------------------------------------------------------------------------- /pingpong/pingpong.ptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/pingpong/pingpong.ptm -------------------------------------------------------------------------------- /pingpong/pingpong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/pingpong/pingpong.py -------------------------------------------------------------------------------- /quadrotor/quadrotor.ptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/quadrotor/quadrotor.ptm -------------------------------------------------------------------------------- /quadrotor/quadrotor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototwin/RLExamples/HEAD/quadrotor/quadrotor.py --------------------------------------------------------------------------------