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
Hi, I was exploring the repository and noticed that the loss metrics import statement in nbeats.py was missing some of the import statements causing errors in line 361 to 367.
Current the statement reads as from src.utils.numpy.metrics import mae, pinball_loss but I'm assuming the statement should include mape, smape, rmse, and mse loss (from src.utils.numpy.metrics import mae, pinball_loss, mape, smape, rmse, mse).
Not a big problem tbh, just thought I would bring it up.
Great work by the way!
The text was updated successfully, but these errors were encountered:
Hi, I was exploring the repository and noticed that the loss metrics import statement in
nbeats.py
was missing some of the import statements causing errors in line 361 to 367.Current the statement reads as
from src.utils.numpy.metrics import mae, pinball_loss
but I'm assuming the statement should include mape, smape, rmse, and mse loss (from src.utils.numpy.metrics import mae, pinball_loss, mape, smape, rmse, mse
).Not a big problem tbh, just thought I would bring it up.
Great work by the way!
The text was updated successfully, but these errors were encountered: