(*args, **kwargs)
| 1126 | |
| 1127 | def test_segmentation_select_masks(): |
| 1128 | def get_data_source(*args, **kwargs): |
| 1129 | return lambda: make_batch_select_masks(*args, **kwargs) |
| 1130 | |
| 1131 | pipe = Pipeline(batch_size=batch_size, num_threads=4, device_id=None, seed=1234) |
| 1132 | with pipe: |
no test coverage detected