计算张量的绝对值。
用法
tf.math.abs(
x, name=None
)
参数
-
x
Tensor
或SparseTensor
类型为float16
、float32
、float64
、int32
、int64
、complex64
或complex128
。 -
name
操作的名称(可选)。
返回
-
A
Tensor
或者SparseTensor
具有相同的大小、类型和稀疏性x
,具有绝对值。注意,对于complex64
或者complex128
输入,返回Tensor
将是类型float32
或者float64
, 分别。如果
x
是SparseTensor
,则返回SparseTensor(x.indices, tf.math.abs(x.values, ...), x.dense_shape)
给定整数或浮点值的张量,此操作返回相同类型的张量,其中每个元素包含输入中相应元素的绝对值。
给定复数张量 x
,此操作返回类型为 float32
或 float64
的张量,它是 x
中每个元素的绝对值。对于复数 ,其绝对值计算为 。
例如:
# real number
x = tf.constant([-2.25, 3.25])
tf.abs(x)
<tf.Tensor: shape=(2,), dtype=float32,
numpy=array([2.25, 3.25], dtype=float32)>
# complex number
x = tf.constant([[-2.25 + 4.75j], [-3.25 + 5.75j]])
tf.abs(x)
<tf.Tensor: shape=(2, 1), dtype=float64, numpy=
array([[5.25594901],
[6.60492241]])>
相关用法
- Python tf.math.acosh用法及代码示例
- Python tf.math.accumulate_n用法及代码示例
- Python tf.math.angle用法及代码示例
- Python tf.math.add_n用法及代码示例
- Python tf.math.acos用法及代码示例
- Python tf.math.argmax用法及代码示例
- Python tf.math.atan用法及代码示例
- Python tf.math.argmin用法及代码示例
- Python tf.math.add用法及代码示例
- Python tf.math.asin用法及代码示例
- Python tf.math.asinh用法及代码示例
- Python tf.math.atan2用法及代码示例
- Python tf.math.atanh用法及代码示例
- Python tf.math.special.fresnel_cos用法及代码示例
- Python tf.math.is_finite用法及代码示例
- Python tf.math.special.bessel_k0e用法及代码示例
- Python tf.math.invert_permutation用法及代码示例
- Python tf.math.segment_prod用法及代码示例
- Python tf.math.bincount用法及代码示例
- Python tf.math.bessel_i0e用法及代码示例
- Python tf.math.special.bessel_j0用法及代码示例
- Python tf.math.unsorted_segment_min用法及代码示例
- Python tf.math.conj用法及代码示例
- Python tf.math.scalar_mul用法及代码示例
- Python tf.math.zero_fraction用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.math.abs。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。