Skip to content

Commit

Permalink
Merge pull request #5165 from VesnaT/ada_boost_n_est
Browse files Browse the repository at this point in the history
[FIX] AdaBoost: Set maximum number of estimators to 10000
  • Loading branch information
janezd authored Jan 8, 2021
2 parents 19bff36 + f73e1c5 commit 8f52ece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/widgets/model/owadaboost.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def add_main_layout(self):
box, self, "Base estimator: " + self.base_estimator.name.title())

self.n_estimators_spin = gui.spin(
box, self, "n_estimators", 1, 100, label="Number of estimators:",
box, self, "n_estimators", 1, 10000, label="Number of estimators:",
alignment=Qt.AlignRight, controlWidth=80,
callback=self.settings_changed)
self.learning_rate_spin = gui.doubleSpin(
Expand Down

0 comments on commit 8f52ece

Please sign in to comment.