Files
baselines/baselines/a2c
Thomas Simonini 4402b8eba6 Updated A2C and PPO2 comments (#612)
* Updated A2C and PPO2 comments

* Fixed format errors to respect PEP 8 style guide
2018-09-24 09:54:41 -07:00
..
2017-08-18 09:25:39 -07:00
2018-09-24 09:54:41 -07:00
2018-09-24 09:54:41 -07:00

A2C

Files

  • run_atari: file used to run the algorithm.
  • policies.py: contains the different versions of the A2C architecture (MlpPolicy, CNNPolicy, LstmPolicy...).
  • a2c.py: - Model : class used to initialize the step_model (sampling) and train_model (training)
    • learn : Main entrypoint for A2C algorithm. Train a policy with given network architecture on a given environment using a2c algorithm.
  • runner.py: class used to generates a batch of experiences