Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImportError: cannot import name 'cross_validate'

Tags:

I'm trying to do:

from sklearn.model_selection import cross_validate

as mentioned here. But get the error:

ImportError: cannot import name 'cross_validate'

Everything else in Sklearn seems to work fine, it's just this bit. Error even occurs when I run this one line and nothing else.

like image 590
user1761806 Avatar asked Aug 13 '17 13:08

user1761806


1 Answers

cross-validate is new in version 0.19.0 (change log):

Cross validation is now able to return the results from multiple metric evaluations. The new model_selection.cross_validate can return many scores on the test data as well as training set performance and timings, and we have extended the scoring and refit parameters for grid/randomized search to handle multiple metrics.

In order to use it update your scikit-learn installation with either conda upgrade scikit-learn if you are using conda, or pip install --upgrade scikit-learn. If updating is not possible, you can still use cross_val_score instead.

like image 161
ayhan Avatar answered Oct 14 '22 15:10

ayhan