6
votes

I'm trying to use SKLearn (version 0.18.1) as follows:

from sklearn.model_selection import KFold
kfold = KFold(n_splits=5, random_state=100)

But I get this strange error:

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-17-b8dd4f5596be> in <module>()
----> 1 kfold = KFold(k=5, random_state=100)
      2 results = cross_val_score(estimator, X, Y, cv=kfold)
      3 print("Results: %.2f (%.2f) MSE" % (results.mean(), results.std()))

TypeError: __init__() got an unexpected keyword argument 'k'

I've consulted the docs here:

http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.KFold.html

and n_splits does look like a parameter I should be able to pass...

Any idea what's going on here / how to fix?

Thanks!

3
what is your version of sklearn? You maybe looking at the docs for a more recent version than your installed one, you could just change to kfold = KFold(k=5, random_state=100) which should workEdChum

3 Answers

7
votes

Open your terminal (cmd) and try these before you try to import the sklearn.

pip install -U scikit-learn

or if you have anaconda installed

conda install scikit-learn

or

conda update conda 
conda update scikit-learn

Also make sure your have numpy and scipy:

pip install numpy 
pip install scipy

Restart the python shell after installing scipy !

2
votes

You have a problem with your Scikit-Learn version, try to check it and look for the right documentation (here):

import sklearn
print(sklearn.__version__)

Or download the lastest version with pip install -U scikit-learn.

-1
votes

Use capital X in the brackets. It worked for me.

from sklearn.model_selection import cross_val_score
accuracies = cross_val_score(estimator = classifier, X = x_train, y = y_train, cv = 10)