tf_agents.utils.common.EagerPeriodically
Stay organized with collections
Save and categorize content based on your preferences.
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__
View source
__call__()
Call self as a function.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-04-26 UTC.
[null,null,["Last updated 2024-04-26 UTC."],[],[],null,["# tf_agents.utils.common.EagerPeriodically\n\n\u003cbr /\u003e\n\n|----------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/agents/blob/v0.19.0/tf_agents/utils/common.py#L511-L546) |\n\nEagerPeriodically performs the ops defined in `body`. \n\n tf_agents.utils.common.EagerPeriodically(\n body, period\n )\n\nOnly works in Eager mode.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `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()). |\n| `period` | inverse frequency with which to perform the op. Must be a simple python int/long. |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Raises ------ ||\n|-------------|----------------------------|\n| `TypeError` | if body is not a callable. |\n\n\u003cbr /\u003e\n\nMethods\n-------\n\n### `__call__`\n\n[View source](https://github.com/tensorflow/agents/blob/v0.19.0/tf_agents/utils/common.py#L539-L546) \n\n __call__()\n\nCall self as a function."]]