-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmultistep_replay.py
472 lines (365 loc) · 15.1 KB
/
multistep_replay.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
import numpy as np
import numpy.random as npr
import torch
import os
import shutil
from dataclasses import dataclass
from pathlib import Path
import copy
from sortedcontainers import SortedSet
import pickle as pkl
import multistep_utils as utils
class ReplayBufferMultistep(object):
"""Buffer to store environment transitions."""
def __init__(self,
obs_shape,
action_shape,
capacity,
batch_size,
horizon,
device,
normalize_obs=False):
self.obs_shape = obs_shape
self.action_shape = action_shape
self.capacity = capacity
self.batch_size = batch_size
self.horizon = horizon
self.device = device
self.pixels = len(obs_shape) > 1
self.empty_data()
self.done_idxs = SortedSet()
self.global_idx = 0
self.global_last_save = 0
self.normalize_obs = normalize_obs
if normalize_obs:
assert not self.pixels
self.welford = utils.Welford()
def __getstate__(self):
d = copy.copy(self.__dict__)
del d['obses'], d['next_obses'], d['actions'], d['rewards'], \
d['not_dones']
return d
def __setstate__(self, d):
self.__dict__ = d
# Manually need to re-load the transitions with load()
self.empty_data()
def empty_data(self):
obs_dtype = np.float32 if not self.pixels else np.uint8
obs_shape = self.obs_shape
action_shape = self.action_shape
capacity = self.capacity
self.obses = np.empty((capacity, *obs_shape), dtype=obs_dtype)
self.next_obses = np.empty((capacity, *obs_shape), dtype=obs_dtype)
self.actions = np.empty((capacity, *action_shape), dtype=np.float32)
self.rewards = np.empty((capacity, 1), dtype=np.float32)
self.not_dones = np.empty((capacity, 1), dtype=np.float32)
self.idx = 0
self.full = False
self.payload = []
self.done_idxs = None
def __len__(self):
return self.capacity if self.full else self.idx
def get_obs_stats(self):
assert not self.pixels
MIN_STD = 1e-1
MAX_STD = 10
mean = self.welford.mean()
std = self.welford.std()
std[std < MIN_STD] = MIN_STD
std[std > MAX_STD] = MAX_STD
return mean, std
def add(self, obs, action, reward, next_obs, done):
if self.normalize_obs:
self.welford.add_data(obs)
if done:
self.done_idxs.add(self.idx)
elif self.full:
self.done_idxs.discard(self.idx)
np.copyto(self.obses[self.idx], obs)
np.copyto(self.actions[self.idx], action)
np.copyto(self.rewards[self.idx], reward)
np.copyto(self.next_obses[self.idx], next_obs)
np.copyto(self.not_dones[self.idx], not done)
self.idx = (self.idx + 1) % self.capacity
self.global_idx += 1
self.full = self.full or self.idx == 0
def sample(self, batch_size):
idxs = np.random.randint(
0, self.capacity if self.full else self.idx,
size=batch_size)
obses = self.obses[idxs]
next_obses = self.next_obses[idxs]
if self.normalize_obs:
mu, sigma = self.get_obs_stats()
obses = (obses-mu)/sigma
next_obses = (next_obses-mu)/sigma
obses = torch.as_tensor(obses, device=self.device).float()
actions = torch.as_tensor(self.actions[idxs], device=self.device)
rewards = torch.as_tensor(self.rewards[idxs], device=self.device)
next_obses = torch.as_tensor(
next_obses, device=self.device).float()
not_dones = torch.as_tensor(self.not_dones[idxs], device=self.device)
return obses, actions, rewards, next_obses, not_dones
def sample_multistep(self):
assert self.batch_size < self.idx or self.full
T = self.horizon
last_idx = self.capacity if self.full else self.idx
last_idx -= T
done_idxs_sorted = np.array(list(self.done_idxs) + [last_idx])
n_done = len(done_idxs_sorted)
done_idxs_raw = done_idxs_sorted - np.arange(1, n_done+1)*T
samples_raw = npr.choice(
last_idx-(T+1)*n_done, size=self.batch_size,
replace=True # for speed
)
samples_raw = sorted(samples_raw)
js = np.searchsorted(done_idxs_raw, samples_raw)
offsets = done_idxs_raw[js] - samples_raw + T
start_idxs = done_idxs_sorted[js] - offsets
obses, actions, rewards, not_dones = [], [], [], []
for t in range(T):
obses.append(self.obses[start_idxs + t])
actions.append(self.actions[start_idxs + t])
rewards.append(self.rewards[start_idxs + t])
not_dones.append(self.not_dones[start_idxs + t])
assert np.all(self.not_dones[start_idxs + t])
obses = np.stack(obses)
actions = np.stack(actions)
rewards = np.stack(rewards).squeeze(2)
not_dones = np.stack(not_dones).squeeze(2)
if self.normalize_obs:
mu, sigma = self.get_obs_stats()
obses = (obses-mu)/sigma
obses = torch.as_tensor(obses, device=self.device).float()
actions = torch.as_tensor(actions, device=self.device)
rewards = torch.as_tensor(rewards, device=self.device)
not_dones = torch.as_tensor(not_dones, device=self.device)
return obses, actions, rewards, not_dones
def save(self, save_dir):
# TODO: The serialization code and logic can be significantly improved.
if self.global_idx == self.global_last_save:
return
if not os.path.exists(save_dir):
os.makedirs(save_dir)
path = os.path.join(
save_dir, f'{self.global_last_save:08d}_{self.global_idx:08d}.pt')
payload = list(zip(*self.payload))
payload = [np.vstack(x) for x in payload]
self.global_last_save = self.global_idx
torch.save(payload, path)
self.payload = []
def load(self, save_dir):
def parse_chunk(chunk):
start, end = [int(x) for x in chunk.split('.')[0].split('_')]
return (start, end)
self.idx = 0
chunks = os.listdir(save_dir)
chunks = filter(lambda fname: 'stats' not in fname, chunks)
chunks = sorted(chunks, key=lambda x: int(x.split('_')[0]))
self.full = self.global_idx > self.capacity
global_beginning = self.global_idx - self.capacity if self.full else 0
for chunk in chunks:
global_start, global_end = parse_chunk(chunk)
if global_start >= self.global_idx:
continue
start = global_start - global_beginning
end = global_end - global_beginning
if end <= 0:
continue
path = os.path.join(save_dir, chunk)
payload = torch.load(path)
if start < 0:
payload = [x[-start:] for x in payload]
start = 0
assert self.idx == start
obses = payload[0]
next_obses = payload[1]
self.obses[start:end] = obses
self.next_obses[start:end] = next_obses
self.actions[start:end] = payload[2]
self.rewards[start:end] = payload[3]
self.not_dones[start:end] = payload[4]
self.idx = end
self.last_save = self.idx
if self.full:
assert self.idx == self.capacity
self.idx = 0
last_idx = self.capacity if self.full else self.idx
self.done_idxs = SortedSet(np.where(1.-self.not_dones[:last_idx])[0])
class ReplayBufferPixelMultistep(object):
"""Buffer to store environment transitions."""
def __init__(self,
obs_shape,
action_shape,
capacity,
batch_size,
horizon,
device,
normalize_obs=False):
self.obs_shape = obs_shape
self.action_shape = action_shape
self.capacity = capacity
self.batch_size = batch_size
self.horizon = horizon
self.device = device
self.pixels = len(obs_shape) > 1
self.empty_data()
self.done_idxs = SortedSet()
self.global_idx = 0
self.global_last_save = 0
self.normalize_obs = normalize_obs
if normalize_obs:
assert not self.pixels
self.welford = utils.Welford()
def __getstate__(self):
d = copy.copy(self.__dict__)
del d['obses'], d['next_obses'], d['actions'], d['rewards'], \
d['not_dones']
return d
def __setstate__(self, d):
self.__dict__ = d
# Manually need to re-load the transitions with load()
self.empty_data()
def empty_data(self):
obs_dtype = np.float32 if not self.pixels else np.uint8
obs_shape = self.obs_shape
action_shape = self.action_shape
capacity = self.capacity
self.obses = np.empty((capacity, *obs_shape), dtype=obs_dtype)
self.next_obses = np.empty((capacity, *obs_shape), dtype=obs_dtype)
self.actions = np.empty((capacity, *action_shape), dtype=np.float32)
self.rewards = np.empty((capacity, 1), dtype=np.float32)
self.not_dones = np.empty((capacity, 1), dtype=np.float32)
self.idx = 0
self.full = False
self.payload = []
self.done_idxs = None
def __len__(self):
return self.capacity if self.full else self.idx
def get_obs_stats(self):
assert not self.pixels
MIN_STD = 1e-1
MAX_STD = 10
mean = self.welford.mean()
std = self.welford.std()
std[std < MIN_STD] = MIN_STD
std[std > MAX_STD] = MAX_STD
return mean, std
def add(self, obs, action, reward, next_obs, done):
if self.normalize_obs:
self.welford.add_data(obs)
if done:
self.done_idxs.add(self.idx)
elif self.full:
self.done_idxs.discard(self.idx)
np.copyto(self.obses[self.idx], obs)
np.copyto(self.actions[self.idx], action)
np.copyto(self.rewards[self.idx], reward)
np.copyto(self.next_obses[self.idx], next_obs)
np.copyto(self.not_dones[self.idx], not done)
self.idx = (self.idx + 1) % self.capacity
self.global_idx += 1
self.full = self.full or self.idx == 0
def sample(self, batch_size):
idxs = np.random.randint(
0, self.capacity if self.full else self.idx,
size=batch_size)
obses = self.obses[idxs]
next_obses = self.next_obses[idxs]
if self.normalize_obs:
mu, sigma = self.get_obs_stats()
obses = (obses-mu)/sigma
next_obses = (next_obses-mu)/sigma
obses = torch.as_tensor(obses, device=self.device).float()
actions = torch.as_tensor(self.actions[idxs], device=self.device)
rewards = torch.as_tensor(self.rewards[idxs], device=self.device)
next_obses = torch.as_tensor(
next_obses, device=self.device).float()
not_dones = torch.as_tensor(self.not_dones[idxs], device=self.device)
return obses, actions, rewards, next_obses, not_dones
def sample_multistep(self):
assert self.batch_size < self.idx or self.full
T = self.horizon
last_idx = self.capacity if self.full else self.idx
last_idx -= T
done_idxs_sorted = np.array(list(self.done_idxs) + [last_idx])
n_done = len(done_idxs_sorted)
done_idxs_raw = done_idxs_sorted - np.arange(1, n_done+1)*T
samples_raw = npr.choice(
last_idx-(T+1)*n_done, size=self.batch_size,
replace=True # for speed
)
samples_raw = sorted(samples_raw)
js = np.searchsorted(done_idxs_raw, samples_raw)
offsets = done_idxs_raw[js] - samples_raw + T
start_idxs = done_idxs_sorted[js] - offsets
obses, actions, rewards, not_dones = [], [], [], []
for t in range(T):
obses.append(self.obses[start_idxs + t])
actions.append(self.actions[start_idxs + t])
rewards.append(self.rewards[start_idxs + t])
not_dones.append(self.not_dones[start_idxs + t])
assert np.all(self.not_dones[start_idxs + t])
obses = np.stack(obses)
actions = np.stack(actions)
rewards = np.stack(rewards).squeeze(2)
not_dones = np.stack(not_dones).squeeze(2)
if self.normalize_obs:
mu, sigma = self.get_obs_stats()
obses = (obses-mu)/sigma
obses = torch.as_tensor(obses, device=self.device).float()
actions = torch.as_tensor(actions, device=self.device)
rewards = torch.as_tensor(rewards, device=self.device)
not_dones = torch.as_tensor(not_dones, device=self.device)
return obses, actions, rewards, not_dones
def save(self, save_dir):
# TODO: The serialization code and logic can be significantly improved.
if self.global_idx == self.global_last_save:
return
if not os.path.exists(save_dir):
os.makedirs(save_dir)
path = os.path.join(
save_dir, f'{self.global_last_save:08d}_{self.global_idx:08d}.pt')
payload = list(zip(*self.payload))
payload = [np.vstack(x) for x in payload]
self.global_last_save = self.global_idx
torch.save(payload, path)
self.payload = []
def load(self, save_dir):
def parse_chunk(chunk):
start, end = [int(x) for x in chunk.split('.')[0].split('_')]
return (start, end)
self.idx = 0
chunks = os.listdir(save_dir)
chunks = filter(lambda fname: 'stats' not in fname, chunks)
chunks = sorted(chunks, key=lambda x: int(x.split('_')[0]))
self.full = self.global_idx > self.capacity
global_beginning = self.global_idx - self.capacity if self.full else 0
for chunk in chunks:
global_start, global_end = parse_chunk(chunk)
if global_start >= self.global_idx:
continue
start = global_start - global_beginning
end = global_end - global_beginning
if end <= 0:
continue
path = os.path.join(save_dir, chunk)
payload = torch.load(path)
if start < 0:
payload = [x[-start:] for x in payload]
start = 0
assert self.idx == start
obses = payload[0]
next_obses = payload[1]
self.obses[start:end] = obses
self.next_obses[start:end] = next_obses
self.actions[start:end] = payload[2]
self.rewards[start:end] = payload[3]
self.not_dones[start:end] = payload[4]
self.idx = end
self.last_save = self.idx
if self.full:
assert self.idx == self.capacity
self.idx = 0
last_idx = self.capacity if self.full else self.idx
self.done_idxs = SortedSet(np.where(1.-self.not_dones[:last_idx])[0])