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

[Exec] remove print statement from execute_custom_node

parent a257c576
No related branches found
No related tags found
No related merge requests found
......@@ -8,17 +8,13 @@ def execute_custom_node(node, context, graph):
Input/output provided via context."""
if node.op_type == "MultiThreshold":
# save inputs
v = context[node.input[0]]
thresholds = context[node.input[1]]
# calculate output
output = multiThresh.execute(v, thresholds)
# setting context according to output
context[node.output[0]] = output
print(output)
else:
# exception if op_type is not supported
......
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