tensor.range
Generate a tensor containing a sequence of numbers that begin at start and extends by increments of delta up to limit (exclusive).
start
(T
) - First entry for the range of output values.end
(T
) - Exclusive upper limit for the range of output values.step
(T
) - Value to step by.
Returns
A 1-D tensor with same type as the inputs containing generated range of values.
Examples
Last updated