Skip to content
Snippets Groups Projects
Commit 153cd9cc authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Wrapper] add initializer renaming to rename_tensor

parent de5759dd
No related branches found
No related tags found
No related merge requests found
......@@ -183,6 +183,9 @@ class ModelWrapper:
# sweep over value_info
if util.get_by_name(graph.value_info, old_name) is not None:
util.get_by_name(graph.value_info, old_name).name = new_name
# sweep over initializers
if util.get_by_name(graph.initializer, old_name) is not None:
util.get_by_name(graph.initializer, old_name).name = new_name
# sweep over quantization annotations
if (
util.get_by_name(graph.quantization_annotation, old_name, "tensor_name")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment