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