We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the Classifier and Regressor workflows don't accept pandas dataframes as inputs.
Classifier
Regressor
Indeed in train_submission the arrays are being indexed with slices which selects columns instead of rows leading to the following error message
train_submission
KeyError: "None of [Int64Index([ 256, 127, 753, 439, 825, 1167, 786, 1689, 1615, 675,\n ...\n 721, 1064, 696, 1122, 632, 1103, 406, 1029, 1750, 975],\n dtype='int64', length=1451)] are in the [columns]"
The text was updated successfully, but these errors were encountered:
Usually a pandas data frame is expected as input of the feature extractor but a numpy array is expected as input of the classifier/regressor.
Sorry, something went wrong.
No branches or pull requests
Currently, the
Classifier
andRegressor
workflows don't accept pandas dataframes as inputs.Indeed in
train_submission
the arrays are being indexed with slices which selects columns instead of rows leading to the following error messageThe text was updated successfully, but these errors were encountered: