I want to use an AutoEncoder model with Keras functional API. Also I want to use tf.data.Dataset
as an input pipeline for the model. However, there is limitation that I can pass the dataset to the keras.model.fit
only with tuple (inputs, targets)
accroding to the docs:
Input data. It could be: A tf.data dataset. Should return a tuple of either (inputs, targets) or (inputs, targets, sample_weights).
So here is the question: can I pass the tf.data.Dataset
without repeating inputs like that (inputs, inputs)
and more like (inputs, None)
. And if I can't, will the repeated inputs double the GPU memory for my model?
You can use
map()
to return your input twice: