VariableSynchronization

enumeración final pública sincronización variable

 Indicates when a distributed variable will be synced.
 
Protobuf enumeración tensorflow.VariableSynchronization

Constantes

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

Métodos heredados

entero final
comparar con ( sincronización variable arg0)
entero
comparar con (objeto arg0)
booleano final
es igual (Objeto arg0)
Clase final < Sincronización variable >
getDeclaringClass ()
entero final
código hash ()
cadena final
nombre ()
entero final
ordinal ()
Cadena
a cadena ()
estático <T extiende Enum<T>> T
valor de (Clase<T> arg0, Cadena arg1)
booleano
es igual (Objeto arg0)
Clase final<?>
obtenerclase ()
entero
código hash ()
vacío final
notificar ()
vacío final
notificar a todos ()
Cadena
a cadena ()
vacío final
esperar (arg0 largo, int arg1)
vacío final
espera (arg0 largo)
vacío final
esperar ()
resumen entero
comparar con ( sincronización variable arg0)

Valores de enumeración

Sincronización variable final estática pública NO RECONOCIDA

Sincronización variable final estática pública 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;

Sincronización variable final estática pública 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;

Sincronización variable final estática pública 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;

Sincronización variable estática pública final 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

int final estático público 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;

Valor constante: 0

int final estático público 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;

Valor constante: 1

int final estático público 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;

Valor constante: 3

int final estático público 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;

Valor constante: 2