diff --git a/.github/workflows/test_accuracy.yml b/.github/workflows/test_accuracy.yml index e91d479d..6cd93deb 100644 --- a/.github/workflows/test_accuracy.yml +++ b/.github/workflows/test_accuracy.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.12" cache: pip - name: Create and start a virtual environment run: | diff --git a/src/cpp/models/include/models/results.h b/src/cpp/models/include/models/results.h index 12673b3b..9468043c 100644 --- a/src/cpp/models/include/models/results.h +++ b/src/cpp/models/include/models/results.h @@ -243,7 +243,7 @@ struct InstanceSegmentationResult : ResultBase { InstanceSegmentationResult(int64_t frameId = -1, const std::shared_ptr& metaData = nullptr) : ResultBase(frameId, metaData) {} std::vector segmentedObjects; - // Contan per class saliency_maps and "feature_vector" model output if feature_vector exists + // Contains per class saliency_maps and "feature_vector" model output if feature_vector exists std::vector> saliency_map; ov::Tensor feature_vector; };