wizata-dsapi 1.3.32__py3-none-any.whl → 1.3.34__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.
- wizata_dsapi/__init__.py +1 -1
- wizata_dsapi/mlmodel.py +63 -7
- wizata_dsapi/version.py +1 -1
- wizata_dsapi-1.3.34.dist-info/METADATA +84 -0
- {wizata_dsapi-1.3.32.dist-info → wizata_dsapi-1.3.34.dist-info}/RECORD +8 -8
- {wizata_dsapi-1.3.32.dist-info → wizata_dsapi-1.3.34.dist-info}/WHEEL +1 -1
- wizata_dsapi-1.3.32.dist-info/METADATA +0 -89
- {wizata_dsapi-1.3.32.dist-info/licenses → wizata_dsapi-1.3.34.dist-info}/LICENSE.txt +0 -0
- {wizata_dsapi-1.3.32.dist-info → wizata_dsapi-1.3.34.dist-info}/top_level.txt +0 -0
wizata_dsapi/__init__.py
CHANGED
|
@@ -3,7 +3,7 @@ from .version import __version__
|
|
|
3
3
|
from .api_dto import ApiDto, VarType
|
|
4
4
|
from .paged_query_result import PagedQueryResult
|
|
5
5
|
from .plot import Plot
|
|
6
|
-
from .mlmodel import ModelInfo, ModelList, MLModelConfig, ModelFile
|
|
6
|
+
from .mlmodel import ModelInfo, ModelList, MLModelConfig, ModelFile, ModelIdentifierInfo
|
|
7
7
|
from .request import Request, filter_map, RequestGroup, RequestGroupMap, DynamicSelector
|
|
8
8
|
from .execution import Execution, ExecutionStatus, ExecutionStepLog, AbortedException
|
|
9
9
|
from .experiment import Experiment
|
wizata_dsapi/mlmodel.py
CHANGED
|
@@ -11,9 +11,33 @@ def get_bool(obj, name: str):
|
|
|
11
11
|
return bool(obj[name])
|
|
12
12
|
|
|
13
13
|
|
|
14
|
+
class ModelIdentifierInfo:
|
|
15
|
+
"""
|
|
16
|
+
define metadata associated to an identifier (regardless of its alias)
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
def __init__(self,
|
|
20
|
+
identifier: str = None,
|
|
21
|
+
active_alias: str = None):
|
|
22
|
+
self.identifier = identifier
|
|
23
|
+
self.active_alias = active_alias
|
|
24
|
+
|
|
25
|
+
def to_json(self):
|
|
26
|
+
obj = {}
|
|
27
|
+
if self.active_alias is not None:
|
|
28
|
+
obj["active_alias"] = self.active_alias
|
|
29
|
+
return obj
|
|
30
|
+
|
|
31
|
+
def from_json(self, json_dict):
|
|
32
|
+
if "active_alias" in json_dict:
|
|
33
|
+
self.active_alias = json_dict["active_alias"]
|
|
34
|
+
|
|
14
35
|
class ModelFile:
|
|
15
36
|
"""
|
|
16
37
|
define a model file.
|
|
38
|
+
|
|
39
|
+
:ivar path str: file name relative path e.g. trained_model.pkl
|
|
40
|
+
:ivar content bytes[]: array of content bytes
|
|
17
41
|
"""
|
|
18
42
|
|
|
19
43
|
def __init__(self,
|
|
@@ -22,13 +46,15 @@ class ModelFile:
|
|
|
22
46
|
name: str = None,
|
|
23
47
|
extension: str = None,
|
|
24
48
|
last_modified: datetime = None,
|
|
25
|
-
size: int = None
|
|
49
|
+
size: int = None,
|
|
50
|
+
content = None):
|
|
26
51
|
self.full_path = full_path
|
|
27
52
|
self.path = path
|
|
28
53
|
self.name = name
|
|
29
54
|
self.extension = extension
|
|
30
55
|
self.last_modified = last_modified
|
|
31
56
|
self.size = size
|
|
57
|
+
self.content = content
|
|
32
58
|
|
|
33
59
|
def to_json(self):
|
|
34
60
|
"""
|
|
@@ -73,7 +99,7 @@ class ModelInfo:
|
|
|
73
99
|
define a pointer to a machine learning model.
|
|
74
100
|
|
|
75
101
|
:ivar model_type str: mlflow model flavour
|
|
76
|
-
:ivar files list: list of
|
|
102
|
+
:ivar files list: list of ModelFile of model content.
|
|
77
103
|
"""
|
|
78
104
|
|
|
79
105
|
def __init__(self,
|
|
@@ -84,7 +110,10 @@ class ModelInfo:
|
|
|
84
110
|
model_type: str = None,
|
|
85
111
|
file_format: str = 'pkl',
|
|
86
112
|
source: str = 'wizata',
|
|
87
|
-
property_name: str = None
|
|
113
|
+
property_name: str = None,
|
|
114
|
+
trained_model = None,
|
|
115
|
+
scaler = None,
|
|
116
|
+
files = None
|
|
88
117
|
):
|
|
89
118
|
# information identifying a model
|
|
90
119
|
self.key = key
|
|
@@ -92,13 +121,22 @@ class ModelInfo:
|
|
|
92
121
|
self.property_value = property_value
|
|
93
122
|
self.alias = alias
|
|
94
123
|
self.file_format = file_format
|
|
124
|
+
if self.file_format not in ["pt", "pkl"]:
|
|
125
|
+
raise ValueError("file_format must be 'pt' or 'pkl'")
|
|
95
126
|
self.source = source
|
|
96
127
|
self.model_type = model_type
|
|
97
|
-
|
|
128
|
+
if files is None:
|
|
129
|
+
self.files = []
|
|
130
|
+
else:
|
|
131
|
+
self.files = files
|
|
132
|
+
for file in files:
|
|
133
|
+
if not isinstance(file, ModelFile):
|
|
134
|
+
raise TypeError("file is not a ModelFile with files")
|
|
135
|
+
self.is_active = False
|
|
98
136
|
|
|
99
137
|
# files attached to model when loaded
|
|
100
|
-
self.trained_model =
|
|
101
|
-
self.scaler =
|
|
138
|
+
self.trained_model = trained_model
|
|
139
|
+
self.scaler = scaler
|
|
102
140
|
|
|
103
141
|
# temporary properties during model generation not generally stored
|
|
104
142
|
self.property_name = property_name
|
|
@@ -166,7 +204,7 @@ class ModelInfo:
|
|
|
166
204
|
self.file_format = file.extension
|
|
167
205
|
self.files.append(file)
|
|
168
206
|
|
|
169
|
-
def to_json(self):
|
|
207
|
+
def to_json(self) -> dict:
|
|
170
208
|
"""
|
|
171
209
|
convert this entity in a dict that can be json serializable
|
|
172
210
|
:return: dict
|
|
@@ -190,6 +228,8 @@ class ModelInfo:
|
|
|
190
228
|
obj["source"] = self.source
|
|
191
229
|
if self.property_name is not None:
|
|
192
230
|
obj["property_name"] = self.property_name
|
|
231
|
+
if self.is_active is not None:
|
|
232
|
+
obj["is_active"] = self.is_active
|
|
193
233
|
if self.identifier is not None:
|
|
194
234
|
obj["identifier"] = self.identifier(include_alias=True)
|
|
195
235
|
if len(self.files) > 0:
|
|
@@ -216,6 +256,8 @@ class ModelInfo:
|
|
|
216
256
|
self.source = obj["source"]
|
|
217
257
|
if "property_name" in obj.keys():
|
|
218
258
|
self.property_name = obj["property_name"]
|
|
259
|
+
if "is_active" in obj.keys():
|
|
260
|
+
self.is_active = get_bool(obj, name="is_active")
|
|
219
261
|
|
|
220
262
|
|
|
221
263
|
class ModelList:
|
|
@@ -225,6 +267,7 @@ class ModelList:
|
|
|
225
267
|
|
|
226
268
|
def __init__(self):
|
|
227
269
|
self.models: List[ModelInfo] = []
|
|
270
|
+
self.identifiers_info = {}
|
|
228
271
|
|
|
229
272
|
def __iter__(self) -> Iterator[ModelInfo]:
|
|
230
273
|
return iter(self.models)
|
|
@@ -262,6 +305,19 @@ class ModelList:
|
|
|
262
305
|
def append(self, model: ModelInfo):
|
|
263
306
|
self.models.append(model)
|
|
264
307
|
|
|
308
|
+
def _process_info(self):
|
|
309
|
+
"""
|
|
310
|
+
apply all info within the model list (setting model active, ...) to keep data coherence
|
|
311
|
+
:return:
|
|
312
|
+
"""
|
|
313
|
+
for identifier in self.identifiers_info:
|
|
314
|
+
if self.identifiers_info[identifier].active_alias is not None:
|
|
315
|
+
for model in self.models:
|
|
316
|
+
if model.identifier(include_alias=False) == identifier and model.alias == self.identifiers_info[identifier].active_alias:
|
|
317
|
+
model.is_active = True
|
|
318
|
+
elif model.identifier(include_alias=False) == identifier:
|
|
319
|
+
model.is_active = False
|
|
320
|
+
|
|
265
321
|
|
|
266
322
|
class MLModelConfig(ApiDto):
|
|
267
323
|
"""
|
wizata_dsapi/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.3.
|
|
1
|
+
__version__ = "1.3.34"
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: wizata-dsapi
|
|
3
|
+
Version: 1.3.34
|
|
4
|
+
Summary: Wizata Data Science Toolkit
|
|
5
|
+
Author: Wizata S.A.
|
|
6
|
+
Author-email: info@wizata.com
|
|
7
|
+
License-File: LICENSE.txt
|
|
8
|
+
Requires-Dist: pandas (==1.5.3) ; python_version < "3.11"
|
|
9
|
+
Requires-Dist: protobuf (==3.20.3) ; python_version < "3.11"
|
|
10
|
+
Requires-Dist: requests (==2.28.2) ; python_version < "3.11"
|
|
11
|
+
Requires-Dist: setuptools (==67.6.0) ; python_version < "3.11"
|
|
12
|
+
Requires-Dist: numpy (==1.26.4) ; python_version < "3.12"
|
|
13
|
+
Requires-Dist: dill (==0.3.6) ; python_version < "3.12"
|
|
14
|
+
Requires-Dist: msal (==1.30.0) ; python_version < "3.12"
|
|
15
|
+
Requires-Dist: joblib (==1.5.2) ; python_version < "3.12"
|
|
16
|
+
Requires-Dist: plotly (==5.13.1) ; python_version < "3.12"
|
|
17
|
+
Requires-Dist: requests (>=2.32.5) ; python_version >= "3.11"
|
|
18
|
+
Requires-Dist: setuptools (>=80.9.0) ; python_version >= "3.11"
|
|
19
|
+
Requires-Dist: pandas (==2.2.3) ; python_version >= "3.11" and python_version < "3.12"
|
|
20
|
+
Requires-Dist: protobuf (==5.29.5) ; python_version >= "3.11" and python_version < "3.12"
|
|
21
|
+
Requires-Dist: pandas (>=2.3.3) ; python_version >= "3.12"
|
|
22
|
+
Requires-Dist: numpy (>=2.3.3) ; python_version >= "3.12"
|
|
23
|
+
Requires-Dist: dill (==0.4.0) ; python_version >= "3.12"
|
|
24
|
+
Requires-Dist: protobuf (>=5.29.5) ; python_version >= "3.12"
|
|
25
|
+
Requires-Dist: msal (>=1.34.0) ; python_version >= "3.12"
|
|
26
|
+
Requires-Dist: joblib (>=1.2.0) ; python_version >= "3.12"
|
|
27
|
+
Requires-Dist: plotly (>=6.3.1) ; python_version >= "3.12"
|
|
28
|
+
Provides-Extra: all
|
|
29
|
+
Requires-Dist: adtk (==0.6.2) ; extra == 'all'
|
|
30
|
+
Requires-Dist: tensorflow (>=2.15.0) ; ((sys_platform != "darwin" or platform_machine != "arm64") and python_version < "3.12") and extra == 'all'
|
|
31
|
+
Requires-Dist: pandas (==1.5.3) ; (python_version < "3.11") and extra == 'all'
|
|
32
|
+
Requires-Dist: protobuf (==3.20.3) ; (python_version < "3.11") and extra == 'all'
|
|
33
|
+
Requires-Dist: requests (==2.28.2) ; (python_version < "3.11") and extra == 'all'
|
|
34
|
+
Requires-Dist: setuptools (==67.6.0) ; (python_version < "3.11") and extra == 'all'
|
|
35
|
+
Requires-Dist: matplotlib (==3.7.1) ; (python_version < "3.11") and extra == 'all'
|
|
36
|
+
Requires-Dist: numpy (==1.26.4) ; (python_version < "3.12") and extra == 'all'
|
|
37
|
+
Requires-Dist: dill (==0.3.6) ; (python_version < "3.12") and extra == 'all'
|
|
38
|
+
Requires-Dist: msal (==1.30.0) ; (python_version < "3.12") and extra == 'all'
|
|
39
|
+
Requires-Dist: joblib (==1.5.2) ; (python_version < "3.12") and extra == 'all'
|
|
40
|
+
Requires-Dist: plotly (==5.13.1) ; (python_version < "3.12") and extra == 'all'
|
|
41
|
+
Requires-Dist: keras (==2.15.0) ; (python_version < "3.12") and extra == 'all'
|
|
42
|
+
Requires-Dist: tensorflow-probability (==0.15.0) ; (python_version < "3.12") and extra == 'all'
|
|
43
|
+
Requires-Dist: scikit-learn (==1.2.2) ; (python_version < "3.12") and extra == 'all'
|
|
44
|
+
Requires-Dist: scipy (==1.10.1) ; (python_version < "3.12") and extra == 'all'
|
|
45
|
+
Requires-Dist: xgboost (==1.7.4) ; (python_version < "3.12") and extra == 'all'
|
|
46
|
+
Requires-Dist: u8darts (==0.25.0) ; (python_version < "3.12") and extra == 'all'
|
|
47
|
+
Requires-Dist: optuna (==3.3.0) ; (python_version < "3.12") and extra == 'all'
|
|
48
|
+
Requires-Dist: explainerdashboard (==0.4.2.1) ; (python_version < "3.12") and extra == 'all'
|
|
49
|
+
Requires-Dist: ipywidgets (==8.0.4) ; (python_version < "3.12") and extra == 'all'
|
|
50
|
+
Requires-Dist: kaleido (==0.2.1) ; (python_version < "3.12") and extra == 'all'
|
|
51
|
+
Requires-Dist: pytest (==7.2.2) ; (python_version < "3.12") and extra == 'all'
|
|
52
|
+
Requires-Dist: pytest-cov (==4.0.0) ; (python_version < "3.12") and extra == 'all'
|
|
53
|
+
Requires-Dist: shapely (==2.0.1) ; (python_version < "3.12") and extra == 'all'
|
|
54
|
+
Requires-Dist: pyodbc (==4.0.35) ; (python_version < "3.12") and extra == 'all'
|
|
55
|
+
Requires-Dist: requests (>=2.32.5) ; (python_version >= "3.11") and extra == 'all'
|
|
56
|
+
Requires-Dist: setuptools (>=80.9.0) ; (python_version >= "3.11") and extra == 'all'
|
|
57
|
+
Requires-Dist: matplotlib (>=3.10.6) ; (python_version >= "3.11") and extra == 'all'
|
|
58
|
+
Requires-Dist: pandas (==2.2.3) ; (python_version >= "3.11" and python_version < "3.12") and extra == 'all'
|
|
59
|
+
Requires-Dist: protobuf (==5.29.5) ; (python_version >= "3.11" and python_version < "3.12") and extra == 'all'
|
|
60
|
+
Requires-Dist: torch (==2.7.1) ; (python_version >= "3.11" and python_version < "3.12") and extra == 'all'
|
|
61
|
+
Requires-Dist: pandas (>=2.3.3) ; (python_version >= "3.12") and extra == 'all'
|
|
62
|
+
Requires-Dist: numpy (>=2.3.3) ; (python_version >= "3.12") and extra == 'all'
|
|
63
|
+
Requires-Dist: dill (==0.4.0) ; (python_version >= "3.12") and extra == 'all'
|
|
64
|
+
Requires-Dist: protobuf (>=5.29.5) ; (python_version >= "3.12") and extra == 'all'
|
|
65
|
+
Requires-Dist: msal (>=1.34.0) ; (python_version >= "3.12") and extra == 'all'
|
|
66
|
+
Requires-Dist: joblib (>=1.2.0) ; (python_version >= "3.12") and extra == 'all'
|
|
67
|
+
Requires-Dist: plotly (>=6.3.1) ; (python_version >= "3.12") and extra == 'all'
|
|
68
|
+
Requires-Dist: tensorflow (>=2.20.0) ; (python_version >= "3.12") and extra == 'all'
|
|
69
|
+
Requires-Dist: keras (>=3.11.3) ; (python_version >= "3.12") and extra == 'all'
|
|
70
|
+
Requires-Dist: tensorflow-probability (>=0.25.0) ; (python_version >= "3.12") and extra == 'all'
|
|
71
|
+
Requires-Dist: scikit-learn (>=1.7.2) ; (python_version >= "3.12") and extra == 'all'
|
|
72
|
+
Requires-Dist: scipy (>=1.16.2) ; (python_version >= "3.12") and extra == 'all'
|
|
73
|
+
Requires-Dist: xgboost (>=3.0.5) ; (python_version >= "3.12") and extra == 'all'
|
|
74
|
+
Requires-Dist: u8darts (>=0.38.0) ; (python_version >= "3.12") and extra == 'all'
|
|
75
|
+
Requires-Dist: optuna (>=4.5.0) ; (python_version >= "3.12") and extra == 'all'
|
|
76
|
+
Requires-Dist: ipywidgets (>=8.1.7) ; (python_version >= "3.12") and extra == 'all'
|
|
77
|
+
Requires-Dist: kaleido (>=1.1.0) ; (python_version >= "3.12") and extra == 'all'
|
|
78
|
+
Requires-Dist: pytest (>=8.4.2) ; (python_version >= "3.12") and extra == 'all'
|
|
79
|
+
Requires-Dist: pytest-cov (>=7.0.0) ; (python_version >= "3.12") and extra == 'all'
|
|
80
|
+
Requires-Dist: shapely (>=2.1.2) ; (python_version >= "3.12") and extra == 'all'
|
|
81
|
+
Requires-Dist: pyodbc (>=5.2.0) ; (python_version >= "3.12") and extra == 'all'
|
|
82
|
+
Requires-Dist: torch (>=2.8.0) ; (python_version >= "3.12") and extra == 'all'
|
|
83
|
+
Requires-Dist: tensorflow-macos (>=2.15.0) ; (sys_platform == "darwin" and platform_machine == "arm64" and python_version < "3.12") and extra == 'all'
|
|
84
|
+
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
wizata_dsapi/__init__.py,sha256=
|
|
1
|
+
wizata_dsapi/__init__.py,sha256=aVeizk2zzmAX0TLNG9o7vcmG8KB73XiXw1_qozrJN2w,2072
|
|
2
2
|
wizata_dsapi/api_config.py,sha256=6Pnnv62X_QrTUXaa1MtFZeQaqMUJC-9Y5BW7B4gef10,5139
|
|
3
3
|
wizata_dsapi/api_dto.py,sha256=-NdaTRvw5jW5xFGpIhY8U0-SdvzW2t6QD26y0UPApU0,2238
|
|
4
4
|
wizata_dsapi/api_interface.py,sha256=DURk-0ey16T8sV5e2Y2G_YybPEusJvZuY0oD5L7AnXo,10903
|
|
@@ -16,7 +16,7 @@ wizata_dsapi/experiment.py,sha256=QYQ1CJ-MTWsXq08xYbm5sAp95dRxbPOmGDgaAOoBMDQ,46
|
|
|
16
16
|
wizata_dsapi/group_system.py,sha256=6rUKe0_J3YWACysyBlzuw_TEpKNXgLOMxhpWsNxOzwY,1708
|
|
17
17
|
wizata_dsapi/ilogger.py,sha256=iYnID-Z-qrYhie26C43404aIuU4_tHSKXbDeQIdo82Q,807
|
|
18
18
|
wizata_dsapi/insight.py,sha256=ABFZ04DqYxxzqAEfU1tzlTZqqrigM-zN-8Lbetko3g0,6468
|
|
19
|
-
wizata_dsapi/mlmodel.py,sha256=
|
|
19
|
+
wizata_dsapi/mlmodel.py,sha256=8oRq6hoVAwN44490s7NrvlmzHVg6-8WO-Z60LrYARmU,22152
|
|
20
20
|
wizata_dsapi/model_toolkit.py,sha256=UNyw5CFSgZeXydQFsiDIRTjoMeqIsdyIIuiwumLW5bA,1574
|
|
21
21
|
wizata_dsapi/paged_query_result.py,sha256=0Iyt2Kd4tvrfthhT-tk9EmSERsbJTaPNON2euHcBn6k,1150
|
|
22
22
|
wizata_dsapi/pipeline.py,sha256=WDJeOxPZJiYW1qwTNZUm3jom2epIxqrSoiUwcrTF9EE,31300
|
|
@@ -31,7 +31,7 @@ wizata_dsapi/template.py,sha256=wtCRKKk3PchH4RrNgNYlEF_9C6bzZwKIeLyEvgv6Fdo,1370
|
|
|
31
31
|
wizata_dsapi/trigger.py,sha256=w3BZYP-L3SUwvaT0oCTanh_Ewn57peZvlt7vxzHv9J8,5129
|
|
32
32
|
wizata_dsapi/twin.py,sha256=S0DUzQf1smZXZTdXpXZPtkZYCfKIhw53EecCnsl9i4Q,11017
|
|
33
33
|
wizata_dsapi/twinregistration.py,sha256=Mi6-YuwroiEXc0c1hgrOaphh4hNVoHupxOnXedVtJtE,13377
|
|
34
|
-
wizata_dsapi/version.py,sha256=
|
|
34
|
+
wizata_dsapi/version.py,sha256=ZFzPwcVApl0WXETY3ii4RpYWOC9l9iNTKU07I0HChdg,23
|
|
35
35
|
wizata_dsapi/wizard_function.py,sha256=RbM7W7Gf-6Rhp_1dU9DBYkHaciknGAGvuAndhAS_vyo,942
|
|
36
36
|
wizata_dsapi/wizard_request.py,sha256=v6BaqKLKvTWmUSo0_gda9FabAQz5x_-GOH1Av50GzFo,3762
|
|
37
37
|
wizata_dsapi/wizata_dsapi_client.py,sha256=h8iSz7IGbP-Zq9rbqMdq-hTrt16laD1JeaRWPzaLaoo,77695
|
|
@@ -42,8 +42,8 @@ wizata_dsapi/plots/__init__.py,sha256=qgnSFqrjOPur-807M8uh5awIfjM1ZHXUXcAqHc-r2l
|
|
|
42
42
|
wizata_dsapi/plots/common.py,sha256=jdPsJqLHBwSKc6dX83BSGPqSRxzIVNHSYO5yI_8sjGk,6568
|
|
43
43
|
wizata_dsapi/scripts/__init__.py,sha256=hAxiETSQf0qOHde1si1tEAJU48seqEgHrchCzS2-LvQ,80
|
|
44
44
|
wizata_dsapi/scripts/common.py,sha256=efwq-Rd0lvYljIs3gSFz9izogBD7asOU2cTK-IvHTkM,4244
|
|
45
|
-
wizata_dsapi-1.3.
|
|
46
|
-
wizata_dsapi-1.3.
|
|
47
|
-
wizata_dsapi-1.3.
|
|
48
|
-
wizata_dsapi-1.3.
|
|
49
|
-
wizata_dsapi-1.3.
|
|
45
|
+
wizata_dsapi-1.3.34.dist-info/LICENSE.txt,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
46
|
+
wizata_dsapi-1.3.34.dist-info/METADATA,sha256=f3XiXVKkbEnDaQ74Mgh0-JmqIpLDPGMBUQcyeHEHSCI,6119
|
|
47
|
+
wizata_dsapi-1.3.34.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
48
|
+
wizata_dsapi-1.3.34.dist-info/top_level.txt,sha256=-OeTJbEnh5DuWyTOHtvw0Dw3LRg3G27TNS6W4ZtfwPs,13
|
|
49
|
+
wizata_dsapi-1.3.34.dist-info/RECORD,,
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: wizata_dsapi
|
|
3
|
-
Version: 1.3.32
|
|
4
|
-
Summary: Wizata Data Science Toolkit
|
|
5
|
-
Author: Wizata S.A.
|
|
6
|
-
Author-email: info@wizata.com
|
|
7
|
-
License-File: LICENSE.txt
|
|
8
|
-
Requires-Dist: pandas==1.5.3; python_version < "3.11"
|
|
9
|
-
Requires-Dist: pandas==2.2.3; python_version >= "3.11" and python_version < "3.12"
|
|
10
|
-
Requires-Dist: pandas>=2.3.3; python_version >= "3.12"
|
|
11
|
-
Requires-Dist: numpy==1.26.4; python_version < "3.12"
|
|
12
|
-
Requires-Dist: numpy>=2.3.3; python_version >= "3.12"
|
|
13
|
-
Requires-Dist: dill==0.3.6; python_version < "3.12"
|
|
14
|
-
Requires-Dist: dill==0.4.0; python_version >= "3.12"
|
|
15
|
-
Requires-Dist: protobuf==3.20.3; python_version < "3.11"
|
|
16
|
-
Requires-Dist: protobuf==5.29.5; python_version >= "3.11" and python_version < "3.12"
|
|
17
|
-
Requires-Dist: protobuf>=5.29.5; python_version >= "3.12"
|
|
18
|
-
Requires-Dist: msal==1.30.0; python_version < "3.12"
|
|
19
|
-
Requires-Dist: msal>=1.34.0; python_version >= "3.12"
|
|
20
|
-
Requires-Dist: joblib==1.5.2; python_version < "3.12"
|
|
21
|
-
Requires-Dist: joblib>=1.2.0; python_version >= "3.12"
|
|
22
|
-
Requires-Dist: requests==2.28.2; python_version < "3.11"
|
|
23
|
-
Requires-Dist: requests>=2.32.5; python_version >= "3.11"
|
|
24
|
-
Requires-Dist: setuptools==67.6.0; python_version < "3.11"
|
|
25
|
-
Requires-Dist: setuptools>=80.9.0; python_version >= "3.11"
|
|
26
|
-
Requires-Dist: plotly==5.13.1; python_version < "3.12"
|
|
27
|
-
Requires-Dist: plotly>=6.3.1; python_version >= "3.12"
|
|
28
|
-
Provides-Extra: all
|
|
29
|
-
Requires-Dist: pandas==1.5.3; python_version < "3.11" and extra == "all"
|
|
30
|
-
Requires-Dist: pandas==2.2.3; (python_version >= "3.11" and python_version < "3.12") and extra == "all"
|
|
31
|
-
Requires-Dist: pandas>=2.3.3; python_version >= "3.12" and extra == "all"
|
|
32
|
-
Requires-Dist: numpy==1.26.4; python_version < "3.12" and extra == "all"
|
|
33
|
-
Requires-Dist: numpy>=2.3.3; python_version >= "3.12" and extra == "all"
|
|
34
|
-
Requires-Dist: dill==0.3.6; python_version < "3.12" and extra == "all"
|
|
35
|
-
Requires-Dist: dill==0.4.0; python_version >= "3.12" and extra == "all"
|
|
36
|
-
Requires-Dist: protobuf==3.20.3; python_version < "3.11" and extra == "all"
|
|
37
|
-
Requires-Dist: protobuf==5.29.5; (python_version >= "3.11" and python_version < "3.12") and extra == "all"
|
|
38
|
-
Requires-Dist: protobuf>=5.29.5; python_version >= "3.12" and extra == "all"
|
|
39
|
-
Requires-Dist: msal==1.30.0; python_version < "3.12" and extra == "all"
|
|
40
|
-
Requires-Dist: msal>=1.34.0; python_version >= "3.12" and extra == "all"
|
|
41
|
-
Requires-Dist: joblib==1.5.2; python_version < "3.12" and extra == "all"
|
|
42
|
-
Requires-Dist: joblib>=1.2.0; python_version >= "3.12" and extra == "all"
|
|
43
|
-
Requires-Dist: requests==2.28.2; python_version < "3.11" and extra == "all"
|
|
44
|
-
Requires-Dist: requests>=2.32.5; python_version >= "3.11" and extra == "all"
|
|
45
|
-
Requires-Dist: setuptools==67.6.0; python_version < "3.11" and extra == "all"
|
|
46
|
-
Requires-Dist: setuptools>=80.9.0; python_version >= "3.11" and extra == "all"
|
|
47
|
-
Requires-Dist: plotly==5.13.1; python_version < "3.12" and extra == "all"
|
|
48
|
-
Requires-Dist: plotly>=6.3.1; python_version >= "3.12" and extra == "all"
|
|
49
|
-
Requires-Dist: matplotlib==3.7.1; python_version < "3.11" and extra == "all"
|
|
50
|
-
Requires-Dist: matplotlib>=3.10.6; python_version >= "3.11" and extra == "all"
|
|
51
|
-
Requires-Dist: tensorflow>=2.15.0; ((sys_platform != "darwin" or platform_machine != "arm64") and python_version < "3.12") and extra == "all"
|
|
52
|
-
Requires-Dist: tensorflow-macos>=2.15.0; (sys_platform == "darwin" and platform_machine == "arm64" and python_version < "3.12") and extra == "all"
|
|
53
|
-
Requires-Dist: tensorflow>=2.20.0; python_version >= "3.12" and extra == "all"
|
|
54
|
-
Requires-Dist: keras==2.15.0; python_version < "3.12" and extra == "all"
|
|
55
|
-
Requires-Dist: keras>=3.11.3; python_version >= "3.12" and extra == "all"
|
|
56
|
-
Requires-Dist: tensorflow_probability==0.15.0; python_version < "3.12" and extra == "all"
|
|
57
|
-
Requires-Dist: tensorflow_probability>=0.25.0; python_version >= "3.12" and extra == "all"
|
|
58
|
-
Requires-Dist: scikit-learn==1.2.2; python_version < "3.12" and extra == "all"
|
|
59
|
-
Requires-Dist: scikit-learn>=1.7.2; python_version >= "3.12" and extra == "all"
|
|
60
|
-
Requires-Dist: adtk==0.6.2; extra == "all"
|
|
61
|
-
Requires-Dist: scipy==1.10.1; python_version < "3.12" and extra == "all"
|
|
62
|
-
Requires-Dist: scipy>=1.16.2; python_version >= "3.12" and extra == "all"
|
|
63
|
-
Requires-Dist: xgboost==1.7.4; python_version < "3.12" and extra == "all"
|
|
64
|
-
Requires-Dist: xgboost>=3.0.5; python_version >= "3.12" and extra == "all"
|
|
65
|
-
Requires-Dist: u8darts==0.25.0; python_version < "3.12" and extra == "all"
|
|
66
|
-
Requires-Dist: u8darts>=0.38.0; python_version >= "3.12" and extra == "all"
|
|
67
|
-
Requires-Dist: optuna==3.3.0; python_version < "3.12" and extra == "all"
|
|
68
|
-
Requires-Dist: optuna>=4.5.0; python_version >= "3.12" and extra == "all"
|
|
69
|
-
Requires-Dist: explainerdashboard==0.4.2.1; python_version < "3.12" and extra == "all"
|
|
70
|
-
Requires-Dist: ipywidgets==8.0.4; python_version < "3.12" and extra == "all"
|
|
71
|
-
Requires-Dist: ipywidgets>=8.1.7; python_version >= "3.12" and extra == "all"
|
|
72
|
-
Requires-Dist: kaleido==0.2.1; python_version < "3.12" and extra == "all"
|
|
73
|
-
Requires-Dist: kaleido>=1.1.0; python_version >= "3.12" and extra == "all"
|
|
74
|
-
Requires-Dist: pytest==7.2.2; python_version < "3.12" and extra == "all"
|
|
75
|
-
Requires-Dist: pytest>=8.4.2; python_version >= "3.12" and extra == "all"
|
|
76
|
-
Requires-Dist: pytest-cov==4.0.0; python_version < "3.12" and extra == "all"
|
|
77
|
-
Requires-Dist: pytest-cov>=7.0.0; python_version >= "3.12" and extra == "all"
|
|
78
|
-
Requires-Dist: shapely==2.0.1; python_version < "3.12" and extra == "all"
|
|
79
|
-
Requires-Dist: shapely>=2.1.2; python_version >= "3.12" and extra == "all"
|
|
80
|
-
Requires-Dist: pyodbc==4.0.35; python_version < "3.12" and extra == "all"
|
|
81
|
-
Requires-Dist: pyodbc>=5.2.0; python_version >= "3.12" and extra == "all"
|
|
82
|
-
Requires-Dist: torch==2.7.1; (python_version >= "3.11" and python_version < "3.12") and extra == "all"
|
|
83
|
-
Requires-Dist: torch>=2.8.0; python_version >= "3.12" and extra == "all"
|
|
84
|
-
Dynamic: author
|
|
85
|
-
Dynamic: author-email
|
|
86
|
-
Dynamic: license-file
|
|
87
|
-
Dynamic: provides-extra
|
|
88
|
-
Dynamic: requires-dist
|
|
89
|
-
Dynamic: summary
|
|
File without changes
|
|
File without changes
|