Tensorflow.js es una biblioteca de código abierto desarrollada por Google para ejecutar modelos de aprendizaje automático y redes neuronales de aprendizaje profundo en el entorno del navegador o del Node.
La función tf.metrics.binaryAccuracy() se usa para calcular con qué frecuencia las predicciones coinciden con las etiquetas binarias. Y la función toma dos tensores como parámetro y el valor de los tensores está entre 0 y 1.
Sintaxis:
tf.metrics.binaryAccuracy (True, Prediction)
Parámetros:
- Verdadero: Es el tensor binario de verdad y el tensor puede contener valores entre 0 y 1.
- Predicción: Es el tensor de predicciones y el tensor puede contener valores entre 0 y 1.
Valor devuelto: Devuelve un tensor.
Ejemplo 1: en este ejemplo, proporcionamos dos tensores 1d que contienen valores entre 0 y 1 como parámetro, y la función metrics.binaryAccuracy calculará la coincidencia de predicciones y devolverá un tensor.
Javascript
// Importing the tensorflow library import * as tf from "@tensorflow/tfjs" // Defining the value of the tensor const True = tf.tensor1d([1, 0, 1, 1, 0, 1, 0, 0]); const Prediction = tf.tensor1d([0.2, 0.4, 0.6, 0.3, 0.7, 0.3, 0.4, 0.7]); // Calculating predictions match const accuracy = tf.metrics.binaryAccuracy(True, Prediction); // Printing the tensor accuracy.print();
Producción:
Tensor 0.375
Ejemplo 2: en este ejemplo, proporcionamos dos tensores 2d que contienen valores 0 y 1 como parámetro, y la función metrics.binaryAccuracy calculará la coincidencia de predicciones y devolverá un tensor.
Javascript
// Importing the tensorflow library import * as tf from "@tensorflow/tfjs" // Defining the value of the tensor const True = tf.tensor2d([[1, 0, 1, 1], [1, 0, 1, 0]], [2, 4]); const Prediction = tf.tensor2d([[1, 0, 1, 0], [0, 1, 0, 1]], [2, 4]); // Calculating predictions match const accuracy = tf.metrics.binaryAccuracy(True, Prediction); // Printing the tensor accuracy.print();
Producción:
Tensor [0.75, 0]
Referencia: https://js.tensorflow.org/api/latest/#metrics.binaryAccuracy
Publicación traducida automáticamente
Artículo escrito por nikhilchhipa9 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA