Commit b62e6954 authored by LDOUBLEV's avatar LDOUBLEV
Browse files

fix rec output name error

parent 0b220341
......@@ -327,6 +327,10 @@ def get_output_tensors(args, mode, predictor):
for output_name in output_names:
output_tensor = predictor.get_output_handle(output_name)
output_tensors.append(output_tensor)
else:
for output_name in output_names:
output_tensor = predictor.get_output_handle(output_name)
output_tensors.append(output_tensor)
return output_tensors
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment