Play game ========= To play a game simply run the following command: .. code:: bash gridworld-play If you want to use your own configuration, run: .. code:: bash gridworld-play \ --world_width \ --world_height \ --start_cell \ --goal_cell \ --obstacles_cells \ --policy_search_iterations \ --value_search_iterations \ --threshold \ --gamma Example: .. code:: bash gridworld-play \ --world_width 4 \ --world_height 4 \ --start_cell 0 \ --goal_cell 15 \ --obstacles_cells [5,7,11,12] \ --policy_search_iterations 100000 \ --value_search_iterations 20000 \ --threshold 0.8 \ --gamma 0.99