signal-grad-cam 0.0.1__tar.gz → 0.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of signal-grad-cam might be problematic. Click here for more details.
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/PKG-INFO +20 -20
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/README.md +19 -19
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/setup.py +1 -1
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam.egg-info/PKG-INFO +20 -20
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/LICENSE +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/pyproject.toml +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/setup.cfg +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam/__init__.py +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam/cam_builder.py +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam/pytorch_cam_builder.py +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam/tensorflow_cam_builder.py +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam.egg-info/SOURCES.txt +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam.egg-info/dependency_links.txt +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam.egg-info/not-zip-safe +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam.egg-info/requires.txt +0 -0
- {signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: signal_grad_cam
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: SignalGrad-CAM aims at generalising Grad-CAM to one-dimensional applications, while enhancing usability and efficiency.
|
|
5
5
|
Home-page: https://github.com/samuelepe11/signal_grad_cam
|
|
6
6
|
Author: Samuele Pe
|
|
@@ -34,10 +34,10 @@ Requires-Dist: tensorflow
|
|
|
34
34
|
<h3 align="center">SignalGrad-CAM aims at generalising Grad-CAM to one-dimensional applications, while enhancing usability and efficiency.</h3>
|
|
35
35
|
|
|
36
36
|
<p align="center">
|
|
37
|
-
<a href="https://github.com/
|
|
37
|
+
<a href="https://github.com/bmi-labmedinfo/signal_grad_cam"><strong>Explore the docs</strong></a>
|
|
38
38
|
<br />
|
|
39
39
|
<br />
|
|
40
|
-
<a href="https://github.com/
|
|
40
|
+
<a href="https://github.com/bmi-labmedinfo/signal_grad_cam/issues">Report Bug or Request Feature</a>
|
|
41
41
|
</p>
|
|
42
42
|
</div>
|
|
43
43
|
|
|
@@ -76,7 +76,7 @@ Requires-Dist: tensorflow
|
|
|
76
76
|
```
|
|
77
77
|
2. Install SignalGrad-CAM through pip
|
|
78
78
|
```sh
|
|
79
|
-
pip install
|
|
79
|
+
pip install signal-grad-cam
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
<p align="right"><a href="#top">Back To Top</a></p>
|
|
@@ -153,9 +153,9 @@ cam_builder.overlapped_output_display(data_list=data_list, data_labels=data_labe
|
|
|
153
153
|
results_dir="path_to_your_result_directoory", data_sampling_freq=25, dt=1)
|
|
154
154
|
```
|
|
155
155
|
|
|
156
|
-
You can also check the python scripts [here](https://github.com/
|
|
156
|
+
You can also check the python scripts [here](https://github.com/bmi-labmedinfo/signal_grad_cam/examples).
|
|
157
157
|
|
|
158
|
-
See the [open issues](https://github.com/
|
|
158
|
+
See the [open issues](https://github.com/bmi-labmedinfo/signal_grad_cam/issues) for a full list of proposed features (and known issues).
|
|
159
159
|
|
|
160
160
|
<p align="right"><a href="#top">Back To Top</a></p>
|
|
161
161
|
|
|
@@ -166,7 +166,7 @@ If you use the SignalGrad-CAM software for your projects, please cite it as:
|
|
|
166
166
|
@software{Pe_SignalGrad_CAM_2025,
|
|
167
167
|
author = {Pe, Samuele and Buonocore, Tommaso Mario and Giovanna, Nicora and Enea, Parimbelli},
|
|
168
168
|
title = {{SignalGrad-CAM}},
|
|
169
|
-
url = {https://github.com/
|
|
169
|
+
url = {https://github.com/bmi-labmedinfo/signal_grad_cam},
|
|
170
170
|
version = {0.0.1},
|
|
171
171
|
year = {2025}
|
|
172
172
|
}
|
|
@@ -179,9 +179,9 @@ If you use the SignalGrad-CAM software for your projects, please cite it as:
|
|
|
179
179
|
|
|
180
180
|
* **Repository maintainer**: Samuele Pe [![Gmail][gmail-shield]][gmail-url] [![LinkedIn][linkedin-shield]][linkedin-url]
|
|
181
181
|
|
|
182
|
-
* **Project Link**: [https://github.com/
|
|
182
|
+
* **Project Link**: [https://github.com/bmi-labmedinfo/signal_grad_cam](https://github.com/bmi-labmedinfo/signal_grad_cam)
|
|
183
183
|
|
|
184
|
-
* **Package Link**: [https://
|
|
184
|
+
* **Package Link**: [https://pypi.org/project/signal-grad-cam/](https://pypi.org/project/signal-grad-cam/)
|
|
185
185
|
|
|
186
186
|
<p align="right"><a href="#top">Back To Top</a></p>
|
|
187
187
|
|
|
@@ -195,29 +195,29 @@ Distributed under MIT License. See `LICENSE` for more information.
|
|
|
195
195
|
|
|
196
196
|
<!-- MARKDOWN LINKS -->
|
|
197
197
|
|
|
198
|
-
[contributors-shield]: https://img.shields.io/github/contributors/
|
|
198
|
+
[contributors-shield]: https://img.shields.io/github/contributors/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
199
199
|
|
|
200
|
-
[contributors-url]: https://github.com/
|
|
200
|
+
[contributors-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/graphs/contributors
|
|
201
201
|
|
|
202
202
|
[status-shield]: https://img.shields.io/badge/Status-pre--release-blue
|
|
203
203
|
|
|
204
|
-
[status-url]: https://github.com/
|
|
204
|
+
[status-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/releases
|
|
205
205
|
|
|
206
|
-
[forks-shield]: https://img.shields.io/github/forks/
|
|
206
|
+
[forks-shield]: https://img.shields.io/github/forks/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
207
207
|
|
|
208
|
-
[forks-url]: https://github.com/
|
|
208
|
+
[forks-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/network/members
|
|
209
209
|
|
|
210
|
-
[stars-shield]: https://img.shields.io/github/stars/
|
|
210
|
+
[stars-shield]: https://img.shields.io/github/stars/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
211
211
|
|
|
212
|
-
[stars-url]: https://github.com/
|
|
212
|
+
[stars-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/stargazers
|
|
213
213
|
|
|
214
|
-
[issues-shield]: https://img.shields.io/github/issues/
|
|
214
|
+
[issues-shield]: https://img.shields.io/github/issues/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
215
215
|
|
|
216
|
-
[issues-url]: https://github.com/
|
|
216
|
+
[issues-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/issues
|
|
217
217
|
|
|
218
|
-
[license-shield]: https://img.shields.io/github/license/
|
|
218
|
+
[license-shield]: https://img.shields.io/github/license/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
219
219
|
|
|
220
|
-
[license-url]: https://github.com/
|
|
220
|
+
[license-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/LICENSE
|
|
221
221
|
|
|
222
222
|
[linkedin-shield]: https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white
|
|
223
223
|
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
<h3 align="center">SignalGrad-CAM aims at generalising Grad-CAM to one-dimensional applications, while enhancing usability and efficiency.</h3>
|
|
13
13
|
|
|
14
14
|
<p align="center">
|
|
15
|
-
<a href="https://github.com/
|
|
15
|
+
<a href="https://github.com/bmi-labmedinfo/signal_grad_cam"><strong>Explore the docs</strong></a>
|
|
16
16
|
<br />
|
|
17
17
|
<br />
|
|
18
|
-
<a href="https://github.com/
|
|
18
|
+
<a href="https://github.com/bmi-labmedinfo/signal_grad_cam/issues">Report Bug or Request Feature</a>
|
|
19
19
|
</p>
|
|
20
20
|
</div>
|
|
21
21
|
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
```
|
|
55
55
|
2. Install SignalGrad-CAM through pip
|
|
56
56
|
```sh
|
|
57
|
-
pip install
|
|
57
|
+
pip install signal-grad-cam
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
<p align="right"><a href="#top">Back To Top</a></p>
|
|
@@ -131,9 +131,9 @@ cam_builder.overlapped_output_display(data_list=data_list, data_labels=data_labe
|
|
|
131
131
|
results_dir="path_to_your_result_directoory", data_sampling_freq=25, dt=1)
|
|
132
132
|
```
|
|
133
133
|
|
|
134
|
-
You can also check the python scripts [here](https://github.com/
|
|
134
|
+
You can also check the python scripts [here](https://github.com/bmi-labmedinfo/signal_grad_cam/examples).
|
|
135
135
|
|
|
136
|
-
See the [open issues](https://github.com/
|
|
136
|
+
See the [open issues](https://github.com/bmi-labmedinfo/signal_grad_cam/issues) for a full list of proposed features (and known issues).
|
|
137
137
|
|
|
138
138
|
<p align="right"><a href="#top">Back To Top</a></p>
|
|
139
139
|
|
|
@@ -144,7 +144,7 @@ If you use the SignalGrad-CAM software for your projects, please cite it as:
|
|
|
144
144
|
@software{Pe_SignalGrad_CAM_2025,
|
|
145
145
|
author = {Pe, Samuele and Buonocore, Tommaso Mario and Giovanna, Nicora and Enea, Parimbelli},
|
|
146
146
|
title = {{SignalGrad-CAM}},
|
|
147
|
-
url = {https://github.com/
|
|
147
|
+
url = {https://github.com/bmi-labmedinfo/signal_grad_cam},
|
|
148
148
|
version = {0.0.1},
|
|
149
149
|
year = {2025}
|
|
150
150
|
}
|
|
@@ -157,9 +157,9 @@ If you use the SignalGrad-CAM software for your projects, please cite it as:
|
|
|
157
157
|
|
|
158
158
|
* **Repository maintainer**: Samuele Pe [![Gmail][gmail-shield]][gmail-url] [![LinkedIn][linkedin-shield]][linkedin-url]
|
|
159
159
|
|
|
160
|
-
* **Project Link**: [https://github.com/
|
|
160
|
+
* **Project Link**: [https://github.com/bmi-labmedinfo/signal_grad_cam](https://github.com/bmi-labmedinfo/signal_grad_cam)
|
|
161
161
|
|
|
162
|
-
* **Package Link**: [https://
|
|
162
|
+
* **Package Link**: [https://pypi.org/project/signal-grad-cam/](https://pypi.org/project/signal-grad-cam/)
|
|
163
163
|
|
|
164
164
|
<p align="right"><a href="#top">Back To Top</a></p>
|
|
165
165
|
|
|
@@ -173,29 +173,29 @@ Distributed under MIT License. See `LICENSE` for more information.
|
|
|
173
173
|
|
|
174
174
|
<!-- MARKDOWN LINKS -->
|
|
175
175
|
|
|
176
|
-
[contributors-shield]: https://img.shields.io/github/contributors/
|
|
176
|
+
[contributors-shield]: https://img.shields.io/github/contributors/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
177
177
|
|
|
178
|
-
[contributors-url]: https://github.com/
|
|
178
|
+
[contributors-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/graphs/contributors
|
|
179
179
|
|
|
180
180
|
[status-shield]: https://img.shields.io/badge/Status-pre--release-blue
|
|
181
181
|
|
|
182
|
-
[status-url]: https://github.com/
|
|
182
|
+
[status-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/releases
|
|
183
183
|
|
|
184
|
-
[forks-shield]: https://img.shields.io/github/forks/
|
|
184
|
+
[forks-shield]: https://img.shields.io/github/forks/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
185
185
|
|
|
186
|
-
[forks-url]: https://github.com/
|
|
186
|
+
[forks-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/network/members
|
|
187
187
|
|
|
188
|
-
[stars-shield]: https://img.shields.io/github/stars/
|
|
188
|
+
[stars-shield]: https://img.shields.io/github/stars/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
189
189
|
|
|
190
|
-
[stars-url]: https://github.com/
|
|
190
|
+
[stars-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/stargazers
|
|
191
191
|
|
|
192
|
-
[issues-shield]: https://img.shields.io/github/issues/
|
|
192
|
+
[issues-shield]: https://img.shields.io/github/issues/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
193
193
|
|
|
194
|
-
[issues-url]: https://github.com/
|
|
194
|
+
[issues-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/issues
|
|
195
195
|
|
|
196
|
-
[license-shield]: https://img.shields.io/github/license/
|
|
196
|
+
[license-shield]: https://img.shields.io/github/license/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
197
197
|
|
|
198
|
-
[license-url]: https://github.com/
|
|
198
|
+
[license-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/LICENSE
|
|
199
199
|
|
|
200
200
|
[linkedin-shield]: https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white
|
|
201
201
|
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r") as f:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="signal_grad_cam",
|
|
8
|
-
version="0.0.
|
|
8
|
+
version="0.0.2",
|
|
9
9
|
description="SignalGrad-CAM aims at generalising Grad-CAM to one-dimensional applications, while enhancing usability"
|
|
10
10
|
" and efficiency.",
|
|
11
11
|
keywords="XAI, class activation maps, CNN, time series",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: signal-grad-cam
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: SignalGrad-CAM aims at generalising Grad-CAM to one-dimensional applications, while enhancing usability and efficiency.
|
|
5
5
|
Home-page: https://github.com/samuelepe11/signal_grad_cam
|
|
6
6
|
Author: Samuele Pe
|
|
@@ -34,10 +34,10 @@ Requires-Dist: tensorflow
|
|
|
34
34
|
<h3 align="center">SignalGrad-CAM aims at generalising Grad-CAM to one-dimensional applications, while enhancing usability and efficiency.</h3>
|
|
35
35
|
|
|
36
36
|
<p align="center">
|
|
37
|
-
<a href="https://github.com/
|
|
37
|
+
<a href="https://github.com/bmi-labmedinfo/signal_grad_cam"><strong>Explore the docs</strong></a>
|
|
38
38
|
<br />
|
|
39
39
|
<br />
|
|
40
|
-
<a href="https://github.com/
|
|
40
|
+
<a href="https://github.com/bmi-labmedinfo/signal_grad_cam/issues">Report Bug or Request Feature</a>
|
|
41
41
|
</p>
|
|
42
42
|
</div>
|
|
43
43
|
|
|
@@ -76,7 +76,7 @@ Requires-Dist: tensorflow
|
|
|
76
76
|
```
|
|
77
77
|
2. Install SignalGrad-CAM through pip
|
|
78
78
|
```sh
|
|
79
|
-
pip install
|
|
79
|
+
pip install signal-grad-cam
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
<p align="right"><a href="#top">Back To Top</a></p>
|
|
@@ -153,9 +153,9 @@ cam_builder.overlapped_output_display(data_list=data_list, data_labels=data_labe
|
|
|
153
153
|
results_dir="path_to_your_result_directoory", data_sampling_freq=25, dt=1)
|
|
154
154
|
```
|
|
155
155
|
|
|
156
|
-
You can also check the python scripts [here](https://github.com/
|
|
156
|
+
You can also check the python scripts [here](https://github.com/bmi-labmedinfo/signal_grad_cam/examples).
|
|
157
157
|
|
|
158
|
-
See the [open issues](https://github.com/
|
|
158
|
+
See the [open issues](https://github.com/bmi-labmedinfo/signal_grad_cam/issues) for a full list of proposed features (and known issues).
|
|
159
159
|
|
|
160
160
|
<p align="right"><a href="#top">Back To Top</a></p>
|
|
161
161
|
|
|
@@ -166,7 +166,7 @@ If you use the SignalGrad-CAM software for your projects, please cite it as:
|
|
|
166
166
|
@software{Pe_SignalGrad_CAM_2025,
|
|
167
167
|
author = {Pe, Samuele and Buonocore, Tommaso Mario and Giovanna, Nicora and Enea, Parimbelli},
|
|
168
168
|
title = {{SignalGrad-CAM}},
|
|
169
|
-
url = {https://github.com/
|
|
169
|
+
url = {https://github.com/bmi-labmedinfo/signal_grad_cam},
|
|
170
170
|
version = {0.0.1},
|
|
171
171
|
year = {2025}
|
|
172
172
|
}
|
|
@@ -179,9 +179,9 @@ If you use the SignalGrad-CAM software for your projects, please cite it as:
|
|
|
179
179
|
|
|
180
180
|
* **Repository maintainer**: Samuele Pe [![Gmail][gmail-shield]][gmail-url] [![LinkedIn][linkedin-shield]][linkedin-url]
|
|
181
181
|
|
|
182
|
-
* **Project Link**: [https://github.com/
|
|
182
|
+
* **Project Link**: [https://github.com/bmi-labmedinfo/signal_grad_cam](https://github.com/bmi-labmedinfo/signal_grad_cam)
|
|
183
183
|
|
|
184
|
-
* **Package Link**: [https://
|
|
184
|
+
* **Package Link**: [https://pypi.org/project/signal-grad-cam/](https://pypi.org/project/signal-grad-cam/)
|
|
185
185
|
|
|
186
186
|
<p align="right"><a href="#top">Back To Top</a></p>
|
|
187
187
|
|
|
@@ -195,29 +195,29 @@ Distributed under MIT License. See `LICENSE` for more information.
|
|
|
195
195
|
|
|
196
196
|
<!-- MARKDOWN LINKS -->
|
|
197
197
|
|
|
198
|
-
[contributors-shield]: https://img.shields.io/github/contributors/
|
|
198
|
+
[contributors-shield]: https://img.shields.io/github/contributors/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
199
199
|
|
|
200
|
-
[contributors-url]: https://github.com/
|
|
200
|
+
[contributors-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/graphs/contributors
|
|
201
201
|
|
|
202
202
|
[status-shield]: https://img.shields.io/badge/Status-pre--release-blue
|
|
203
203
|
|
|
204
|
-
[status-url]: https://github.com/
|
|
204
|
+
[status-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/releases
|
|
205
205
|
|
|
206
|
-
[forks-shield]: https://img.shields.io/github/forks/
|
|
206
|
+
[forks-shield]: https://img.shields.io/github/forks/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
207
207
|
|
|
208
|
-
[forks-url]: https://github.com/
|
|
208
|
+
[forks-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/network/members
|
|
209
209
|
|
|
210
|
-
[stars-shield]: https://img.shields.io/github/stars/
|
|
210
|
+
[stars-shield]: https://img.shields.io/github/stars/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
211
211
|
|
|
212
|
-
[stars-url]: https://github.com/
|
|
212
|
+
[stars-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/stargazers
|
|
213
213
|
|
|
214
|
-
[issues-shield]: https://img.shields.io/github/issues/
|
|
214
|
+
[issues-shield]: https://img.shields.io/github/issues/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
215
215
|
|
|
216
|
-
[issues-url]: https://github.com/
|
|
216
|
+
[issues-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/issues
|
|
217
217
|
|
|
218
|
-
[license-shield]: https://img.shields.io/github/license/
|
|
218
|
+
[license-shield]: https://img.shields.io/github/license/bmi-labmedinfo/signal_grad_cam.svg?style=for-the-badge
|
|
219
219
|
|
|
220
|
-
[license-url]: https://github.com/
|
|
220
|
+
[license-url]: https://github.com/bmi-labmedinfo/signal_grad_cam/LICENSE
|
|
221
221
|
|
|
222
222
|
[linkedin-shield]: https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white
|
|
223
223
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{signal_grad_cam-0.0.1 → signal_grad_cam-0.0.2}/signal_grad_cam.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|