Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
-

### Fixed
-
- Inference result for only one output layer in OpenVINO launcher (<https://github.com/openvinotoolkit/datumaro/pull/125>)

### Security
-
Expand Down
2 changes: 1 addition & 1 deletion datumaro/plugins/openvino_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def infer(self, inputs):

results = self._net.infer(inputs)
if len(results) == 1:
return next(iter(results))
return next(iter(results.values()))
else:
return results

Expand Down