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 think the whole point of having a scale is for the metric to be comparable across series, similar to MASE. If you use a global scale you're just dividing everything by a constant and the metric is dominated by series with large values.
Our implementation of scaled crps scales each timeseries according to the absolute value of the observed values of each timeseries, but the original GluonTS implementation (and the one we also follow in hierarchicalforecast) scales the CRPS based on the norm calculated across all timeseries.
Is this intentional?
To make things concrete, the following shows how the code for a Pandas DF should be adapted to reflect the GluonTS / HF behavior.
The text was updated successfully, but these errors were encountered: