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.acos()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.acos(x, name=None) Computes acos of x element-wise. Args:

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

tf.floordiv(x, y, name=None) Divides x / y elementwise, rounding down for floating point. The

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
tf.reduce_max()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.reduce_max(input_tensor, reduction_indices=None, keep_dims=False, name=None) Computes the maximum of elements across dimensions

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

tf.sparse_segment_mean(data, indices, segment_ids, name=None) Computes the mean along sparse segments of 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.matrix_determinant()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.matrix_determinant(input, name=None) Computes the determinant of one ore more square matrices. The

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.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