Pavel Khokhlov
Pavel Khokhlov
Fix for issue #2104 where NaN mode Max models are incorrectly exported to Python and C++ code. The problem is line 42 of catboost/catboost/libs/model/model_export/resources/apply_catboost_model.py: ``` binary_features[binary_feature_index] += 1 if (float_features[model.float_features_index[i]]...
Problem: Models with NaN mode Max are incorrectly exported to Python and C++ code catboost version: 1.0.6 Operating System: Linux Reproducible example: ``` from sklearn.datasets import make_classification from math import...
Hi @interpret-ml 1. Do you plan on adding staged prediction similar to [XGBoost's ntree_limit/iteration_range](https://xgboost.readthedocs.io/en/latest/python/python_api.html#xgboost.XGBClassifier.predict_proba)? 1. Do you plan on adding warm starts similar to [scikit-learn's GBM warm_start](https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.GradientBoostingClassifier.html)? Thanks for your...