File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 77from Orange .data import Table
88from Orange .modelling import SVMLearner , NuSVMLearner
99from Orange .widgets import gui
10- from Orange .widgets .widget import OWWidget , Msg
10+ from Orange .widgets .widget import Msg
1111from Orange .widgets .settings import Setting
1212from Orange .widgets .utils .owlearnerwidget import OWBaseLearner
1313from Orange .widgets .utils .signals import Output
@@ -31,9 +31,8 @@ class OWSVM(OWBaseLearner):
3131 class Outputs (OWBaseLearner .Outputs ):
3232 support_vectors = Output ("Support vectors" , Table , explicit = True )
3333
34- class Warning (OWWidget .Warning ):
34+ class Warning (OWBaseLearner .Warning ):
3535 sparse_data = Msg ('Input data is sparse, default preprocessing is to scale it.' )
36- outdated_learner = Msg ("Press Apply to submit changes." )
3736
3837 #: Different types of SVMs
3938 SVM , Nu_SVM = range (2 )
You can’t perform that action at this time.
0 commit comments