├── LICENSE.md ├── README.md ├── conjugate_gradients.py ├── main.py ├── models.py ├── replay_memory.py ├── running_state.py ├── trpo.py └── utils.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikostrikov/pytorch-trpo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikostrikov/pytorch-trpo/HEAD/README.md -------------------------------------------------------------------------------- /conjugate_gradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikostrikov/pytorch-trpo/HEAD/conjugate_gradients.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikostrikov/pytorch-trpo/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikostrikov/pytorch-trpo/HEAD/models.py -------------------------------------------------------------------------------- /replay_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikostrikov/pytorch-trpo/HEAD/replay_memory.py -------------------------------------------------------------------------------- /running_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikostrikov/pytorch-trpo/HEAD/running_state.py -------------------------------------------------------------------------------- /trpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikostrikov/pytorch-trpo/HEAD/trpo.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikostrikov/pytorch-trpo/HEAD/utils.py --------------------------------------------------------------------------------