Do the saved models contain the training data

Hi,

I wonder if the saved models contain the training data (input variables) or not.
I have saved my model as .h5.
Does anyone know?

I would be thankful if someone has the answer.

No, they contain the model structure and the parameters.

Potentially you could store some data inside the saved model, by putting it inside a tf.constant and exporting it - but it’s not something standard.

1 Like

Ok thanks for your answer.