Skip to content

Commit 7bb36ef

Browse files
authored
Fix wrong model name in converter & template (#4082)
* Fix wrong * Update CHAGELOG
1 parent a2d2c81 commit 7bb36ef

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ All notable changes to this project will be documented in this file.
108108
(<https://github.com/openvinotoolkit/training_extensions/pull/4057>)
109109
- Fix incorrect all_groups order configuration in HLabelInfo
110110
(<https://github.com/openvinotoolkit/training_extensions/pull/4067>)
111+
- Fix wrong model name in converter & template
112+
(<https://github.com/openvinotoolkit/training_extensions/pull/4082>)
111113

112114
## \[v2.1.0\]
113115

src/otx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2024 Intel Corporation
44
# SPDX-License-Identifier: Apache-2.0
55

6-
__version__ = "2.2.0rc12"
6+
__version__ = "2.2.0rc13"
77

88
import os
99
from pathlib import Path

src/otx/tools/converter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040
"task": OTXTaskType.MULTI_CLASS_CLS,
4141
"model_name": "mobilenet_v3_large",
4242
},
43-
"Custom_Image_Classification_EfficinetNet-B3": {
43+
"Custom_Image_Classification_EfficientNet-B3": {
4444
"task": OTXTaskType.MULTI_CLASS_CLS,
4545
"model_name": "tv_efficientnet_b3",
4646
},
47-
"Custom_Image_Classification_EfficinetNet-V2-L": {
47+
"Custom_Image_Classification_EfficientNet-V2-L": {
4848
"task": OTXTaskType.MULTI_CLASS_CLS,
4949
"model_name": "tv_efficientnet_v2_l",
5050
},

src/otx/tools/templates/classification/efficientnet_b3/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Description.
2-
model_template_id: Custom_Image_Classification_EfficinetNet-B3
2+
model_template_id: Custom_Image_Classification_EfficientNet-B3
33
name: EfficientNet-B3
44
task_type: CLASSIFICATION
55
task_family: VISION

0 commit comments

Comments
 (0)