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
Kelvin ran into an issue where he could not apply the classifier to new data according to this notebook: simple_classifier_example.ipynb
The quick fix was to add a roi_id column to the dataframe before calling predict.
... # Load classifier and dataframe clf.predict(df) # fails clf.predict(df.assign(roi_id='string_column_that_is_unique_when_combined_with_label')) # passes
Since we don't really care about the index for inference we should ease the schema requirements.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Kelvin ran into an issue where he could not apply the classifier to new data according to this notebook: simple_classifier_example.ipynb
The quick fix was to add a roi_id column to the dataframe before calling predict.
Since we don't really care about the index for inference we should ease the schema requirements.
The text was updated successfully, but these errors were encountered: