torch_range | R Documentation |
Range
torch_range(
start,
end,
step = 1,
dtype = NULL,
layout = NULL,
device = NULL,
requires_grad = FALSE
)
start |
(float) the starting value for the set of points. Default: |
end |
(float) the ending value for the set of points |
step |
(float) 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\lfloor \frac{\mbox{end} - \mbox{start}}{\mbox{step}} \right\rfloor + 1
with values from start
to end
with step step
. Step is
the gap between two values in the tensor.
\mbox{out}_{i+1} = \mbox{out}_i + \mbox{step}.
This function is deprecated in favor of torch_arange
.
if (torch_is_installed()) {
torch_range(1, 4)
torch_range(1, 4, 0.5)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.