Open In App

Tensorflow.js tf.data.Dataset class .toArray() Method

Last Updated : 22 Apr, 2022
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 .toArray() method is used to accumulate each elements of the stated dataset within an array.

Syntax:  

toArray()

Parameters: This method does not hold any parameter.

Return Value: It returns Promise( T[] ).

Note:

  • This method applies for limited datasets only i.e. the one that fits in the memory.
  • It is utilized for testing purpose and should be mostly abstained when conceivable.

Example 1:  

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining dataset formed of an array
// of numbers
const res = tf.data.array([11, 12, 31, 43, 15, 64]);
  
// Calling toArray() method and
// Printing output
console.log(await res.toArray());


Output:

11, 12, 31, 43, 15, 64

Example 2:

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Calling toArray() method and
// Printing output
console.log(await tf.data.array([5.7, 
    -16, .31, 0, null, NaN]).toArray());


Output:

5.7, -16, 0.31, 0, , NaN

Reference: https://js.tensorflow.org/api/latest/#tf.data.Dataset.toArray


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads