Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7967097

Browse files
committed
Fixed typo.
1 parent c93f818 commit 7967097

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mdp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class MDP:
1212
"""A Markov Decision Process, defined by an initial state, transition model,
1313
and reward function. We also keep track of a gamma value, for use by
1414
algorithms. The transition model is represented somewhat differently from
15-
the text. Instead of T(s, a, s') being probability number for each
15+
the text. Instead of T(s, a, s') being a probability number for each
1616
state/action/state triplet, we instead have T(s, a) return a list of (p, s')
1717
pairs. We also keep track of the possible states, terminal states, and
1818
actions for each state. [page 615]"""

0 commit comments

Comments
 (0)