cross-domain-saliency-maps 0.0.4__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.
- cross_domain_saliency_maps-0.0.4/.github/workflows/python-publish.yml +42 -0
- cross_domain_saliency_maps-0.0.4/CITATION.cff +17 -0
- cross_domain_saliency_maps-0.0.4/LICENSE +674 -0
- cross_domain_saliency_maps-0.0.4/PKG-INFO +107 -0
- cross_domain_saliency_maps-0.0.4/README.md +91 -0
- cross_domain_saliency_maps-0.0.4/examples/seizure_detection.ipynb +1111 -0
- cross_domain_saliency_maps-0.0.4/examples/tensorflow_demo.ipynb +623 -0
- cross_domain_saliency_maps-0.0.4/examples/torch_demo.ipynb +691 -0
- cross_domain_saliency_maps-0.0.4/figures/cross_domain_saliency_maps_banner.svg +2113 -0
- cross_domain_saliency_maps-0.0.4/pyproject.toml +26 -0
- cross_domain_saliency_maps-0.0.4/src/cross_domain_saliency_maps/__init__.py +0 -0
- cross_domain_saliency_maps-0.0.4/src/cross_domain_saliency_maps/tensorflow_ig/__init__.py +0 -0
- cross_domain_saliency_maps-0.0.4/src/cross_domain_saliency_maps/tensorflow_ig/cross_domain_integrated_gradients.py +152 -0
- cross_domain_saliency_maps-0.0.4/src/cross_domain_saliency_maps/tensorflow_ig/domain_transforms.py +207 -0
- cross_domain_saliency_maps-0.0.4/src/cross_domain_saliency_maps/torch_ig/__init__.py +0 -0
- cross_domain_saliency_maps-0.0.4/src/cross_domain_saliency_maps/torch_ig/cross_domain_integrated_gradients.py +162 -0
- cross_domain_saliency_maps-0.0.4/src/cross_domain_saliency_maps/torch_ig/domain_transforms.py +208 -0
@@ -0,0 +1,42 @@
|
|
1
|
+
# This workflow will upload a Python Package using Twine when a release is created
|
2
|
+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
|
3
|
+
|
4
|
+
# This workflow uses actions that are not certified by GitHub.
|
5
|
+
# They are provided by a third-party and are governed by
|
6
|
+
# separate terms of service, privacy policy, and support
|
7
|
+
# documentation.
|
8
|
+
|
9
|
+
name: Upload Python Package
|
10
|
+
|
11
|
+
on:
|
12
|
+
release:
|
13
|
+
types: [published]
|
14
|
+
|
15
|
+
permissions:
|
16
|
+
contents: read
|
17
|
+
|
18
|
+
jobs:
|
19
|
+
build-n-publish:
|
20
|
+
name: Build and publish Python 🐍 distributions 📦 to PyPI
|
21
|
+
runs-on: ubuntu-latest
|
22
|
+
environment: release
|
23
|
+
permissions:
|
24
|
+
# IMPORTANT: this permission is mandatory for trusted publishing
|
25
|
+
id-token: write
|
26
|
+
|
27
|
+
steps:
|
28
|
+
- uses: actions/checkout@v3
|
29
|
+
- name: Set up Python
|
30
|
+
uses: actions/setup-python@v4
|
31
|
+
with:
|
32
|
+
python-version: "3.x"
|
33
|
+
|
34
|
+
- name: Install pypa/build
|
35
|
+
run: |
|
36
|
+
python3 -m pip install build --user
|
37
|
+
- name: Build a binary wheel and a source tarball
|
38
|
+
run: |
|
39
|
+
python3 -m build --sdist --wheel --outdir dist/ .
|
40
|
+
|
41
|
+
- name: Publish distribution 📦 to PyPI
|
42
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
@@ -0,0 +1,17 @@
|
|
1
|
+
cff-version: 1.2.0
|
2
|
+
message: "If you use this software, please cite as below."
|
3
|
+
preferred-citation:
|
4
|
+
type: article
|
5
|
+
title: "Time series saliency maps: explaining models across multiple domains"
|
6
|
+
authors:
|
7
|
+
- family-names: Kechris
|
8
|
+
given-names: Christodoulos
|
9
|
+
- family-names: Dan
|
10
|
+
given-names: Jonathan
|
11
|
+
- family-names: Atienza
|
12
|
+
given-names: David
|
13
|
+
journal: "arXiv"
|
14
|
+
year: 2025
|
15
|
+
doi: "10.48550/arXiv.2505.13100"
|
16
|
+
url: "https://arxiv.org/abs/2505.13100"
|
17
|
+
date-published: "2025-05-19"
|