Open In App

Tensorflow.js tf.backend() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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. It also helps the developers to develop ML models in JavaScript language and can use ML directly in the browser or in Node.js.

The tf.backend() function is used to get the current backend of the current browser.

Syntax:

tf.backend()

Parameters: It does not accept any parameter.

Return Value: It returns KernalBackend.

Example 1:

Javascript




// Setting the backend
tf.setBackend("cpu")
  
// Getting the backend using
// backend method
console.log(tf.backend())


Output:

Example 2:

Javascript




// Setting the backend
tf.setBackend("cpu")
  
// Getting the backend using
// backend method
console.log("Block Size is ",tf.backend().blockSize)
console.log("First Use is ",tf.backend().firstUse)


Output:

Reference: https://js.tensorflow.org/api/latest/#Backends


Last Updated : 25 May, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads