Add project 3 RL template.

This commit is contained in:
2021-11-27 10:16:51 -05:00
parent a4031888de
commit 524362c5c5
100 changed files with 16641 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
class: "GridPolicyTest"
# Function in module in analysis that returns (discount, noise)
parameterFn: "question3a"
# GridWorld specification
# _ is empty space
# numbers are terminal states with that value
# # is a wall
# S is a start state
#
grid: """
_ _ _ _ _
_ # _ _ _
_ # 1 # 10
S _ _ _ _
-10 -10 -10 -10 -10
"""
gridName: "discountGrid"
# Policy specification
# _ policy choice not checked
# N, E, S, W policy action must be north, east, south, west
#
policy: """
_ _ _ _ _
_ _ _ _ _
_ _ _ _ _
E E N _ _
_ _ _ _ _
"""