We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b312903 + b1ecf7d commit 701517cCopy full SHA for 701517c
Orange/preprocess/score.py
@@ -8,7 +8,7 @@
8
from Orange.data import Domain, Variable, DiscreteVariable, ContinuousVariable
9
from Orange.data.filter import HasClass
10
from Orange.misc.wrapper_meta import WrapperMeta
11
-from Orange.preprocess.preprocess import Discretize, Impute
+from Orange.preprocess.preprocess import Discretize, SklImpute
12
from Orange.preprocess.util import _RefuseDataInConstructor
13
from Orange.statistics import contingency, distribution
14
from Orange.util import Reprable
@@ -86,7 +86,7 @@ class SklScorer(Scorer, metaclass=WrapperMeta):
86
supports_sparse_data = True
87
88
preprocessors = Scorer.preprocessors + [
89
- Impute()
+ SklImpute()
90
]
91
92
def score_data(self, data, feature):
0 commit comments