View source: R/gen-namespace.R
torch_cumprod | R Documentation |
Cumprod
torch_cumprod(self, dim, dtype = NULL)
self |
(Tensor) the input tensor. |
dim |
(int) the dimension to do the operation over |
dtype |
( |
Returns the cumulative product 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 \times x_2\times x_3\times \dots \times x_i
if (torch_is_installed()) {
a = torch_randn(c(10))
a
torch_cumprod(a, dim=1)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.