텐서플로우:: 작전:: 누적
#include <math_ops.h> axis 따라 텐서 x 의 누적 합계를 계산합니다.
요약
기본적으로 이 작업은 포괄적인 누적을 수행합니다. 즉, 입력의 첫 번째 요소가 출력의 첫 번째 요소와 동일함을 의미합니다.
tf.cumsum([a, b, c]) # => [a, a + b, a + b + c]
exclusive kwarg를 True 로 설정하면 대신 독점 누적이 수행됩니다.
tf.cumsum([a, b, c], exclusive=True) # => [0, a, a + b]
reverse kwarg를 True 로 설정하면 누적이 반대 방향으로 수행됩니다.
tf.cumsum([a, b, c], reverse=True) # => [a + b + c, b + c, c]
이는 별도의 tf.reverse 작업을 사용하는 것보다 더 효율적입니다.
reverse 및 exclusive kwargs를 결합할 수도 있습니다.
tf.cumsum([a, b, c], exclusive=True, reverse=True) # => [b + c, c, 0]
인수:
- 범위: 범위 개체
- x:
Tensor. 다음 유형 중 하나여야 합니다:float32,float64,int64,int32,uint8,uint16,int16,int8,complex64,complex128,qint8,quint8,qint32,half. - axis:
int32유형의Tensor(기본값: 0).[-rank(x), rank(x))범위 내에 있어야 합니다.
선택적 속성( Attrs 참조):
- 배타적:
True인 경우 배타적 누적을 수행합니다. - reverse:
bool(기본값: False)
보고:
-
Output: 출력 텐서.
생성자와 소멸자 | |
|---|---|
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) |
공개 속성 | |
|---|---|
operation | |
out | |
공공 기능 | |
|---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const | |
공개 정적 함수 | |
|---|---|
Exclusive (bool x) | |
Reverse (bool x) | |
구조체 | |
|---|---|
| 텐서플로우:: ops:: Cumsum:: 속성 | Cumsum 에 대한 선택적 속성 설정자입니다. |
공개 속성
작업
Operation operation
밖으로
::tensorflow::Output out
공공 기능
누적
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 )
마디
::tensorflow::Node * node() const
연산자::텐서플로우::입력
operator::tensorflow::Input() const
연산자::텐서플로우::출력
operator::tensorflow::Output() const
공개 정적 함수
독점적인
Attrs Exclusive( bool x )
뒤집다
Attrs Reverse( bool x )