Skip to content

Commit eba1a1a

Browse files
author
Songki Choi
committed
Bump-up version to 1.1.1
- Update versions - Update documents Signed-off-by: Songki Choi <[email protected]>
1 parent ab20e9d commit eba1a1a

File tree

6 files changed

+30
-18
lines changed

6 files changed

+30
-18
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## \[v1.1.1\]
6+
7+
### Bug fixes
8+
9+
- Add missing OpenVINO dependency in exportable code requirement
10+
511
## \[v1.1.0\]
612

713
### New features

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.1.0/guide/get_started/quick_start_guide/index.html)
9-
[Documentation](https://openvinotoolkit.github.io/training_extensions/releases/1.1.0/index.html)
8+
[Quick Start](https://openvinotoolkit.github.io/training_extensions/releases/1.1.1/guide/get_started/quick_start_guide/index.html)
9+
[Documentation](https://openvinotoolkit.github.io/training_extensions/releases/1.1.1/index.html)
1010
[License](#license)
1111

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

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

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

6060
- **Distributed training** to accelerate the training process when you have multiple GPUs
6161
- **Half-precision training** to save GPUs memory and use larger batch sizes
62-
- Integrated, efficient [hyper-parameter optimization module (HPO)](https://openvinotoolkit.github.io/training_extensions/releases/1.1.0/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.
62+
- Integrated, efficient [hyper-parameter optimization module (HPO)](https://openvinotoolkit.github.io/training_extensions/releases/1.1.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.
6363
- 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.
64-
- [Auto-configuration functionality](https://openvinotoolkit.github.io/training_extensions/releases/1.1.0/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.
64+
- [Auto-configuration functionality](https://openvinotoolkit.github.io/training_extensions/releases/1.1.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.
6565

6666
---
6767

6868
## Getting Started
6969

7070
### Installation
7171

72-
Please refer to the [installation guide](https://openvinotoolkit.github.io/training_extensions/releases/1.1.0/guide/get_started/quick_start_guide/installation.html).
72+
Please refer to the [installation guide](https://openvinotoolkit.github.io/training_extensions/releases/1.1.1/guide/get_started/quick_start_guide/installation.html).
7373

7474
### OpenVINO™ Training Extensions CLI Commands
7575

@@ -83,7 +83,7 @@ Please refer to the [installation guide](https://openvinotoolkit.github.io/train
8383
- `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.
8484
- `otx explain` runs explain algorithm on the provided data and outputs images with the saliency maps to show how your model makes predictions.
8585

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

8888
---
8989

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
project = 'OpenVINO™ Training Extensions'
1717
copyright = '2023, OpenVINO™ Training Extensions Contributors'
1818
author = 'OpenVINO™ Training Extensions Contributors'
19-
release = '1.0.0'
19+
release = '1.1.1'
2020

2121
# -- General configuration --------------------------------------------------- #
2222

docs/source/guide/release_notes/index.rst

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ Release Notes
44
.. toctree::
55
:maxdepth: 2
66

7+
*************
8+
v1.1.0 (1Q23)
9+
*************
10+
11+
- Add FP16 IR export support
12+
- Add in-memory caching in dataloader
13+
- Add MoViNet template for action classification
14+
- Add Semi-SL multilabel classification algorithm
15+
- Integrate multi-gpu training for semi-supervised learning and self-supervised learning
16+
- Add train-type parameter to otx train
17+
- Add embedding of inference configuration to IR for classification
18+
- Enable VOC dataset in OTX
19+
- Add mmcls.VisionTransformer backbone support
20+
721
*************
822
v1.0.0 (1Q23)
923
*************
@@ -15,11 +29,3 @@ v1.0.0 (1Q23)
1529
- Introduce ``otx build`` command to customize task or model configurations
1630
- Automatic algorithm selection for the ``otx train`` command using the given input dataset
1731
- Adaptation of `Datumaro <https://github.com/openvinotoolkit/datumaro>`_ component as a dataset interface
18-
- Integrate hyper-parameter optimizations
19-
- Support action recognition task
20-
21-
*************
22-
v1.1+ (2Q23)
23-
*************
24-
25-
- In planning

otx/__init__.py

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

6-
__version__ = "1.1.0"
6+
__version__ = "1.1.1"
77
# NOTE: Sync w/ otx/api/usecases/exportable_code/demo/requirements.txt on release
88

99
MMCLS_AVAILABLE = True
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.1.0
3+
otx==1.1.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)