![]() |
EagerPeriodically performs the ops defined in body
.
tf_agents.utils.common.EagerPeriodically(
body, period
)
Only works in Eager mode.
Args | |
---|---|
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. |
Raises | |
---|---|
TypeError
|
if body is not a callable. |
Methods
__call__
__call__()
Call self as a function.