Skip to content

Commit af1af90

Browse files
authored
Run accuracy tests with py 3.12 (#262)
* Fix a typo * Accuracy tests with py 3.12
1 parent db0bf5a commit af1af90

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test_accuracy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v3
1616
- uses: actions/setup-python@v4
1717
with:
18-
python-version: "3.10"
18+
python-version: "3.12"
1919
cache: pip
2020
- name: Create and start a virtual environment
2121
run: |

src/cpp/models/include/models/results.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ struct InstanceSegmentationResult : ResultBase {
243243
InstanceSegmentationResult(int64_t frameId = -1, const std::shared_ptr<MetaData>& metaData = nullptr)
244244
: ResultBase(frameId, metaData) {}
245245
std::vector<SegmentedObject> segmentedObjects;
246-
// Contan per class saliency_maps and "feature_vector" model output if feature_vector exists
246+
// Contains per class saliency_maps and "feature_vector" model output if feature_vector exists
247247
std::vector<cv::Mat_<std::uint8_t>> saliency_map;
248248
ov::Tensor feature_vector;
249249
};

0 commit comments

Comments
 (0)