forked from ntu-adl-ta/ADL19-HW3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
70 lines (57 loc) · 2.07 KB
/
test.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
"""
### NOTICE ###
You DO NOT need to upload this file
"""
import argparse
import numpy as np
from environment import Environment
seed = 11037
def parse():
parser = argparse.ArgumentParser(description="MLDS&ADL HW3")
parser.add_argument('--test_pg', action='store_true', help='whether test policy gradient')
parser.add_argument('--test_dqn', action='store_true', help='whether test DQN')
parser.add_argument('--test_mario', action='store_true', help='whether test Mario')
parser.add_argument('--video_dir', default=None, help='output video directory')
parser.add_argument('--do_render', action='store_true', help='whether render environment')
try:
from argument import add_arguments
parser = add_arguments(parser)
except:
pass
args = parser.parse_args()
return args
def test(agent, env, total_episodes=30):
rewards = []
env.seed(seed)
for i in range(total_episodes):
state = env.reset()
agent.init_game_setting()
done = False
episode_reward = 0.0
#playing one game
while(not done):
action = agent.make_action(state, test=True)
state, reward, done, info = env.step(action)
episode_reward += reward
rewards.append(episode_reward)
print('Run %d episodes'%(total_episodes))
print('Mean:', np.mean(rewards))
def run(args):
if args.test_pg:
env = Environment('LunarLander-v2', args, test=True)
from agent_dir.agent_pg import AgentPG
agent = AgentPG(env, args)
test(agent, env)
if args.test_dqn:
env = Environment('AssaultNoFrameskip-v0', args, atari_wrapper=True, test=True)
from agent_dir.agent_dqn import AgentDQN
agent = AgentDQN(env, args)
test(agent, env, total_episodes=100)
if args.test_mario:
env = Environment('SuperMarioBros-v0', args, test=True)
from agent_dir.agent_mario import AgentMario
agent = AgentMario(env, args)
test(agent, env, total_episodes=10)
if __name__ == '__main__':
args = parse()
run(args)