-
Notifications
You must be signed in to change notification settings - Fork 758
/
sb3_highway_dqn_cnn.py
68 lines (59 loc) · 1.7 KB
/
sb3_highway_dqn_cnn.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
import gymnasium as gym
from stable_baselines3 import DQN
from stable_baselines3.common.vec_env import DummyVecEnv, VecVideoRecorder
import highway_env # noqa: F401
def train_env():
env = gym.make(
"highway-fast-v0",
config={
"observation": {
"type": "GrayscaleObservation",
"observation_shape": (128, 64),
"stack_size": 4,
"weights": [0.2989, 0.5870, 0.1140], # weights for RGB conversion
"scaling": 1.75,
},
},
)
env.reset()
return env
def test_env():
env = train_env()
env.unwrapped.config.update({"policy_frequency": 15, "duration": 20})
env.reset()
return env
if __name__ == "__main__":
# Train
model = DQN(
"CnnPolicy",
DummyVecEnv([train_env]),
learning_rate=5e-4,
buffer_size=15000,
learning_starts=200,
batch_size=32,
gamma=0.8,
train_freq=1,
gradient_steps=1,
target_update_interval=50,
exploration_fraction=0.7,
verbose=1,
tensorboard_log="highway_cnn/",
)
model.learn(total_timesteps=int(1e5))
model.save("highway_cnn/model")
# Record video
model = DQN.load("highway_cnn/model")
env = DummyVecEnv([test_env])
video_length = 2 * env.envs[0].config["duration"]
env = VecVideoRecorder(
env,
"highway_cnn/videos/",
record_video_trigger=lambda x: x == 0,
video_length=video_length,
name_prefix="dqn-agent",
)
obs, info = env.reset()
for _ in range(video_length + 1):
action, _ = model.predict(obs)
obs, _, _, _, _ = env.step(action)
env.close()