Skip to content

Commit

Permalink
[tools/dataset_converter] Add the mnist dataset (Samsung#12699)
Browse files Browse the repository at this point in the history
This PR adds the mnist tensorflow dataset to the tf_dataset_converter.

ONE-DCO-1.0-Signed-off-by: SeungHui Youn <[email protected]>
  • Loading branch information
zetwhite authored Feb 28, 2024
1 parent 79ca151 commit ecd17dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generate_datafile/tf_dataset_converter/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class Mnist():
def check(dataset_name):
supported_dataset_list = ['fashion_mnist']
supported_dataset_list = ['fashion_mnist', 'mnist']
if dataset_name in supported_dataset_list:
return
print(f'{dataset_name} does not fit Mnist')
Expand Down

0 comments on commit ecd17dd

Please sign in to comment.