(self, node_id)
| 268 | } |
| 269 | |
| 270 | def _tensor_from_node(self, node_id): |
| 271 | meta = self._get_output_info(node_id) |
| 272 | return Tensor(self, int(node_id), meta["shape"], meta["precision"]) |
| 273 | |
| 274 | def _coerce_input_array(self, data, precision): |
| 275 | if isinstance(data, Tensor): |