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.
la huella digital() se utiliza para generar el valor de la huella digital.
Sintaxis: tensorflow.fingerprint(datos, método, nombre)
Parámetros:
- data: Es un Tensor de rango 1 o superior.
- método: Define el algoritmo a utilizar para generar la huella.
- name(opcional): Define el nombre de la operación.
Retorno: Devuelve un Tensor 2-D de tipo d unidad32.
Ejemplo 1:
Python3
# Importing the library import tensorflow as tf # Initializing the input data = tf.constant([1, 2, 3, 4]) method = 'farmhash64' # Printing the input print('data: ', data) print('method: ', method) # Calculating result res = tf.fingerprint(data, method) # Printing the result print('res: ', res)
Producción:
data: tf.Tensor([1 2 3 4], shape=(4, ), dtype=int32) method: farmhash64 res: tf.Tensor( [[ 84 24 96 84 195 82 124 105] [ 15 219 106 105 88 163 17 93] [ 92 8 0 238 168 146 54 37] [178 113 27 7 149 125 165 247]], shape=(4, 8), dtype=uint8)
Ejemplo 2:
Python3
# Importing the library import tensorflow as tf # Initializing the input data = tf.constant([[1, 2], [ 3, 4]]) method = 'farmhash64' # Printing the input print('data: ', data) print('method: ', method) # Calculating result res = tf.fingerprint(data, method) # Printing the result print('res: ', res)
Producción:
data: tf.Tensor( [[1 2] [3 4]], shape=(2, 2), dtype=int32) method: farmhash64 res: tf.Tensor( [[ 76 18 253 133 168 204 240 10] [254 162 60 240 103 244 53 255]], shape=(2, 8), dtype=uint8)
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