-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreinforce_linear.py
152 lines (106 loc) · 4.31 KB
/
reinforce_linear.py
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
149
150
151
152
from mountain_car import *
import numpy as np
import pdb
import matplotlib.pyplot as plt
class LinearPolicy(object):
def __init__(self, num_states, num_actions):
self.num_states = num_states
self.num_actions = num_actions
# here are the weights for the policy - you may change this initialization
self.weights = np.random.random((self.num_states, self.num_actions))
# TODO: fill this function in
# it should take in an environment state
# return the action that follows the policy's distribution
def act(self, state):
sigma = 1.0
action = np.random.normal(np.dot(self.weights.T,state),sigma)
#action = np.dot(self.weights.T,state) + np.random.normal(0,sigma)
return action
# TODO: fill this function in
# computes the gradient of the discounted return
# at a specific state and action
# return the gradient, a (self.num_states, self.num_actions) numpy array
def compute_gradient(self, state, action, discounted_return):
sigma = 1.0
grad = ((action - np.dot(self.weights.T,state))/sigma**2)*state
grad = grad*discounted_return
return grad
# TODO: fill this function in
# takes a step of gradient ascent given a gradient (from compute_gradient())
# and a step size. adjust self.weights
def gradient_step(self, grad, step_size):
self.weights = self.weights + step_size*np.resize(grad,[2,1])
# TODO: fill this function in
# takes in a list of rewards from an episode
# and returns a list of discounted rewards
# Ex. get_discounted_returns([1, 1, 1], 0.5)
# should return [1.75, 1.5, 1]
def get_discounted_returns(rewards, gamma):
discount_rewards = np.zeros(len(rewards))
temp = 0
for t in reversed(range(0,len(rewards))):
temp = temp*gamma+rewards[t]
discount_rewards[t] = temp
return discount_rewards
# TODO: fill this function in
# this will take in an environment, GridWorld
# a policy (DiscreteSoftmaxPolicy)
# a discount rate, gamma
# and the number of episodes you want to run the algorithm for
def reinforce(env, policy, gamma, num_episodes, learning_rate):
episode_rewards = []
for e in range(num_episodes):
state = env.reset()
episode_log = []
iter = 0
done = False
while done == False and iter < 1000:
# get action
action = policy.act(state)
# get next step, reward and chek whether reached goal
next_state, reward, done, blah= env.step(action)
# store the state, action, reward and next state
episode_log.append([state, action, reward, next_state])
state = next_state
iter += 1
episode_log = np.asarray(episode_log)
rewards = episode_log[:,2]
episode_rewards.append(np.sum(rewards))
discount_rewards = get_discounted_returns(rewards, gamma)
print(done,iter,e,np.sum(rewards))
for t in range(0,len(episode_log)):
grads = policy.compute_gradient(episode_log[t,0], episode_log[t,1],discount_rewards[t])
policy.gradient_step(grads, learning_rate)
return episode_rewards
if __name__ == "__main__":
gamma = 0.9
num_episodes = 1000
learning_rate = 1e-4
env = Continuous_MountainCarEnv()
## returning a list of rewards after each episode for plotting purposes
train_rewards = []
train = 5
for i in range(0,train):
policy = LinearPolicy(2, 1)
episode_rewards = reinforce(env, policy, gamma, num_episodes, learning_rate)
train_rewards.append(episode_rewards)
plt.plot(np.arange(num_episodes),episode_rewards)
plt.xlabel("Number of Episodes")
plt.ylabel("Total Rewards")
plt.show()
plt.plot(np.arange(num_episodes),np.min(train_rewards, axis = 0))
plt.plot(np.arange(num_episodes),np.max(train_rewards, axis = 0))
plt.legend(["Min Rewards","Max Rewards"])
plt.xlabel("Number of Episodes")
plt.ylabel("Rewards")
plt.show()
# gives a sample of what the final policy looks like
print("Rolling out final policy")
state = env.reset()
# env.print()
done = False
while not done:
input("press enter to continue:")
action = policy.act(state)
state, reward, done, _ = env.step([action])
# env.print()