tensorflow :: ops :: ScatterDiv
#include <state_ops.h>
変数参照をスパース更新で除算します。
概要
この操作は計算します
# Scalar indices ref[indices, ...] /= updates[...]
# Vector indices (for each i) ref[indices[i], ...] /= updates[i, ...]
# High rank indices (for each i, ..., j) ref[indices[i, ..., j], ...] /= updates[i, ..., j, ...]
この操作は、更新が行われた後にref
を出力します。これにより、リセット値を使用する必要のある操作を連鎖させることが容易になります。
重複するエントリは正しく処理されます。複数のindices
が同じ場所を参照している場合、それらの寄与は分割されます。
updates.shape = indices.shape + ref.shape[1:]
またはupdates.shape = []
です。
引数:
オプションの属性(参照Attrs
):
- use_locking:Trueの場合、操作はロックによって保護されます。それ以外の場合、動作は定義されていませんが、競合が少なくなる可能性があります。
戻り値:
-
Output
:=ref
同じ。更新後に更新された値を使用したい操作の便宜のために返されます。
コンストラクタとデストラクタ | |
---|---|
ScatterDiv (const :: tensorflow::Scope & scope, :: tensorflow::Input ref, :: tensorflow::Input indices, :: tensorflow::Input updates) | |
ScatterDiv (const :: tensorflow::Scope & scope, :: tensorflow::Input ref, :: tensorflow::Input indices, :: tensorflow::Input updates, const ScatterDiv::Attrs & attrs) |
パブリック属性 | |
---|---|
operation | |
output_ref |
公の行事 | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
パブリック静的関数 | |
---|---|
UseLocking (bool x) |
構造体 | |
---|---|
tensorflow :: ops :: ScatterDiv :: Attrs | ScatterDivのオプションの属性セッター。 |
パブリック属性
操作
Operation operation
output_ref
::tensorflow::Output output_ref
公の行事
ScatterDiv
ScatterDiv( const ::tensorflow::Scope & scope, ::tensorflow::Input ref, ::tensorflow::Input indices, ::tensorflow::Input updates )
ScatterDiv
ScatterDiv( const ::tensorflow::Scope & scope, ::tensorflow::Input ref, ::tensorflow::Input indices, ::tensorflow::Input updates, const ScatterDiv::Attrs & attrs )
ノード
::tensorflow::Node * node() const
operator :: tensorflow :: Input
operator::tensorflow::Input() const
operator :: tensorflow :: Output
operator::tensorflow::Output() const
パブリック静的関数
UseLocking
Attrs UseLocking( bool x )