El método Tensorflow math.add()
devuelve el a + b de las entradas de los pases. La operación se realiza sobre la representación de a y b. Este método pertenece al módulo de matemáticas.
Sintaxis:
tf.math.add(a, b, name=None)
Argumentos
- a: Este parámetro debe ser un Tensor y también uno de los siguientes tipos: bfloat16, half, float32, float64, uint8, int8, int16, int32, int64, complex64, complex128, string
- b: Este también debe ser un Tensor y debe tener el mismo tipo que a.
- nombre: Este es un parámetro opcional y este es el nombre de la operación.
Devolución: Devuelve un Tensor que tiene la misma forma que la entrada a.
Veamos este concepto con la ayuda de algunos ejemplos:
Ejemplo 1:
Python3
# Importing the Tensorflow library import tensorflow as tf # A constant a and b a = tf.constant(3) b = tf.constant(6) # Applying the math.add() function # storing the result in 'c' c = tf.math.add(a, b) # Initiating a Tensorflow session with tf.Session() as sess: print("Input 1", a) print(sess.run(a)) print("Input 2", b) print(sess.run(b)) print("Output: ", c) print(sess.run(c))
Producción:
Input 1 Tensor("Const_79:0", shape=(), dtype=int32) 3 Input 2 Tensor("Const_80:0", shape=(), dtype=int32) 6 Output: Tensor("Add_1:0", shape=(), dtype=int32) 9
Ejemplo 2:
Python3
# Importing the Tensorflow library import tensorflow as tf # A constant a and b a = tf.constant(u"This is ") b = tf.constant(u"GeeksForGeeks") # Applying the math.add() function # storing the result in 'c' c = tf.math.add(a, b) # Initiating a Tensorflow session with tf.Session() as sess: print("Input 1", a) print(sess.run(a)) print("Input 2", b) print(sess.run(b)) print("Output: ", c) print(sess.run(c))
Producción:
Input 1 Tensor("Const_87:0", shape=(), dtype=string) b'This is ' Input 2 Tensor("Const_88:0", shape=(), dtype=string) b'GeeksForGeeks' Output: Tensor("Add_5:0", shape=(), dtype=string) b'This is GeeksForGeeks'
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA