Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
same fix on line 1097
Browse files Browse the repository at this point in the history
  • Loading branch information
frankplus committed Mar 10, 2021
1 parent 0b4e940 commit 6eec738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parlai/core/worlds.py
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ def parley(self):
# we log the task act and the index of the act
# in the buffer for world logging purposes
self._task_acts[i] = act # for world logging
self._task_acts[i]['dyn_batch_idx'] = i
self._task_acts[i].force_set('dyn_batch_idx', i)

obs = self.worlds[i].get_model_agent().observe(act)
self._obs[i] = obs
Expand Down

0 comments on commit 6eec738

Please sign in to comment.