(subset)
| 74 | |
| 75 | |
| 76 | def get_data(subset): |
| 77 | ds = FakeData([[SHAPE, SHAPE, CHANNELS], [SHAPE, SHAPE, CHANNELS]], 1000, random=False, |
| 78 | dtype=['uint8', 'uint8'], domain=[(0, 255), (0, 10)]) |
| 79 | ds = BatchData(ds, 1) |
| 80 | return ds |
| 81 | |
| 82 | |
| 83 | class InferenceOnlyModel(Model): |
no test coverage detected