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.
1 parent 2abce81 commit 595cfbbCopy full SHA for 595cfbb
onedal/svm/svm.py
@@ -263,7 +263,7 @@ def _predict(self, X):
263
if hasattr(self, "_onedal_model"):
264
model = self._onedal_model
265
else:
266
- model = self._create_model(module)
+ model = self._create_model()
267
result = self.infer(params, model, X)
268
y = from_table(result.responses)
269
return y
@@ -319,7 +319,7 @@ def _decision_function(self, X):
319
320
321
322
323
324
decision_function = from_table(result.decision_function)
325
0 commit comments