Open DiogenesAnalytics opened 11 months ago
Currently nothing has been implemented to take advantage of the checkpoint feature of keras. This is an extremely useful and practical feature.
keras
One tentative solution is to add some checkpoint: bool = False default args to the constructor of BaseAutoencoder ... or something similar.
checkpoint: bool = False
BaseAutoencoder
Problem
Currently nothing has been implemented to take advantage of the checkpoint feature of
keras
. This is an extremely useful and practical feature.Solution
One tentative solution is to add some
checkpoint: bool = False
default args to the constructor ofBaseAutoencoder
... or something similar.