torch_full_like | R Documentation |
Full_like
torch_full_like(
input,
fill_value,
dtype = NULL,
layout = NULL,
device = NULL,
requires_grad = FALSE,
memory_format = torch_preserve_format()
)
input |
(Tensor) the size of |
fill_value |
the number to fill the output tensor with. |
dtype |
( |
layout |
( |
device |
( |
requires_grad |
(bool, optional) If autograd should record operations on the returned tensor. Default: |
memory_format |
( |
memory_format=torch.preserve_format) -> Tensor
Returns a tensor with the same size as input
filled with fill_value
.
torch_full_like(input, fill_value)
is equivalent to
torch_full(input.size(), fill_value, dtype=input.dtype, layout=input.layout, device=input.device)
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.