Skip to content

Commit

Permalink
(#9) Dataset: Unabstraction
Browse files Browse the repository at this point in the history
  • Loading branch information
betarixm committed May 24, 2022
1 parent 51170be commit b7ded6e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/typings/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,10 @@ def __init__(self, dataset):

self.ds = dataset

@abstractmethod
def postprocess(
self, train: NumpyDataset, test: NumpyDataset
) -> Tuple[NumpyDataset, NumpyDataset]:
pass
return train, test

def load_data(self) -> Tuple[NumpyDataset, NumpyDataset]:
ds = self.ds
Expand Down

0 comments on commit b7ded6e

Please sign in to comment.