Skip to content
Snippets Groups Projects
lecture_11_nstep_open.py 495 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.
    
    tuhe's avatar
    tuhe committed
    from irlc.lectures.lec11.sarsa_nstep_delay import SarsaDelayNAgent
    
    tuhe's avatar
    tuhe committed
    from irlc.lectures.lec11.lecture_10_sarsa_open import open_play
    
    tuhe's avatar
    tuhe committed
    
    
    tuhe's avatar
    tuhe committed
    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)