tf.abs()

tf.abs(x, name=None)

Computes the absolute value of a tensor.

Given a tensor of real numbers x, this operation returns a tensor containing the absolute value of each element in x. For example, if x is an input element and y is an output element, this operation computes \(y = |x|\).

See tf.complex_abs() to compute the absolute value of a complex number.

Args:
  • x: A Tensor or SparseTensor of type float32, float64, int32, or int64.
  • name: A name for the operation (optional).
Returns:

A Tensor or SparseTensor the same size and type as x with absolute values.

doc_TensorFlow
2016-10-14 12:42:40
Comments
Leave a Comment

Please login to continue.