You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 17, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+47-35Lines changed: 47 additions & 35 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,13 @@
1
+
# PROJECT NOT UNDER ACTIVE MANAGEMENT
2
+
3
+
This project will no longer be maintained by Intel.
4
+
Intel has ceased development and contributions including, but not limited to, maintenance, bug fixes, new releases, or updates, to this project.
5
+
Intel no longer accepts patches to this project.
6
+
If you have an ongoing need to use this project, are interested in independently developing it, or would like to maintain patches for the open source software community, please create your own fork of this project.
7
+
1
8
<divalign="center">
2
9
3
-
# OpenVINO™ Explainable AI Toolkit - OpenVINO XAI
10
+
##OpenVINO™ Explainable AI Toolkit - OpenVINO XAI
4
11
5
12
---
6
13
@@ -53,30 +60,30 @@ for i, image in enumerate(images):
53
60
54
61
### What's new in v1.1.0
55
62
56
-
* Support PyTorch models with `insert_xai()` API for saliency map generation on PyTorch / ONNX runtime
57
-
* Support OpenVINO IR (.xml) / ONNX (.onnx) model files for `Explainer`
58
-
* Enable AISE method: Adaptive Input Sampling for Explanation of Black-box Models
59
-
* Add Pointing Game, Insertion-Deletion AUC and ADCC quality metrics for saliency maps
60
-
* Upgrade OpenVINO to 2024.4.0
61
-
* Add saliency map visualization with explanation.plot()
62
-
* Enable flexible naming for saved saliency maps and include confidence scores
63
+
- Support PyTorch models with `insert_xai()` API for saliency map generation on PyTorch / ONNX runtime
64
+
- Support OpenVINO IR (.xml) / ONNX (.onnx) model files for `Explainer`
65
+
- Enable AISE method: Adaptive Input Sampling for Explanation of Black-box Models
66
+
- Add Pointing Game, Insertion-Deletion AUC and ADCC quality metrics for saliency maps
67
+
- Upgrade OpenVINO to 2024.4.0
68
+
- Add saliency map visualization with explanation.plot()
69
+
- Enable flexible naming for saved saliency maps and include confidence scores
63
70
64
71
Please refer to the [change logs](CHANGELOG.md) for the full release history.
65
72
66
73
### Supported XAI methods
67
74
68
-
At the moment, *Image Classification* and *Object Detection* tasks are supported for the *Computer Vision* domain.
69
-
*Black-Box* (model agnostic but slow) methods and *White-Box* (model specific but fast) methods are supported:
75
+
At the moment, _Image Classification_ and _Object Detection_ tasks are supported for the _Computer Vision_ domain.
76
+
_Black-Box_ (model agnostic but slow) methods and _White-Box_ (model specific but fast) methods are supported:
See more method comparison at the [User Guide](docs/source/user-guide.md).
82
89
@@ -86,16 +93,16 @@ Most of CNNs and Transformer models from [Pytorch Image Models (timm)](https://g
86
93
87
94
Please refer to the following known issues for unsupported models and reasons.
88
95
89
-
*[Runtime error from ONNX / OpenVINO IR models while conversion or inference for XAI (#29)](https://github.com/openvinotoolkit/openvino_xai/issues/29)
90
-
*[Models not supported by white box XAI methods (#30)](https://github.com/openvinotoolkit/openvino_xai/issues/30)
96
+
-[Runtime error from ONNX / OpenVINO IR models while conversion or inference for XAI (#29)](https://github.com/openvinotoolkit/openvino_xai/issues/29)
97
+
-[Models not supported by white box XAI methods (#30)](https://github.com/openvinotoolkit/openvino_xai/issues/30)
91
98
92
-
> **_NOTE:_**GenAI / LLMs would be also supported incrementally in the upcoming releases.
99
+
> **_NOTE:_** GenAI / LLMs would be also supported incrementally in the upcoming releases.
93
100
94
101
---
95
102
96
103
## Installation
97
104
98
-
> **_NOTE:_**OpenVINO XAI works on Python 3.10 or higher
105
+
> **_NOTE:_** OpenVINO XAI works on Python 3.10 or higher
99
106
100
107
<details>
101
108
<summary>Set up environment</summary>
@@ -107,6 +114,7 @@ python3.10 -m venv .ovxai
107
114
# Activate virtual env.
108
115
source .ovxai/bin/activate
109
116
```
117
+
110
118
</details>
111
119
112
120
Install from PyPI package
@@ -130,6 +138,7 @@ cd openvino_xai
130
138
# Editable mode (for development):
131
139
pip install -e .[dev]
132
140
```
141
+
133
142
</details>
134
143
135
144
<details>
@@ -141,7 +150,9 @@ You can enjoy the PyTorch XAI feature if the PyTorch is installed along with the
0 commit comments