-
Notifications
You must be signed in to change notification settings - Fork 5
/
test.py
55 lines (45 loc) · 1.52 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
"""
### NOTICE ###
You DO NOT need to upload this file
"""
import argparse
import numpy as np
from environment import Environment
from tqdm import tqdm
seed = 1000000
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
print('Episode:{}/{} | reward: {:.2f}'.format(i+1,total_episodes,episode_reward),end='\r')
rewards.append(episode_reward)
print('\nRun %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)