Skip to content

Commit

Permalink
CatBoost 0.18
Browse files Browse the repository at this point in the history
MLTOOLS-4148

Note: mandatory check (NEED_CHECK) was skipped
ref:3dada26f952bd0616c2c0790d01810c19147fe8a
  • Loading branch information
dbakshee committed Oct 21, 2019
1 parent 9956d49 commit 99e08ee
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
11 changes: 11 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Release 0.18

- The main feature of the release is huge speedup on small datasets. We now use MVS sampling for CPU regression and binary classification training by default, together with `Plain` boosting scheme for both small and large datasets. This change not only gives the huge speedup but also provides quality improvement!
- The `boost_from_average` parameter is available in `CatBoostClassifier` and `CatBoostRegressor`
- We have added new formats for describing monotonic constraints. For example, `"(1,0,0,-1)"` or `"0:1,3:-1"` or `"FeatureName0:1,FeatureName3:-1"` are all valid specifications. With Python and `params-file` json, lists and dictionaries can also be used

## Bugs fixed:
- Error in `Multiclass` classifier training, #1040
- Unhandled exception when saving quantized pool, #1021
- Python 3.7: `RuntimeError` raised in `StagedPredictIterator`, #848

# Release 0.17.5

## Bugs fixed:
Expand Down
2 changes: 1 addition & 1 deletion catboost/R-package/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: catboost
Title: Gradient Boosting on Decision Trees
Version: 0.17.5
Version: 0.18
RoxygenNote: 6.1.1
Imports: jsonlite
License: Apache License (== 2.0)
Expand Down
18 changes: 9 additions & 9 deletions catboost/R-package/configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for catboost 0.17.
# Generated by GNU Autoconf 2.69 for catboost 0.18.
#
# Report bugs to <https://github.com/catboost/catboost/issues>.
#
Expand Down Expand Up @@ -579,8 +579,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='catboost'
PACKAGE_TARNAME='catboost'
PACKAGE_VERSION='0.17'
PACKAGE_STRING='catboost 0.17'
PACKAGE_VERSION='0.18'
PACKAGE_STRING='catboost 0.18'
PACKAGE_BUGREPORT='https://github.com/catboost/catboost/issues'
PACKAGE_URL=''

Expand Down Expand Up @@ -1186,7 +1186,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures catboost 0.17 to adapt to many kinds of systems.
\`configure' configures catboost 0.18 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1248,7 +1248,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of catboost 0.17:";;
short | recursive ) echo "Configuration of catboost 0.18:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1327,7 +1327,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
catboost configure 0.17
catboost configure 0.18
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand All @@ -1344,7 +1344,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by catboost $as_me 0.17, which was
It was created by catboost $as_me 0.18, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2326,7 +2326,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by catboost $as_me 0.17, which was
This file was extended by catboost $as_me 0.18, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -2370,7 +2370,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
catboost config.status 0.17
catboost config.status 0.18
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion catboost/python-package/catboost/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.17.5'
VERSION = '0.18'

0 comments on commit 99e08ee

Please sign in to comment.