Suppose we have saved our model as h5 then we can load model using load_model function of keras.. I have gone through multiple github links where the author provides weights file (.h5 or .hdf5 file).
So can we use those pretrained weights/model using load_model?
what is difference between load_model and load_weights?
Can I load weight file with load_model (keras) or should I use (load_weight). If we are loading weight then we mush also load whole architecture of the model..
Please provide deeper understanding by taking some example..