torch_arange | R Documentation |
Arange
torch_arange(
start,
end,
step = 1L,
dtype = NULL,
layout = NULL,
device = NULL,
requires_grad = FALSE
)
start |
(Number) the starting value for the set of points. Default: |
end |
(Number) the ending value for the set of points |
step |
(Number) the gap between each pair of adjacent points. Default: |
dtype |
( |
layout |
( |
device |
( |
requires_grad |
(bool, optional) If autograd should record operations on the returned tensor. Default: |
Returns a 1-D tensor of size \left\lceil \frac{\mbox{end} - \mbox{start}}{\mbox{step}} \right\rceil
with values from the interval [start, end)
taken with common difference
step
beginning from start
.
Note that non-integer step
is subject to floating point rounding errors when
comparing against end
; to avoid inconsistency, we advise adding a small epsilon to end
in such cases.
\mbox{out}_{{i+1}} = \mbox{out}_{i} + \mbox{step}
if (torch_is_installed()) {
torch_arange(start = 0, end = 5)
torch_arange(1, 4)
torch_arange(1, 2.5, 0.5)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.