View source: R/gen-namespace.R
torch_true_divide | R Documentation |
TRUE_divide
torch_true_divide(self, other)
self |
(Tensor) the dividend |
other |
(Tensor or Scalar) the divisor |
Performs "true division" that always computes the division
in floating point. Analogous to division in Python 3 and equivalent to
torch_div
except when both inputs have bool or integer scalar types,
in which case they are cast to the default (floating) scalar type before the division.
\mbox{out}_i = \frac{\mbox{dividend}_i}{\mbox{divisor}}
if (torch_is_installed()) {
dividend = torch_tensor(c(5, 3), dtype=torch_int())
divisor = torch_tensor(c(3, 2), dtype=torch_int())
torch_true_divide(dividend, divisor)
torch_true_divide(dividend, 2)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.