forked from tpbarron/pytorch-a2c
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deterministically evaluate in a separate thread
- Loading branch information
1 parent
29ef0f4
commit 721a3c3
Showing
5 changed files
with
96 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import math | ||
import os | ||
import sys | ||
|
||
import torch | ||
import torch.nn.functional as F | ||
import torch.optim as optim | ||
from envs import create_atari_env | ||
from model import ActorCritic | ||
from torch.autograd import Variable | ||
from torchvision import datasets, transforms | ||
import time | ||
from collections import deque | ||
|
||
|
||
def test(rank, args, shared_model): | ||
torch.manual_seed(args.seed + rank) | ||
|
||
env = create_atari_env(args.env_name) | ||
env.seed(args.seed + rank) | ||
|
||
model = ActorCritic(env.observation_space.shape[0], env.action_space) | ||
|
||
model.eval() | ||
|
||
state = env.reset() | ||
state = torch.from_numpy(state) | ||
reward_sum = 0 | ||
done = True | ||
|
||
start_time = time.time() | ||
|
||
# a quick hack to prevent the agent from stucking | ||
actions = deque(maxlen=100) | ||
episode_length = 0 | ||
while True: | ||
episode_length += 1 | ||
# Sync with the shared model | ||
if done: | ||
model.load_state_dict(shared_model.state_dict()) | ||
cx = Variable(torch.zeros(1, 256), volatile=True) | ||
hx = Variable(torch.zeros(1, 256), volatile=True) | ||
else: | ||
cx = Variable(cx.data, volatile=True) | ||
hx = Variable(hx.data, volatile=True) | ||
|
||
value, logit, (hx, cx) = model( | ||
(Variable(state.unsqueeze(0), volatile=True), (hx, cx))) | ||
prob = F.softmax(logit) | ||
action = prob.max(1)[1].data.numpy() | ||
|
||
state, reward, done, _ = env.step(action[0, 0]) | ||
done = done or episode_length >= args.max_episode_length | ||
reward_sum += reward | ||
|
||
# a quick hack to prevent the agent from stucking | ||
actions.append(action[0, 0]) | ||
if actions.count(actions[0]) == actions.maxlen: | ||
done = True | ||
|
||
if done: | ||
print("Time {}, episode reward {}, episode length {}".format( | ||
time.strftime("%Hh %Mm %Ss", | ||
time.gmtime(time.time() - start_time)), | ||
reward_sum, episode_length)) | ||
reward_sum = 0 | ||
episode_length = 0 | ||
actions.clear() | ||
state = env.reset() | ||
time.sleep(60) | ||
|
||
state = torch.from_numpy(state) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters