Skip to content
Snippets Groups Projects
Commit 163f2577 authored by auphelia's avatar auphelia
Browse files

[Execution] Committed current (not working!) version of the shape inference

parent 0f3ee819
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,9 @@ def infer_shapes(model):
"""Ensure every tensor in the model has a specified shape (ValueInfo)."""
for node in model.graph.node:
for output in node.output:
model.set_tensor_shape(output, [1])
# create an empty execution context
execution_context = model.make_empty_exec_context()
......
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