You can calculate the standard error of the average validation value using:
from scipy.stats import sem
Then access the grid_scores_ attribute of the installed GridSearchCV object. This attribute has changed in the main scikit-learn branch, so please use the interactive shell to examine its structure.
As for the choice of the most economical model, model parameters of models do not always have a degree of freedom of interpretation. The meaning of the parameters often depends on the model, and there is no high-level metadata to interpret their βstrengthsβ. You can code your interpretation on a case-by-case basis for each model class.
source share