Open In App

Tensorflow.js tf.metrics.binaryAccuracy() Function

Tensorflow.js is an open-source library developed by Google for running machine learning models and deep learning neural networks in the browser or node environment.

The tf.metrics.binaryAccuracy() function is used to calculate how often predictions match binary labels. And the function takes two tensors as a parameter and the value of tensors is between 0 and 1.



Syntax:

tf.metrics.binaryAccuracy (True, Prediction)

Parameters: 



Return Value: It returns a tensor.

Example 1: In this example, we are giving two 1d tensors that contain values between 0 and 1 as a parameter, and the metrics.binaryAccuracy function will calculate the predictions match and return a tensor.




// 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();

Output:

Tensor
    0.375

Example 2: In this example, we are giving two 2d tensors that contain values 0 and 1 as a parameter, and the metrics.binaryAccuracy function will calculate the predictions match and return a tensor.




// 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();

Output:

Tensor
    [0.75, 0]

Reference:https://js.tensorflow.org/api/latest/#metrics.binaryAccuracy

Article Tags :