Thank you Lars. I didn't see any deprecation warnings. Also, from what I
can tell, one of the primary
<http://scikit-learn.org/stable/auto_examples/grid_search_digits.html#example-grid-search-digits-py>examples
for model selection in the documentation uses cv as an argument to clf.fit:
clf = GridSearchCV(SVC(C=1), tuned_parameters,
score_func=score_func)clf.fit(X_train, y_train, cv=5)
I presume that should be:
clf = GridSearchCV(SVC(C=1), tuned_parameters, score_func=score_func,
cv=5)clf.fit(X_train, y_train)
correct?
On Fri, Jul 5, 2013 at 3:55 PM, Lars Buitinck <l.j.buiti...@uva.nl> wrote:
> 2013/7/4 Josh Wasserstein <ribonucle...@gmail.com>:
> > I am confused, what exactly is deprecated? Was there anything in the
> code I
> > sent in my emails that is deprecated?
>
> Didn't you get a deprecation warning?
>
> --
> Lars Buitinck
> Scientific programmer, ILPS
> University of Amsterdam
>
>
> ------------------------------------------------------------------------------
> This SF.net email is sponsored by Windows:
>
> Build for Windows Store.
>
> http://p.sf.net/sfu/windows-dev2dev
> _______________________________________________
> Scikit-learn-general mailing list
> Scikit-learn-general@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
>
------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:
Build for Windows Store.
http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
Scikit-learn-general mailing list
Scikit-learn-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/scikit-learn-general