dl-backtrace 0.0.2.dev3__py3-none-any.whl → 0.0.7__py3-none-any.whl
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 dl-backtrace might be problematic. Click here for more details.
- dl_backtrace/__init__.py +0 -1
- dl_backtrace/pytorch_backtrace/__init__.py +1 -2
- dl_backtrace/pytorch_backtrace/backtrace/__init__.py +4 -1
- dl_backtrace/pytorch_backtrace/backtrace/backtrace.py +639 -639
- dl_backtrace/pytorch_backtrace/backtrace/config.py +41 -41
- dl_backtrace/pytorch_backtrace/backtrace/utils/__init__.py +2 -0
- dl_backtrace/pytorch_backtrace/backtrace/utils/contrast.py +840 -840
- dl_backtrace/pytorch_backtrace/backtrace/utils/prop.py +746 -746
- dl_backtrace/tf_backtrace/__init__.py +1 -2
- dl_backtrace/tf_backtrace/backtrace/__init__.py +4 -1
- dl_backtrace/tf_backtrace/backtrace/backtrace.py +527 -527
- dl_backtrace/tf_backtrace/backtrace/config.py +41 -41
- dl_backtrace/tf_backtrace/backtrace/utils/__init__.py +2 -0
- dl_backtrace/tf_backtrace/backtrace/utils/contrast.py +834 -834
- dl_backtrace/tf_backtrace/backtrace/utils/prop.py +725 -725
- dl_backtrace/version.py +16 -16
- {dl_backtrace-0.0.2.dev3.dist-info → dl_backtrace-0.0.7.dist-info}/LICENSE +21 -21
- {dl_backtrace-0.0.2.dev3.dist-info → dl_backtrace-0.0.7.dist-info}/METADATA +52 -52
- dl_backtrace-0.0.7.dist-info/RECORD +21 -0
- dl_backtrace-0.0.2.dev3.dist-info/RECORD +0 -21
- {dl_backtrace-0.0.2.dev3.dist-info → dl_backtrace-0.0.7.dist-info}/WHEEL +0 -0
- {dl_backtrace-0.0.2.dev3.dist-info → dl_backtrace-0.0.7.dist-info}/top_level.txt +0 -0
dl_backtrace/version.py
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
# file generated by setuptools_scm
|
|
2
|
-
# don't change, don't track in version control
|
|
3
|
-
TYPE_CHECKING = False
|
|
4
|
-
if TYPE_CHECKING:
|
|
5
|
-
from typing import Tuple, Union
|
|
6
|
-
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
7
|
-
else:
|
|
8
|
-
VERSION_TUPLE = object
|
|
9
|
-
|
|
10
|
-
version: str
|
|
11
|
-
__version__: str
|
|
12
|
-
__version_tuple__: VERSION_TUPLE
|
|
13
|
-
version_tuple: VERSION_TUPLE
|
|
14
|
-
|
|
15
|
-
__version__ = version = '0.0.
|
|
16
|
-
__version_tuple__ = version_tuple = (0, 0,
|
|
1
|
+
# file generated by setuptools_scm
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
TYPE_CHECKING = False
|
|
4
|
+
if TYPE_CHECKING:
|
|
5
|
+
from typing import Tuple, Union
|
|
6
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
7
|
+
else:
|
|
8
|
+
VERSION_TUPLE = object
|
|
9
|
+
|
|
10
|
+
version: str
|
|
11
|
+
__version__: str
|
|
12
|
+
__version_tuple__: VERSION_TUPLE
|
|
13
|
+
version_tuple: VERSION_TUPLE
|
|
14
|
+
|
|
15
|
+
__version__ = version = '0.0.7'
|
|
16
|
+
__version_tuple__ = version_tuple = (0, 0, 7)
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2023 AryaXAI
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 AryaXAI
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: dl-backtrace
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary:
|
|
5
|
-
Home-page: https://xai.arya.ai/docs/introduction
|
|
6
|
-
License: MIT
|
|
7
|
-
Keywords: aryaxai,ML observability
|
|
8
|
-
Classifier: Intended Audience :: Developers
|
|
9
|
-
Classifier: Intended Audience :: Science/Research
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
-
Classifier: Operating System :: OS Independent
|
|
13
|
-
Requires-Python: >=3.0
|
|
14
|
-
Description-Content-Type: text/markdown
|
|
15
|
-
License-File: LICENSE
|
|
16
|
-
Requires-Dist: tensorflow ==2.14.0
|
|
17
|
-
|
|
18
|
-
# AryaXai-Backtrace
|
|
19
|
-
Backtrace module for Generating Explainability on Deep learning models
|
|
20
|
-
|
|
21
|
-
# Backtrace Module
|
|
22
|
-
[](LICENSE)
|
|
23
|
-
|
|
24
|
-
## Overview
|
|
25
|
-
|
|
26
|
-
The Backtrace Module is a powerful and patent-pending algorithm developed by AryaXAI for enhancing the explainability of AI models, particularly in the context of complex techniques like deep learning.
|
|
27
|
-
|
|
28
|
-
## Features
|
|
29
|
-
|
|
30
|
-
- **Explainability:** Gain deep insights into your AI models by using the Backtrace algorithm, providing multiple explanations for their decisions.
|
|
31
|
-
|
|
32
|
-
- **Consistency:** Ensure consistent and accurate explanations across different scenarios and use cases.
|
|
33
|
-
|
|
34
|
-
- **Mission-Critical Support:** Tailored for mission-critical AI use cases where transparency is paramount.
|
|
35
|
-
|
|
36
|
-
## Installation
|
|
37
|
-
|
|
38
|
-
To integrate the Backtrace Module into your project, follow these simple steps:
|
|
39
|
-
|
|
40
|
-
For more detailed examples and use cases, check out our documentation.
|
|
41
|
-
|
|
42
|
-
## Getting Started
|
|
43
|
-
If you are new to Backtrace, head over to our Getting Started Guide to quickly set up and use the module in your projects.
|
|
44
|
-
|
|
45
|
-
## Contributing
|
|
46
|
-
We welcome contributions from the community. To contribute, please follow our Contribution Guidelines.
|
|
47
|
-
|
|
48
|
-
## License
|
|
49
|
-
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
50
|
-
|
|
51
|
-
## Contact
|
|
52
|
-
For any inquiries or support, please contact AryaXAI Support.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: dl-backtrace
|
|
3
|
+
Version: 0.0.7
|
|
4
|
+
Summary: A python SDK for Deep Learning Backtrace
|
|
5
|
+
Home-page: https://xai.arya.ai/docs/introduction
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: aryaxai deep learning backtrace,ML observability
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Intended Audience :: Science/Research
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.0
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Requires-Dist: tensorflow ==2.14.0
|
|
17
|
+
|
|
18
|
+
# AryaXai-Backtrace
|
|
19
|
+
Backtrace module for Generating Explainability on Deep learning models
|
|
20
|
+
|
|
21
|
+
# Backtrace Module
|
|
22
|
+
[](LICENSE)
|
|
23
|
+
|
|
24
|
+
## Overview
|
|
25
|
+
|
|
26
|
+
The Backtrace Module is a powerful and patent-pending algorithm developed by AryaXAI for enhancing the explainability of AI models, particularly in the context of complex techniques like deep learning.
|
|
27
|
+
|
|
28
|
+
## Features
|
|
29
|
+
|
|
30
|
+
- **Explainability:** Gain deep insights into your AI models by using the Backtrace algorithm, providing multiple explanations for their decisions.
|
|
31
|
+
|
|
32
|
+
- **Consistency:** Ensure consistent and accurate explanations across different scenarios and use cases.
|
|
33
|
+
|
|
34
|
+
- **Mission-Critical Support:** Tailored for mission-critical AI use cases where transparency is paramount.
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
To integrate the Backtrace Module into your project, follow these simple steps:
|
|
39
|
+
|
|
40
|
+
For more detailed examples and use cases, check out our documentation.
|
|
41
|
+
|
|
42
|
+
## Getting Started
|
|
43
|
+
If you are new to Backtrace, head over to our Getting Started Guide to quickly set up and use the module in your projects.
|
|
44
|
+
|
|
45
|
+
## Contributing
|
|
46
|
+
We welcome contributions from the community. To contribute, please follow our Contribution Guidelines.
|
|
47
|
+
|
|
48
|
+
## License
|
|
49
|
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
50
|
+
|
|
51
|
+
## Contact
|
|
52
|
+
For any inquiries or support, please contact AryaXAI Support.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
dl_backtrace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
dl_backtrace/version.py,sha256=vZ9YJhtz2uaZyfeULJmmzg7nlru6jGE1i6ermqZWYAQ,411
|
|
3
|
+
dl_backtrace/pytorch_backtrace/__init__.py,sha256=TDhKQIj1INyQq7cqTvpjpnBDhoMeWSoqVdx_mPAV3Sw,24
|
|
4
|
+
dl_backtrace/pytorch_backtrace/backtrace/__init__.py,sha256=AuR7uMTbf7rrFl-9sMIQ3lQmhu_ATSFBZmfs7R66jAc,76
|
|
5
|
+
dl_backtrace/pytorch_backtrace/backtrace/backtrace.py,sha256=DJ6K0sA0dM524T_TLKznbPCzRxAhVOiRHf94xWHoMD4,28935
|
|
6
|
+
dl_backtrace/pytorch_backtrace/backtrace/config.py,sha256=ODrgOC74ojzGLnEto_ah-WPA8_MyRE7cZkZlU15239s,983
|
|
7
|
+
dl_backtrace/pytorch_backtrace/backtrace/utils/__init__.py,sha256=AQaFZ-afR0_oAaRp5pBqIxv7g_P07VeFZEgkcJ5ps2o,44
|
|
8
|
+
dl_backtrace/pytorch_backtrace/backtrace/utils/contrast.py,sha256=owsncnnz-j7UameRxx5uL9Q1AqOcA-uxhpyyfs0DqBw,32228
|
|
9
|
+
dl_backtrace/pytorch_backtrace/backtrace/utils/prop.py,sha256=dUWII4OSlkUOaLnYsutudDG56W_NisyYbgbQ6U3l-6A,26123
|
|
10
|
+
dl_backtrace/tf_backtrace/__init__.py,sha256=TDhKQIj1INyQq7cqTvpjpnBDhoMeWSoqVdx_mPAV3Sw,24
|
|
11
|
+
dl_backtrace/tf_backtrace/backtrace/__init__.py,sha256=AuR7uMTbf7rrFl-9sMIQ3lQmhu_ATSFBZmfs7R66jAc,76
|
|
12
|
+
dl_backtrace/tf_backtrace/backtrace/backtrace.py,sha256=NKZuqM58EpX9m5dkf5jzIt3Y1MA2w_a_N7NTBQ3tZMs,24824
|
|
13
|
+
dl_backtrace/tf_backtrace/backtrace/config.py,sha256=xbjCn6B7HGjy3QEErrJSDFylFrr85wNsB0oeMosOizE,978
|
|
14
|
+
dl_backtrace/tf_backtrace/backtrace/utils/__init__.py,sha256=AQaFZ-afR0_oAaRp5pBqIxv7g_P07VeFZEgkcJ5ps2o,44
|
|
15
|
+
dl_backtrace/tf_backtrace/backtrace/utils/contrast.py,sha256=p-0zjombtk_eyAMwtp4QMgTwKT7XTqib6WP0CK4pYP0,32130
|
|
16
|
+
dl_backtrace/tf_backtrace/backtrace/utils/prop.py,sha256=-h7nHEvsoEwfksHsT52VfnZy334DvqqP8g6fMFVNnAM,25670
|
|
17
|
+
dl_backtrace-0.0.7.dist-info/LICENSE,sha256=RTqAU0MFv1q3ZXKewNobKxIIPzRHgImom7e6ORV7X6o,1064
|
|
18
|
+
dl_backtrace-0.0.7.dist-info/METADATA,sha256=EeXbiobehF8Hepeu69J0WOC79LAl32hdJoAI-0mV6CY,1967
|
|
19
|
+
dl_backtrace-0.0.7.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
20
|
+
dl_backtrace-0.0.7.dist-info/top_level.txt,sha256=gvGVYScJfW6c4aO5WMo4Aqa6NLEfmLK7VWXVx_GeiIk,13
|
|
21
|
+
dl_backtrace-0.0.7.dist-info/RECORD,,
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
dl_backtrace/__init__.py,sha256=ivJNjSWuu-L9a8m8ltIyp2sxIKUDm8q-SUnvr6ti1yo,17
|
|
2
|
-
dl_backtrace/version.py,sha256=gMPX-0X8_5maqjKJkr-ih7JNN960Zr15aVOed6O307U,440
|
|
3
|
-
dl_backtrace/pytorch_backtrace/__init__.py,sha256=qDGNZLqFJ70_7S-P6GBAITt2DIaJ90B7d28DGmAhhoQ,124
|
|
4
|
-
dl_backtrace/pytorch_backtrace/backtrace/__init__.py,sha256=c4UlzqzSiZzEGQVrrnFzubn8YOM3krI8u9zFMd8fMPk,34
|
|
5
|
-
dl_backtrace/pytorch_backtrace/backtrace/backtrace.py,sha256=G5SO37A0BZifNncSe29QP97VcTyKD5VLMmbJjKywXzs,29574
|
|
6
|
-
dl_backtrace/pytorch_backtrace/backtrace/config.py,sha256=GfwU1kY3gjG3NKZQCRK83gUHA5aQ7eYRlWaRhLhQ4bc,1024
|
|
7
|
-
dl_backtrace/pytorch_backtrace/backtrace/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
dl_backtrace/pytorch_backtrace/backtrace/utils/contrast.py,sha256=8scFIkw3IHSAN8xohj6Xx1EZHG-j6vMVzGwqCJHiWLA,33068
|
|
9
|
-
dl_backtrace/pytorch_backtrace/backtrace/utils/prop.py,sha256=hs2ODIzQBtdrT0sBhffGUNkYTYAYR6saB2m3ccw5xUc,26869
|
|
10
|
-
dl_backtrace/tf_backtrace/__init__.py,sha256=nCQJh-ced3VJMauUPYRVfstiewaXivBM-ALE5A9eJKk,114
|
|
11
|
-
dl_backtrace/tf_backtrace/backtrace/__init__.py,sha256=c4UlzqzSiZzEGQVrrnFzubn8YOM3krI8u9zFMd8fMPk,34
|
|
12
|
-
dl_backtrace/tf_backtrace/backtrace/backtrace.py,sha256=oPvV4mQ3GrFmEkEN43a29-z49xqznXp4OO8IuPHK1P4,25351
|
|
13
|
-
dl_backtrace/tf_backtrace/backtrace/config.py,sha256=vhU2ojNL3vwwaEhLv7JgTzP73vPOMwmqdXj-g5Ww3Ik,1019
|
|
14
|
-
dl_backtrace/tf_backtrace/backtrace/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
dl_backtrace/tf_backtrace/backtrace/utils/contrast.py,sha256=QjGisizSPeptBu79iw6Gfa0pz7wBL4jjrcgH4Sdw3_Q,32964
|
|
16
|
-
dl_backtrace/tf_backtrace/backtrace/utils/prop.py,sha256=hR010VKgPT8q_IRpEyxMaCOC1o33WrYbArhgtRRU450,26395
|
|
17
|
-
dl_backtrace-0.0.2.dev3.dist-info/LICENSE,sha256=TU41dzIbq9_7AyFa2A01qK1V0xBOciQhSnbWEUoqay4,1085
|
|
18
|
-
dl_backtrace-0.0.2.dev3.dist-info/METADATA,sha256=BSCVL3eGo3zXOlFwx0Y2_F0jwfhYcrz-vySbcf9neCI,1983
|
|
19
|
-
dl_backtrace-0.0.2.dev3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
20
|
-
dl_backtrace-0.0.2.dev3.dist-info/top_level.txt,sha256=gvGVYScJfW6c4aO5WMo4Aqa6NLEfmLK7VWXVx_GeiIk,13
|
|
21
|
-
dl_backtrace-0.0.2.dev3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|