Computes floor of input tf.Tensor element-wise: floor(x).
tf.Tensor
floor(x)
const x = tf.tensor1d([.6, 1.1, -3.3]);x.floor().print(); // or tf.floor(x) Copy
const x = tf.tensor1d([.6, 1.1, -3.3]);x.floor().print(); // or tf.floor(x)
The input tensor.
Generated using TypeDoc
Computes floor of input
tf.Tensor
element-wise:floor(x)
.