quadra 2.1.13__py3-none-any.whl → 2.2.1__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 CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "2.1.13"
1
+ __version__ = "2.2.1"
2
2
 
3
3
 
4
4
  def get_version():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quadra
3
- Version: 2.1.13
3
+ Version: 2.2.1
4
4
  Summary: Deep Learning experiment orchestration library
5
5
  Home-page: https://orobix.github.io/quadra
6
6
  License: Apache-2.0
@@ -21,7 +21,7 @@ Classifier: Topic :: Software Development :: Libraries
21
21
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
22
  Provides-Extra: onnx
23
23
  Requires-Dist: albumentations (>=1.3,<1.4)
24
- Requires-Dist: anomalib-orobix (==0.7.0.dev134)
24
+ Requires-Dist: anomalib-orobix (==0.7.0.dev140)
25
25
  Requires-Dist: boto3 (>=1.26,<1.27)
26
26
  Requires-Dist: grad_cam (==1.4.6)
27
27
  Requires-Dist: h5py (>=3.8,<3.9)
@@ -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 @ git+https://github.com/qubvel/segmentation_models.pytorch@7b381f899ed472a477a89d381689caf535b5d0a6
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 @ https://download.pytorch.org/whl/cu121/torch-2.1.2%2Bcu121-cp310-cp310-linux_x86_64.whl ; sys_platform == "linux" and python_version == "3.10"
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
- Currently we support installing from source since the library is not yet available on `PyPI` and currently supported Python versions are `3.9` and `3.10`.
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 git+https://github.com/orobix/quadra.git
110
+ pip install quadra
116
111
  ```
117
112
 
118
- If instead you prefer to use poetry, you can install `quadra` from source by running the following command:
113
+ If instead you prefer to use poetry, you can install `quadra` from PyPi by running the following command:
119
114
  ```shell
120
- poetry add git+https://github.com/orobix/quadra.git
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 git+https://github.com/orobix/quadra.git
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 git+https://github.com/orobix/quadra.git
162
+ poetry add quadra
168
163
  ```
169
164
 
170
165
  4. **Run from CLI**:
@@ -1,4 +1,4 @@
1
- quadra/__init__.py,sha256=iKWqhbJsyX0kSsfcPyYP1jLymYJmGhZXYBGPxy5CmBo,113
1
+ quadra/__init__.py,sha256=bj3AEzHwe7kkbVQLXh02eIMYTIaEUW3lRpTDkYpFCwM,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.1.13.dist-info/LICENSE,sha256=8cTbQtcWa02YJoSpMeV_gxj3jpMTkxvl-w3WJ5gV_QE,11342
297
- quadra-2.1.13.dist-info/METADATA,sha256=DLZSiegBI_3C8NYmA4aCC37EplTqgcnDEwKiAx_R5zE,18498
298
- quadra-2.1.13.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
299
- quadra-2.1.13.dist-info/entry_points.txt,sha256=sRYonBZyx-sAJeWcQNQoVQIU5lm02cnCQt6b15k0WHU,43
300
- quadra-2.1.13.dist-info/RECORD,,
296
+ quadra-2.2.1.dist-info/LICENSE,sha256=8cTbQtcWa02YJoSpMeV_gxj3jpMTkxvl-w3WJ5gV_QE,11342
297
+ quadra-2.2.1.dist-info/METADATA,sha256=2Y7BAF6SzOVp7kIeF1TEgbJy-8JV-fMJb1S-juZ0ddQ,17585
298
+ quadra-2.2.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
299
+ quadra-2.2.1.dist-info/entry_points.txt,sha256=sRYonBZyx-sAJeWcQNQoVQIU5lm02cnCQt6b15k0WHU,43
300
+ quadra-2.2.1.dist-info/RECORD,,