Skip to content
New issue

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

Adding MB limitations to documentation #1445

Merged
merged 4 commits into from
Sep 8, 2023
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions doc/daal4py/model-builders.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,16 @@ You can also use the scikit-learn-style classes ``GBTDAALClassifier`` and ``GBTD
reg.fit(X, y)
d4p_predt = GBTDAALRegressor.convert_model(reg).predict(X)


Limitations
------------------
Model Builders support only base inference with prediction and probabilities prediction. The functionality is to be extended.
Therefore, there are following limitations:
napetrov marked this conversation as resolved.
Show resolved Hide resolved
- The categorical features are not supported for conversion and prediction.
- The multioutput models are not supported for conversion and prediction.
- The tree SHAP calculations are not supported.


Examples
---------------------------------
Model Builders models conversion
Expand Down