is it possible to retrain a previously saved keras model?
问题 i'm working in a time series prediction using keras and tensorflow. I need to retrain the model with future data. My question is, is this possible in keras and how we can do that? 回答1: yes. Save your model as .h5 When you want to train your model, load it again and do a model.fit as normal. Make sure you do not compile your model after loading it as this will reset your weights. See this link for more info 回答2: I am updating the answer for any new user as it was long time back. if you are