VariableSynchronization

énumération finale publique VariableSynchronization

 Indicates when a distributed variable will be synced.
 
Protobuf enum tensorflow.VariableSynchronization

Constantes

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

Méthodes héritées

entier final
comparerTo ( VariableSynchronization arg0)
int
comparerTo (Objet arg0)
booléen final
est égal à (Objet arg0)
Classe finale <VariableSynchronization>
getDeclaringClass ()
entier final
Code de hachage ()
Chaîne finale
nom ()
entier final
ordinal ()
Chaîne
àChaîne ()
statique <T étend Enum<T>> T
valueOf (Class<T> arg0, Chaîne arg1)
booléen
est égal à (Objet arg0)
Classe finale<?>
obtenirClasse ()
int
Code de hachage ()
vide final
notifier ()
vide final
notifierTous ()
Chaîne
àChaîne ()
vide final
attendre (long arg0, int arg1)
vide final
attendez (long arg0)
vide final
attendez ()
abstrait entier
comparerTo ( VariableSynchronization arg0)

Valeurs d'énumération

public static final VariableSynchronization NON RECONNU

public statique final 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;

public statique final 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;

public statique final VariableSynchronization 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;

public statique final 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;

Constantes

public statique final 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;

Valeur constante : 0

public statique final 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;

Valeur constante : 1

public statique final 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;

Valeur constante : 3

public statique final 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;

Valeur constante : 2