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
Especially for the auto models it is quite common for users to know which parameter combination is the best model for reporting/analyses purposes, and also to know what are the corresponding AIC/BIC/etc. values. So, something along the lines of the following will be useful:
get_best_parameters() or best_paramaters
get_best_model_score or best_model_score
Use case
This is a request raised multiple times by sktime users for the _GeneralisedStatsForecastAdapteradapter. Using this adapter, we have exposed all the 5 auto models: AutoARIMA, AutoTheta, AutoETS, AutoCES, AutoTBATS, and a few non-auto models.
As of now, model_ attribute gives few details, but the keys seem to vary for different algorithms and it is difficult to expose parameters/scores reliably for all models using this.
The text was updated successfully, but these errors were encountered:
@AzulGarza@jmoralez , can you please comment on this issue? Is it safe to add a get_fitted_params methon in statsforecast wrapper of sktime relying on model_ attribute, or will you recommend something else?
The same question also applies for neuralforecast probably.
Hey @yarnabrina, sorry for the late reply. I think we can add it on our side, it would probably also fix #774. Just to be sure, these would return the values that are tuned, right? For example for AutoETS it would return model and damped.
Description
Especially for the auto models it is quite common for users to know which parameter combination is the best model for reporting/analyses purposes, and also to know what are the corresponding AIC/BIC/etc. values. So, something along the lines of the following will be useful:
get_best_parameters()
orbest_paramaters
get_best_model_score
orbest_model_score
Use case
This is a request raised multiple times by
sktime
users for the_GeneralisedStatsForecastAdapter
adapter. Using this adapter, we have exposed all the 5 auto models:AutoARIMA
,AutoTheta
,AutoETS
,AutoCES
,AutoTBATS
, and a few non-auto models.As of now,
model_
attribute gives few details, but the keys seem to vary for different algorithms and it is difficult to expose parameters/scores reliably for all models using this.The text was updated successfully, but these errors were encountered: