(dirpath)
| 60 | |
| 61 | |
| 62 | def check_dataset_exist(dirpath): |
| 63 | if not os.path.exists(dirpath): |
| 64 | print( |
| 65 | 'Please download the cifar10 dataset using python data/download_cifar10.py' |
| 66 | ) |
| 67 | sys.exit(0) |
| 68 | return dirpath |
| 69 | |
| 70 | |
| 71 | def normalize(train_x, val_x): |
no outgoing calls
no test coverage detected