逐元素添加所有輸入張量。
用法
tf.math.add_n(
inputs, name=None
)
參數
-
inputs
tf.Tensor
或tf.IndexedSlices
對象的列表,每個對象都具有相同的形狀和類型。tf.IndexedSlices
對象將在添加之前轉換為密集張量。 -
name
操作的名稱(可選)。
返回
-
與
inputs
的元素具有相同形狀和類型的tf.Tensor
。
拋出
-
ValueError
如果inputs
的形狀和數據類型不同,或者無法推斷出形狀。
tf.math.add_n
執行與 tf.math.accumulate_n
相同的操作。
此操作不廣播其輸入。如果您需要廣播,請改用 tf.math.add(或 +
運算符)。
例如:
a = tf.constant([[3, 5], [4, 8]])
b = tf.constant([[1, 6], [2, 9]])
tf.math.add_n([a, b, a])
<tf.Tensor:shape=(2, 2), dtype=int32, numpy=
array([[ 7, 16],
[10, 25]], dtype=int32)>
相關用法
- Python tf.math.add用法及代碼示例
- Python tf.math.acosh用法及代碼示例
- Python tf.math.accumulate_n用法及代碼示例
- Python tf.math.angle用法及代碼示例
- Python tf.math.acos用法及代碼示例
- Python tf.math.argmax用法及代碼示例
- Python tf.math.atan用法及代碼示例
- Python tf.math.argmin用法及代碼示例
- Python tf.math.asin用法及代碼示例
- Python tf.math.asinh用法及代碼示例
- Python tf.math.abs用法及代碼示例
- Python tf.math.atan2用法及代碼示例
- Python tf.math.atanh用法及代碼示例
- Python tf.math.special.fresnel_cos用法及代碼示例
- Python tf.math.polyval用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.math.add_n。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。