tensorflow :: ops :: Cumsum
#include <math_ops.h>
axis
boyunca x
tensörünün kümülatif toplamını hesaplayın.
Özet
Varsayılan olarak, bu işlem kapsamlı bir cumsum gerçekleştirir, bu da 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
ayarlandığında, bunun yerine özel bir cumsum gerçekleştirilir:
tf.cumsum([a, b, c], exclusive=True) # => [0, a, a + b]
reverse
kwarg'ı True
ayarlayarak, cumsum ters yönde gerçekleştirilir:
tf.cumsum([a, b, c], reverse=True) # => [a + b + c, b + c, c]
Bu, ayrı tf.reverse
ops kullanmaktan daha etkilidir.
reverse
ve exclusive
kwarglar da birleştirilebilir:
tf.cumsum([a, b, c], exclusive=True, reverse=True) # => [b + c, c, 0]
Argümanlar:
- kapsam: Bir Scope nesnesi
- x: Bir
Tensor
. Aşağıdaki türlerinden birini olmalıfloat32
,float64
,int64
,int32
,uint8
,uint16
,int16
,int8
,complex64
,complex128
,qint8
,quint8
,qint32
,half
. - eksen:
int32
türünde birTensor
(varsayılan: 0).[-rank(x), rank(x))
aralığında olmalıdır.
İsteğe bağlı özellikler (bkz. Attrs
):
- özel:
True
, özel cumsum gerçekleştirin. - ters: Bir
bool
(varsayılan: Yanlış).
İadeler:
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 |
Kamusal işlevler | |
---|---|
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 :: Attrs | Cumsum için isteğe bağlı öznitelik belirleyiciler. |
Genel özellikler
operasyon
Operation operation
dışarı
::tensorflow::Output out
Kamusal işlevler
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
operator :: tensorflow :: Girdi
operator::tensorflow::Input() const
operator :: tensorflow :: Çıktı
operator::tensorflow::Output() const
Genel statik işlevler
Ayrıcalıklı
Attrs Exclusive( bool x )
Tersine çevirmek
Attrs Reverse( bool x )