jjerphan / CS5242Project

Predicting Protein – Ligand Interaction by using Deep Learning Models
GNU General Public License v3.0
3 stars 2 forks source link

Saving models and histories #6

Closed jjerphan closed 6 years ago

jjerphan commented 6 years ago

Models are trained but they should also be saved. Histories of training phases can be obtained and could be saved to for further analysis.

jjerphan commented 6 years ago

Models and histories to be saved in models : for now, only the models are dumped in a .h5 file ; there is a little serialization problem with histories.

jjerphan commented 6 years ago

The problem as been resolved in the branch improvements : the history dictionary of the History object return by model.fit is serialized using pickle.

This first problem (serializing the History object) is known.