-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RFC] XGBoost 1.1.0 Release Candidate #5593
Comments
That's only true for Python. |
@trivialfis Thanks. I've added (Python package) prefix. |
RC2 is released. |
Added |
1.1.0 is now on PyPI. I'm still working on the release note and will put it up soon. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Roadmap: #5337
We are about to release version 1.1.0 of XGBoost. In the next two weeks, we invite everyone to try out the release candidate (RC).
Feedback period: until the end of
May 8, 2020May 15, 2020 (extended because we made RC2). No new feature will be added to the release; only critical bug fixes will be added.@dmlc/xgboost-committer
Now available
Maven
For
scala.binary.version
, you may choose 2.11 or 2.12.SBT
TODOs
release_1.1.0
.Known limitations
early_stopping_rounds
, the prediction method (xgb.train()
) behaves in a surprising way. If XGBoost runs for M rounds and chooses iteration N (N < M) as the best iteration, then the prediction method will use M trees by default. To use the best iteration (N trees), users will need to manually take the best iteration fieldbst.best_iteration
and pass it as thentree_limit
argument toxgb.predict()
. See [R] Best iteration index from early stopping is discarded when model is saved to disk #5209 for additional context.reg_lambda
is set to zero, some leaf nodes may be assigned a NaN value. (See discussion) For now, please setreg_lambda
to a nonzero value.Deprecation notices
manylinux2010
tag in the binary wheel release. Ensure you have Pip 19.0 or newer by runningpython3 -m pip -V
to check the version. Upgrade Pip with commandOutstanding patches that should make it into the 1.1.0 release:
Merged after RC1:
training
parameter in XGBoosterPredict() #5604Merged after RC2:
The text was updated successfully, but these errors were encountered: