用法
__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.compat.v1.Variable.__getitem__用法及代碼示例
- Python tf.compat.v1.Variable.__rmatmul__用法及代碼示例
- Python tf.compat.v1.Variable.__ge__用法及代碼示例
- Python tf.compat.v1.Variable.__pow__用法及代碼示例
- Python tf.compat.v1.Variable.__le__用法及代碼示例
- Python tf.compat.v1.Variable.__rpow__用法及代碼示例
- Python tf.compat.v1.Variable.__gt__用法及代碼示例
- Python tf.compat.v1.Variable.__sub__用法及代碼示例
- Python tf.compat.v1.Variable.__matmul__用法及代碼示例
- Python tf.compat.v1.Variable.__lt__用法及代碼示例
- Python tf.compat.v1.Variable.__rsub__用法及代碼示例
- Python tf.compat.v1.Variable.eval用法及代碼示例
- Python tf.compat.v1.Variable.initialized_value用法及代碼示例
- Python tf.compat.v1.Variable.scatter_nd_update用法及代碼示例
- Python tf.compat.v1.Variable.ref用法及代碼示例
- Python tf.compat.v1.Variable.load用法及代碼示例
- Python tf.compat.v1.Variable.scatter_nd_add用法及代碼示例
- Python tf.compat.v1.Variable.scatter_nd_sub用法及代碼示例
- Python tf.compat.v1.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.compat.v1.distributions.Bernoulli.cross_entropy用法及代碼示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代碼示例
- Python tf.compat.v1.layers.conv3d用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.Variable.__abs__。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。