Skip to content

Commit 6c7d52a

Browse files
committedFeb 27, 2024
Replace ssd300
1 parent 2d1aa89 commit 6c7d52a

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed
 

‎.github/workflows/test_precommit.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,8 @@ jobs:
149149
fail-fast: false
150150
matrix:
151151
os: [ubuntu-20.04, ubuntu-22.04, macos-12]
152-
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
152+
python-version: [3.8, 3.9, '3.10', '3.11']
153153
exclude:
154-
- os: macos-12
155-
python-version: 3.7
156154
- os: macos-12
157155
python-version: 3.9
158156
- os: macos-12

‎tests/cpp/precommit/public_scope.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[
22
{
3-
"name": "ssd300",
3+
"name": "mobilenet-v3-large-1.0-224-tf",
44
"type": "DetectionModel"
55
},
66
{
@@ -12,7 +12,7 @@
1212
"type": "DetectionModel"
1313
},
1414
{
15-
"name": "efficientnet-b0-pytorch",
15+
"name": "e fficientnet-b0-pytorch",
1616
"type": "ClassificationModel"
1717
},
1818
{

‎tests/python/accuracy/public_scope.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
]
7272
},
7373
{
74-
"name": "ssd300",
74+
"name": "mobilenet-v3-large-1.0-224-tf",
7575
"type": "DetectionModel",
7676
"test_data": [
7777
{

‎tests/python/accuracy/test_accuracy.py

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ def test_image_models(data, dump, result, model_data):
126126
image_result = [output_str]
127127
elif isinstance(outputs, DetectionResult):
128128
assert 1 == len(test_data["reference"])
129+
print(name, test_data["reference"][0])
129130
output_str = str(outputs)
130131
assert test_data["reference"][0] == output_str
131132
image_result = [output_str]

0 commit comments

Comments
 (0)