Skip to content

Commit

Permalink
Fix wrong model name in converter & template (#4082)
Browse files Browse the repository at this point in the history
* Fix wrong

* Update CHAGELOG
  • Loading branch information
harimkang authored Oct 29, 2024
1 parent a2d2c81 commit 7bb36ef
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ All notable changes to this project will be documented in this file.
(<https://github.com/openvinotoolkit/training_extensions/pull/4057>)
- Fix incorrect all_groups order configuration in HLabelInfo
(<https://github.com/openvinotoolkit/training_extensions/pull/4067>)
- Fix wrong model name in converter & template
(<https://github.com/openvinotoolkit/training_extensions/pull/4082>)

## \[v2.1.0\]

Expand Down
2 changes: 1 addition & 1 deletion src/otx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

__version__ = "2.2.0rc12"
__version__ = "2.2.0rc13"

import os
from pathlib import Path
Expand Down
4 changes: 2 additions & 2 deletions src/otx/tools/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
"task": OTXTaskType.MULTI_CLASS_CLS,
"model_name": "mobilenet_v3_large",
},
"Custom_Image_Classification_EfficinetNet-B3": {
"Custom_Image_Classification_EfficientNet-B3": {
"task": OTXTaskType.MULTI_CLASS_CLS,
"model_name": "tv_efficientnet_b3",
},
"Custom_Image_Classification_EfficinetNet-V2-L": {
"Custom_Image_Classification_EfficientNet-V2-L": {
"task": OTXTaskType.MULTI_CLASS_CLS,
"model_name": "tv_efficientnet_v2_l",
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Description.
model_template_id: Custom_Image_Classification_EfficinetNet-B3
model_template_id: Custom_Image_Classification_EfficientNet-B3
name: EfficientNet-B3
task_type: CLASSIFICATION
task_family: VISION
Expand Down

0 comments on commit 7bb36ef

Please sign in to comment.