(generator, bs, iter)
| 152 | pipeline_definition = pipeline_def(enable_conditionals=True)(function) |
| 153 | |
| 154 | def gen_batch(generator, bs, iter): |
| 155 | return [generator(SampleInfo(bs * iter + i, i, iter, 0)) for i in range(bs)] |
| 156 | |
| 157 | pipe = pipeline_definition(*es_inputs, **kwargs) |
| 158 |
no test coverage detected