quadra 2.1.13__py3-none-any.whl → 2.2.0__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.
- quadra/__init__.py +1 -1
- {quadra-2.1.13.dist-info → quadra-2.2.0.dist-info}/METADATA +10 -15
- {quadra-2.1.13.dist-info → quadra-2.2.0.dist-info}/RECORD +6 -6
- {quadra-2.1.13.dist-info → quadra-2.2.0.dist-info}/LICENSE +0 -0
- {quadra-2.1.13.dist-info → quadra-2.2.0.dist-info}/WHEEL +0 -0
- {quadra-2.1.13.dist-info → quadra-2.2.0.dist-info}/entry_points.txt +0 -0
quadra/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: quadra
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0
|
|
4
4
|
Summary: Deep Learning experiment orchestration library
|
|
5
5
|
Home-page: https://orobix.github.io/quadra
|
|
6
6
|
License: Apache-2.0
|
|
@@ -47,13 +47,10 @@ Requires-Dist: rich (>=13.2,<13.3)
|
|
|
47
47
|
Requires-Dist: scikit_learn (>=1.2,<1.3)
|
|
48
48
|
Requires-Dist: scikit_multilearn (>=0.2,<0.3)
|
|
49
49
|
Requires-Dist: seaborn (>=0.12,<0.13)
|
|
50
|
-
Requires-Dist: segmentation_models_pytorch
|
|
50
|
+
Requires-Dist: segmentation_models_pytorch-orobix (==0.3.3.dev1)
|
|
51
51
|
Requires-Dist: tensorboard (>=2.11,<2.12)
|
|
52
52
|
Requires-Dist: timm (==0.9.12)
|
|
53
|
-
Requires-Dist: torch
|
|
54
|
-
Requires-Dist: torch @ https://download.pytorch.org/whl/cu121/torch-2.1.2%2Bcu121-cp310-cp310-win_amd64.whl ; sys_platform == "win32" and python_version == "3.10"
|
|
55
|
-
Requires-Dist: torch @ https://download.pytorch.org/whl/cu121/torch-2.1.2%2Bcu121-cp39-cp39-linux_x86_64.whl ; sys_platform == "linux" and python_version == "3.9"
|
|
56
|
-
Requires-Dist: torch @ https://download.pytorch.org/whl/cu121/torch-2.1.2%2Bcu121-cp39-cp39-win_amd64.whl ; sys_platform == "win32" and python_version == "3.9"
|
|
53
|
+
Requires-Dist: torch (==2.1.2)
|
|
57
54
|
Requires-Dist: torchinfo (>=1.8,<1.9)
|
|
58
55
|
Requires-Dist: torchmetrics (>=0.10,<0.11)
|
|
59
56
|
Requires-Dist: torchsummary (>=1.5,<1.6)
|
|
@@ -66,7 +63,7 @@ Description-Content-Type: text/markdown
|
|
|
66
63
|
|
|
67
64
|
<h1></h1>
|
|
68
65
|
<p align="center">
|
|
69
|
-
<img src="docs/images/quadra_text_logo.png" alt="Quadra Logo" width="100%">
|
|
66
|
+
<img src="https://github.com/orobix/quadra/raw/main/docs/images/quadra_text_logo.png" alt="Quadra Logo" width="100%">
|
|
70
67
|
</p>
|
|
71
68
|
|
|
72
69
|
<p align="center">
|
|
@@ -86,7 +83,7 @@ Description-Content-Type: text/markdown
|
|
|
86
83
|
alt="pre-commit"
|
|
87
84
|
/></a>
|
|
88
85
|
<a href="https://github.com/econchick/interrogate"><img
|
|
89
|
-
src="docs/images/interrogate_badge.svg"
|
|
86
|
+
src="https://github.com/orobix/quadra/raw/main/docs/images/interrogate_badge.svg"
|
|
90
87
|
alt="interrogate"
|
|
91
88
|
/></a>
|
|
92
89
|
<a href="https://github.com/PyCQA/pylint"><img
|
|
@@ -108,16 +105,14 @@ ______________________________________________________________________
|
|
|
108
105
|
|
|
109
106
|
## Quick Start Guide
|
|
110
107
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
If you use pip to manage your packages, you can install `quadra` from source by running the following command:
|
|
108
|
+
If you use pip to manage your packages, you can install `quadra` from PyPi by running the following command:
|
|
114
109
|
```shell
|
|
115
|
-
pip install
|
|
110
|
+
pip install quadra
|
|
116
111
|
```
|
|
117
112
|
|
|
118
113
|
If instead you prefer to use poetry, you can install `quadra` from source by running the following command:
|
|
119
114
|
```shell
|
|
120
|
-
poetry add
|
|
115
|
+
poetry add quadra
|
|
121
116
|
```
|
|
122
117
|
|
|
123
118
|
If you don't have virtual environment ready, Let's set up our environment for using the `quadra` library. We have two parts in this guide: Common setup and Environment-specific setup.
|
|
@@ -158,13 +153,13 @@ source myenv/bin/activate
|
|
|
158
153
|
|
|
159
154
|
* **Install the `quadra` package** with pip:
|
|
160
155
|
```shell
|
|
161
|
-
pip install
|
|
156
|
+
pip install quadra
|
|
162
157
|
```
|
|
163
158
|
|
|
164
159
|
* **Install the `quadra` package** with poetry:
|
|
165
160
|
```shell
|
|
166
161
|
curl -sSL https://install.python-poetry.org | python3 -
|
|
167
|
-
poetry add
|
|
162
|
+
poetry add quadra
|
|
168
163
|
```
|
|
169
164
|
|
|
170
165
|
4. **Run from CLI**:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
quadra/__init__.py,sha256=
|
|
1
|
+
quadra/__init__.py,sha256=zHdFwjCk1yL6fSYKulUCe5VbiYw--cFo27jjQ99UyQc,112
|
|
2
2
|
quadra/callbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
quadra/callbacks/anomalib.py,sha256=Z0Xx3M9UEMYGY0BpSsqemgQSQ6jAr4SrvlbDg_oG9C8,11913
|
|
4
4
|
quadra/callbacks/lightning.py,sha256=1OTM6fB7qBVLPWNBAZJOb3B00q0kAxMWkPjTEn9YgF0,20182
|
|
@@ -293,8 +293,8 @@ quadra/utils/validator.py,sha256=eFCGr0ss1gYSpsL31JbsCXPZUMJAI9_H-mGodt6UGsU,466
|
|
|
293
293
|
quadra/utils/visualization.py,sha256=UvGHX0dumfjpT_KX3Yc1W2B5sAXXaZZWIwXQAi4sdoQ,15950
|
|
294
294
|
quadra/utils/vit_explainability.py,sha256=hY0awehj6UkyBhnBlW5uWoJTsBfgow5Nll9fAqrzmMo,13337
|
|
295
295
|
hydra_plugins/quadra_searchpath_plugin.py,sha256=AAn4TzR87zUK7nwSsK-KoqALiPtfQ8FvX3fgZPTGIJ0,1189
|
|
296
|
-
quadra-2.
|
|
297
|
-
quadra-2.
|
|
298
|
-
quadra-2.
|
|
299
|
-
quadra-2.
|
|
300
|
-
quadra-2.
|
|
296
|
+
quadra-2.2.0.dist-info/LICENSE,sha256=8cTbQtcWa02YJoSpMeV_gxj3jpMTkxvl-w3WJ5gV_QE,11342
|
|
297
|
+
quadra-2.2.0.dist-info/METADATA,sha256=XNnNWc1NSmY-Dd1v3sWGmp2QUiqFWudlRiaeu6HyGiM,17587
|
|
298
|
+
quadra-2.2.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
299
|
+
quadra-2.2.0.dist-info/entry_points.txt,sha256=sRYonBZyx-sAJeWcQNQoVQIU5lm02cnCQt6b15k0WHU,43
|
|
300
|
+
quadra-2.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|