(self, batch_size, image_height, image_width)
| 235 | } |
| 236 | |
| 237 | def get_sample_input(self, batch_size, image_height, image_width): |
| 238 | self.check_dims(batch_size, image_height, image_width) |
| 239 | return torch.zeros(batch_size, self.text_maxlen, dtype=torch.int32, device=self.device) |
| 240 | |
| 241 | def optimize(self, onnx_graph): |
| 242 | opt = Optimizer(onnx_graph, verbose=self.verbose) |
nothing calls this directly
no test coverage detected