tensoreflusso:: ops:: ApplicareAdagrad
#include <training_ops.h>
Aggiorna '*var' secondo lo schema adagrad.
Riepilogo
accum += grad * grad var -= lr * grad * (1 / sqrt(accum))
Argomenti:
- scope: un oggetto Scope
- var: dovrebbe provenire da una variabile().
- accum: dovrebbe provenire da una variabile().
- lr: fattore di scala. Deve essere uno scalare.
- grad: il gradiente.
Attributi facoltativi (vedi Attrs
):
- use_locking: Se
True
, l'aggiornamento dei tensori var e accum sarà protetto da un lock; altrimenti il comportamento non è definito, ma può mostrare meno contesa.
Resi:
-
Output
: Uguale a "var".
Costruttori e distruttori | |
---|---|
ApplyAdagrad (const :: tensorflow::Scope & scope, :: tensorflow::Input var, :: tensorflow::Input accum, :: tensorflow::Input lr, :: tensorflow::Input grad) | |
ApplyAdagrad (const :: tensorflow::Scope & scope, :: tensorflow::Input var, :: tensorflow::Input accum, :: tensorflow::Input lr, :: tensorflow::Input grad, const ApplyAdagrad::Attrs & attrs) |
Attributi pubblici | |
---|---|
operation | |
out |
Funzioni pubbliche | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
Funzioni pubbliche statiche | |
---|---|
UpdateSlots (bool x) | |
UseLocking (bool x) |
Strutture | |
---|---|
tensorflow:: ops:: ApplyAdagrad:: Attrs | Setter di attributi facoltativi per ApplyAdagrad . |
Attributi pubblici
operazione
Operation operation
fuori
::tensorflow::Output out
Funzioni pubbliche
ApplicareAdagrad
ApplyAdagrad( const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input accum, ::tensorflow::Input lr, ::tensorflow::Input grad )
ApplicareAdagrad
ApplyAdagrad( const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input accum, ::tensorflow::Input lr, ::tensorflow::Input grad, const ApplyAdagrad::Attrs & attrs )
nodo
::tensorflow::Node * node() const
operatore::tensorflow::Input
operator::tensorflow::Input() const
operatore::tensorflow::Output
operator::tensorflow::Output() const
Funzioni pubbliche statiche
Aggiorna Slot
Attrs UpdateSlots( bool x )
UsaLocking
Attrs UseLocking( bool x )