Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions trax/rl/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ def play(env, policy, dm_suite=False, max_steps=None, last_observation=None):
cur_trajectory = Trajectory(last_observation)
while not done and (max_steps is None or cur_step < max_steps):
action, dist_inputs = policy(cur_trajectory)
action = np.asarray(action)
step = env.step(action)
if dm_suite:
(observation, reward, done) = (
Expand Down