(self)
| 79 | 'Skip test_tfrecord, no tensorflow available') |
| 80 | |
| 81 | def test_numpy(self): |
| 82 | with tempfile.TemporaryDirectory() as f: |
| 83 | self.run_write_read_test( |
| 84 | os.path.join(f, 'test.npz'), |
| 85 | NumpySerializer, |
| 86 | {}, {}, |
| 87 | {}, {'shuffle': False}, |
| 88 | 'Skip test_numpy, no numpy available') |
| 89 | |
| 90 | def test_hdf5(self): |
| 91 | args = [['label', 'image']] |
nothing calls this directly
no test coverage detected