Skip to content
Snippets Groups Projects
lecture_11_nstep_open.py 623 B
Newer Older
  • Learn to ignore specific revisions
  • tuhe's avatar
    tuhe committed
    # This file may not be shared/redistributed without permission. Please read copyright notice in the git repo. If this file contains other copyright notices disregard this text.
    # from irlc.berkley.rl.feature_encoder import SimplePacmanExtractor
    
    from irlc.ex11.nstep_sarsa_agent import SarsaNAgent
    from irlc.exam_tabular_examples.sarsa_nstep_delay import SarsaDelayNAgent
    
    from irlc.lectures.lec11.lecture_10_sarsa_open import open_play
    if __name__ == "__main__":
        # env = OpenGridEnvironment()
        # agent = (env, gamma=0.95, epsilon=0.1, alpha=.5)
        open_play(SarsaDelayNAgent, method_label="N-step Sarsa n=8", n=8)