catboost v0.17.3 Release Notes

Release Date: 2019-09-24 // over 4 years ago
  • ๐Ÿ‘Œ Improvements:

    • New visualization for parameter tuning. Use plot=True parameter in grid_search and randomized_search methods to show plots in jupyter notebook
    • ๐Ÿ Switched to jemalloc allocator instead of LFalloc in CLI and model interfaces to fix some problems on Windows 7 machines, #881
    • Calculation of binary class AUC is faster up to 1.3x
    • Added tutorial on using fast CatBoost applier with LightGBM models

    ๐Ÿ› Bugs fixed:

    • Shap values for MultiClass objective don't give constant 0 value for the last class in case of GPU training.
      Shap values for MultiClass objective are now calculated in the following way. First, predictions are normalized so that the average of all predictions is zero in each tree. The normalized predictions produce the same probabilities as the non-normalized ones. Then the shap values are calculated for every class separately. Note that since the shap values are calculated on the normalized predictions, their sum for every class is equal to the normalized prediction
    • ๐Ÿ›  Fixed bug in rangking tutorial, #955
    • Allow string value for per_float_feature_quantization parameter, #996