(dirpath)
| 51 | |
| 52 | |
| 53 | def check_dataset_exist(dirpath): |
| 54 | if not os.path.exists(dirpath): |
| 55 | print( |
| 56 | 'Please download the cifar100 dataset using python data/download_cifar100.py' |
| 57 | ) |
| 58 | sys.exit(0) |
| 59 | return dirpath |
| 60 | |
| 61 | |
| 62 | def normalize(train_x, val_x): |
no outgoing calls
no test coverage detected