Skip to content

Commit

Permalink
Removed todo statement that was being redered in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dylan-asmar committed Jan 25, 2024
1 parent 2ea0ee0 commit 01692ed
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions docs/src/example_gridworld_mdp.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ using MCTS

In Grid World, we are trying to control an agent who has trouble moving in the desired direction. In our problem, we have four reward states within the a grid. Each position on the grid represents a state, and the positive reward states are terminal (the agent stops recieving reward after reaching them and performing an action from that state). The agent has four actions to choose from: up, down, left, right. The agent moves in the desired direction with a probability of $0.7$, and with a probability of $0.1$ in each of the remaining three directions. If the agent bumps into the outside wall, there is a penalty of $1$ (i.e. reward of $-1$). The problem has the following form:

<!-- TODO: Insert a better render of the grid world problem -->

![Grid World](examples/grid_world_overview.gif)

## Defining the Grid World MDP Type
Expand Down

0 comments on commit 01692ed

Please sign in to comment.