I am trying to do cross validation and I am running into an error that says: 'Found input variables with inconsistent numbers of samples: [18, 1]'
I am using different columns in a pandas data frame (df) as the features, with the last column as the label. This is derived from the machine learning repository for UC Irvine. When importing the cross-validation package that I have used in the past, I am getting an error that it may have depreciated. I am going to be running a decision tree, SVM, and K-NN.
My code is as such:
feature = [df['age'], df['job'], df['marital'], df['education'], df['default'], df['housing'], df['loan'], df['contact'],
df['month'], df['day_of_week'], df['campaign'], df['pdays'], df['previous'], df['emp.var.rate'], df['cons.price.idx'],
df['cons.conf.idx'], df['euribor3m'], df['nr.employed']]
label = [df['y']]
from sklearn.cross_validation import train_test_split
from sklearn.model_selection import cross_val_score
# Model Training
x = feature[:]
y = label
x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.5)
Any help would be great!
cross_validation
module is deprecated. The new modulemodel_selection
has taken its place. So everything you did withcross_validation
. is now available inmodel_selection
. Then your above code becomes:Now as far as declaring the X and y is concerned, why are you wrapping them in a list. Just use them like this:
And then you can simply use your code, without changing anything.
And for your last question about folds in cross-validation, there are multiple classes in sklearn which does this (depending upon task). Please have a look at:
Which contains fold iterators. And remember, all this is present in
model_selection
package.The items in your
feature
list are pandas Series. You don't need to list out each feature in a list like you have done; you just need to pass them all as a single "table".For example, this looks like the bank dataset so:
Should work. The only thing to notice here is that
x
is a DataFrame with 16 columns but its underlying data is a numpy ndarray - not a list of Series but a single "matrix".