Skip to content

Commit

Permalink
CatBoost 0.17.3
Browse files Browse the repository at this point in the history
Note: mandatory check (NEED_CHECK) was skipped
ref:10cc0629b1c97192865381ff58b025fc65c778e0
  • Loading branch information
dbakshee committed Sep 24, 2019
1 parent 5bf6747 commit 286cfa6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions RELEASE.md
@@ -1,3 +1,17 @@
# Release 0.17.3

## 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
- Calculation of binary class AUC is faster up to 1.3x
- Added tutorial on using ONNX models in CatBoost

## 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

# Release 0.17.2

## Improvements:
Expand Down
2 changes: 1 addition & 1 deletion catboost/R-package/DESCRIPTION
@@ -1,6 +1,6 @@
Package: catboost
Title: Gradient Boosting on Decision Trees
Version: 0.17.2
Version: 0.17.3
RoxygenNote: 6.1.1
Imports: jsonlite
License: Apache License (== 2.0)
Expand Down
2 changes: 1 addition & 1 deletion catboost/python-package/catboost/version.py
@@ -1 +1 @@
VERSION = '0.17.2'
VERSION = '0.17.3'

0 comments on commit 286cfa6

Please sign in to comment.