Skip to content

Commit

Permalink
removed redundant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
droidadroit committed Jan 15, 2019
1 parent a580c9a commit 8477d65
Showing 1 changed file with 0 additions and 45 deletions.
45 changes: 0 additions & 45 deletions autokeras/preprocessor.py
Expand Up @@ -330,48 +330,3 @@ def __getitem__(self, index):

def __len__(self):
return len(self.file_paths)


# TODO: Mlpmodule
# from copy import deepcopy
# _data = np.array([
# [
# [
# [1, 2, 3, 4],
# [4, 3, 5, 2],
# [5, 6, 4, 3]
# ],
# [
# [1, 2, 3, 4],
# [4, 3, 5, 2],
# [5, 6, 4, 3]
# ],
# [
# [1, 2, 3, 4],
# [4, 3, 5, 2],
# [5, 6, 4, 3]
# ]
# ],
# [
# [
# [1, 2, 3, 4],
# [4, 3, 5, 2],
# [5, 6, 4, 3]
# ],
# [
# [1, 2, 3, 4],
# [4, 3, 5, 2],
# [5, 6, 4, 3]
# ],
# [
# [1, 2, 3, 4],
# [4, 3, 5, 2],
# [5, 6, 4, 3]
# ]
# ]
# ])
# labels = np.array([2, 1])
# obj = DataTransformerMlp(_data)
# loader = obj.transform_train(_data, labels, 1)
# for batch_idx, (inputs, targets) in enumerate(deepcopy(loader)):
# print('a')

0 comments on commit 8477d65

Please sign in to comment.