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
Error description
When starting the default training as outlined in the main description bash ./scripts/forecast_exogenous.EOF.TimerX.sh
The script fails with the following error
"AttributeError : 'np.Inf' was removed in the Numpy 2.0 release. Use 'np.inf' instead.
Platform
Ubuntu / Python 3.12
Solution
Change in "tools.py" in class "EarlyStopping" line 37 to
self.val_loss_min = np.inf
The text was updated successfully, but these errors were encountered:
Error description
When starting the default training as outlined in the main description
bash ./scripts/forecast_exogenous.EOF.TimerX.sh
The script fails with the following error
"AttributeError : 'np.Inf' was removed in the Numpy 2.0 release. Use 'np.inf' instead.
Platform
Ubuntu / Python 3.12
Solution
Change in "tools.py" in class "EarlyStopping" line 37 to
self.val_loss_min = np.inf
The text was updated successfully, but these errors were encountered: