Skip to content

Commit

Permalink
Merge pull request #1009 from PrimozGodec/annotator-epsilon
Browse files Browse the repository at this point in the history
[FIX] Annotator - Change epsilon step and limits
  • Loading branch information
PrimozGodec authored Sep 21, 2023
2 parents b225ac7 + b5f24e5 commit 9e81052
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions orangecontrib/text/widgets/owannotator.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,15 @@ def __add_annotation_controls(self):
orientation=Qt.Horizontal)
gui.checkBox(ibox, self, "use_epsilon", "epsilon:", labelWidth=80,
callback=self.__on_epsilon_check_changed)
gui.doubleSpin(ibox, self, "epsilon", 0.1, 10, 0.1,
callback=self.__on_epsilon_changed)
gui.doubleSpin(
ibox,
self,
"epsilon",
0.01,
1000,
step=0.01,
callback=self.__on_epsilon_changed,
)

gui.appendRadioButton(rbuttons, "Gaussian mixture models")
self.gmm_box = ibox = gui.indentedBox(rbuttons, 20,
Expand Down

0 comments on commit 9e81052

Please sign in to comment.