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
Reproducer:
import treelite from sklearn.ensemble import RandomForestRegressor as RF X = [[0.0], [1.0]] y = [[0.0, 1.0], [1.0, 0.0]] model = RF().fit(X, y) tl = treelite.sklearn.import_model(model)
AssertionError: Expected shape: (1, 1, 1), Got shape (1, 2, 1)
The text was updated successfully, but these errors were encountered:
Treeshap hypothesis tests (#4671)
b3967cf
Increased test coverage for TreeExplainer, greatly expanding model types tested. New tests take around 4.8s on my machine. Fixes #4352 New bugs found: #4663 dmlc/treelite#375 #4670 Authors: - Rory Mitchell (https://github.com/RAMitchell) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) URL: #4671
Treeshap hypothesis tests (rapidsai#4671)
8c41231
Increased test coverage for TreeExplainer, greatly expanding model types tested. New tests take around 4.8s on my machine. Fixes rapidsai#4352 New bugs found: rapidsai#4663 dmlc/treelite#375 rapidsai#4670 Authors: - Rory Mitchell (https://github.com/RAMitchell) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) URL: rapidsai#4671
Fixed in #524
Sorry, something went wrong.
No branches or pull requests
Reproducer:
The text was updated successfully, but these errors were encountered: