tensor akışı:: işlem:: DağılımNdSub

#include <state_ops.h>

Bir Değişkendeki tek tek değerlere veya dilimlere seyrek çıkarma uygular.

Özet

indices göre belirli bir değişken içinde.

ref , P derecesine sahip bir Tensor ve indices Q derecesine sahip bir Tensor .

indices ref içindeki dizinleri içeren tamsayı tensör olmalıdır. [d_0, ..., d_{Q-2}, K] şeklinde olmalıdır; burada 0 < K <= P .

indices en içteki boyutu ( K uzunluğunda), ref K boyutu boyunca elemanlar ( K = P ise) veya dilimler ( K < P ise) şeklindeki endekslere karşılık gelir.

updates şu şekle sahip Q-1+PK dereceli Tensor :

[d_0, ..., d_{Q-2}, ref.shape[K], ..., ref.shape[P-1]]

Örneğin, 8 öğeli bir derece 1 tensörden 4 dağınık öğeyi çıkarmak istediğimizi varsayalım. Python'da bu çıkarma işlemi şu şekilde görünecektir:

ref = tf.Variable([1, 2, 3, 4, 5, 6, 7, 8])
indices = tf.constant([[4], [3], [1], [7]])
updates = tf.constant([9, 10, 11, 12])
sub = tf.scatter_nd_sub(ref, indices, updates)
with tf.Session() as sess:
  print sess.run(sub)

Sonuçta ortaya çıkan ref güncellemesi şu şekilde görünecektir:

[1, -9, 3, -6, -4, 6, 7, -4]

Dilimlerde güncellemelerin nasıl yapılacağı hakkında daha fazla ayrıntı için tf.scatter_nd bakın.

Argümanlar:

  • kapsam: Bir Kapsam nesnesi
  • ref: Değişken bir Tensör . Değişken bir düğümden olmalıdır.
  • endeksler: A Tensör . Aşağıdaki türlerden biri olmalıdır: int32, int64. Ref'e endekslerin tensörü.
  • güncellemeler: Bir Tensör . Ref ile aynı türde olmalıdır. Referanstan çıkarılacak güncellenmiş değerlerin tensörü.

İsteğe bağlı özellikler (bkz. Attrs ):

  • use_locking: İsteğe bağlı bir bool. Varsayılan olarak True'dur. True ise atama bir kilitle korunacaktır; aksi takdirde davranış tanımsızdır ancak daha az çekişme sergileyebilir.

İadeler:

  • Output : Ref ile aynı. Güncelleme yapıldıktan sonra güncellenen değerleri kullanmak isteyen işlemler için kolaylık sağlamak amacıyla geri döndü.

Yapıcılar ve Yıkıcılar

ScatterNdSub (const :: tensorflow::Scope & scope, :: tensorflow::Input ref, :: tensorflow::Input indices, :: tensorflow::Input updates)
ScatterNdSub (const :: tensorflow::Scope & scope, :: tensorflow::Input ref, :: tensorflow::Input indices, :: tensorflow::Input updates, const ScatterNdSub::Attrs & attrs)

Genel özellikler

operation
output_ref

Kamu işlevleri

node () const
::tensorflow::Node *
operator::tensorflow::Input () const
operator::tensorflow::Output () const

Genel statik işlevler

UseLocking (bool x)

Yapılar

tensorflow:: ops:: ScatterNdSub:: Öznitelikler

ScatterNdSub için isteğe bağlı öznitelik ayarlayıcılar.

Genel özellikler

operasyon

Operation operation

çıktı_ref

::tensorflow::Output output_ref

Kamu işlevleri

DağılımNdSub

 ScatterNdSub(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input ref,
  ::tensorflow::Input indices,
  ::tensorflow::Input updates
)

DağılımNdSub

 ScatterNdSub(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input ref,
  ::tensorflow::Input indices,
  ::tensorflow::Input updates,
  const ScatterNdSub::Attrs & attrs
)

düğüm

::tensorflow::Node * node() const 

operatör::tensorflow::Giriş

 operator::tensorflow::Input() const 

operatör::tensorflow::Çıktı

 operator::tensorflow::Output() const 

Genel statik işlevler

KullanımKilitleme

Attrs UseLocking(
  bool x
)