(dir_path='/tmp/cifar-100-python')
| 41 | |
| 42 | |
| 43 | def load_train_data(dir_path='/tmp/cifar-100-python'): |
| 44 | images, labels = load_dataset(check_dataset_exist(dir_path + "/train")) |
| 45 | return np.array(images, dtype=np.float32), np.array(labels, dtype=np.int32) |
| 46 | |
| 47 | |
| 48 | def load_test_data(dir_path='/tmp/cifar-100-python'): |
no test coverage detected