tf.matrix_diag()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.matrix_diag(diagonal, name=None) Returns a batched diagonal tensor with a given batched diagonal values.

2025-01-10 15:47:30
tf.edit_distance()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.edit_distance(hypothesis, truth, normalize=True, name='edit_distance') Computes the Levenshtein distance between sequences

2025-01-10 15:47:30
tf.cholesky_solve()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.cholesky_solve(chol, rhs, name=None) Solves systems of linear eqns A X = RHS, given Cholesky factorizations.

2025-01-10 15:47:30
tf.scalar_mul()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.scalar_mul(scalar, x) Multiplies a scalar times a Tensor or IndexedSlices object.

2025-01-10 15:47:30
tf.sub()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.sub(x, y, name=None) Returns x - y element-wise. NOTE: Sub supports broadcasting

2025-01-10 15:47:30
tf.fft3d()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.fft3d(input, name=None) Compute the 3-dimensional discrete Fourier Transform over the inner-most 3 dimensions

2025-01-10 15:47:30
tf.mod()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.mod(x, y, name=None) Returns element-wise remainder of division. NOTE: Mod

2025-01-10 15:47:30
tf.complex()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.complex(real, imag, name=None) Converts two real numbers to a complex number. Given a tensor

2025-01-10 15:47:30
tf.inv()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.inv(x, name=None) Computes the reciprocal of x element-wise. I.e., \(y = 1 / x\).

2025-01-10 15:47:30
tf.diag()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.diag(diagonal, name=None) Returns a diagonal tensor with a given diagonal values. Given a

2025-01-10 15:47:30