The shape of a RepeatVector layer output
Consider the following usage of the RepeatVector layer
inp = Input(shape=(3,))
rep = RepeatVector(10)(inp)
model = Model(inputs=inp, outputs=rep)
If you pass x of shape 8x3 to the model.predict() function, what is the shape of the output?
Questo esercizio fa parte del corso
Machine Translation with Keras
esercizio interattivo pratico
Trasforma la teoria in pratica con uno dei nostri esercizi interattivi
Inizia esercizio