Cumulative sum of the values in a tensor, alongside the specified axis.
View aliases
Compat aliases for migration
See Migration guide for more details.
tf.compat.v1.keras.backend.cumsum
, `tf.compat.v2.keras.backend.cumsum`
tf.keras.backend.cumsum(
x, axis=0
)
Arguments | |
---|---|
x
|
A tensor or variable. |
axis
|
An integer, the axis to compute the sum. |
Returns | |
---|---|
A tensor of the cumulative sum of values of x along axis .
|