You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The logistic regression name is reverted back to Logistic regression.
The base class for learners sets self.learner_name = self.name in __init__, where self.name is the widgets class attribute name, which is set later in the derived classes. So learner_name = Setting(name) or learner_name = Setting(OWWidget.name) won't work since the name is only defined later. Having learner_name = Setting("") would require some magic.
OWBaseLearner already has a meta class. This may be the point where the setting can be properly initialized since the name is already set then.
The text was updated successfully, but these errors were encountered:
The logistic regression name is reverted back to Logistic regression.
The base class for learners sets
self.learner_name = self.name
in__init__
, whereself.name
is the widgets class attributename
, which is set later in the derived classes. Solearner_name = Setting(name)
orlearner_name = Setting(OWWidget.name)
won't work since the name is only defined later. Havinglearner_name = Setting("")
would require some magic.OWBaseLearner
already has a meta class. This may be the point where the setting can be properly initialized since thename
is already set then.The text was updated successfully, but these errors were encountered: