From 8af9ebc94604950830f5722ab9c89621772a5907 Mon Sep 17 00:00:00 2001 From: Carsen Stringer Date: Tue, 22 Oct 2024 16:09:31 -0400 Subject: [PATCH] adding tooltip --- cellpose/gui/guiparts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cellpose/gui/guiparts.py b/cellpose/gui/guiparts.py index caacfe1d..30d3979b 100644 --- a/cellpose/gui/guiparts.py +++ b/cellpose/gui/guiparts.py @@ -236,6 +236,7 @@ def __init__(self, parent, model_strings): yoff += 1 use_SGD = "SGD" self.useSGD = QCheckBox(f"{use_SGD}") + self.useSGD.setToolTip("use SGD, if unchecked uses AdamW (recommended learning_rate then 1e-3)") self.useSGD.setChecked(True) self.l0.addWidget(self.useSGD, i+yoff, 1, 1, 1)