用法
__abs__(
name=None
)
参数
-
x
Tensor
或SparseTensor
类型为float16
、float32
、float64
、int32
、int64
、complex64
或complex128
。 -
name
操作的名称(可选)。
返回
-
与
x
具有相同大小、类型和稀疏度的Tensor
或SparseTensor
具有绝对值。请注意,对于complex64
或complex128
输入,返回的Tensor
将分别为float32
或float64
类型。
计算张量的绝对值。
给定整数或浮点值的张量,此操作返回相同类型的张量,其中每个元素包含输入中相应元素的绝对值。
给定复数张量 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.Variable.__lt__用法及代码示例
- Python tf.Variable.__pow__用法及代码示例
- Python tf.Variable.__le__用法及代码示例
- Python tf.Variable.__matmul__用法及代码示例
- Python tf.Variable.__getitem__用法及代码示例
- Python tf.Variable.__ge__用法及代码示例
- Python tf.Variable.__gt__用法及代码示例
- Python tf.Variable.__rpow__用法及代码示例
- Python tf.Variable.__sub__用法及代码示例
- Python tf.Variable.__rmatmul__用法及代码示例
- Python tf.Variable.__rsub__用法及代码示例
- Python tf.Variable.initialized_value用法及代码示例
- Python tf.Variable.ref用法及代码示例
- Python tf.Variable.load用法及代码示例
- Python tf.Variable.scatter_nd_add用法及代码示例
- Python tf.Variable.eval用法及代码示例
- Python tf.Variable.scatter_nd_sub用法及代码示例
- Python tf.Variable.scatter_nd_update用法及代码示例
- Python tf.Variable用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.summary.scalar用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.Variable.__abs__。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。