Skip to content

Commit 56cb3f8

Browse files
authored
AC: fix async requests results getting (#3051)
1 parent f5f046b commit 56cb3f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/accuracy_checker/openvino/tools/accuracy_checker/launcher/openvino_launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ def prepare_data_for_request(self,
905905
@staticmethod
906906
def get_result_from_request(request):
907907
return [{
908-
out.get_node().friendly_name: tensor.data for out, tensor
908+
out.get_node().friendly_name: data for out, data
909909
in request.results.items()}
910910
]
911911

0 commit comments

Comments
 (0)