Thursday, September 4, 2025
HomeLanguagesJavascriptTensorflow.js tf.data.Dataset.repeat() Function

Tensorflow.js tf.data.Dataset.repeat() 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.repeat() function is used to repeat the dataset count time

Syntax:

repeat (count?)

Parameters

  • count: An integer, representing the number of times the dataset should be repeated.

Return Value: It returns tf.data.Dataset.

Example 1:

Javascript




const a = tf.data.array([1, 2, 3]).repeat(3);
  
await a.forEachAsync(e => console.log(e)),


Output:

​1
2
3
1
2
3
1
2
3

Example 2:

Javascript




const a = tf.data.array([2, 4, 6]).repeat(5);
  
await a.forEachAsync(e => console.log(e*2));


Output:

4
8
12
4
8
12
4
8
12
4
8
12
4
8
12

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

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

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS