Is there a difference between saving the Keras model with the extension .h5
and extension .hdf5
?
In other words, is there a difference between those two lines of code model.save('model.h5')
and model.save('model.hdf5')
assuming that I have a Keras model named model
in my code?