(dirpath)
| 92 | |
| 93 | |
| 94 | def check_dataset_exist(dirpath): |
| 95 | if not os.path.exists(dirpath): |
| 96 | print( |
| 97 | 'Please download the malaria dataset first' |
| 98 | ) |
| 99 | sys.exit(0) |
| 100 | return dirpath |
| 101 | |
| 102 | |
| 103 | def normalize(train_x, val_x): |
no outgoing calls
no test coverage detected