Open In App

Tensorflow.js tf.fetch() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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


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