-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
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
Add tolerance to early stopping. #6942
Conversation
7c86885
to
8f09468
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #6942 +/- ##
==========================================
+ Coverage 82.01% 82.09% +0.08%
==========================================
Files 13 13
Lines 3908 3916 +8
==========================================
+ Hits 3205 3215 +10
+ Misses 703 701 -2 ☔ View full report in Codecov by Sentry. |
""" | ||
def __init__(self, | ||
rounds: int, | ||
metric_name: Optional[str] = None, | ||
data_name: Optional[str] = None, | ||
maximize: Optional[bool] = None, | ||
save_best: Optional[bool] = False) -> None: | ||
save_best: Optional[bool] = False, | ||
tolerance: float = 0) -> None: | ||
self.data = data_name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might be worth specifying if it's absolute or relative or even providing both to be consistent with numpy etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed the name to abs_tol
with documents. I don't think relative tolerance is applicable here.
Can this also be added to XGBoost4J and XGBoost4J-Spark? |
@candalfigomoro I'm not sure, @wbo4958 has some interest in better es support in JVM packages, but that will depend on his priority. |
Great work! Is this also added in XGBoost on R Cran? |
Close #4982 .