Skip to content

Commit 3f19316

Browse files
bugfix
1 parent 9104769 commit 3f19316

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

cpp/APLRRegressor.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1824,7 +1824,8 @@ void APLRRegressor::abort_boosting_when_no_validation_error_improvement_in_the_l
18241824
if (no_improvement_for_too_long)
18251825
{
18261826
abort_boosting = true;
1827-
std::cout << "Aborting boosting because of no validation error improvement in the last " << std::to_string(early_stopping_rounds) << " steps.\n";
1827+
if (verbosity >= 1)
1828+
std::cout << "Aborting boosting because of no validation error improvement in the last " << std::to_string(early_stopping_rounds) << " steps.\n";
18281829
}
18291830
}
18301831
}
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
setuptools.setup(
2929
name="aplr",
30-
version="10.4.3",
30+
version="10.4.4",
3131
description="Automatic Piecewise Linear Regression",
3232
ext_modules=[sfc_module],
3333
author="Mathias von Ottenbreit",

0 commit comments

Comments
 (0)