Tensorflow.js tf.layers.repeatVector() 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.
The tf.layers.repeatVector() function is used to repeat the input n number of times in a new specified dimension. It is an inbuilt function of TensorFlow’s.js library.
Syntax:
tf.layers.repeatVector(n)
Parameters:
- n: Integer, specifying the number of times the input will be repeated.
Return value: It returns the tf.layers.Layer
Example 1:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs"Â Â Â Â Â Â // Create a new model const model = tf.sequential(); Â Â Â Â // Add repeatVector layer to the model model.add(tf.layers.repeatVector({ Â Â Â Â n: 5, inputShape: [2]} )); Â Â Â Â const x = tf.tensor2d([[10, 15]]); Â Â Â console.log(model.predict(x).shape) |
Output:
1, 5, 2
Example 2:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs"Â Â Â Â // Create a new model const model = tf.sequential(); Â Â Â Â // Add repeatVector layer to the model model.add(tf.layers.repeatVector( Â Â Â Â Â Â {n: 8, inputShape: [2]} )); Â Â Â const x = tf.tensor2d([[0,1]]); Â Â Â model.predict(x).print(); |
Output:
Tensor
[[[0, 1],
[0, 1],
[0, 1],
[0, 1],
[0, 1],
[0, 1],
[0, 1],
[0, 1]]]
Reference: https://js.tensorflow.org/api/latest/#layers.repeatVector
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek 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!



