-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
results_
attribute for all EstimatorCV classes?
#7206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
+1 for search_results_ in all classes. |
I have no idea what your 1. means. I don't feel |
I don't feel search_ adds anything in GridSearchCV just as we call something coef_ rather than regression_coef_.
Point taken!
|
This issue is for any A Anyway we need to have this ( |
I stupidly thought we could have |
|
I thought about this too and felt it would be much better. Not sure why I didn't suggest it here! I'll go ahead and make this change. Thx |
so |
Could you also share your opinion on #7243 and #7071 (comment) |
Hi, I'm interested in working on this problem. But starting from CalibratedClassifierCV(BaseEstimator, ClassifierMixin), I just wonder, what should be put into cv_results_ for CalibratedClassifierCV because all it does is fitting base_estimator with training set and fitting CalibratedClassifier with testing set. There's no scoring passed in. I'm not sure if this class is fully conform to the BaseSearchCV interface which provides several accessors to the cv_results |
CalibratedClassifierCV is a bit different, yes. Don't worry about it.
…On 1 August 2017 at 16:05, Shiou-Ling Rene Wang ***@***.***> wrote:
Hi, I'm interested in working on this problem. But starting from
CalibratedClassifierCV(BaseEstimator, ClassifierMixin), I just wonder,
what should be put into cv_results_ for CalibratedClassifierCV because all
it does is fitting base_estimator with training set and fitting *CalibratedClassifier
with testing set. There's no scoring passed in. I'm not sure if this class
is fully conform to the BaseSearchCV interface which provides several
accessors to the cv_results*
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#7206 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAEz6_cQiqb2R5GBasSdceLbQr7zILiIks5sTsA0gaJpZM4Jns0p>
.
|
There could be mroe consistency here, maybe Other estimator CVs don't have cv results cc maybe @thomasjpfan ? |
I think deprecating |
I'm okay with deprecating |
In light of #6697
Should we have aBaseEstimatorCV
class defining the required parameters (likeresults_
,best_estimators_
) as an interface attribute that can be overwritten?results_
and notsearch_results_
- Let's call itcv_results_
would be more representative of what it holds.TODO
CalibratedClassifierCV(BaseEstimator, ClassifierMixin)
@amueller @jnothman @MechCoder @vene @GaelVaroquaux @agramfort
The text was updated successfully, but these errors were encountered: