Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Tensorflow.js tf.fetch() Function

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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

The .fetch() function is used to return a platform dedicated operation of fetch. Moreover, in case fetch is specified in contact with the global object i.e. window, process, and so on, then tf.util.fetch returns that function else returns a platform dedicated explication.

Syntax:

tf.fetch(path, requestInits?)

Parameters: 

  • path: It is the stated path which is of type string.
  • requestInits: The stated RequestInit. It is optional and is of type string.

Return Value: It returns the promise of response.

Example 1:

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Calling fetch() method with respect 
// to global
const res = tf.env().global.fetch(
  
// Printing output
console.log(res);


Output:

[object Response]

Example 2:

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Calling fetch() method
const res = await tf.util.fetch(
  
// Printing output
console.log(JSON.stringify(res));


Output:

{}

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

My Personal Notes arrow_drop_up
Last Updated : 01 Sep, 2021
Like Article
Save Article
Similar Reads
Related Tutorials