1#The easiest way to save history of model
2# saving
3np.save('my_history.npy',history.history)
4
5# loading
6history=np.load('my_history.npy',allow_pickle='TRUE').item()
7
8# Then history is a dictionary and you can retrieve all desirable values using the keys.