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
[DOC] Missing parenthesis in docstring of MASE (#1944)
There is a missing parenthesis in the documentation of the function
MASE.
```
Current: (y_pred - target).abs() / all_targets[:, :-1] - all_targets[:, 1:]).mean(1)
^
|
v
Correct: (y_pred - target).abs() / (all_targets[:, :-1] - all_targets[:, 1:]).mean(1)
0 commit comments