Skip to content

Commit

Permalink
(#4) Refactor: style
Browse files Browse the repository at this point in the history
  • Loading branch information
betarixm committed Mar 24, 2022
1 parent 5e74e22 commit c5d237b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/typings/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ def load_data(self) -> Tuple[NumpyDataset, NumpyDataset]:

return (x_train, y_train), (x_test, y_test)

def dataset(self, shuffle: int = 10000, batch: int = 32) -> Tuple[TestSet, TrainSet]:
def dataset(
self, shuffle: int = 10000, batch: int = 32
) -> Tuple[TestSet, TrainSet]:
(x_train, y_train), (x_test, y_test) = self.load_data()

train_ds = (
Expand Down

0 comments on commit c5d237b

Please sign in to comment.