Skip to content
This repository has been archived by the owner on Sep 19, 2018. It is now read-only.

Latest commit

 

History

History
14 lines (10 loc) · 748 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 748 Bytes

Implementation of ACKTR algorithm.

The code is organized as follows:

  • models.py: implementations of A2C and A3C
  • kfac.py: implementation of K-FAC optimizer
  • ac_nets.py: neural network architectures of actor and critic for different environments
  • storage.py: implementation of data structure to efficiently store information during learning
  • utils.py: utils for models and optimizer

See demo here.