-
Notifications
You must be signed in to change notification settings - Fork 3
/
replay.py
69 lines (46 loc) · 1.81 KB
/
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
import random, datetime
from pathlib import Path
import gym
import gym_super_mario_bros
from gym_super_mario_bros.actions import SIMPLE_MOVEMENT
from gym.wrappers import FrameStack, GrayScaleObservation, TransformObservation
from nes_py.wrappers import JoypadSpace
from mario_2 import Mario, MetricLogger, ResizeObservation, SkipFrame
env = gym_super_mario_bros.make('SuperMarioBros-v0', apply_api_compatibility=True, render_mode='human')
env = JoypadSpace(env, SIMPLE_MOVEMENT)
env = SkipFrame(env, skip=4)
env = GrayScaleObservation(env, keep_dim=False)
env = ResizeObservation(env, shape=84)
env = TransformObservation(env, f=lambda x: x / 255.)
if gym.__version__ < "0.26":
env = FrameStack(env, num_stack=4, new_step_api=True)
else:
env = FrameStack(env, num_stack=4)
env.reset()
save_dir = Path('checkpoints') / datetime.datetime.now().strftime('%Y-%m-%dT%H-%M-%S')
save_dir.mkdir(parents=True)
checkpoint = Path('checkpoints/2024-02-13T10-38-49/mario_net_49.chkpt')
mario = Mario(state_dim=(4, 84, 84), action_dim=env.action_space.n, save_dir=save_dir, checkpoint=checkpoint)
mario.exploration_rate = mario.exploration_rate_min
logger = MetricLogger(save_dir)
episodes = 100
for e in range(episodes):
state = env.reset()
while True:
action = mario.act(state)
# obs, reward, done, trunk, info = env.step(action)
next_state, reward, done, trunc, info = env.step(action)
mario.cache(state, next_state, action, reward, done)
# q, loss = mario.learn()
logger.log_step(reward, None, None)
state = next_state
if done or info['flag_get']:
break
env.render()
logger.log_episode()
if e % 20 == 0:
logger.record(
episode=e,
epsilon=mario.exploration_rate,
step=mario.curr_step
)