()
| 71 | |
| 72 | |
| 73 | def test_Normalize(): |
| 74 | t = Normalize() |
| 75 | aug_data = t.apply_batch(generate_data()) |
| 76 | aug_data_shape = [(a.shape, b.shape) for a, b in aug_data] |
| 77 | target_shape = [(data_shape, label_shape)] * 4 |
| 78 | assert aug_data_shape == target_shape |
| 79 | |
| 80 | |
| 81 | def test_RandomCrop(): |
nothing calls this directly
no test coverage detected