-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathqdagger_dqn_atari_impalacnn.py
More file actions
466 lines (404 loc) · 18.7 KB
/
Copy pathqdagger_dqn_atari_impalacnn.py
File metadata and controls
466 lines (404 loc) · 18.7 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
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
# docs and experiment results can be found at https://docs.cleanrl.dev/rl-algorithms/qdagger/#qdagger_dqn_atari_jax_impalacnnpy
import os
import random
import time
from collections import deque
from dataclasses import dataclass
import gymnasium as gym
import numpy as np
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
import tyro
from huggingface_hub import hf_hub_download
from rich.progress import track
from torch.utils.tensorboard import SummaryWriter
from cleanrl.dqn_atari import QNetwork as TeacherModel
from cleanrl_utils.atari_wrappers import (
ClipRewardEnv,
EpisodicLifeEnv,
FireResetEnv,
MaxAndSkipEnv,
NoopResetEnv,
)
from cleanrl_utils.buffers import ReplayBuffer
from cleanrl_utils.evals.dqn_eval import evaluate
@dataclass
class Args:
exp_name: str = os.path.basename(__file__)[: -len(".py")]
"""the name of this experiment"""
seed: int = 1
"""seed of the experiment"""
torch_deterministic: bool = True
"""if toggled, `torch.backends.cudnn.deterministic=False`"""
cuda: bool = True
"""if toggled, cuda will be enabled by default"""
track: bool = False
"""if toggled, this experiment will be tracked with Weights and Biases"""
wandb_project_name: str = "cleanRL"
"""the wandb's project name"""
wandb_entity: str = None
"""the entity (team) of wandb's project"""
capture_video: bool = False
"""whether to capture videos of the agent performances (check out `videos` folder)"""
save_model: bool = False
"""whether to save model into the `runs/{run_name}` folder"""
upload_model: bool = False
"""whether to upload the saved model to huggingface"""
hf_entity: str = ""
"""the user or org name of the model repository from the Hugging Face Hub"""
# Algorithm specific arguments
env_id: str = "BreakoutNoFrameskip-v4"
"""the id of the environment"""
total_timesteps: int = 10000000
"""total timesteps of the experiments"""
learning_rate: float = 1e-4
"""the learning rate of the optimizer"""
num_envs: int = 1
"""the number of parallel game environments"""
buffer_size: int = 1000000
"""the replay memory buffer size"""
gamma: float = 0.99
"""the discount factor gamma"""
tau: float = 1.0
"""the target network update rate"""
target_network_frequency: int = 1000
"""the timesteps it takes to update the target network"""
batch_size: int = 32
"""the batch size of sample from the reply memory"""
start_e: float = 1.0
"""the starting epsilon for exploration"""
end_e: float = 0.01
"""the ending epsilon for exploration"""
exploration_fraction: float = 0.10
"""the fraction of `total-timesteps` it takes from start-e to go end-e"""
learning_starts: int = 80000
"""timestep to start learning"""
train_frequency: int = 4
"""the frequency of training"""
# QDagger specific arguments
teacher_policy_hf_repo: str = None
"""the huggingface repo of the teacher policy"""
teacher_model_exp_name: str = "dqn_atari"
"""the experiment name of the teacher model"""
teacher_eval_episodes: int = 10
"""the number of episodes to run the teacher policy evaluate"""
teacher_steps: int = 500000
"""the number of steps to run the teacher policy to generate the replay buffer"""
offline_steps: int = 500000
"""the number of steps to run the student policy with the teacher's replay buffer"""
temperature: float = 1.0
"""the temperature parameter for qdagger"""
def make_env(env_id, seed, idx, capture_video, run_name):
def thunk():
if capture_video and idx == 0:
env = gym.make(env_id, render_mode="rgb_array")
env = gym.wrappers.RecordVideo(env, f"videos/{run_name}")
else:
env = gym.make(env_id)
env = gym.wrappers.RecordEpisodeStatistics(env)
env = NoopResetEnv(env, noop_max=30)
env = MaxAndSkipEnv(env, skip=4)
env = EpisodicLifeEnv(env)
if "FIRE" in env.unwrapped.get_action_meanings():
env = FireResetEnv(env)
env = ClipRewardEnv(env)
env = gym.wrappers.ResizeObservation(env, (84, 84))
env = gym.wrappers.GrayScaleObservation(env)
env = gym.wrappers.FrameStack(env, 4)
env.action_space.seed(seed)
return env
return thunk
# taken from https://github.com/AIcrowd/neurips2020-procgen-starter-kit/blob/142d09586d2272a17f44481a115c4bd817cf6a94/models/impala_cnn_torch.py
class ResidualBlock(nn.Module):
def __init__(self, channels):
super().__init__()
self.conv0 = nn.Conv2d(in_channels=channels, out_channels=channels, kernel_size=3, padding=1)
self.conv1 = nn.Conv2d(in_channels=channels, out_channels=channels, kernel_size=3, padding=1)
def forward(self, x):
inputs = x
x = nn.functional.relu(x)
x = self.conv0(x)
x = nn.functional.relu(x)
x = self.conv1(x)
return x + inputs
class ConvSequence(nn.Module):
def __init__(self, input_shape, out_channels):
super().__init__()
self._input_shape = input_shape
self._out_channels = out_channels
self.conv = nn.Conv2d(in_channels=self._input_shape[0], out_channels=self._out_channels, kernel_size=3, padding=1)
self.res_block0 = ResidualBlock(self._out_channels)
self.res_block1 = ResidualBlock(self._out_channels)
def forward(self, x):
x = self.conv(x)
x = nn.functional.max_pool2d(x, kernel_size=3, stride=2, padding=1)
x = self.res_block0(x)
x = self.res_block1(x)
assert x.shape[1:] == self.get_output_shape()
return x
def get_output_shape(self):
_c, h, w = self._input_shape
return (self._out_channels, (h + 1) // 2, (w + 1) // 2)
# ALGO LOGIC: initialize agent here:
class QNetwork(nn.Module):
def __init__(self, env):
super().__init__()
c, h, w = envs.single_observation_space.shape
shape = (c, h, w)
conv_seqs = []
for out_channels in [16, 32, 32]:
conv_seq = ConvSequence(shape, out_channels)
shape = conv_seq.get_output_shape()
conv_seqs.append(conv_seq)
conv_seqs += [
nn.Flatten(),
nn.ReLU(),
nn.Linear(in_features=shape[0] * shape[1] * shape[2], out_features=256),
nn.ReLU(),
nn.Linear(in_features=256, out_features=env.single_action_space.n),
]
self.network = nn.Sequential(*conv_seqs)
def forward(self, x):
return self.network(x / 255.0)
def linear_schedule(start_e: float, end_e: float, duration: int, t: int):
slope = (end_e - start_e) / duration
return max(slope * t + start_e, end_e)
def kl_divergence_with_logits(target_logits, prediction_logits):
"""Implementation of on-policy distillation loss."""
out = -F.softmax(target_logits, dim=-1) * (F.log_softmax(prediction_logits, dim=-1) - F.log_softmax(target_logits, dim=-1))
return torch.sum(out)
if __name__ == "__main__":
args = tyro.cli(Args)
assert args.num_envs == 1, "vectorized envs are not supported at the moment"
if args.teacher_policy_hf_repo is None:
args.teacher_policy_hf_repo = f"cleanrl/{args.env_id}-{args.teacher_model_exp_name}-seed1"
run_name = f"{args.env_id}__{args.exp_name}__{args.seed}__{int(time.time())}"
if args.track:
import wandb
wandb.init(
project=args.wandb_project_name,
entity=args.wandb_entity,
sync_tensorboard=True,
config=vars(args),
name=run_name,
monitor_gym=True,
save_code=True,
)
writer = SummaryWriter(f"runs/{run_name}")
writer.add_text(
"hyperparameters",
"|param|value|\n|-|-|\n%s" % ("\n".join([f"|{key}|{value}|" for key, value in vars(args).items()])),
)
# TRY NOT TO MODIFY: seeding
random.seed(args.seed)
np.random.seed(args.seed)
torch.manual_seed(args.seed)
torch.backends.cudnn.deterministic = args.torch_deterministic
device = torch.device("cuda" if torch.cuda.is_available() and args.cuda else "cpu")
# env setup
envs = gym.vector.SyncVectorEnv(
[make_env(args.env_id, args.seed + i, i, args.capture_video, run_name) for i in range(args.num_envs)]
)
assert isinstance(envs.single_action_space, gym.spaces.Discrete), "only discrete action space is supported"
q_network = QNetwork(envs).to(device)
optimizer = optim.Adam(q_network.parameters(), lr=args.learning_rate)
target_network = QNetwork(envs).to(device)
target_network.load_state_dict(q_network.state_dict())
# QDAGGER LOGIC:
teacher_model_path = hf_hub_download(
repo_id=args.teacher_policy_hf_repo, filename=f"{args.teacher_model_exp_name}.cleanrl_model"
)
teacher_model = TeacherModel(envs).to(device)
teacher_model.load_state_dict(torch.load(teacher_model_path, map_location=device))
teacher_model.eval()
# evaluate the teacher model
teacher_episodic_returns = evaluate(
teacher_model_path,
make_env,
args.env_id,
eval_episodes=args.teacher_eval_episodes,
run_name=f"{run_name}-teacher-eval",
Model=TeacherModel,
epsilon=args.end_e,
capture_video=False,
)
writer.add_scalar("charts/teacher/avg_episodic_return", np.mean(teacher_episodic_returns), 0)
# collect teacher data for args.teacher_steps
# we assume we don't have access to the teacher's replay buffer
# see Fig. A.19 in Agarwal et al. 2022 for more detail
teacher_rb = ReplayBuffer(
args.buffer_size,
envs.single_observation_space,
envs.single_action_space,
device,
optimize_memory_usage=True,
handle_timeout_termination=False,
)
obs, _ = envs.reset(seed=args.seed)
for global_step in track(range(args.teacher_steps), description="filling teacher's replay buffer"):
epsilon = linear_schedule(args.start_e, args.end_e, args.teacher_steps, global_step)
if random.random() < epsilon:
actions = np.array([envs.single_action_space.sample() for _ in range(envs.num_envs)])
else:
q_values = teacher_model(torch.Tensor(obs).to(device))
actions = torch.argmax(q_values, dim=1).cpu().numpy()
next_obs, rewards, terminations, truncations, infos = envs.step(actions)
real_next_obs = next_obs.copy()
for idx, trunc in enumerate(truncations):
if trunc:
real_next_obs[idx] = infos["final_observation"][idx]
teacher_rb.add(obs, real_next_obs, actions, rewards, terminations, infos)
obs = next_obs
# offline training phase: train the student model using the qdagger loss
for global_step in track(range(args.offline_steps), description="offline student training"):
data = teacher_rb.sample(args.batch_size)
# perform a gradient-descent step
with torch.no_grad():
target_max, _ = target_network(data.next_observations).max(dim=1)
td_target = data.rewards.flatten() + args.gamma * target_max * (1 - data.dones.flatten())
teacher_q_values = teacher_model(data.observations) / args.temperature
student_q_values = q_network(data.observations)
old_val = student_q_values.gather(1, data.actions).squeeze()
q_loss = F.mse_loss(td_target, old_val)
student_q_values = student_q_values / args.temperature
distill_loss = torch.mean(kl_divergence_with_logits(teacher_q_values, student_q_values))
loss = q_loss + 1.0 * distill_loss
optimizer.zero_grad()
loss.backward()
optimizer.step()
# update the target network
if global_step % args.target_network_frequency == 0:
for target_network_param, q_network_param in zip(target_network.parameters(), q_network.parameters()):
target_network_param.data.copy_(args.tau * q_network_param.data + (1.0 - args.tau) * target_network_param.data)
if global_step % 100 == 0:
writer.add_scalar("charts/offline/loss", loss, global_step)
writer.add_scalar("charts/offline/q_loss", q_loss, global_step)
writer.add_scalar("charts/offline/distill_loss", distill_loss, global_step)
if global_step % 100000 == 0:
# evaluate the student model
model_path = f"runs/{run_name}/{args.exp_name}-offline-{global_step}.cleanrl_model"
torch.save(q_network.state_dict(), model_path)
print(f"model saved to {model_path}")
episodic_returns = evaluate(
model_path,
make_env,
args.env_id,
eval_episodes=10,
run_name=f"{run_name}-eval",
Model=QNetwork,
device=device,
epsilon=args.end_e,
)
print(episodic_returns)
writer.add_scalar("charts/offline/avg_episodic_return", np.mean(episodic_returns), global_step)
rb = ReplayBuffer(
args.buffer_size,
envs.single_observation_space,
envs.single_action_space,
device,
optimize_memory_usage=True,
handle_timeout_termination=False,
)
start_time = time.time()
# TRY NOT TO MODIFY: start the game
envs = gym.vector.SyncVectorEnv(
[make_env(args.env_id, args.seed + i, i, args.capture_video, run_name) for i in range(args.num_envs)]
)
obs, _ = envs.reset(seed=args.seed)
episodic_returns = deque(maxlen=10)
# online training phase
for global_step in track(range(args.total_timesteps), description="online student training"):
global_step += args.offline_steps
# ALGO LOGIC: put action logic here
epsilon = linear_schedule(args.start_e, args.end_e, args.exploration_fraction * args.total_timesteps, global_step)
if random.random() < epsilon:
actions = np.array([envs.single_action_space.sample() for _ in range(envs.num_envs)])
else:
q_values = q_network(torch.Tensor(obs).to(device))
actions = torch.argmax(q_values, dim=1).cpu().numpy()
# TRY NOT TO MODIFY: execute the game and log data.
next_obs, rewards, terminations, truncations, infos = envs.step(actions)
# TRY NOT TO MODIFY: record rewards for plotting purposes
if "final_info" in infos:
for info in infos["final_info"]:
# Skip the envs that are not done
if "episode" not in info:
continue
print(f"global_step={global_step}, episodic_return={info['episode']['r']}")
writer.add_scalar("charts/episodic_return", info["episode"]["r"], global_step)
writer.add_scalar("charts/episodic_length", info["episode"]["l"], global_step)
writer.add_scalar("charts/epsilon", epsilon, global_step)
episodic_returns.append(info["episode"]["r"])
break
# TRY NOT TO MODIFY: save data to reply buffer; handle `final_observation`
real_next_obs = next_obs.copy()
for idx, trunc in enumerate(truncations):
if trunc:
real_next_obs[idx] = infos["final_observation"][idx]
rb.add(obs, real_next_obs, actions, rewards, terminations, infos)
# TRY NOT TO MODIFY: CRUCIAL step easy to overlook
obs = next_obs
# ALGO LOGIC: training.
if global_step > args.learning_starts:
if global_step % args.train_frequency == 0:
data = rb.sample(args.batch_size)
# perform a gradient-descent step
if len(episodic_returns) < 10:
distill_coeff = 1.0
else:
distill_coeff = max(1 - np.mean(episodic_returns) / np.mean(teacher_episodic_returns), 0)
with torch.no_grad():
target_max, _ = target_network(data.next_observations).max(dim=1)
td_target = data.rewards.flatten() + args.gamma * target_max * (1 - data.dones.flatten())
teacher_q_values = teacher_model(data.observations) / args.temperature
student_q_values = q_network(data.observations)
old_val = student_q_values.gather(1, data.actions).squeeze()
q_loss = F.mse_loss(td_target, old_val)
student_q_values = student_q_values / args.temperature
distill_loss = torch.mean(kl_divergence_with_logits(teacher_q_values, student_q_values))
loss = q_loss + distill_coeff * distill_loss
if global_step % 100 == 0:
writer.add_scalar("losses/loss", loss, global_step)
writer.add_scalar("losses/td_loss", q_loss, global_step)
writer.add_scalar("losses/distill_loss", distill_loss, global_step)
writer.add_scalar("losses/q_values", old_val.mean().item(), global_step)
writer.add_scalar("charts/distill_coeff", distill_coeff, global_step)
print("SPS:", int(global_step / (time.time() - start_time)))
print(distill_coeff)
writer.add_scalar("charts/SPS", int(global_step / (time.time() - start_time)), global_step)
# optimize the model
optimizer.zero_grad()
loss.backward()
optimizer.step()
# update the target network
if global_step % args.target_network_frequency == 0:
for target_network_param, q_network_param in zip(target_network.parameters(), q_network.parameters()):
target_network_param.data.copy_(
args.tau * q_network_param.data + (1.0 - args.tau) * target_network_param.data
)
if args.save_model:
model_path = f"runs/{run_name}/{args.exp_name}.cleanrl_model"
torch.save(q_network.state_dict(), model_path)
print(f"model saved to {model_path}")
from cleanrl_utils.evals.dqn_eval import evaluate
episodic_returns = evaluate(
model_path,
make_env,
args.env_id,
eval_episodes=10,
run_name=f"{run_name}-eval",
Model=QNetwork,
device=device,
epsilon=args.end_e,
)
for idx, episodic_return in enumerate(episodic_returns):
writer.add_scalar("eval/episodic_return", episodic_return, idx)
if args.upload_model:
from cleanrl_utils.huggingface import push_to_hub
repo_name = f"{args.env_id}-{args.exp_name}-seed{args.seed}"
repo_id = f"{args.hf_entity}/{repo_name}" if args.hf_entity else repo_name
push_to_hub(args, episodic_returns, repo_id, "Qdagger", f"runs/{run_name}", f"videos/{run_name}-eval")
envs.close()
writer.close()