TensorFlow es una biblioteca Python de código abierto diseñada por Google para desarrollar modelos de aprendizaje automático y redes neuronales de aprendizaje profundo.
constant() se usa para crear un tensor a partir de objetos similares a tensores como una lista.
Sintaxis: tensorflow.constant(valor, tipo, forma, nombre)
Parámetros:
- value: Es el valor que necesitaba ser convertido a Tensor.
- dtype(opcional): Define el tipo de Tensor de salida.
- forma (opcional): Define la dimensión del tensor de salida.
- name(optiona): Define el nombre de la operación.
Devoluciones: Devuelve un Tensor.
Ejemplo 1: de la lista de Python
Python3
# Importing the library import tensorflow as tf # Initializing the input l = [1, 2, 3, 4] # Printing the input print('l: ', l) # Calculating result x = tf.constant(l) # Printing the result print('x: ', x)
Producción:
l: [1, 2, 3, 4] x: tf.Tensor([1 2 3 4], shape=(4, ), dtype=int32)
Ejemplo 2: de la tupla de Python
Python3
# Importing the library import tensorflow as tf # Initializing the input l = (1, 2, 3, 4) # Printing the input print('l: ', l) # Calculating result x = tf.constant(l, dtype = tf.float64) # Printing the result print('x: ', x)
Producción:
l: (1, 2, 3, 4) x: tf.Tensor([1. 2. 3. 4.], shape=(4, ), dtype=float64)
Publicación traducida automáticamente
Artículo escrito por aman neekhara y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA