Skip to content

Commit bc36b48

Browse files
author
Songki Choi
committed
Release 1.2.1
Signed-off-by: Songki Choi <[email protected]>
1 parent 8ddb18f commit bc36b48

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ All notable changes to this project will be documented in this file.
1010
- Integrate new ignored loss in semantic segmentation (<https://github.com/openvinotoolkit/training_extensions/pull/2065>, <https://github.com/openvinotoolkit/training_extensions/pull/2111>)
1111
- Optimize YOLOX data pipeline (<https://github.com/openvinotoolkit/training_extensions/pull/2075>)
1212
- Tiling Spatial Concatenation for OpenVINO IR (<https://github.com/openvinotoolkit/training_extensions/pull/2052>)
13+
- Optimize counting train & inference speed and memory consumption (<https://github.com/openvinotoolkit/training_extensions/pull/2172>)
1314

1415
### Bug fixes
1516

1617
- Bug fix: value of validation variable is changed after auto decrease batch size (<https://github.com/openvinotoolkit/training_extensions/pull/2053>)
1718
- Fix tiling 0 stride issue in parameter adapter (<https://github.com/openvinotoolkit/training_extensions/pull/2078>)
1819
- Fix Tiling NNCF (<https://github.com/openvinotoolkit/training_extensions/pull/2081>)
20+
- Do not skip full img tile classifier + Fix Sequencial Export Issue (<https://github.com/openvinotoolkit/training_extensions/pull/2174>)
1921

2022
## \[v1.2.0\]
2123

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
---
66

77
[Key Features](#key-features)
8-
[Quick Start](https://openvinotoolkit.github.io/training_extensions/releases/1.2.1/guide/get_started/quick_start_guide/index.html)
9-
[Documentation](https://openvinotoolkit.github.io/training_extensions/releases/1.2.1/index.html)
8+
[Quick Start](https://openvinotoolkit.github.io/training_extensions/1.2.1/guide/get_started/quick_start_guide/index.html)
9+
[Documentation](https://openvinotoolkit.github.io/training_extensions/1.2.1/index.html)
1010
[License](#license)
1111

1212
[![PyPI](https://img.shields.io/pypi/v/otx)](https://pypi.org/project/otx)
@@ -55,7 +55,7 @@ OpenVINO™ Training Extensions supports the following computer vision tasks:
5555
- **Action recognition** including action classification and detection
5656
- **Anomaly recognition** tasks including anomaly classification, detection and segmentation
5757

58-
OpenVINO™ Training Extensions supports the [following learning methods](https://openvinotoolkit.github.io/training_extensions/releases/1.2.1/guide/explanation/algorithms/index.html):
58+
OpenVINO™ Training Extensions supports the [following learning methods](https://openvinotoolkit.github.io/training_extensions/1.2.1/guide/explanation/algorithms/index.html):
5959

6060
- **Supervised**, incremental training, which includes class incremental scenario and contrastive learning for classification and semantic segmentation tasks
6161
- **Semi-supervised learning**
@@ -65,17 +65,17 @@ OpenVINO™ Training Extensions will provide the following features in coming re
6565

6666
- **Distributed training** to accelerate the training process when you have multiple GPUs
6767
- **Half-precision training** to save GPUs memory and use larger batch sizes
68-
- Integrated, efficient [hyper-parameter optimization module (HPO)](https://openvinotoolkit.github.io/training_extensions/releases/1.2.1/guide/explanation/additional_features/hpo.html). Through dataset proxy and built-in hyper-parameter optimizer, you can get much faster hyper-parameter optimization compared to other off-the-shelf tools. The hyperparameter optimization is dynamically scheduled based on your resource budget.
68+
- Integrated, efficient [hyper-parameter optimization module (HPO)](https://openvinotoolkit.github.io/training_extensions/1.2.1/guide/explanation/additional_features/hpo.html). Through dataset proxy and built-in hyper-parameter optimizer, you can get much faster hyper-parameter optimization compared to other off-the-shelf tools. The hyperparameter optimization is dynamically scheduled based on your resource budget.
6969
- OpenVINO™ Training Extensions uses [Datumaro](https://openvinotoolkit.github.io/datumaro/docs/) as the backend to hadle datasets. Thanks to that, OpenVINO™ Training Extensions supports the most common academic field dataset formats for each task. We constantly working to extend supported formats to give more freedom of datasets format choice.
70-
- [Auto-configuration functionality](https://openvinotoolkit.github.io/training_extensions/releases/1.2.1/guide/explanation/additional_features/auto_configuration.html). OpenVINO™ Training Extensions analyzes provided dataset and selects the proper task and model template to provide the best accuracy/speed trade-off. It will also make a random auto-split of your dataset if there is no validation set provided.
70+
- [Auto-configuration functionality](https://openvinotoolkit.github.io/training_extensions/1.2.1/guide/explanation/additional_features/auto_configuration.html). OpenVINO™ Training Extensions analyzes provided dataset and selects the proper task and model template to provide the best accuracy/speed trade-off. It will also make a random auto-split of your dataset if there is no validation set provided.
7171

7272
---
7373

7474
## Getting Started
7575

7676
### Installation
7777

78-
Please refer to the [installation guide](https://openvinotoolkit.github.io/training_extensions/releases/1.2.1/guide/get_started/quick_start_guide/installation.html).
78+
Please refer to the [installation guide](https://openvinotoolkit.github.io/training_extensions/1.2.1/guide/get_started/quick_start_guide/installation.html).
7979

8080
### OpenVINO™ Training Extensions CLI Commands
8181

@@ -89,7 +89,7 @@ Please refer to the [installation guide](https://openvinotoolkit.github.io/train
8989
- `otx demo` allows one to apply a trained model on the custom data or the online footage from a web camera and see how it will work in a real-life scenario.
9090
- `otx explain` runs explain algorithm on the provided data and outputs images with the saliency maps to show how your model makes predictions.
9191

92-
You can find more details with examples in the [CLI command intro](https://openvinotoolkit.github.io/training_extensions/releases/1.2.1/guide/get_started/quick_start_guide/cli_commands.html).
92+
You can find more details with examples in the [CLI command intro](https://openvinotoolkit.github.io/training_extensions/1.2.1/guide/get_started/quick_start_guide/cli_commands.html).
9393

9494
---
9595

otx/__init__.py

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

6-
__version__ = "1.2.1rc7"
6+
__version__ = "1.2.1"
77
# NOTE: Sync w/ otx/api/usecases/exportable_code/demo/requirements.txt on release
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
openvino==2022.3.0
22
openmodelzoo-modelapi==2022.3.0
3-
otx==1.2.1rc7
3+
otx==1.2.1
44
numpy>=1.21.0,<=1.23.5 # np.bool was removed in 1.24.0 which was used in openvino runtime

0 commit comments

Comments
 (0)