Divides two tf.Tensors element-wise, A / B. Supports broadcasting. The result is rounded with floor function.
tf.Tensor
const a = tf.tensor1d([1, 4, 9, 16]);const b = tf.tensor1d([1, 2, 3, 4]);a.floorDiv(b).print(); // or tf.div(a, b) Copy
const a = tf.tensor1d([1, 4, 9, 16]);const b = tf.tensor1d([1, 2, 3, 4]);a.floorDiv(b).print(); // or tf.div(a, b)
// Broadcast div a with b.const a = tf.tensor1d([2, 4, 6, 8]);const b = tf.scalar(2);a.floorDiv(b).print(); // or tf.floorDiv(a, b) Copy
// Broadcast div a with b.const a = tf.tensor1d([2, 4, 6, 8]);const b = tf.scalar(2);a.floorDiv(b).print(); // or tf.floorDiv(a, b)
The first tensor as the numerator.
The second tensor as the denominator. Must have the same dtype as a.
a
Generated using TypeDoc
Divides two
tf.Tensor
s element-wise, A / B. Supports broadcasting. The result is rounded with floor function.