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 o