jpmml / jpmml-sklearn

Java library and command-line application for converting Scikit-Learn pipelines to PMML
GNU Affero General Public License v3.0
531 stars 117 forks source link

AdaBoostClassifier class not found #41

Closed mohitbadwal closed 7 years ago

mohitbadwal commented 7 years ago

Ensemble has AdaBoostRegressor but it does not have AdaBoostClassifier , what should be done?

vruusmann commented 7 years ago

This is intentional, because AdaBoostClassifier implements some pseudo-probabilistic classification algorithm (the predicted class and the predicted probability distribution do not "match").

I would suggest using some other boosting algorithm, such as XGBoost or LightGBM. They both provide excellent Scikit-Learn interoperability.