We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f5a48 commit 24afefaCopy full SHA for 24afefa
tf2onnx/graph.py
@@ -382,7 +382,8 @@ def update_proto(self, external_tensor_storage=None):
382
attr_graphs = self.get_body_graphs()
383
if attr_graphs:
384
for attr_name, sub_graph in attr_graphs.items():
385
- graph_proto = sub_graph.make_graph("graph for " + self.name + " " + attr_name, external_tensor_storage)
+ graph_proto = sub_graph.make_graph("graph for " + self.name + " " + attr_name,
386
+ external_tensor_storage=external_tensor_storage)
387
self.set_attr(attr_name, graph_proto)
388
389
attr = list(self.get_onnx_attrs(external_tensor_storage).values())
0 commit comments