Remove experimental LP components

This commit is contained in:
2021-04-06 16:36:14 -05:00
parent f90f295620
commit f495297168
16 changed files with 49 additions and 1125 deletions

View File

@@ -38,7 +38,7 @@ class CountingClassifier(Classifier):
n_samples = x_test.shape[0]
return np.array([self.mean for _ in range(n_samples)])
def __repr__(self):
def __repr__(self) -> str:
return "CountingClassifier(mean=%s)" % self.mean
def clone(self) -> "CountingClassifier":