dl-backtrace 0.0.3__tar.gz → 0.0.7__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 dl-backtrace might be problematic. Click here for more details.
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/.github/scripts/release.py +49 -49
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/.github/workflows/publish.yml +79 -89
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/.github/workflows/release.yml +17 -17
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/.gitignore +23 -23
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/LICENSE +21 -21
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/MANIFEST.in +7 -7
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/PKG-INFO +52 -52
- dl_backtrace-0.0.3/readme.md → dl_backtrace-0.0.7/README.md +35 -35
- dl_backtrace-0.0.7/dl_backtrace/pytorch_backtrace/__init__.py +1 -0
- dl_backtrace-0.0.7/dl_backtrace/pytorch_backtrace/backtrace/__init__.py +4 -0
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace/pytorch_backtrace/backtrace/backtrace.py +639 -639
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace/pytorch_backtrace/backtrace/config.py +41 -41
- dl_backtrace-0.0.7/dl_backtrace/pytorch_backtrace/backtrace/utils/__init__.py +2 -0
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace/pytorch_backtrace/backtrace/utils/contrast.py +840 -840
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace/pytorch_backtrace/backtrace/utils/prop.py +746 -746
- dl_backtrace-0.0.7/dl_backtrace/tf_backtrace/__init__.py +1 -0
- dl_backtrace-0.0.7/dl_backtrace/tf_backtrace/backtrace/__init__.py +4 -0
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace/tf_backtrace/backtrace/backtrace.py +527 -527
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace/tf_backtrace/backtrace/config.py +41 -41
- dl_backtrace-0.0.7/dl_backtrace/tf_backtrace/backtrace/utils/__init__.py +2 -0
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace/tf_backtrace/backtrace/utils/contrast.py +834 -834
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace/tf_backtrace/backtrace/utils/prop.py +725 -725
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace/version.py +16 -16
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace.egg-info/PKG-INFO +52 -52
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace.egg-info/SOURCES.txt +1 -1
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/pyproject.toml +7 -7
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/requirements.txt +1 -1
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/setup.cfg +4 -4
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/setup.py +32 -32
- dl_backtrace-0.0.3/dl_backtrace/__init__.py +0 -1
- dl_backtrace-0.0.3/dl_backtrace/pytorch_backtrace/__init__.py +0 -2
- dl_backtrace-0.0.3/dl_backtrace/pytorch_backtrace/backtrace/__init__.py +0 -1
- dl_backtrace-0.0.3/dl_backtrace/tf_backtrace/__init__.py +0 -2
- dl_backtrace-0.0.3/dl_backtrace/tf_backtrace/backtrace/__init__.py +0 -1
- dl_backtrace-0.0.3/dl_backtrace/tf_backtrace/backtrace/utils/__init__.py +0 -0
- {dl_backtrace-0.0.3/dl_backtrace/pytorch_backtrace/backtrace/utils → dl_backtrace-0.0.7/dl_backtrace}/__init__.py +0 -0
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace.egg-info/dependency_links.txt +0 -0
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace.egg-info/requires.txt +0 -0
- {dl_backtrace-0.0.3 → dl_backtrace-0.0.7}/dl_backtrace.egg-info/top_level.txt +0 -0
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
#!/usr/bin/env python3
|
|
2
|
-
import subprocess
|
|
3
|
-
|
|
4
|
-
default_version = "0.0.1"
|
|
5
|
-
|
|
6
|
-
def get_last_version() -> str:
|
|
7
|
-
"""Return the version number of the last release."""
|
|
8
|
-
tag_info = (
|
|
9
|
-
subprocess.run(
|
|
10
|
-
"gh release list | grep -E -v '^.+\\.dev\\d*' | head -n 1",
|
|
11
|
-
shell=True,
|
|
12
|
-
check=True,
|
|
13
|
-
stdout=subprocess.PIPE,
|
|
14
|
-
stderr=subprocess.PIPE
|
|
15
|
-
)
|
|
16
|
-
.stdout.decode("utf8")
|
|
17
|
-
.strip()
|
|
18
|
-
)
|
|
19
|
-
tag_fields = tag_info.split('\t')
|
|
20
|
-
tag = tag_fields[2] if len(tag_fields) > 2 else default_version
|
|
21
|
-
|
|
22
|
-
return tag
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
def bump_patch_number(version_number: str) -> str:
|
|
26
|
-
"""Return a copy of `version_number` with the patch number incremented."""
|
|
27
|
-
major, minor, patch = version_number.split(".")
|
|
28
|
-
return f"{major}.{minor}.{int(patch) + 1}"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
def create_new_patch_release():
|
|
32
|
-
"""Create a new patch release on GitHub."""
|
|
33
|
-
try:
|
|
34
|
-
last_version_number = get_last_version()
|
|
35
|
-
except subprocess.CalledProcessError as err:
|
|
36
|
-
# The project doesn't have any releases yet.
|
|
37
|
-
new_version_number = default_version
|
|
38
|
-
print(err)
|
|
39
|
-
print(f'taking default version: {new_version_number}')
|
|
40
|
-
else:
|
|
41
|
-
new_version_number = bump_patch_number(last_version_number)
|
|
42
|
-
|
|
43
|
-
subprocess.run(
|
|
44
|
-
["gh", "release", "create", "--generate-notes", new_version_number],
|
|
45
|
-
check=True,
|
|
46
|
-
)
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
if __name__ == "__main__":
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
import subprocess
|
|
3
|
+
|
|
4
|
+
default_version = "0.0.1"
|
|
5
|
+
|
|
6
|
+
def get_last_version() -> str:
|
|
7
|
+
"""Return the version number of the last release."""
|
|
8
|
+
tag_info = (
|
|
9
|
+
subprocess.run(
|
|
10
|
+
"gh release list | grep -E -v '^.+\\.dev\\d*' | head -n 1",
|
|
11
|
+
shell=True,
|
|
12
|
+
check=True,
|
|
13
|
+
stdout=subprocess.PIPE,
|
|
14
|
+
stderr=subprocess.PIPE
|
|
15
|
+
)
|
|
16
|
+
.stdout.decode("utf8")
|
|
17
|
+
.strip()
|
|
18
|
+
)
|
|
19
|
+
tag_fields = tag_info.split('\t')
|
|
20
|
+
tag = tag_fields[2] if len(tag_fields) > 2 else default_version
|
|
21
|
+
|
|
22
|
+
return tag
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def bump_patch_number(version_number: str) -> str:
|
|
26
|
+
"""Return a copy of `version_number` with the patch number incremented."""
|
|
27
|
+
major, minor, patch = version_number.split(".")
|
|
28
|
+
return f"{major}.{minor}.{int(patch) + 1}"
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def create_new_patch_release():
|
|
32
|
+
"""Create a new patch release on GitHub."""
|
|
33
|
+
try:
|
|
34
|
+
last_version_number = get_last_version()
|
|
35
|
+
except subprocess.CalledProcessError as err:
|
|
36
|
+
# The project doesn't have any releases yet.
|
|
37
|
+
new_version_number = default_version
|
|
38
|
+
print(err)
|
|
39
|
+
print(f'taking default version: {new_version_number}')
|
|
40
|
+
else:
|
|
41
|
+
new_version_number = bump_patch_number(last_version_number)
|
|
42
|
+
|
|
43
|
+
subprocess.run(
|
|
44
|
+
["gh", "release", "create", "--generate-notes", new_version_number],
|
|
45
|
+
check=True,
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
if __name__ == "__main__":
|
|
50
50
|
create_new_patch_release()
|
|
@@ -1,90 +1,80 @@
|
|
|
1
|
-
name: Publish to PyPI
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
workflow_dispatch:
|
|
5
|
-
push:
|
|
6
|
-
tags:
|
|
7
|
-
- '*.*.*'
|
|
8
|
-
- '!*.*.dev*'
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
pypi:
|
|
12
|
-
runs-on: ubuntu-latest
|
|
13
|
-
steps:
|
|
14
|
-
- name: Checkout
|
|
15
|
-
uses: actions/checkout@v3
|
|
16
|
-
with:
|
|
17
|
-
fetch-depth: 0
|
|
18
|
-
|
|
19
|
-
- name: Fetch tags
|
|
20
|
-
run: git fetch --prune --tags
|
|
21
|
-
|
|
22
|
-
- name: Get Release Notes
|
|
23
|
-
id: release_notes
|
|
24
|
-
run: |
|
|
25
|
-
TAG_NAME=$(gh release view --json tagName | jq -r .tagName)
|
|
26
|
-
RELEASE_NOTES=$(gh release view --json url | jq -r .url)
|
|
27
|
-
RELEASE_NOTES="${RELEASE_NOTES//$'\n'/\\n}"
|
|
28
|
-
echo "TAG_NAME=${TAG_NAME}" >> $GITHUB_OUTPUT
|
|
29
|
-
echo "RELEASE_NOTES=${RELEASE_NOTES}" >> $GITHUB_OUTPUT
|
|
30
|
-
env:
|
|
31
|
-
GH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
32
|
-
|
|
33
|
-
- name:
|
|
34
|
-
run:
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
pip install
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
{
|
|
81
|
-
"type": "section",
|
|
82
|
-
"text": {
|
|
83
|
-
"type": "mrkdwn",
|
|
84
|
-
"text": "*PyPI URL:* https://pypi.org/project/aryaxai/${{ steps.release_notes.outputs.TAG_NAME }}"
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
]
|
|
88
|
-
}
|
|
89
|
-
env:
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
tags:
|
|
7
|
+
- '*.*.*'
|
|
8
|
+
- '!*.*.dev*'
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
pypi:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- name: Checkout
|
|
15
|
+
uses: actions/checkout@v3
|
|
16
|
+
with:
|
|
17
|
+
fetch-depth: 0
|
|
18
|
+
|
|
19
|
+
- name: Fetch tags
|
|
20
|
+
run: git fetch --prune --tags
|
|
21
|
+
|
|
22
|
+
- name: Get Release Notes
|
|
23
|
+
id: release_notes
|
|
24
|
+
run: |
|
|
25
|
+
TAG_NAME=$(gh release view --json tagName | jq -r .tagName)
|
|
26
|
+
RELEASE_NOTES=$(gh release view --json url | jq -r .url)
|
|
27
|
+
RELEASE_NOTES="${RELEASE_NOTES//$'\n'/\\n}"
|
|
28
|
+
echo "TAG_NAME=${TAG_NAME}" >> $GITHUB_OUTPUT
|
|
29
|
+
echo "RELEASE_NOTES=${RELEASE_NOTES}" >> $GITHUB_OUTPUT
|
|
30
|
+
env:
|
|
31
|
+
GH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
32
|
+
|
|
33
|
+
- name: Build package
|
|
34
|
+
run: python3 -m pip install --upgrade build && python3 -m build
|
|
35
|
+
|
|
36
|
+
- name: Publish package to PyPI
|
|
37
|
+
run: |
|
|
38
|
+
python -m pip install --upgrade twine
|
|
39
|
+
python -m twine upload dist/*
|
|
40
|
+
env:
|
|
41
|
+
TWINE_USERNAME: __token__
|
|
42
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
|
43
|
+
|
|
44
|
+
- name: Send release notes to Slack
|
|
45
|
+
id: slack
|
|
46
|
+
uses: slackapi/slack-github-action@v1.24.0
|
|
47
|
+
with:
|
|
48
|
+
# Slack channel id, channel name, or user id to post message.
|
|
49
|
+
# See also: https://api.slack.com/methods/chat.postMessage#channels
|
|
50
|
+
# You can pass in multiple channels to post to by providing a comma-delimited list of channel IDs.
|
|
51
|
+
channel-id: 'aryaxai-dl-backtrace-release'
|
|
52
|
+
payload: |
|
|
53
|
+
{
|
|
54
|
+
"text": "AryaXAI SDK release",
|
|
55
|
+
"blocks": [
|
|
56
|
+
{
|
|
57
|
+
"type": "section",
|
|
58
|
+
"text": {
|
|
59
|
+
"type": "mrkdwn",
|
|
60
|
+
"text": "*Version:* ${{ steps.release_notes.outputs.TAG_NAME }}"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": "section",
|
|
65
|
+
"text": {
|
|
66
|
+
"type": "mrkdwn",
|
|
67
|
+
"text": "*Release Notes:* ${{ steps.release_notes.outputs.RELEASE_NOTES }}"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"type": "section",
|
|
72
|
+
"text": {
|
|
73
|
+
"type": "mrkdwn",
|
|
74
|
+
"text": "*PyPI URL:* https://pypi.org/project/aryaxai/${{ steps.release_notes.outputs.TAG_NAME }}"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
env:
|
|
90
80
|
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
name: Create release
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
workflow_dispatch:
|
|
5
|
-
push:
|
|
6
|
-
branches:
|
|
7
|
-
- main
|
|
8
|
-
|
|
9
|
-
jobs:
|
|
10
|
-
github:
|
|
11
|
-
runs-on: ubuntu-latest
|
|
12
|
-
steps:
|
|
13
|
-
- name: Checkout
|
|
14
|
-
uses: actions/checkout@v3
|
|
15
|
-
- name: Create new release
|
|
16
|
-
run: .github/scripts/release.py
|
|
17
|
-
env:
|
|
1
|
+
name: Create release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
github:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout
|
|
14
|
+
uses: actions/checkout@v3
|
|
15
|
+
- name: Create new release
|
|
16
|
+
run: .github/scripts/release.py
|
|
17
|
+
env:
|
|
18
18
|
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
.vscode
|
|
2
|
-
|
|
3
|
-
# Compiled python modules.
|
|
4
|
-
*.pyc
|
|
5
|
-
__pycache__
|
|
6
|
-
|
|
7
|
-
# Setuptools distribution folder.
|
|
8
|
-
/dist/
|
|
9
|
-
build
|
|
10
|
-
|
|
11
|
-
# Python egg metadata, regenerated from source files by setuptools.
|
|
12
|
-
*.egg-info
|
|
13
|
-
.eggs
|
|
14
|
-
|
|
15
|
-
# Documentation files
|
|
16
|
-
_build
|
|
17
|
-
_static
|
|
18
|
-
_templates
|
|
19
|
-
|
|
20
|
-
# Venv
|
|
21
|
-
*venv
|
|
22
|
-
|
|
23
|
-
# package version file
|
|
1
|
+
.vscode
|
|
2
|
+
|
|
3
|
+
# Compiled python modules.
|
|
4
|
+
*.pyc
|
|
5
|
+
__pycache__
|
|
6
|
+
|
|
7
|
+
# Setuptools distribution folder.
|
|
8
|
+
/dist/
|
|
9
|
+
build
|
|
10
|
+
|
|
11
|
+
# Python egg metadata, regenerated from source files by setuptools.
|
|
12
|
+
*.egg-info
|
|
13
|
+
.eggs
|
|
14
|
+
|
|
15
|
+
# Documentation files
|
|
16
|
+
_build
|
|
17
|
+
_static
|
|
18
|
+
_templates
|
|
19
|
+
|
|
20
|
+
# Venv
|
|
21
|
+
*venv
|
|
22
|
+
|
|
23
|
+
# package version file
|
|
24
24
|
version.py
|
|
@@ -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,7 +1,7 @@
|
|
|
1
|
-
include
|
|
2
|
-
include
|
|
3
|
-
recursive-
|
|
4
|
-
recursive-exclude *
|
|
5
|
-
recursive-
|
|
6
|
-
recursive-include
|
|
7
|
-
|
|
1
|
+
include requirements.txt
|
|
2
|
+
recursive-include dl_backtrace *.pickle
|
|
3
|
+
recursive-exclude * __pycache__
|
|
4
|
+
recursive-exclude * *.py[co]
|
|
5
|
+
recursive-include docs *.md
|
|
6
|
+
recursive-include tests *.py
|
|
7
|
+
include README.md
|
|
@@ -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.
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
# AryaXai-Backtrace
|
|
2
|
-
Backtrace module for Generating Explainability on Deep learning models
|
|
3
|
-
|
|
4
|
-
# Backtrace Module
|
|
5
|
-
[](LICENSE)
|
|
6
|
-
|
|
7
|
-
## Overview
|
|
8
|
-
|
|
9
|
-
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.
|
|
10
|
-
|
|
11
|
-
## Features
|
|
12
|
-
|
|
13
|
-
- **Explainability:** Gain deep insights into your AI models by using the Backtrace algorithm, providing multiple explanations for their decisions.
|
|
14
|
-
|
|
15
|
-
- **Consistency:** Ensure consistent and accurate explanations across different scenarios and use cases.
|
|
16
|
-
|
|
17
|
-
- **Mission-Critical Support:** Tailored for mission-critical AI use cases where transparency is paramount.
|
|
18
|
-
|
|
19
|
-
## Installation
|
|
20
|
-
|
|
21
|
-
To integrate the Backtrace Module into your project, follow these simple steps:
|
|
22
|
-
|
|
23
|
-
For more detailed examples and use cases, check out our documentation.
|
|
24
|
-
|
|
25
|
-
## Getting Started
|
|
26
|
-
If you are new to Backtrace, head over to our Getting Started Guide to quickly set up and use the module in your projects.
|
|
27
|
-
|
|
28
|
-
## Contributing
|
|
29
|
-
We welcome contributions from the community. To contribute, please follow our Contribution Guidelines.
|
|
30
|
-
|
|
31
|
-
## License
|
|
32
|
-
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
33
|
-
|
|
34
|
-
## Contact
|
|
35
|
-
For any inquiries or support, please contact AryaXAI Support.
|
|
1
|
+
# AryaXai-Backtrace
|
|
2
|
+
Backtrace module for Generating Explainability on Deep learning models
|
|
3
|
+
|
|
4
|
+
# Backtrace Module
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
|
|
7
|
+
## Overview
|
|
8
|
+
|
|
9
|
+
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.
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
- **Explainability:** Gain deep insights into your AI models by using the Backtrace algorithm, providing multiple explanations for their decisions.
|
|
14
|
+
|
|
15
|
+
- **Consistency:** Ensure consistent and accurate explanations across different scenarios and use cases.
|
|
16
|
+
|
|
17
|
+
- **Mission-Critical Support:** Tailored for mission-critical AI use cases where transparency is paramount.
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
To integrate the Backtrace Module into your project, follow these simple steps:
|
|
22
|
+
|
|
23
|
+
For more detailed examples and use cases, check out our documentation.
|
|
24
|
+
|
|
25
|
+
## Getting Started
|
|
26
|
+
If you are new to Backtrace, head over to our Getting Started Guide to quickly set up and use the module in your projects.
|
|
27
|
+
|
|
28
|
+
## Contributing
|
|
29
|
+
We welcome contributions from the community. To contribute, please follow our Contribution Guidelines.
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
33
|
+
|
|
34
|
+
## Contact
|
|
35
|
+
For any inquiries or support, please contact AryaXAI Support.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .backtrace import *
|