You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use TrainEndCheckpoint with LoadInitState but it's not working. It doesn't even return any error as you are using with suppress(Exception). The suppressed error is *** AttributeError: 'TrainEndCheckpoint' object has no attribute 'f_history_', yet the file exists and self.checkpoint.checkpoint_.f_history_==.../train_end_history.json'.
I think the issue is that TrainEndCheckpoint stopped inheriting from Checkpoint in #463. I.e. it doesn't have a f_history_ attribute anymore. This could be simply resolved by redirecting self.f_history_ to self.checkpoint_.f_history_.
The text was updated successfully, but these errors were encountered:
* Renamed fixture in test for TrainEndCheckpoint
The callback was renamed but the fixtures still referenced the old
name.
* Fix bug #528
* Add entry to CHANGES.md
I'm trying to use
TrainEndCheckpoint
withLoadInitState
but it's not working. It doesn't even return any error as you are usingwith suppress(Exception)
. The suppressed error is*** AttributeError: 'TrainEndCheckpoint' object has no attribute 'f_history_'
, yet the file exists andself.checkpoint.checkpoint_.f_history_==.../train_end_history.json'
.I think the issue is that
TrainEndCheckpoint
stopped inheriting fromCheckpoint
in #463. I.e. it doesn't have af_history_
attribute anymore. This could be simply resolved by redirectingself.f_history_
toself.checkpoint_.f_history_
.The text was updated successfully, but these errors were encountered: