MCPcopy Index your code
hub / github.com/tensorpack/tensorpack / step

Method step

examples/DeepQNetwork/expreplay.py:232–239  ·  view source on GitHub ↗

Execute one step in any of the runners.

(self, exploration)

Source from the content-addressed store, hash-verified

230 return th
231
232 def step(self, exploration):
233 """
234 Execute one step in any of the runners.
235 """
236 if len(self._runners) > 1:
237 self._populate_job_queue.put(exploration)
238 else:
239 self._runners[0].step(exploration)
240
241 def reset_stats(self):
242 """

Callers

nothing calls this directly

Calls 2

putMethod · 0.80
stepMethod · 0.45

Tested by

no test coverage detected