Skip to content

Commit 97ce8e2

Browse files
committed
demos/handwritten_text_recognition_demo/python/handwritten_text_recognition_demo.py: output_info->outputs
1 parent c567346 commit 97ce8e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demos/handwritten_text_recognition_demo/python/handwritten_text_recognition_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def main():
9191
out_blob = args.output_blob
9292
else:
9393
assert len(net.outputs) == 1, "Demo supports only single output topologies"
94-
out_blob = next(iter(net.output_info))
94+
out_blob = next(iter(net.outputs))
9595

9696
characters = get_characters(args)
9797
codec = CTCCodec(characters, args.designated_characters, args.top_k)

0 commit comments

Comments
 (0)