Cumsum
Cumsum
torch_cumsum(self, dim, dtype = NULL)
self |
(Tensor) the input tensor. |
dim |
(int) the dimension to do the operation over |
dtype |
( |
Returns the cumulative sum of elements of input
in the dimension
dim
.
For example, if input
is a vector of size N, the result will also be
a vector of size N, with elements.
y_i = x_1 + x_2 + x_3 + … + x_i
if (torch_is_installed()) { a = torch_randn(c(10)) a torch_cumsum(a, dim=1) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.