File tree 4 files changed +7
-5
lines changed
4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 8
8
* Support OpenVINO IR (.xml) / ONNX (.onnx) model files for ` Explainer `
9
9
* Enable AISE method: Adaptive Input Sampling for Explanation of Black-box Models
10
10
* 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
12
12
* Add saliency map visualization with explanation.plot()
13
13
* Enable flexible naming for saved saliency maps and include confidence scores
14
14
* Add XAI method documentation
32
32
* Add documentation per-method, including summary and usage guide by @negvet in https://github.com/openvinotoolkit/openvino_xai/pull/63
33
33
* Support Pytorch models for ` insert_xai ` API by @goodsong81 in https://github.com/openvinotoolkit/openvino_xai/pull/61
34
34
* 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
35
36
36
37
### Known Issues
37
38
Original file line number Diff line number Diff line change 8
8
[ Install] ( #installation ) •
9
9
[ Quick Start] ( #quick-start ) •
10
10
[ 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 )
12
12
13
13
![ 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/ )
15
15
[ ![ codecov] ( https://codecov.io/gh/openvinotoolkit/openvino_xai/graph/badge.svg?token=NR0Z0CWDK9 )] ( https://codecov.io/gh/openvinotoolkit/openvino_xai )
16
16
[ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )] ( https://opensource.org/licenses/Apache-2.0 )
17
17
[ ![ 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):
57
57
* Support OpenVINO IR (.xml) / ONNX (.onnx) model files for ` Explainer `
58
58
* Enable AISE method: Adaptive Input Sampling for Explanation of Black-box Models
59
59
* 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
61
61
* Add saliency map visualization with explanation.plot()
62
62
* Enable flexible naming for saved saliency maps and include confidence scores
63
63
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
9
9
name = " openvino_xai"
10
10
version = " 1.1.0rc0"
11
11
dependencies = [
12
- " openvino-dev==2024.3 " ,
12
+ " openvino-dev==2024.4 " ,
13
13
" opencv-python" ,
14
14
" scipy" ,
15
15
" numpy==1.*" ,
Original file line number Diff line number Diff line change 32
32
SUPPORTED_BUT_FAILED_BY_BB_MODELS = {}
33
33
34
34
NOT_SUPPORTED_BY_BB_MODELS = {
35
+ "convit" : "RuntimeError: Couldn't get TorchScript module by tracing." ,
35
36
"repvit" : "urllib.error.HTTPError: HTTP Error 404: Not Found" ,
36
37
"tf_efficientnet_cc" : "torch.onnx.errors.SymbolicValueError: Unsupported: ONNX export of convolution for kernel of unknown shape." ,
37
38
"vit_base_r50_s16_224.orig_in21k" : "RuntimeError: Error(s) in loading state_dict for VisionTransformer" ,
You can’t perform that action at this time.
0 commit comments