tf_agents.utils.common.Periodically

Periodically performs the ops defined in body.

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. It can be a Tensor or a Variable.
name name of the object.

TypeError if body is not a callable.

Methods

__call__

View source

Call self as a function.