(self, raw_path, save_file)
| 846 | return self.load_labels(meta_file, *batch_files) |
| 847 | |
| 848 | def test_image_data_preprocess(self, raw_path, save_file): |
| 849 | batch_file = os.path.join(raw_path, "cifar-10-batches-bin/test_batch.bin") |
| 850 | return self.load_images(batch_file) |
| 851 | |
| 852 | def test_label_data_preprocess(self, raw_path, save_file): |
| 853 | meta_file = os.path.join(raw_path, "cifar-10-batches-bin/batches.meta.txt") |
nothing calls this directly
no test coverage detected