Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github May 26, 2021

Bumps xgboost from 1.3.3 to 1.4.2.

Release notes

Sourced from xgboost's releases.

1.4.2 Patch Release

This is a patch release for Python package with following fixes:

  • Handle the latest version of cupy.ndarray in inplace_predict. dmlc/xgboost#6933
  • Ensure output array from predict_leaf is (n_samples, ) when there's only 1 tree. 1.4.0 outputs (n_samples, 1). dmlc/xgboost#6889
  • Fix empty dataset handling with multi-class AUC. dmlc/xgboost#6947
  • Handle object type from pandas in inplace_predict. dmlc/xgboost#6927

You can verify the downloaded source code xgboost.tar.gz by running this on your unix shell:

echo "3ffd4a90cd03efde596e51cadf7f344c8b6c91aefd06cc92db349cd47056c05a *xgboost.tar.gz" | shasum -a 256 --check

1.4.1 Patch Release

This is a bug fix release.

  • Fix GPU implementation of AUC on some large datasets. (#6866)

You can verify the downloaded source code xgboost.tar.gz by running this on your unix shell:

echo "f3a37e5ddac10786e46423db874b29af413eed49fd9baed85035bbfee6fc6635 *xgboost.tar.gz" | shasum -a 256 --check

Release 1.4.0 stable

Introduction of pre-built binary package for R, with GPU support

Starting with release 1.4.0, users now have the option of installing {xgboost} without having to build it from the source. This is particularly advantageous for users who want to take advantage of the GPU algorithm (gpu_hist), as previously they'd have to build {xgboost} from the source using CMake and NVCC. Now installing {xgboost} with GPU support is as easy as: R CMD INSTALL ./xgboost_r_gpu_linux.tar.gz. (#6827)

See the instructions at https://xgboost.readthedocs.io/en/latest/build.html

Improvements on prediction functions

XGBoost has many prediction types including shap value computation and inplace prediction. In 1.4 we overhauled the underlying prediction functions for C API and Python API with an unified interface. (#6777, #6693, #6653, #6662, #6648, #6668, #6804)

  • Starting with 1.4, sklearn interface prediction will use inplace predict by default when input data is supported.
  • Users can use inplace predict with dart booster and enable GPU acceleration just like gbtree.
  • Also all prediction functions with tree models are now thread-safe. Inplace predict is improved with base_margin support.
  • A new set of C predict functions are exposed in the public interface.
  • A user-visible change is a newly added parameter called strict_shape. See https://xgboost.readthedocs.io/en/latest/prediction.html for more details.

Improvement on Dask interface

  • Starting with 1.4, the Dask interface is considered to be feature-complete, which means

... (truncated)

Changelog

Sourced from xgboost's changelog.

v1.4.2 (2021.05.13)

This is a patch release for Python package with following fixes:

  • Handle the latest version of cupy.ndarray in inplace_predict. (#6933)
  • Ensure output array from predict_leaf is (n_samples, ) when there's only 1 tree. 1.4.0 outputs (n_samples, 1). (#6889)
  • Fix empty dataset handling with multi-class AUC. (#6947)
  • Handle object type from pandas in inplace_predict. (#6927)

v1.4.1 (2021.04.20)

This is a bug fix release.

  • Fix GPU implementation of AUC on some large datasets. (#6866)

v1.4.0 (2021.04.12)

Introduction of pre-built binary package for R, with GPU support

Starting with release 1.4.0, users now have the option of installing {xgboost} without having to build it from the source. This is particularly advantageous for users who want to take advantage of the GPU algorithm (gpu_hist), as previously they'd have to build {xgboost} from the source using CMake and NVCC. Now installing {xgboost} with GPU support is as easy as: R CMD INSTALL ./xgboost_r_gpu_linux.tar.gz. (#6827)

See the instructions at https://xgboost.readthedocs.io/en/latest/build.html

Improvements on prediction functions

XGBoost has many prediction types including shap value computation and inplace prediction. In 1.4 we overhauled the underlying prediction functions for C API and Python API with an unified interface. (#6777, #6693, #6653, #6662, #6648, #6668, #6804)

  • Starting with 1.4, sklearn interface prediction will use inplace predict by default when input data is supported.
  • Users can use inplace predict with dart booster and enable GPU acceleration just like gbtree.
  • Also all prediction functions with tree models are now thread-safe. Inplace predict is improved with base_margin support.
  • A new set of C predict functions are exposed in the public interface.
  • A user-visible change is a newly added parameter called strict_shape. See https://xgboost.readthedocs.io/en/latest/prediction.html for more details.

Improvement on Dask interface

  • Starting with 1.4, the Dask interface is considered to be feature-complete, which means all of the models found in the single node Python interface are now supported in Dask, including but not limited to ranking and random forest. Also, the prediction function is significantly faster and supports shap value computation.
    • Most of the parameters found in single node sklearn interface are supported by Dask interface. (#6471, #6591)
    • Implements learning to rank. On the Dask interface, we use the newly added support of query ID to enable group structure. (#6576)
    • The Dask interface has Python type hints support. (#6519)

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label May 26, 2021
Bumps [xgboost](https://github.com/dmlc/xgboost) from 1.3.3 to 1.4.2.
- [Release notes](https://github.com/dmlc/xgboost/releases)
- [Changelog](https://github.com/dmlc/xgboost/blob/master/NEWS.md)
- [Commits](dmlc/xgboost@v1.3.3...v1.4.2)

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/python/requirements/tune/xgboost-1.4.2 branch from 63ac04c to ae06440 Compare September 7, 2021 16:10
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Oct 23, 2021

Superseded by #71.

@dependabot dependabot bot closed this Oct 23, 2021
@dependabot dependabot bot deleted the dependabot/pip/python/requirements/tune/xgboost-1.4.2 branch October 23, 2021 07:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant