torch.cumprod#
- torch.cumprod(input,dim,*,dtype=None,out=None)→Tensor#
Returns the cumulative product of elements of
inputin the dimensiondim.For example, if
inputis a vector of size N, the result will also bea vector of size N, with elements.- Parameters
- Keyword Arguments
dtype (
torch.dtype, optional) – the desired data type of returned tensor.If specified, the input tensor is casted todtypebefore the operationis performed. This is useful for preventing data type overflows. Default: None.out (Tensor,optional) – the output tensor.
Example:
>>>a=torch.randn(10)>>>atensor([ 0.6001, 0.2069, -0.1919, 0.9792, 0.6727, 1.0062, 0.4126, -0.2129, -0.4206, 0.1968])>>>torch.cumprod(a,dim=0)tensor([ 0.6001, 0.1241, -0.0238, -0.0233, -0.0157, -0.0158, -0.0065, 0.0014, -0.0006, -0.0001])>>>a[5]=0.0>>>torch.cumprod(a,dim=0)tensor([ 0.6001, 0.1241, -0.0238, -0.0233, -0.0157, -0.0000, -0.0000, 0.0000, -0.0000, -0.0000])