Skip to content

Commit 8f52ece

Browse files
authored
Merge pull request #5165 from VesnaT/ada_boost_n_est
[FIX] AdaBoost: Set maximum number of estimators to 10000
2 parents 19bff36 + f73e1c5 commit 8f52ece

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orange/widgets/model/owadaboost.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def add_main_layout(self):
5252
box, self, "Base estimator: " + self.base_estimator.name.title())
5353

5454
self.n_estimators_spin = gui.spin(
55-
box, self, "n_estimators", 1, 100, label="Number of estimators:",
55+
box, self, "n_estimators", 1, 10000, label="Number of estimators:",
5656
alignment=Qt.AlignRight, controlWidth=80,
5757
callback=self.settings_changed)
5858
self.learning_rate_spin = gui.doubleSpin(

0 commit comments

Comments
 (0)