VariableSynchronization

공개 최종 열거형 VariableSynchronization

 Indicates when a distributed variable will be synced.
 
Protobuf 열거형 tensorflow.VariableSynchronization

상수

정수 VARIABLE_SYNCHRONIZATION_AUTO_VALUE
 `AUTO`: Indicates that the synchronization will be determined by the
 current `DistributionStrategy` (eg.
정수 VARIABLE_SYNCHRONIZATION_NONE_VALUE
 `NONE`: Indicates that there will only be one copy of the variable, so
 there is no need to sync.
정수 VARIABLE_SYNCHRONIZATION_ON_READ_VALUE
 `ON_READ`: Indicates that the variable will be aggregated across devices
 when it is read (eg.
정수 VARIABLE_SYNCHRONIZATION_ON_WRITE_VALUE
 `ON_WRITE`: Indicates that the variable will be updated across devices
 every time it is written.

상속된 메서드

열거형 값

공개 정적 최종 변수 동기화가 인식되지 않음

공개 정적 최종 VariableSynchronization VARIABLE_SYNCHRONIZATION_AUTO

 `AUTO`: Indicates that the synchronization will be determined by the
 current `DistributionStrategy` (eg. With `MirroredStrategy` this would be
 `ON_WRITE`).
 
VARIABLE_SYNCHRONIZATION_AUTO = 0;

공개 정적 최종 VariableSynchronization VARIABLE_SYNCHRONIZATION_NONE

 `NONE`: Indicates that there will only be one copy of the variable, so
 there is no need to sync.
 
VARIABLE_SYNCHRONIZATION_NONE = 1;

공개 정적 최종 변수 동기화 VARIABLE_SYNCHRONIZATION_ON_READ

 `ON_READ`: Indicates that the variable will be aggregated across devices
 when it is read (eg. when checkpointing or when evaluating an op that uses
 the variable).
 
VARIABLE_SYNCHRONIZATION_ON_READ = 3;

공개 정적 최종 VariableSynchronization VARIABLE_SYNCHRONIZATION_ON_WRITE

 `ON_WRITE`: Indicates that the variable will be updated across devices
 every time it is written.
 
VARIABLE_SYNCHRONIZATION_ON_WRITE = 2;

상수

공개 정적 최종 int VARIABLE_SYNCHRONIZATION_AUTO_VALUE

 `AUTO`: Indicates that the synchronization will be determined by the
 current `DistributionStrategy` (eg. With `MirroredStrategy` this would be
 `ON_WRITE`).
 
VARIABLE_SYNCHRONIZATION_AUTO = 0;

상수값: 0

공개 정적 최종 int VARIABLE_SYNCHRONIZATION_NONE_VALUE

 `NONE`: Indicates that there will only be one copy of the variable, so
 there is no need to sync.
 
VARIABLE_SYNCHRONIZATION_NONE = 1;

상수값: 1

공개 정적 최종 int VARIABLE_SYNCHRONIZATION_ON_READ_VALUE

 `ON_READ`: Indicates that the variable will be aggregated across devices
 when it is read (eg. when checkpointing or when evaluating an op that uses
 the variable).
 
VARIABLE_SYNCHRONIZATION_ON_READ = 3;

상수값: 3

공개 정적 최종 int VARIABLE_SYNCHRONIZATION_ON_WRITE_VALUE

 `ON_WRITE`: Indicates that the variable will be updated across devices
 every time it is written.
 
VARIABLE_SYNCHRONIZATION_ON_WRITE = 2;

상수값: 2