64e63c2f8a72bf218b67ec3d3fb75c0dd94621cb,Orange/widgets/classify/owlogisticregression.py,OWLogisticRegression,__init__,#OWLogisticRegression#Any#,31
Before Change
box = gui.widgetBox(self.controlArea, self.tr("Regularization"))
pbox = gui.widgetBox(box, "Penalty type")
pbox.setFlat(True)
gui.radioButtonsInBox(
pbox, self, "penalty_type", btnLabels=("L1", "L2"),
orientation="horizontal"
After Change
spin = gui.doubleSpin(box, self, "C", 0.0, 1024.0, step=0.0001)
form.addRow("Reg (C):", spin)
box = gui.widgetBox(self.controlArea, "Numerical Tolerance")
gui.doubleSpin(box, self, "tol", 1e-7, 1e-3, 5e-7)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: biolab/orange3
Commit Name: 64e63c2f8a72bf218b67ec3d3fb75c0dd94621cb
Time: 2014-02-18
Author: ales.erjavec@fri.uni-lj.si
File Name: Orange/widgets/classify/owlogisticregression.py
Class Name: OWLogisticRegression
Method Name: __init__
Project Name: biolab/orange3
Commit Name: b819aa83fed31e6d287fc60a3280ea8b30a64f0e
Time: 2015-12-11
Author: janez.demsar@fri.uni-lj.si
File Name: Orange/widgets/classify/owclassificationtreegraph.py
Class Name: OWClassificationTreeGraph
Method Name: __init__
Project Name: biolab/orange3
Commit Name: 02d16a304d14d45a70c0ebefd3122a3a94e04a74
Time: 2015-12-12
Author: janez.demsar@fri.uni-lj.si
File Name: Orange/widgets/classify/owclassificationtreegraph.py
Class Name: OWClassificationTreeGraph
Method Name: __init__