Call new fit method

This commit is contained in:
2021-04-12 10:30:47 -05:00
parent cb62345acf
commit 9d404f29a7
5 changed files with 197 additions and 144 deletions

View File

@@ -279,3 +279,10 @@ class PrimalSolutionComponent(Component):
thr.fit(clf, x[category], y[category])
self.classifiers[category] = clf
self.thresholds[category] = thr
@overrides
def fit(
self,
training_instances: List[Instance],
) -> None:
return