Skip to content
Snippets Groups Projects
Select Git revision
  • 9ab4a43b46a059e8f342f6e181eb3c2dafe1d3d9
  • main default
2 results

unf_policy_improvement_gridworld.py

Blame
  • Tue Herlau's avatar
    tuhe authored
    9ab4a43b
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    unf_policy_improvement_gridworld.py 456 B
    # 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.gridworld.gridworld_environments import BookGridEnvironment
    from irlc.lectures.unf.unf_policy_evaluation_gridworld import policy_improvement
    
    if __name__ == "__main__":
        env = BookGridEnvironment(render_mode='human', living_reward=-0.05)
        policy_improvement(env)