Divides two tf.Tensors element-wise, A / B. Supports broadcasting.
tf.Tensor
const a = tf.tensor1d([1, 4, 9, 16]);const b = tf.tensor1d([1, 2, 3, 4]);a.div(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.div(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.div(b).print(); // or tf.div(a, b) Copy
// Broadcast div a with b.const a = tf.tensor1d([2, 4, 6, 8]);const b = tf.scalar(2);a.div(b).print(); // or tf.div(a, b)
The first tensor as the numerator.
The second tensor as the denominator. Must have the same dtype as a.
a
Divides two
tf.Tensor
s element-wise, A / B. Supports broadcasting.