-
Notifications
You must be signed in to change notification settings - Fork 3
/
save_cartpole_traj.py
225 lines (201 loc) · 8.14 KB
/
save_cartpole_traj.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
import torch
import torch.nn as nn
import torch.nn.functional as F
import random
import numpy as np
import gym
from collections import deque
from torch.distributions import Categorical
from torch.utils.tensorboard import SummaryWriter
import pickle
import os
class gae_trajectory_buffer(object):
def __init__(self, capacity, gamma, lam):
self.capacity = capacity
self.gamma = gamma
self.lam = lam
self.memory = deque(maxlen=self.capacity)
# * [obs, act, rew, don, val, ret, adv]
def store(self, obs, act, rew, don, val):
obs = np.expand_dims(obs, 0)
self.memory.append([obs, act, rew, don, val])
def process(self):
R = 0
Adv = 0
Value_previous = 0
for traj in reversed(list(self.memory)):
R = self.gamma * R * (1 - traj[3]) + traj[4]
traj.append(R)
# * the generalized advantage estimator(GAE)
delta = traj[2] + Value_previous * self.gamma * (1 - traj[3]) - traj[4]
Adv = delta + (1 - traj[3]) * Adv * self.gamma * self.lam
traj.append(Adv)
Value_previous = traj[4]
def get(self):
obs, act, rew, don, val, ret, adv = zip(* self.memory)
act = np.expand_dims(act, 1)
rew = np.expand_dims(rew, 1)
don = np.expand_dims(don, 1)
val = np.expand_dims(val, 1)
ret = np.expand_dims(ret, 1)
adv = np.array(adv)
adv = (adv - adv.mean()) / adv.std()
adv = np.expand_dims(adv, 1)
return np.concatenate(obs, 0), act, rew, don, val, ret, adv
def __len__(self):
return len(self.memory)
class policy_net(nn.Module):
def __init__(self, input_dim, output_dim):
super(policy_net, self).__init__()
self.input_dim = input_dim
self.output_dim = output_dim
self.fc1 = nn.Linear(self.input_dim, 128)
self.fc2 = nn.Linear(128, 128)
self.fc3 = nn.Linear(128, self.output_dim)
def forward(self, input):
x = F.relu(self.fc1(input))
x = F.relu(self.fc2(x))
x = self.fc3(x)
return F.softmax(x, 1)
def act(self, input):
probs = self.forward(input)
dist = Categorical(probs)
action = dist.sample()
action = action.detach().item()
return action
class value_net(nn.Module):
def __init__(self, input_dim, output_dim):
super(value_net, self).__init__()
self.input_dim = input_dim
self.output_dim = output_dim
self.fc1 = nn.Linear(self.input_dim, 128)
self.fc2 = nn.Linear(128, 128)
self.fc3 = nn.Linear(128, self.output_dim)
def forward(self, input):
x = F.relu(self.fc1(input))
x = F.relu(self.fc2(x))
x = self.fc3(x)
return x
class ppo_clip(object):
def __init__(self, env, episode, learning_rate, gamma, lam, epsilon, capacity, render, log, value_update_iter, policy_update_iter, reward_thresh, traj_num, file):
super(ppo_clip, self).__init__()
self.env = env
self.episode = episode
self.learning_rate = learning_rate
self.gamma = gamma
self.lam = lam
self.epsilon = epsilon
self.capacity = capacity
self.render = render
self.log = log
self.value_update_iter = value_update_iter
self.policy_update_iter = policy_update_iter
self.reward_thresh = reward_thresh
self.traj_num = traj_num
self.file = file
self.observation_dim = self.env.observation_space.shape[0]
self.action_dim = self.env.action_space.n
self.policy_net = policy_net(self.observation_dim, self.action_dim)
self.value_net = value_net(self.observation_dim, 1)
self.value_optimizer = torch.optim.Adam(self.value_net.parameters(), lr=self.learning_rate)
self.policy_optimizer = torch.optim.Adam(self.policy_net.parameters(), lr=self.learning_rate)
self.buffer = gae_trajectory_buffer(capacity=self.capacity, gamma=self.gamma, lam=self.lam)
self.count = 0
self.train_count = 0
self.weight_reward = None
self.writer = SummaryWriter('log/ppo_clip_cartpole')
self.traj_pool = []
self.episode_traj = []
def train(self):
obs, act, rew, don, val, ret, adv = self.buffer.get()
obs = torch.FloatTensor(obs)
act = torch.LongTensor(act)
rew = torch.FloatTensor(rew)
don = torch.FloatTensor(don)
val = torch.FloatTensor(val)
ret = torch.FloatTensor(ret)
adv = torch.FloatTensor(adv).squeeze(1)
old_probs = self.policy_net.forward(obs)
old_probs = old_probs.gather(1, act).squeeze(1).detach()
value_loss_buffer = []
for _ in range(self.value_update_iter):
value = self.value_net.forward(obs)
value_loss = (ret - value).pow(2).mean()
value_loss_buffer.append(value_loss.item())
self.value_optimizer.zero_grad()
value_loss.backward()
self.value_optimizer.step()
if self.log:
self.writer.add_scalar('value_loss', np.mean(value_loss_buffer), self.train_count)
policy_loss_buffer = []
for _ in range(self.policy_update_iter):
probs = self.policy_net.forward(obs)
probs = probs.gather(1, act).squeeze(1)
ratio = probs / old_probs
surr1 = ratio * adv
surr2 = torch.clamp(ratio, 1. - self.epsilon, 1. + self.epsilon) * adv
policy_loss = - torch.min(surr1, surr2).mean()
policy_loss_buffer.append(policy_loss.item())
self.policy_optimizer.zero_grad()
policy_loss.backward()
self.policy_optimizer.step()
if self.log:
self.writer.add_scalar('policy_loss', np.mean(policy_loss_buffer), self.train_count)
def run(self):
for i in range(self.episode):
obs = self.env.reset()
total_reward = 0
if self.render:
self.env.render()
while True:
action = self.policy_net.act(torch.FloatTensor(np.expand_dims(obs, 0)))
next_obs, reward, done, _ = self.env.step(action)
if self.render:
self.env.render()
value = self.value_net.forward(torch.FloatTensor(np.expand_dims(obs, 0))).detach().item()
self.buffer.store(obs, action, reward, done, value)
self.count += 1
total_reward += reward
self.episode_traj.append([obs, action])
obs = next_obs
if self.count % self.capacity == 0:
self.buffer.process()
self.train_count += 1
self.train()
if done:
if not self.weight_reward:
self.weight_reward = total_reward
else:
self.weight_reward = self.weight_reward * 0.99 + total_reward * 0.01
if self.log:
self.writer.add_scalar('weight_reward', self.weight_reward, i+1)
self.writer.add_scalar('reward', total_reward, i+1)
print('episode: {} reward: {:.2f} weight_reward: {:.2f} train_step: {} [finish: {} / {}]'.format(i+1, total_reward, self.weight_reward, self.train_count, len(self.traj_pool), self.traj_num))
break
if total_reward >= self.reward_thresh:
self.traj_pool.extend(self.episode_traj)
del self.episode_traj[:]
if len(self.traj_pool) >= self.traj_num:
file = open(self.file, 'wb')
pickle.dump(self.traj_pool, file)
break
if __name__ == '__main__':
env = gym.make('CartPole-v0')
os.makedirs('./traj', exist_ok=True)
test = ppo_clip(
env=env,
episode=10000,
learning_rate=1e-3,
gamma=0.99,
lam=0.97,
epsilon=0.,
capacity=2000,
render=False,
log=False,
value_update_iter=10,
policy_update_iter=10,
reward_thresh = 100,
traj_num=100000,
file='./traj/cartpole.pkl'
)
test.run()