tf.VariableSynchronization
Stay organized with collections
Save and categorize content based on your preferences.
Indicates when a distributed variable will be synced.
>>> temp_grad=[tf.Variable([0.], trainable=False,
... synchronization=tf.VariableSynchronization.ON_READ,
... aggregation=tf.VariableAggregation.MEAN
... )]
Class Variables |
AUTO
|
<VariableSynchronization.AUTO: 0>
|
NONE
|
<VariableSynchronization.NONE: 1>
|
ON_READ
|
<VariableSynchronization.ON_READ: 3>
|
ON_WRITE
|
<VariableSynchronization.ON_WRITE: 2>
|
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. Some content is licensed under the numpy license.
Last updated 2024-04-26 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-04-26 UTC."],[],[],null,["# tf.VariableSynchronization\n\n\u003cbr /\u003e\n\n|---------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/tensorflow/blob/v2.16.1/tensorflow/python/ops/variables.py#L63-L87) |\n\nIndicates when a distributed variable will be synced.\n\n#### View aliases\n\n\n**Compat aliases for migration**\n\nSee\n[Migration guide](https://www.tensorflow.org/guide/migrate) for\nmore details.\n\n[`tf.compat.v1.VariableSynchronization`](https://www.tensorflow.org/api_docs/python/tf/VariableSynchronization)\n\n\u003cbr /\u003e\n\n- `AUTO`: Indicates that the synchronization will be determined by the current `DistributionStrategy` (eg. With `MirroredStrategy` this would be `ON_WRITE`).\n- `NONE`: Indicates that there will only be one copy of the variable, so there is no need to sync.\n- `ON_WRITE`: Indicates that the variable will be updated across devices every time it is written.\n- `ON_READ`: Indicates that the variable will be aggregated across devices\n when it is read (eg. when checkpointing or when evaluating an op that uses\n the variable).\n\n Example:\n\n \u003e\u003e\u003e temp_grad=[tf.Variable([0.], trainable=False,\n ... synchronization=tf.VariableSynchronization.ON_READ,\n ... aggregation=tf.VariableAggregation.MEAN\n ... )]\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Class Variables --------------- ||\n|----------|-----------------------------------------|\n| AUTO | `\u003cVariableSynchronization.AUTO: 0\u003e` |\n| NONE | `\u003cVariableSynchronization.NONE: 1\u003e` |\n| ON_READ | `\u003cVariableSynchronization.ON_READ: 3\u003e` |\n| ON_WRITE | `\u003cVariableSynchronization.ON_WRITE: 2\u003e` |\n\n\u003cbr /\u003e"]]