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
: ATensor
orSparseTensor
of typefloat32
,float64
,int32
, orint64
. -
name
: A name for the operation (optional).
Returns:
A Tensor
or SparseTensor
the same size and type as x
with absolute values.
Please login to continue.