Help user interpret param columns of cv_results_
Opened this issue · 4 comments
Because the user no longer specifies the grid by full names, results are then presented with param names that are unfamiliar and which will vary with
The user needs help dereferencing the parameters. What is a good API for this?
global_to_local(gscv, double_underscored_name) -> (local_est, local_param)
local_to_global(gscv, local_est) -> global_param
what if set_grid()
accepted an optional name
parameter, which would be used when describing the cv_results_
params? If the name parameter isn't supplied, the code could default to exactly how it works today (less work in describing the parameter, more difficulty in interpreting the results).
Ah, I see. Having a custom GridSearchCV would be a good deal more overhead. I'm not very familiar with sklearn's GridSearchCV details under the hood, so I was hoping that this wouldn't need to reimplement anything. Let me familiarize myself more with that part of the sklearn codebase a little more.