tf_agents.utils.common.EagerPeriodically

EagerPeriodically performs the ops defined in body.

Only works in Eager mode.

body callable that returns the tensorflow op to be performed every time an internal counter is divisible by the period. The op must have no output (for example, a tf.group()).
period inverse frequency with which to perform the op. Must be a simple python int/long.

TypeError if body is not a callable.

Methods

__call__

View source

Call self as a function.