Skip to content

Commit 02eb95e

Browse files
author
Songki Choi
authored
Upgrade OpenVINO to 2024.4 (#72)
* Upgrade OpenVINO to 2024.4 * Update change log * Update func test xfail
1 parent 60b82d3 commit 02eb95e

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Support OpenVINO IR (.xml) / ONNX (.onnx) model files for `Explainer`
99
* Enable AISE method: Adaptive Input Sampling for Explanation of Black-box Models
1010
* Add Pointing Game, Insertion-Deletion AUC and ADCC quality metrics for saliency maps
11-
* Upgrade OpenVINO to 2024.3.0
11+
* Upgrade OpenVINO to 2024.4.0
1212
* Add saliency map visualization with explanation.plot()
1313
* Enable flexible naming for saved saliency maps and include confidence scores
1414
* Add XAI method documentation
@@ -32,6 +32,7 @@
3232
* Add documentation per-method, including summary and usage guide by @negvet in https://github.com/openvinotoolkit/openvino_xai/pull/63
3333
* Support Pytorch models for `insert_xai` API by @goodsong81 in https://github.com/openvinotoolkit/openvino_xai/pull/61
3434
* Auto-detect feature layer for Pytorch models by @goodsong81 in https://github.com/openvinotoolkit/openvino_xai/pull/64
35+
* Upgrade OpenVINO to 2024.4.0 by @goodsong81 in https://github.com/openvinotoolkit/openvino_xai/pull/72
3536

3637
### Known Issues
3738

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
[Install](#installation)
99
[Quick Start](#quick-start)
1010
[License](#license)
11-
[Documentation](https://openvinotoolkit.github.io/openvino_xai/releases/1.0.0)
11+
[Documentation](https://openvinotoolkit.github.io/openvino_xai/releases/1.1.0)
1212

1313
![Python](https://img.shields.io/badge/python-3.10%2B-green)
14-
[![OpenVINO](https://img.shields.io/badge/openvino-2024.2-purple)](https://pypi.org/project/openvino/)
14+
[![OpenVINO](https://img.shields.io/badge/openvino-2024.4-purple)](https://pypi.org/project/openvino/)
1515
[![codecov](https://codecov.io/gh/openvinotoolkit/openvino_xai/graph/badge.svg?token=NR0Z0CWDK9)](https://codecov.io/gh/openvinotoolkit/openvino_xai)
1616
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1717
[![PyPI](https://img.shields.io/pypi/v/openvino_xai)](https://pypi.org/project/openvino_xai)
@@ -57,7 +57,7 @@ for i, image in enumerate(images):
5757
* Support OpenVINO IR (.xml) / ONNX (.onnx) model files for `Explainer`
5858
* Enable AISE method: Adaptive Input Sampling for Explanation of Black-box Models
5959
* Add Pointing Game, Insertion-Deletion AUC and ADCC quality metrics for saliency maps
60-
* Upgrade OpenVINO to 2024.3.0
60+
* Upgrade OpenVINO to 2024.4.0
6161
* Add saliency map visualization with explanation.plot()
6262
* Enable flexible naming for saved saliency maps and include confidence scores
6363

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99
name = "openvino_xai"
1010
version = "1.1.0rc0"
1111
dependencies = [
12-
"openvino-dev==2024.3",
12+
"openvino-dev==2024.4",
1313
"opencv-python",
1414
"scipy",
1515
"numpy==1.*",

tests/func/test_classification_timm_full.py

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
SUPPORTED_BUT_FAILED_BY_BB_MODELS = {}
3333

3434
NOT_SUPPORTED_BY_BB_MODELS = {
35+
"convit": "RuntimeError: Couldn't get TorchScript module by tracing.",
3536
"repvit": "urllib.error.HTTPError: HTTP Error 404: Not Found",
3637
"tf_efficientnet_cc": "torch.onnx.errors.SymbolicValueError: Unsupported: ONNX export of convolution for kernel of unknown shape.",
3738
"vit_base_r50_s16_224.orig_in21k": "RuntimeError: Error(s) in loading state_dict for VisionTransformer",

0 commit comments

Comments
 (0)