tensor akışı:: işlem:: Cumsum

#include <math_ops.h>

Tensör x axis boyunca kümülatif toplamını hesaplayın.

Özet

Varsayılan olarak, bu op kapsayıcı bir toplam toplamı gerçekleştirir; bu, girdinin ilk öğesinin çıktının ilk öğesiyle aynı olduğu anlamına gelir:

tf.cumsum([a, b, c])  # => [a, a + b, a + b + c]

exclusive kwarg'ı True olarak ayarladığınızda bunun yerine özel bir cumsum gerçekleştirilir:

tf.cumsum([a, b, c], exclusive=True)  # => [0, a, a + b]

reverse kwarg'ı True olarak ayarladığınızda cumsum ters yönde gerçekleştirilir:

tf.cumsum([a, b, c], reverse=True)  # => [a + b + c, b + c, c]

Bu, ayrı tf.reverse operasyonlarını kullanmaktan daha verimlidir.

reverse ve exclusive kwarglar da birleştirilebilir:

tf.cumsum([a, b, c], exclusive=True, reverse=True)  # => [b + c, c, 0]

Argümanlar:

  • kapsam: Bir Kapsam nesnesi
  • x: Bir Tensor . Şu türlerden biri olmalıdır: float32 , float64 , int64 , int32 , uint8 , uint16 , int16 , int8 , complex64 , complex128 , qint8 , quint8 , qint32 , half .
  • eksen: int32 türünde bir Tensor (varsayılan: 0). [-rank(x), rank(x)) aralığında olmalıdır.

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

  • özel: True ise özel cumsum gerçekleştirin.
  • ters: Bir bool (varsayılan: Yanlış).

İadeler:

  • Output : Çıkış tensörü.

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

Cumsum (const :: tensorflow::Scope & scope, :: tensorflow::Input x, :: tensorflow::Input axis)
Cumsum (const :: tensorflow::Scope & scope, :: tensorflow::Input x, :: tensorflow::Input axis, const Cumsum::Attrs & attrs)

Genel özellikler

operation
out

Kamu işlevleri

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

Genel statik işlevler

Exclusive (bool x)
Reverse (bool x)

Yapılar

tensorflow:: ops:: Cumsum:: Öznitelikler

Cumsum için isteğe bağlı özellik ayarlayıcılar.

Genel özellikler

operasyon

Operation operation

dışarı

::tensorflow::Output out

Kamu işlevleri

Cumsum

 Cumsum(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input x,
  ::tensorflow::Input axis
)

Cumsum

 Cumsum(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input x,
  ::tensorflow::Input axis,
  const Cumsum::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

Özel

Attrs Exclusive(
  bool x
)

Tersi

Attrs Reverse(
  bool x
)