Sunday, November 17, 2024
Google search engine
HomeLanguagesJavascriptTensorflow.js tf.data.Dataset.concatenate() Function

Tensorflow.js tf.data.Dataset.concatenate() 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. 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.data.Dataset.concatenate() function is used to concatenate the Dataset with another.

Syntax:

concatenate(dataset)

Parameters:

  • dataset: A Dataset to be concatenated onto this one.

Return Value: It returns tf.data.Dataset

Example 1:

Javascript




const gfg = tf.data.array([1, 2, 3]);
const neveropen = tf.data.array([6, 5, 4]);
const gfg1 = neveropen.concatenate(gfg);
await gfg1.forEachAsync(e => console.log(e));


Output:

6
5
4
1
2
3

Example 2:

Javascript




const gfg = tf.data.array(['a', 'b', 'c', 'd']);
const neveropen = tf.data.array([6, 5, 4]);
const gfg1 = neveropen.concatenate(gfg);
console.log(gfg1);


Output:

{
  "size": 7
}

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments