テンソルフロー::作戦::リソースSparseApplyKerasMomentum
#include <training_ops.h>
モメンタムスキームに従って、「*var」と「*accum」の関連エントリを更新します。
まとめ
Nesterov の勢いを使用したい場合は、use_nesterov = True を設定します。
つまり、grad がある行については、次のように var と accum を更新します。
accum = accum * 勢い - lr * grad var += accum
引数:
- スコープ:スコープオブジェクト
- var: Variable() から取得する必要があります。
- accum: Variable() から取得する必要があります。
- lr: 学習率。スカラーでなければなりません。
- grad: グラデーション。
- indices: var と accum の最初の次元へのインデックスのベクトル。
- 勢い:勢い。スカラーでなければなりません。
オプションの属性 ( Attrs
を参照):
- use_locking:
True
の場合、var テンソルと accum テンソルの更新はロックによって保護されます。それ以外の場合、動作は未定義ですが、競合が少なくなる可能性があります。 - use_nesterov:
True
の場合、compute grad に渡されるテンソルは var + moment * accum となるため、最終的に取得する var は実際には var + moment * accum になります。
戻り値:
- 作成された
Operation
コンストラクターとデストラクター | |
---|---|
ResourceSparseApplyKerasMomentum (const :: tensorflow::Scope & scope, :: tensorflow::Input var, :: tensorflow::Input accum, :: tensorflow::Input lr, :: tensorflow::Input grad, :: tensorflow::Input indices, :: tensorflow::Input momentum) | |
ResourceSparseApplyKerasMomentum (const :: tensorflow::Scope & scope, :: tensorflow::Input var, :: tensorflow::Input accum, :: tensorflow::Input lr, :: tensorflow::Input grad, :: tensorflow::Input indices, :: tensorflow::Input momentum, const ResourceSparseApplyKerasMomentum::Attrs & attrs) |
パブリック属性 | |
---|---|
operation |
公共機能 | |
---|---|
operator::tensorflow::Operation () const |
パブリック静的関数 | |
---|---|
UseLocking (bool x) | |
UseNesterov (bool x) |
構造体 | |
---|---|
tensorflow:: ops:: ResourceSparseApplyKerasMomentum:: Attrs | ResourceSparseApplyKerasMomentumのオプションの属性セッター。 |
パブリック属性
手術
Operation operation
公共機能
リソースSparseApplyKerasMomentum
ResourceSparseApplyKerasMomentum( const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input accum, ::tensorflow::Input lr, ::tensorflow::Input grad, ::tensorflow::Input indices, ::tensorflow::Input momentum )
リソースSparseApplyKerasMomentum
ResourceSparseApplyKerasMomentum( const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input accum, ::tensorflow::Input lr, ::tensorflow::Input grad, ::tensorflow::Input indices, ::tensorflow::Input momentum, const ResourceSparseApplyKerasMomentum::Attrs & attrs )
演算子::tensorflow::オペレーション
operator::tensorflow::Operation() const
パブリック静的関数
ロックを使用する
Attrs UseLocking( bool x )
ネステロフを使用する
Attrs UseNesterov( bool x )