wizata-dsapi 1.4.0.dev18__py3-none-any.whl → 1.4.0.dev20__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/execution_log.py +9 -4
- wizata_dsapi/version.py +1 -1
- {wizata_dsapi-1.4.0.dev18.dist-info → wizata_dsapi-1.4.0.dev20.dist-info}/METADATA +1 -18
- {wizata_dsapi-1.4.0.dev18.dist-info → wizata_dsapi-1.4.0.dev20.dist-info}/RECORD +7 -7
- {wizata_dsapi-1.4.0.dev18.dist-info → wizata_dsapi-1.4.0.dev20.dist-info}/WHEEL +1 -1
- {wizata_dsapi-1.4.0.dev18.dist-info → wizata_dsapi-1.4.0.dev20.dist-info}/licenses/LICENSE.txt +0 -0
- {wizata_dsapi-1.4.0.dev18.dist-info → wizata_dsapi-1.4.0.dev20.dist-info}/top_level.txt +0 -0
wizata_dsapi/execution_log.py
CHANGED
|
@@ -39,7 +39,7 @@ class ExecutionLog(Dto):
|
|
|
39
39
|
|
|
40
40
|
# non-persistent values
|
|
41
41
|
:ivar dict properties: properties containing key/value pairs used to parametrize the pipeline execution
|
|
42
|
-
:ivar list
|
|
42
|
+
:ivar list messages: list of error and/or warning messages
|
|
43
43
|
"""
|
|
44
44
|
|
|
45
45
|
@classmethod
|
|
@@ -72,7 +72,8 @@ class ExecutionLog(Dto):
|
|
|
72
72
|
trigger_id=uuid.UUID(data["executionTriggerId"]) if "executionTriggerId" in data and data["executionTriggerId"] is not None else None,
|
|
73
73
|
version=data.get("version"),
|
|
74
74
|
properties=properties,
|
|
75
|
-
plots=_plots
|
|
75
|
+
plots=_plots,
|
|
76
|
+
messages=data.get("messages") or ([data.get("message")] if data.get("message") else None)
|
|
76
77
|
)
|
|
77
78
|
|
|
78
79
|
def __init__(self,
|
|
@@ -92,7 +93,8 @@ class ExecutionLog(Dto):
|
|
|
92
93
|
trigger_id: uuid.UUID = None,
|
|
93
94
|
version: str = None,
|
|
94
95
|
properties: dict = None,
|
|
95
|
-
plots: list = None
|
|
96
|
+
plots: list = None,
|
|
97
|
+
messages: list = None):
|
|
96
98
|
|
|
97
99
|
# labels
|
|
98
100
|
self._experiment = None
|
|
@@ -146,7 +148,10 @@ class ExecutionLog(Dto):
|
|
|
146
148
|
else:
|
|
147
149
|
self.plots = []
|
|
148
150
|
self.dataframes = []
|
|
149
|
-
|
|
151
|
+
if messages is not None:
|
|
152
|
+
self.messages = messages
|
|
153
|
+
else:
|
|
154
|
+
self.messages = []
|
|
150
155
|
|
|
151
156
|
@property
|
|
152
157
|
def experiment(self):
|
wizata_dsapi/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.4.0.
|
|
1
|
+
__version__ = "1.4.0.dev20"
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wizata_dsapi
|
|
3
|
-
Version: 1.4.0.
|
|
3
|
+
Version: 1.4.0.dev20
|
|
4
4
|
Summary: Wizata Data Science Toolkit
|
|
5
|
-
Home-page: https://www.wizata.com
|
|
6
5
|
Author: Wizata S.A.
|
|
7
6
|
Author-email: info@wizata.com
|
|
8
|
-
Requires-Python: >=3.9
|
|
9
|
-
Description-Content-Type: text/x-rst
|
|
10
7
|
License-File: LICENSE.txt
|
|
11
8
|
Requires-Dist: pandas==1.5.3; python_version < "3.11"
|
|
12
9
|
Requires-Dist: pandas==2.2.3; python_version >= "3.11" and python_version < "3.12"
|
|
@@ -77,21 +74,7 @@ Requires-Dist: torch==2.7.1; (python_version >= "3.11" and python_version < "3.1
|
|
|
77
74
|
Requires-Dist: torch>=2.8.0; python_version >= "3.12" and extra == "all"
|
|
78
75
|
Dynamic: author
|
|
79
76
|
Dynamic: author-email
|
|
80
|
-
Dynamic: description
|
|
81
|
-
Dynamic: description-content-type
|
|
82
|
-
Dynamic: home-page
|
|
83
77
|
Dynamic: license-file
|
|
84
78
|
Dynamic: provides-extra
|
|
85
79
|
Dynamic: requires-dist
|
|
86
|
-
Dynamic: requires-python
|
|
87
80
|
Dynamic: summary
|
|
88
|
-
|
|
89
|
-
===========================
|
|
90
|
-
Wizata Data Science Package
|
|
91
|
-
===========================
|
|
92
|
-
|
|
93
|
-
This module is intended to be used to create and distribute data science modules within Wizata Platform.
|
|
94
|
-
|
|
95
|
-
Documentation can be found https://<your_tenant>.onwizata.com/docs
|
|
96
|
-
|
|
97
|
-
For more information please visit https://www.wizata.com
|
|
@@ -12,7 +12,7 @@ wizata_dsapi/ds_dataframe.py,sha256=Sk2JRUuTRJzko3HosJnbK34STpgSJUlqxLq8w_E5VM4,
|
|
|
12
12
|
wizata_dsapi/dsapi_json_encoder.py,sha256=_NJE2IncJCS-juOxV_IQWHq8WpaanKe2aWpGNZNUzyk,2062
|
|
13
13
|
wizata_dsapi/evaluation.py,sha256=kB61SD66uRBBbKqiES7XZERn77bwhacbyufneSD4s8c,2222
|
|
14
14
|
wizata_dsapi/execution.py,sha256=JuU8qZDcUZxtCvQwwvM_luwHi18GQ2jbBSxAjc2cSlM,14148
|
|
15
|
-
wizata_dsapi/execution_log.py,sha256=
|
|
15
|
+
wizata_dsapi/execution_log.py,sha256=bqfpck3L8CKYGftzcnSkbrr0-m45OMfhURGhTTVvsys,15417
|
|
16
16
|
wizata_dsapi/experiment.py,sha256=QYQ1CJ-MTWsXq08xYbm5sAp95dRxbPOmGDgaAOoBMDQ,4631
|
|
17
17
|
wizata_dsapi/group_system.py,sha256=6rUKe0_J3YWACysyBlzuw_TEpKNXgLOMxhpWsNxOzwY,1708
|
|
18
18
|
wizata_dsapi/ilogger.py,sha256=YKBTRp7pHYtBlnzroGRPT91_bMVJT93Pft3fUGcFSIM,488
|
|
@@ -32,7 +32,7 @@ wizata_dsapi/template.py,sha256=wtCRKKk3PchH4RrNgNYlEF_9C6bzZwKIeLyEvgv6Fdo,1370
|
|
|
32
32
|
wizata_dsapi/trigger.py,sha256=w3BZYP-L3SUwvaT0oCTanh_Ewn57peZvlt7vxzHv9J8,5129
|
|
33
33
|
wizata_dsapi/twin.py,sha256=S0DUzQf1smZXZTdXpXZPtkZYCfKIhw53EecCnsl9i4Q,11017
|
|
34
34
|
wizata_dsapi/twinregistration.py,sha256=Mi6-YuwroiEXc0c1hgrOaphh4hNVoHupxOnXedVtJtE,13377
|
|
35
|
-
wizata_dsapi/version.py,sha256=
|
|
35
|
+
wizata_dsapi/version.py,sha256=rdWb7-sRh1ikR1MPSNXnFtr5Wgd4se16okHI7g_hfYA,28
|
|
36
36
|
wizata_dsapi/wizard_function.py,sha256=RbM7W7Gf-6Rhp_1dU9DBYkHaciknGAGvuAndhAS_vyo,942
|
|
37
37
|
wizata_dsapi/wizard_request.py,sha256=v6BaqKLKvTWmUSo0_gda9FabAQz5x_-GOH1Av50GzFo,3762
|
|
38
38
|
wizata_dsapi/wizata_dsapi_client.py,sha256=pClIADBb_CfgT4P4Hz9mopgsuC0Wa_XiZBuej7x5JUM,85056
|
|
@@ -43,8 +43,8 @@ wizata_dsapi/plots/__init__.py,sha256=qgnSFqrjOPur-807M8uh5awIfjM1ZHXUXcAqHc-r2l
|
|
|
43
43
|
wizata_dsapi/plots/common.py,sha256=jdPsJqLHBwSKc6dX83BSGPqSRxzIVNHSYO5yI_8sjGk,6568
|
|
44
44
|
wizata_dsapi/scripts/__init__.py,sha256=hAxiETSQf0qOHde1si1tEAJU48seqEgHrchCzS2-LvQ,80
|
|
45
45
|
wizata_dsapi/scripts/common.py,sha256=efwq-Rd0lvYljIs3gSFz9izogBD7asOU2cTK-IvHTkM,4244
|
|
46
|
-
wizata_dsapi-1.4.0.
|
|
47
|
-
wizata_dsapi-1.4.0.
|
|
48
|
-
wizata_dsapi-1.4.0.
|
|
49
|
-
wizata_dsapi-1.4.0.
|
|
50
|
-
wizata_dsapi-1.4.0.
|
|
46
|
+
wizata_dsapi-1.4.0.dev20.dist-info/licenses/LICENSE.txt,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
47
|
+
wizata_dsapi-1.4.0.dev20.dist-info/METADATA,sha256=XAsaess3KexlRaXwYVSKXsXETqz4ndGgkTGyPZp2ISc,4960
|
|
48
|
+
wizata_dsapi-1.4.0.dev20.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
49
|
+
wizata_dsapi-1.4.0.dev20.dist-info/top_level.txt,sha256=-OeTJbEnh5DuWyTOHtvw0Dw3LRg3G27TNS6W4ZtfwPs,13
|
|
50
|
+
wizata_dsapi-1.4.0.dev20.dist-info/RECORD,,
|
{wizata_dsapi-1.4.0.dev18.dist-info → wizata_dsapi-1.4.0.dev20.dist-info}/licenses/LICENSE.txt
RENAMED
|
File without changes
|
|
File without changes
|