-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalueIterationAgents.py
More file actions
148 lines (128 loc) · 5.88 KB
/
valueIterationAgents.py
File metadata and controls
148 lines (128 loc) · 5.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# valueIterationAgents.py
# -----------------------
# Licensing Information: You are free to use or extend these projects for
# educational purposes provided that (1) you do not distribute or publish
# solutions, (2) you retain this notice, and (3) you provide clear
# attribution to UC Berkeley, including a link to http://ai.berkeley.edu.
#
# Attribution Information: The Pacman AI projects were developed at UC Berkeley.
# The core projects and autograders were primarily created by John DeNero
# (denero@cs.berkeley.edu) and Dan Klein (klein@cs.berkeley.edu).
# Student side autograding was added by Brad Miller, Nick Hay, and
# Pieter Abbeel (pabbeel@cs.berkeley.edu).
import mdp, util
from learningAgents import ValueEstimationAgent
class ValueIterationAgent(ValueEstimationAgent):
"""
* Please read learningAgents.py before reading this.*
A ValueIterationAgent takes a Markov decision process
(see mdp.py) on initialization and runs value iteration
for a given number of iterations using the supplied
discount factor.
"""
#|-----------------------------------------------------------------------------|
# __init__
#|-----------------------------------------------------------------------------|
def __init__(self, mdp, discount = 0.9, iterations = 100):
"""
Your value iteration agent should take an mdp on
construction, run the indicated number of iterations
and then act according to the resulting policy.
Some useful mdp methods you will use:
mdp.getStates()
mdp.getPossibleActions(state)
mdp.getTransitionStatesAndProbs(state, action)
mdp.getReward(state, action, nextState)
mdp.isTerminal(state)
"""
self.mdp = mdp
self.discount = discount
self.iterations = iterations
self.values = util.Counter() # A Counter is a dict with default 0
# Write value iteration code here
"*** YOUR CODE HERE ***"
self.oldValues= self.values.copy()
#repeat until all iterations are done
for i in range(self.iterations):
#for all s in S
for currentState in self.mdp.getStates():
# #debug
# print ('currentState = {} '.format(currentState))
# #debug -ends
possibleActions = self.mdp.getPossibleActions(currentState)
if not mdp.isTerminal(currentState):
actionValue = -float('inf')
# #debug
# print ('possibleActions = {} '.format(possibleActions))
# #debug -ends
#for all a in A
for currentAction in possibleActions:
qValue = self.computeQValueFromValues(currentState, currentAction)
actionValue = max(actionValue, qValue)
self.values[currentState]=actionValue
#for currentAction -ends
#for currentState -ends
# #debug
# print ('self.values = {} '.format(self.values))
# #debug -ends
self.oldValues = self.values.copy()
#for i -ends
#|------------------------ __init__ -ends -------------------------------------|
def getValue(self, state):
"""
Return the value of the state (computed in __init__).
"""
return self.values[state]
#|-----------------------------------------------------------------------------|
# computeQValueFromValues
#|-----------------------------------------------------------------------------|
def computeQValueFromValues(self, state, action):
"""
Compute the Q-value of action in state from the
value function stored in self.values.
"""
"*** YOUR CODE HERE ***"
transitionStatesAndProbs = self.mdp.getTransitionStatesAndProbs(\
state, action)
qValue = 0
for transition in transitionStatesAndProbs:
qValue += self.mdp.getReward(state, action, transition[0])\
+ self.oldValues[transition[0]]*self.discount*transition[1]
#for transition -ends
# #debug
# print ('qValue = {} '.format(qValue))
# #debug -ends
return qValue
#|------------------------computeQValueFromValues -ends------------------------|
#|-----------------------------------------------------------------------------|
# computeActionFromValues
#|-----------------------------------------------------------------------------|
def computeActionFromValues(self, state):
"""
The policy is the best action in the given state
according to the values currently stored in self.values.
You may break ties any way you see fit. Note that if
there are no legal actions, which is the case at the
terminal state, you should return None.
"""
"*** YOUR CODE HERE ***"
if self.mdp.isTerminal(state):
return None
possibleActions = self.mdp.getPossibleActions(state)
bestVal = -float('inf')
for currentAction in possibleActions:
actionVal = self.computeQValueFromValues(state, currentAction)
if actionVal>bestVal:
bestVal = actionVal
bestAction = currentAction
#if actionVal -ends
#for currentAction -ends
return bestAction
#|------------------------computeActionFromValues -ends----------------------------------|
def getPolicy(self, state):
return self.computeActionFromValues(state)
def getAction(self, state):
"Returns the policy at the state (no exploration)."
return self.computeActionFromValues(state)
def getQValue(self, state, action):
return self.computeQValueFromValues(state, action)