├── .vscode └── settings.json ├── Readme.md ├── __pycache__ ├── gail.cpython-37.pyc ├── net.cpython-37.pyc └── replay_buffer.cpython-37.pyc ├── cartpole_test.py ├── gail.py ├── net.py ├── pendulum_test.py ├── replay_buffer.py ├── save_cartpole_traj.py ├── save_pendulum_traj.py └── traj ├── cartpole.pkl └── pendulum.pkl /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/Readme.md -------------------------------------------------------------------------------- /__pycache__/gail.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/__pycache__/gail.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/net.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/__pycache__/net.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/replay_buffer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/__pycache__/replay_buffer.cpython-37.pyc -------------------------------------------------------------------------------- /cartpole_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/cartpole_test.py -------------------------------------------------------------------------------- /gail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/gail.py -------------------------------------------------------------------------------- /net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/net.py -------------------------------------------------------------------------------- /pendulum_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/pendulum_test.py -------------------------------------------------------------------------------- /replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/replay_buffer.py -------------------------------------------------------------------------------- /save_cartpole_traj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/save_cartpole_traj.py -------------------------------------------------------------------------------- /save_pendulum_traj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/save_pendulum_traj.py -------------------------------------------------------------------------------- /traj/cartpole.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/traj/cartpole.pkl -------------------------------------------------------------------------------- /traj/pendulum.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deligentfool/GAIL_pytorch/HEAD/traj/pendulum.pkl --------------------------------------------------------------------------------