テンソルフロー::作戦:: SparseApplyアダグラード
#include <training_ops.h>
adagrad スキームに従って、「*var」および「*accum」内の関連エントリを更新します。
まとめ
つまり、grad がある行については、次のように var と accum を更新します。 $$accum += grad * grad$$ $$var -= lr * grad * (1 / sqrt(accum))$$
引数:
- スコープ:スコープオブジェクト
- var: Variable() から取得する必要があります。
- accum: Variable() から取得する必要があります。
- lr: 学習率。スカラーでなければなりません。
- grad: グラデーション。
- indices: var と accum の最初の次元へのインデックスのベクトル。
オプションの属性 ( Attrs
を参照):
- use_locking:
True
の場合、var テンソルと accum テンソルの更新はロックによって保護されます。それ以外の場合、動作は未定義ですが、競合が少なくなる可能性があります。
戻り値:
-
Output
: 「var」と同じ。
コンストラクターとデストラクター | |
---|---|
SparseApplyAdagrad (const :: tensorflow::Scope & scope, :: tensorflow::Input var, :: tensorflow::Input accum, :: tensorflow::Input lr, :: tensorflow::Input grad, :: tensorflow::Input indices) | |
SparseApplyAdagrad (const :: tensorflow::Scope & scope, :: tensorflow::Input var, :: tensorflow::Input accum, :: tensorflow::Input lr, :: tensorflow::Input grad, :: tensorflow::Input indices, const SparseApplyAdagrad::Attrs & attrs) |
パブリック属性 | |
---|---|
operation | |
out |
公共機能 | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
パブリック静的関数 | |
---|---|
UpdateSlots (bool x) | |
UseLocking (bool x) |
構造体 | |
---|---|
tensorflow:: ops:: SparseApplyAdagrad:: Attrs | SparseApplyAdagradのオプションの属性セッター。 |
パブリック属性
手術
Operation operation
外
::tensorflow::Output out
公共機能
SparseApplyアダグラード
SparseApplyAdagrad( const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input accum, ::tensorflow::Input lr, ::tensorflow::Input grad, ::tensorflow::Input indices )
SparseApplyアダグラード
SparseApplyAdagrad( const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input accum, ::tensorflow::Input lr, ::tensorflow::Input grad, ::tensorflow::Input indices, const SparseApplyAdagrad::Attrs & attrs )
ノード
::tensorflow::Node * node() const
演算子::tensorflow::入力
operator::tensorflow::Input() const
演算子::tensorflow::出力
operator::tensorflow::Output() const
パブリック静的関数
スロットの更新
Attrs UpdateSlots( bool x )
ロックを使用する
Attrs UseLocking( bool x )