(self, inputs, labels)
| 34 | self.decode_host = ops.decoders.Image(device="cpu", output_type=types.RGB) |
| 35 | |
| 36 | def base_define_graph(self, inputs, labels): |
| 37 | images_gpu = self.decode_gpu(inputs) |
| 38 | images_host = self.decode_host(inputs) |
| 39 | return images_gpu, images_host, labels |
| 40 | |
| 41 | |
| 42 | class MXNetReaderPipeline(CommonPipeline): |
no outgoing calls
no test coverage detected