Skip to content

Commit 1214081

Browse files
authored
Release version 0.72 (#3337)
1 parent b7cbec4 commit 1214081

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

CONTRIBUTORS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ List of Contributors
5454
* [Masaaki Horikoshi](https://github.com/sinhrks)
5555
- Masaaki is the initial creator of xgboost python plotting module.
5656
* [Hongliang Liu](https://github.com/phunterlau)
57-
- Hongliang is the maintainer of xgboost python PyPI package for pip installation.
57+
* [Hyunsu Cho](http://hyunsu-cho.io/)
58+
- Hyunsu is the maintainer of the XGBoost Python package. He is in charge of submitting the Python package to Python Package Index (PyPI). He is also the initial author of the CPU 'hist' updater.
5859
* [daiyl0320](https://github.com/daiyl0320)
5960
- daiyl0320 contributed patch to xgboost distributed version more robust, and scales stably on TB scale datasets.
6061
* [Huayi Zhang](https://github.com/irachex)

NEWS.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,36 @@ XGBoost Change Log
33

44
This file records the changes in xgboost library in reverse chronological order.
55

6+
## v0.72 (2018.06.01)
7+
* Starting with this release, we plan to make a new release every two months. See #3252 for more details.
8+
* Fix a pathological behavior (near-zero second-order gradients) in multiclass objective (#3304)
9+
* Tree dumps now use high precision in storing floating-point values (#3298)
10+
* Submodules `rabit` and `dmlc-core` have been brought up to date, bringing bug fixes (#3330, #3221).
11+
* GPU support
12+
- Continuous integration tests for GPU code (#3294, #3309)
13+
- GPU accelerated coordinate descent algorithm (#3178)
14+
- Abstract 1D vector class now works with multiple GPUs (#3287)
15+
- Generate PTX code for most recent architecture (#3316)
16+
- Fix a memory bug on NVIDIA K80 cards (#3293)
17+
- Address performance instability for single-GPU, multi-core machines (#3324)
18+
* Python package
19+
- FreeBSD support (#3247)
20+
- Validation of feature names in `Booster.predict()` is now optional (#3323)
21+
* Updated Sklearn API
22+
- Validation sets now support instance weights (#2354)
23+
- `XGBClassifier.predict_proba()` should not support `output_margin` option. (#3343) See BREAKING CHANGES below.
24+
* R package:
25+
- Better handling of NULL in `print.xgb.Booster()` (#3338)
26+
- Comply with CRAN policy by removing compiler warning suppression (#3329)
27+
- Updated CRAN submission
28+
* JVM packages
29+
- JVM packages will now use the same versioning scheme as other packages (#3253)
30+
- Update Spark to 2.3 (#3254)
31+
- Add scripts to cross-build and deploy artifacts (#3276, #3307)
32+
- Fix a compilation error for Scala 2.10 (#3332)
33+
* BREAKING CHANGES
34+
- `XGBClassifier.predict_proba()` no longer accepts paramter `output_margin`. The paramater makes no sense for `predict_proba()` because the method is to predict class probabilities, not raw margin scores.
35+
636
## v0.71 (2018.04.11)
737
* This is a minor release, mainly motivated by issues concerning `pip install`, e.g. #2426, #3189, #3118, and #3194.
838
With this release, users of Linux and MacOS will be able to run `pip install` for the most part.

python-package/xgboost/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.71
1+
0.72

0 commit comments

Comments
 (0)