テンソルフロー::作戦::スキャッターマックス
#include <state_ops.h>
max
操作を使用して、スパース更新を変数参照に減らします。
まとめ
この操作で計算されるのは、
# Scalar indices ref[indices, ...] = max(ref[indices, ...], updates[...]) # Vector indices (for each i) ref[indices[i], ...] = max(ref[indices[i], ...], updates[i, ...]) # High rank indices (for each i, ..., j) ref[indices[i, ..., j], ...] = max(ref[indices[i, ..., j], ...], updates[i, ..., j, ...])
この操作では、更新が完了した後にref
を出力します。これにより、リセット値を使用する必要がある操作をチェーンすることが容易になります。
重複エントリは正しく処理されます。複数のindices
同じ場所を参照している場合、それらの寄与は結合されます。
updates.shape = indices.shape + ref.shape[1:]
またはupdates.shape = []
必要です。
引数:
- スコープ:スコープオブジェクト
- ref:
Variable
ノードからのものである必要があります。 - indices:
ref
の最初の次元へのインデックスのテンソル。 - updated:
ref
に換算する更新された値のテンソル。
オプションの属性 ( Attrs
を参照):
- use_locking: True の場合、更新はロックによって保護されます。それ以外の場合、動作は未定義ですが、競合が少なくなる可能性があります。
戻り値:
-
Output
: =ref
と同じ。更新の完了後に更新された値を使用する操作の便宜として返されます。
コンストラクターとデストラクター | |
---|---|
ScatterMax (const :: tensorflow::Scope & scope, :: tensorflow::Input ref, :: tensorflow::Input indices, :: tensorflow::Input updates) | |
ScatterMax (const :: tensorflow::Scope & scope, :: tensorflow::Input ref, :: tensorflow::Input indices, :: tensorflow::Input updates, const ScatterMax::Attrs & attrs) |
パブリック属性 | |
---|---|
operation | |
output_ref |
公共機能 | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
パブリック静的関数 | |
---|---|
UseLocking (bool x) |
構造体 | |
---|---|
tensorflow:: ops:: ScatterMax:: Attrs | ScatterMaxのオプションの属性セッター。 |
パブリック属性
手術
Operation operation
出力参照
::tensorflow::Output output_ref
公共機能
スキャッターマックス
ScatterMax( const ::tensorflow::Scope & scope, ::tensorflow::Input ref, ::tensorflow::Input indices, ::tensorflow::Input updates )
スキャッターマックス
ScatterMax( const ::tensorflow::Scope & scope, ::tensorflow::Input ref, ::tensorflow::Input indices, ::tensorflow::Input updates, const ScatterMax::Attrs & attrs )
ノード
::tensorflow::Node * node() const
演算子::tensorflow::入力
operator::tensorflow::Input() const
演算子::tensorflow::出力
operator::tensorflow::Output() const
パブリック静的関数
ロックを使用する
Attrs UseLocking( bool x )