Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 833 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 833 Bytes

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