(self)
| 368 | self._tf_graph = graph |
| 369 | |
| 370 | def run(self): |
| 371 | with tf.Session() as session: |
| 372 | self.convert_ops(session) |
| 373 | |
| 374 | self.replace_input_output_tensor_name() |
| 375 | return self._mace_net_def, self._converter_info |
| 376 | |
| 377 | def replace_input_output_tensor_name(self): |
| 378 | for op in self._mace_net_def.op: |
no test coverage detected