continue training
Create functionality to continue with training of a network. Therefore history and model should be saved (even if the programm crashed during the last training and saving is possible).
- Load model
- continue learning by setting initial_epoch to last tracked epoch
- ...?
UPDATE 2020-01-30 Keras is not able to store the history object by itself. Therefore, continuing to train a loaded model will always start with epoch=0. One could set the inital_epoch to the desired level and all other callbacks, but not the history callback. Of course this could be manually added after training
UPDATE 2020-01-31 Implemented a reload of all used callbacks (that are manually added). Still it is not possible to reload the history itself. But for this issue, there is a new class HistoryAdvanced that can load the history.