/DinoBot

A DQN designed to beat the google dinosaur game

Primary LanguagePython

DinoBot

A DQN designed to beat the google dinosaur game

    EPISODE_COUNT = 1000
    COPY_COUNT = 30
    self.gamma = 0.8
    self.epsilon = 0.95
    self.decayRate = 0.999
    self.actionCount = 3
    self.batchSize = 32