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
Thanks for this great set of extensions to sklearn.
The Tresholder() model is quite close to something I've been looking for for a while.
I'm looking to include threshold optimisation as part of a broader parameter search.
I can perhaps best describe the desired behaviour as follows
for each parameters in grid:
fit model with parameters
for each threshold in thresholds:
evaluate model
However, if I pass a model that has not yet been fit to Thresholder(), then, even with refit=False, the same model is fit also for each threshold.
Is there an easy way around this? Thinking about this the best way to achieve this would be tinkering with the GridSearchCV code, but perhaps you have an idea and would also find this interesting?
Thanks!
The text was updated successfully, but these errors were encountered:
Thanks for this great set of extensions to sklearn.
The Tresholder() model is quite close to something I've been looking for for a while.
I'm looking to include threshold optimisation as part of a broader parameter search.
I can perhaps best describe the desired behaviour as follows
However, if I pass a model that has not yet been fit to Thresholder(), then, even with
refit=False
, the same model is fit also for each threshold.Is there an easy way around this? Thinking about this the best way to achieve this would be tinkering with the GridSearchCV code, but perhaps you have an idea and would also find this interesting?
Thanks!
The text was updated successfully, but these errors were encountered: