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!
kfold = KFold(k=5, random_state=100)
which should work – EdChum