dl-backtrace 0.0.17__py3-none-any.whl → 0.0.18__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/version.py +2 -2
- {dl_backtrace-0.0.17.dist-info → dl_backtrace-0.0.18.dist-info}/METADATA +10 -1
- {dl_backtrace-0.0.17.dist-info → dl_backtrace-0.0.18.dist-info}/RECORD +6 -6
- {dl_backtrace-0.0.17.dist-info → dl_backtrace-0.0.18.dist-info}/LICENSE +0 -0
- {dl_backtrace-0.0.17.dist-info → dl_backtrace-0.0.18.dist-info}/WHEEL +0 -0
- {dl_backtrace-0.0.17.dist-info → dl_backtrace-0.0.18.dist-info}/top_level.txt +0 -0
dl_backtrace/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dl_backtrace
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.18
|
|
4
4
|
Summary: A python SDK for Deep Learning Backtrace
|
|
5
5
|
Home-page: https://xai.arya.ai/docs/introduction
|
|
6
6
|
License: MIT
|
|
@@ -81,6 +81,7 @@ relevance = backtrace.eval(layer_outputs,mode='default',scaler=1,thresholding=0.
|
|
|
81
81
|
| scaler | Total / Starting Relevance at the Last Layer | Integer ( Default: None, Preferred: 1)|
|
|
82
82
|
| thresholding | Thresholding Model Prediction in Segemntation Task to select Pixels predicting the actual class. (Only works in Segmentation Tasks) | Default:0.5 |
|
|
83
83
|
| task | The task of the Model | { binary-classification, multi-class classification, bbox-regression, binary-segmentation} |
|
|
84
|
+
| model-type | Type of the Model | {Encoder/ Encoder_Decoder} |
|
|
84
85
|
|
|
85
86
|
## Example Notebooks :
|
|
86
87
|
|
|
@@ -97,6 +98,9 @@ relevance = backtrace.eval(layer_outputs,mode='default',scaler=1,thresholding=0.
|
|
|
97
98
|
| Backtrace Multi-Class NewsGroup20 Classification Textual Dataset | Multi-Class Classification | [Colab Link](https://colab.research.google.com/drive/1u3B18TZwfTdYJeYBGcHQ0T3fzfM2USGT?usp=sharing) |
|
|
98
99
|
| Backtrace CVC-ClinicDB Colonoscopy Binary Segmentation | Organ Segmentation | [Colab Link](https://colab.research.google.com/drive/1cUNUao7fahDgndVI-cpn2iSByTiWaB4j?usp=sharing) |
|
|
99
100
|
| Backtrace CamVid Road Car Binary Segmentation | Binary Segmentation | [Colab Link](https://colab.research.google.com/drive/1OAY7aAraKq_ucyVt5AYPBD8LkQOIuy1C?usp=sharing) |
|
|
101
|
+
| Backtrace Transformer Encoder for Sentiment Analysis | Binary Classification | [Colab Link](https://colab.research.google.com/drive/1H7-4ox3YWMtoH0vptYGXaN63PRJFbTrX?usp=sharing) |
|
|
102
|
+
| Backtrace Transformer Encoder-Decoder Model for Neural Machine Translation | Neural Machine Translation | [Colab Link](https://colab.research.google.com/drive/1NApbrd11TEqlrqGCBYPmgMvBbZBJhpWD?usp=sharing) |
|
|
103
|
+
| Backtrace Transformer Encoder-Decoder Model for Text Summarization | Text Summarization | [Colab Link](https://colab.research.google.com/drive/18CPNnEJzGlCPJ2sSXX4mArAzK1NLe9Lj?usp=sharing) |
|
|
100
104
|
|
|
101
105
|
### Pytorch :
|
|
102
106
|
| Name | Task | Link |
|
|
@@ -125,6 +129,11 @@ For more detailed examples and use cases, check out our documentation.
|
|
|
125
129
|
- [x] Dropout Layer
|
|
126
130
|
- [x] Embedding Layer
|
|
127
131
|
- [x] TextVectorization Layer
|
|
132
|
+
- [x] Self-Attention Layer
|
|
133
|
+
- [x] Cross-Attention Layer
|
|
134
|
+
- [x] Feed-Forward Layer
|
|
135
|
+
- [x] Pooler Layer
|
|
136
|
+
- [x] Decoder LM (Language Model) Head
|
|
128
137
|
- [ ] Other Custom Layers
|
|
129
138
|
|
|
130
139
|
### Pytorch :
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
dl_backtrace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
dl_backtrace/version.py,sha256=
|
|
2
|
+
dl_backtrace/version.py,sha256=k900Q8XjzRKO6ZOHY0wFLzfzTGArI0sGircauDDJhu0,413
|
|
3
3
|
dl_backtrace/old_backtrace/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
4
4
|
dl_backtrace/old_backtrace/pytorch_backtrace/__init__.py,sha256=TDhKQIj1INyQq7cqTvpjpnBDhoMeWSoqVdx_mPAV3Sw,24
|
|
5
5
|
dl_backtrace/old_backtrace/pytorch_backtrace/backtrace/__init__.py,sha256=AuR7uMTbf7rrFl-9sMIQ3lQmhu_ATSFBZmfs7R66jAc,76
|
|
@@ -37,8 +37,8 @@ dl_backtrace/tf_backtrace/backtrace/utils/encoder_decoder.py,sha256=qbS34WswNiT1
|
|
|
37
37
|
dl_backtrace/tf_backtrace/backtrace/utils/helper.py,sha256=QB21kPB5iJfRpy8khYJnzojaKf5ACnAFYh5XxYBcnXA,3419
|
|
38
38
|
dl_backtrace/tf_backtrace/backtrace/utils/utils_contrast.py,sha256=rQwManW0d6Td6V_A1qGezcZ19Tgr34zbFcieQ0rqAAc,48415
|
|
39
39
|
dl_backtrace/tf_backtrace/backtrace/utils/utils_prop.py,sha256=dC6QxbwpA5JhE8009vnZVQyY8eIE3RFx6t7I-N17-k0,58320
|
|
40
|
-
dl_backtrace-0.0.
|
|
41
|
-
dl_backtrace-0.0.
|
|
42
|
-
dl_backtrace-0.0.
|
|
43
|
-
dl_backtrace-0.0.
|
|
44
|
-
dl_backtrace-0.0.
|
|
40
|
+
dl_backtrace-0.0.18.dist-info/LICENSE,sha256=RTqAU0MFv1q3ZXKewNobKxIIPzRHgImom7e6ORV7X6o,1064
|
|
41
|
+
dl_backtrace-0.0.18.dist-info/METADATA,sha256=YuIoncn6l2OscEaxrC5VA7OaFre9ddTh3pFGqZPJzsI,7837
|
|
42
|
+
dl_backtrace-0.0.18.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
|
43
|
+
dl_backtrace-0.0.18.dist-info/top_level.txt,sha256=gvGVYScJfW6c4aO5WMo4Aqa6NLEfmLK7VWXVx_GeiIk,13
|
|
44
|
+
dl_backtrace-0.0.18.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|