zenml-nightly 0.58.2.dev20240617__py3-none-any.whl → 0.58.2.dev20240618__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.
- zenml/VERSION +1 -1
- zenml/config/step_run_info.py +3 -0
- zenml/integrations/airflow/__init__.py +5 -1
- zenml/integrations/aws/step_operators/sagemaker_step_operator.py +1 -1
- zenml/integrations/azure/step_operators/azureml_step_operator.py +1 -0
- zenml/integrations/constants.py +0 -1
- zenml/integrations/deepchecks/__init__.py +1 -0
- zenml/integrations/evidently/__init__.py +4 -1
- zenml/integrations/gcp/step_operators/vertex_step_operator.py +1 -0
- zenml/integrations/langchain/__init__.py +5 -1
- zenml/integrations/neural_prophet/__init__.py +5 -1
- zenml/integrations/spark/step_operators/spark_step_operator.py +2 -0
- zenml/logging/step_logging.py +15 -7
- zenml/orchestrators/step_launcher.py +28 -4
- zenml/step_operators/step_operator_entrypoint_configuration.py +1 -0
- zenml/utils/pipeline_docker_image_builder.py +9 -0
- {zenml_nightly-0.58.2.dev20240617.dist-info → zenml_nightly-0.58.2.dev20240618.dist-info}/METADATA +2 -1
- {zenml_nightly-0.58.2.dev20240617.dist-info → zenml_nightly-0.58.2.dev20240618.dist-info}/RECORD +21 -21
- {zenml_nightly-0.58.2.dev20240617.dist-info → zenml_nightly-0.58.2.dev20240618.dist-info}/LICENSE +0 -0
- {zenml_nightly-0.58.2.dev20240617.dist-info → zenml_nightly-0.58.2.dev20240618.dist-info}/WHEEL +0 -0
- {zenml_nightly-0.58.2.dev20240617.dist-info → zenml_nightly-0.58.2.dev20240618.dist-info}/entry_points.txt +0 -0
zenml/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.58.2.
|
1
|
+
0.58.2.dev20240618
|
zenml/config/step_run_info.py
CHANGED
@@ -13,6 +13,7 @@
|
|
13
13
|
# permissions and limitations under the License.
|
14
14
|
"""Step run info."""
|
15
15
|
|
16
|
+
from typing import Any, Callable
|
16
17
|
from uuid import UUID
|
17
18
|
|
18
19
|
from zenml.config.pipeline_configurations import PipelineConfiguration
|
@@ -31,6 +32,8 @@ class StepRunInfo(StrictBaseModel):
|
|
31
32
|
config: StepConfiguration
|
32
33
|
pipeline: PipelineConfiguration
|
33
34
|
|
35
|
+
force_write_logs: Callable[..., Any]
|
36
|
+
|
34
37
|
def get_image(self, key: str) -> str:
|
35
38
|
"""Gets the Docker image for the given key.
|
36
39
|
|
@@ -32,7 +32,11 @@ class AirflowIntegration(Integration):
|
|
32
32
|
NAME = AIRFLOW
|
33
33
|
# remove pendulum version requirement once Airflow supports
|
34
34
|
# pendulum>-3.0.0
|
35
|
-
REQUIREMENTS = [
|
35
|
+
REQUIREMENTS = [
|
36
|
+
"apache-airflow~=2.4.0",
|
37
|
+
"pendulum<3.0.0",
|
38
|
+
"tenacity!=8.4.0", # https://github.com/jd/tenacity/issues/471
|
39
|
+
]
|
36
40
|
|
37
41
|
@classmethod
|
38
42
|
def flavors(cls) -> List[Type[Flavor]]:
|
zenml/integrations/constants.py
CHANGED
@@ -41,6 +41,7 @@ class DeepchecksIntegration(Integration):
|
|
41
41
|
"pandas<2.0.0",
|
42
42
|
"opencv-python==4.5.5.64", # pin to same version
|
43
43
|
"opencv-python-headless==4.5.5.64", # pin to same version
|
44
|
+
"tenacity!=8.4.0", # https://github.com/jd/tenacity/issues/471
|
44
45
|
]
|
45
46
|
APT_PACKAGES = ["ffmpeg", "libsm6", "libxext6"]
|
46
47
|
|
@@ -54,7 +54,10 @@ class EvidentlyIntegration(Integration):
|
|
54
54
|
"""[Evidently](https://github.com/evidentlyai/evidently) integration for ZenML."""
|
55
55
|
|
56
56
|
NAME = EVIDENTLY
|
57
|
-
REQUIREMENTS = [
|
57
|
+
REQUIREMENTS = [
|
58
|
+
"evidently>0.2.6,<0.4.5",
|
59
|
+
"tenacity!=8.4.0", # https://github.com/jd/tenacity/issues/471
|
60
|
+
] # supports pyyaml 6
|
58
61
|
|
59
62
|
@classmethod
|
60
63
|
def flavors(cls) -> List[Type[Flavor]]:
|
@@ -25,7 +25,11 @@ class LangchainIntegration(Integration):
|
|
25
25
|
"""Definition of langchain integration for ZenML."""
|
26
26
|
|
27
27
|
NAME = LANGCHAIN
|
28
|
-
REQUIREMENTS = [
|
28
|
+
REQUIREMENTS = [
|
29
|
+
"langchain==0.0.325",
|
30
|
+
"pyyaml>=6.0.1",
|
31
|
+
"tenacity!=8.4.0", # https://github.com/jd/tenacity/issues/471
|
32
|
+
]
|
29
33
|
|
30
34
|
@classmethod
|
31
35
|
def activate(cls) -> None:
|
@@ -21,7 +21,11 @@ class NeuralProphetIntegration(Integration):
|
|
21
21
|
"""Definition of NeuralProphet integration for ZenML."""
|
22
22
|
|
23
23
|
NAME = NEURAL_PROPHET
|
24
|
-
REQUIREMENTS = [
|
24
|
+
REQUIREMENTS = [
|
25
|
+
"neuralprophet>=0.3.2,<0.5.0",
|
26
|
+
"holidays>=0.4.1,<0.25.0",
|
27
|
+
"tenacity!=8.4.0", # https://github.com/jd/tenacity/issues/471
|
28
|
+
]
|
25
29
|
|
26
30
|
@classmethod
|
27
31
|
def activate(cls) -> None:
|
@@ -303,6 +303,8 @@ class SparkStepOperator(BaseStepOperator):
|
|
303
303
|
# Add any additional configuration given by the user.
|
304
304
|
self._additional_configuration(spark_config=conf, settings=settings)
|
305
305
|
|
306
|
+
info.force_write_logs()
|
307
|
+
|
306
308
|
# Generate a spark-submit command given the configuration
|
307
309
|
self._launch_spark_job(
|
308
310
|
spark_config=conf,
|
zenml/logging/step_logging.py
CHANGED
@@ -98,7 +98,7 @@ def prepare_logs_uri(
|
|
98
98
|
artifact_store.makedirs(logs_uri_folder)
|
99
99
|
return logs_uri_folder
|
100
100
|
else:
|
101
|
-
logs_uri = os.path.join(logs_base_uri, f"{log_key}
|
101
|
+
logs_uri = os.path.join(logs_base_uri, f"{log_key}{LOGS_EXTENSION}")
|
102
102
|
if artifact_store.exists(logs_uri):
|
103
103
|
logger.warning(
|
104
104
|
f"Logs file {logs_uri} already exists! Removing old log file..."
|
@@ -238,7 +238,7 @@ class StepLogsStorage:
|
|
238
238
|
# Immutable filesystems state
|
239
239
|
self.last_merge_time = time.time()
|
240
240
|
self.log_files_not_merged: List[str] = []
|
241
|
-
self.next_merged_file_name: str =
|
241
|
+
self.next_merged_file_name: str = self._get_timestamped_filename()
|
242
242
|
|
243
243
|
@property
|
244
244
|
def artifact_store(self) -> "BaseArtifactStore":
|
@@ -276,6 +276,14 @@ class StepLogsStorage:
|
|
276
276
|
or time.time() - self.last_save_time >= self.time_interval
|
277
277
|
)
|
278
278
|
|
279
|
+
def _get_timestamped_filename(self) -> str:
|
280
|
+
"""Returns a timestamped filename.
|
281
|
+
|
282
|
+
Returns:
|
283
|
+
The timestamped filename.
|
284
|
+
"""
|
285
|
+
return f"{time.time()}{LOGS_EXTENSION}"
|
286
|
+
|
279
287
|
def save_to_file(self, force: bool = False) -> None:
|
280
288
|
"""Method to save the buffer to the given URI.
|
281
289
|
|
@@ -293,14 +301,14 @@ class StepLogsStorage:
|
|
293
301
|
if self.artifact_store.config.IS_IMMUTABLE_FILESYSTEM:
|
294
302
|
if not self.log_files_not_merged:
|
295
303
|
self.next_merged_file_name = (
|
296
|
-
|
304
|
+
self._get_timestamped_filename()
|
297
305
|
)
|
298
|
-
|
299
|
-
self.log_files_not_merged.append(
|
306
|
+
_logs_uri = self._get_timestamped_filename()
|
307
|
+
self.log_files_not_merged.append(_logs_uri)
|
300
308
|
with self.artifact_store.open(
|
301
309
|
os.path.join(
|
302
310
|
self.logs_uri,
|
303
|
-
|
311
|
+
_logs_uri,
|
304
312
|
),
|
305
313
|
"w",
|
306
314
|
) as file:
|
@@ -360,7 +368,7 @@ class StepLogsStorage:
|
|
360
368
|
"""
|
361
369
|
if self.artifact_store.config.IS_IMMUTABLE_FILESYSTEM:
|
362
370
|
files_ = files or self.artifact_store.listdir(self.logs_uri)
|
363
|
-
file_name_ = file_name or
|
371
|
+
file_name_ = file_name or self._get_timestamped_filename()
|
364
372
|
if len(files_) > 1:
|
365
373
|
files_.sort()
|
366
374
|
logger.debug("Log files count: %s", len(files_))
|
@@ -17,7 +17,8 @@ import os
|
|
17
17
|
import time
|
18
18
|
from contextlib import nullcontext
|
19
19
|
from datetime import datetime
|
20
|
-
from
|
20
|
+
from functools import partial
|
21
|
+
from typing import TYPE_CHECKING, Any, Callable, Dict, Optional, Tuple
|
21
22
|
|
22
23
|
from zenml.client import Client
|
23
24
|
from zenml.config.step_configurations import Step
|
@@ -247,10 +248,28 @@ class StepLauncher:
|
|
247
248
|
while retries < max_retries:
|
248
249
|
last_retry = retries == max_retries - 1
|
249
250
|
try:
|
251
|
+
# here pass a forced save_to_file callable to be
|
252
|
+
# used as a dump function to use before starting
|
253
|
+
# the external jobs in step operators
|
254
|
+
if isinstance(
|
255
|
+
logs_context,
|
256
|
+
step_logging.StepLogsStorageContext,
|
257
|
+
):
|
258
|
+
force_write_logs = partial(
|
259
|
+
logs_context.storage.save_to_file,
|
260
|
+
force=True,
|
261
|
+
)
|
262
|
+
else:
|
263
|
+
|
264
|
+
def _bypass() -> None:
|
265
|
+
return None
|
266
|
+
|
267
|
+
force_write_logs = _bypass
|
250
268
|
self._run_step(
|
251
269
|
pipeline_run=pipeline_run,
|
252
270
|
step_run=step_run_response,
|
253
271
|
last_retry=last_retry,
|
272
|
+
force_write_logs=force_write_logs,
|
254
273
|
)
|
255
274
|
logger.info(
|
256
275
|
f"Step `{self._step_name}` completed successfully."
|
@@ -324,9 +343,11 @@ class StepLauncher:
|
|
324
343
|
user=client.active_user.id,
|
325
344
|
workspace=client.active_workspace.id,
|
326
345
|
deployment=self._deployment.id,
|
327
|
-
pipeline=
|
328
|
-
|
329
|
-
|
346
|
+
pipeline=(
|
347
|
+
self._deployment.pipeline.id
|
348
|
+
if self._deployment.pipeline
|
349
|
+
else None
|
350
|
+
),
|
330
351
|
status=ExecutionStatus.RUNNING,
|
331
352
|
orchestrator_environment=get_run_environment_dict(),
|
332
353
|
start_time=datetime.utcnow(),
|
@@ -415,6 +436,7 @@ class StepLauncher:
|
|
415
436
|
self,
|
416
437
|
pipeline_run: PipelineRunResponse,
|
417
438
|
step_run: StepRunResponse,
|
439
|
+
force_write_logs: Callable[..., Any],
|
418
440
|
last_retry: bool = True,
|
419
441
|
) -> None:
|
420
442
|
"""Runs the current step.
|
@@ -422,6 +444,7 @@ class StepLauncher:
|
|
422
444
|
Args:
|
423
445
|
pipeline_run: The model of the current pipeline run.
|
424
446
|
step_run: The model of the current step run.
|
447
|
+
force_write_logs: The context for the step logs.
|
425
448
|
last_retry: Whether this is the last retry of the step.
|
426
449
|
"""
|
427
450
|
# Prepare step run information.
|
@@ -432,6 +455,7 @@ class StepLauncher:
|
|
432
455
|
pipeline_step_name=self._step_name,
|
433
456
|
run_id=pipeline_run.id,
|
434
457
|
step_run_id=step_run.id,
|
458
|
+
force_write_logs=force_write_logs,
|
435
459
|
)
|
436
460
|
|
437
461
|
output_artifact_uris = output_utils.prepare_output_artifact_uris(
|
@@ -86,6 +86,7 @@ class StepOperatorEntrypointConfiguration(StepEntrypointConfiguration):
|
|
86
86
|
pipeline_step_name=self.entrypoint_args[STEP_NAME_OPTION],
|
87
87
|
run_id=pipeline_run.id,
|
88
88
|
step_run_id=step_run_id,
|
89
|
+
force_write_logs=lambda: None,
|
89
90
|
)
|
90
91
|
|
91
92
|
stack = Client().active_stack
|
@@ -119,6 +119,7 @@ class PipelineDockerImageBuilder:
|
|
119
119
|
ValueError: If no Dockerfile and/or custom parent image is
|
120
120
|
specified and the Docker configuration doesn't require an
|
121
121
|
image build.
|
122
|
+
ValueError: If the specified Dockerfile does not exist.
|
122
123
|
"""
|
123
124
|
requirements: Optional[str] = None
|
124
125
|
dockerfile: Optional[str] = None
|
@@ -133,6 +134,14 @@ class PipelineDockerImageBuilder:
|
|
133
134
|
# pipeline?
|
134
135
|
return docker_settings.parent_image, dockerfile, requirements
|
135
136
|
|
137
|
+
if docker_settings.dockerfile and not os.path.isfile(
|
138
|
+
docker_settings.dockerfile
|
139
|
+
):
|
140
|
+
raise ValueError(
|
141
|
+
"Dockerfile at path "
|
142
|
+
f"{os.path.abspath(docker_settings.dockerfile)} not found."
|
143
|
+
)
|
144
|
+
|
136
145
|
stack.validate()
|
137
146
|
image_builder = stack.image_builder
|
138
147
|
if not image_builder:
|
{zenml_nightly-0.58.2.dev20240617.dist-info → zenml_nightly-0.58.2.dev20240618.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: zenml-nightly
|
3
|
-
Version: 0.58.2.
|
3
|
+
Version: 0.58.2.dev20240618
|
4
4
|
Summary: ZenML: Write production-ready ML code.
|
5
5
|
Home-page: https://zenml.io
|
6
6
|
License: Apache-2.0
|
@@ -81,6 +81,7 @@ Requires-Dist: mkdocs-material (>=8.1.7,<9.0.0) ; extra == "dev"
|
|
81
81
|
Requires-Dist: mkdocstrings (>=0.17.0,<0.18.0) ; extra == "dev"
|
82
82
|
Requires-Dist: mlstacks (==0.8.0) ; extra == "mlstacks"
|
83
83
|
Requires-Dist: mypy (==1.7.1) ; extra == "dev"
|
84
|
+
Requires-Dist: numpy (<2.0.0)
|
84
85
|
Requires-Dist: orjson (>=3.10.0,<3.11.0) ; extra == "server"
|
85
86
|
Requires-Dist: pandas (>=1.1.5)
|
86
87
|
Requires-Dist: passlib[bcrypt] (>=1.7.4,<1.8.0)
|
{zenml_nightly-0.58.2.dev20240617.dist-info → zenml_nightly-0.58.2.dev20240618.dist-info}/RECORD
RENAMED
@@ -6,7 +6,7 @@ RELEASE_NOTES.md,sha256=wu9pumMNKuHhAViSuGVGlhuC_PakKaAois07lk0tk0M,330862
|
|
6
6
|
ROADMAP.md,sha256=hiLSmr16BH8Dfx7SaQM4JcXCGCVl6mFZPFAwJeDTrJU,407
|
7
7
|
SECURITY.md,sha256=9DepA8y03yvCZLHEfcXLTDH4lUyKHquAdukBsccNN7c,682
|
8
8
|
zenml/README.md,sha256=827dekbOWAs1BpW7VF1a4d7EbwPbjwccX-2zdXBENZo,1777
|
9
|
-
zenml/VERSION,sha256=
|
9
|
+
zenml/VERSION,sha256=Nr0I7_xlEyXmKT3MVoC0Hac3V3igd-l3h5N_8NTCnMc,19
|
10
10
|
zenml/__init__.py,sha256=qT3QHiuTgUwk05sOiML0Gcjre3pugvDAw84_br9Psvo,2394
|
11
11
|
zenml/_hub/__init__.py,sha256=6qDzpQAAZa__Aiiz0mC1qM-9dw9_jk_v_aXeJknxbDE,644
|
12
12
|
zenml/_hub/client.py,sha256=LAxLuDjY9ya1PPRzxS0_pvu__FSpAqEjbtHTqVwgMWc,9071
|
@@ -94,7 +94,7 @@ zenml/config/server_config.py,sha256=2GZM6HuExXZcBKmfY-HzgRyiUCTAKCUL0QvUG_FMA3w
|
|
94
94
|
zenml/config/settings_resolver.py,sha256=vb7cWaPFw1KsHv33EMBObmC-_R7lmJFeSLC5l4u9RPU,4279
|
95
95
|
zenml/config/source.py,sha256=jFqmzjURZ1Op0QupoKDIfw7bcak3uuASI-sh1NfB54Y,6894
|
96
96
|
zenml/config/step_configurations.py,sha256=AdDCB54-FYc1iQojo0HppzDh-1R1Mzz0nU2iVXtut_k,8792
|
97
|
-
zenml/config/step_run_info.py,sha256=
|
97
|
+
zenml/config/step_run_info.py,sha256=KiVRSTtKmZ1GbvseDTap2imr7XwMHD3jSFVpyLNEK1I,1888
|
98
98
|
zenml/config/store_config.py,sha256=xdxwKt1T4JmO_U0_2_mptLPb41FEpT7dLz-liJAeu80,3585
|
99
99
|
zenml/config/strict_base_model.py,sha256=jB7a9MKKjv01I90PIzMTfnF-VWIHuO1xg5HMTmh8JFc,912
|
100
100
|
zenml/console.py,sha256=hj_KerPQKwnyKACj0ehSqUQX0mGVCJBKE1QvCt6ik3A,1160
|
@@ -137,7 +137,7 @@ zenml/image_builders/build_context.py,sha256=7z73NWiHtv9pg2TFTzhcx-DJgyzGuljKEKP
|
|
137
137
|
zenml/image_builders/local_image_builder.py,sha256=nxwzPGgB2ePE51HcvT6hM6w37j9gn2ITEJuPMrx_SKw,5709
|
138
138
|
zenml/integrations/README.md,sha256=hFIZwjsAItHjvDWVBqGSF-ZAeMsFR2GKX1Axl2g1Bz0,6190
|
139
139
|
zenml/integrations/__init__.py,sha256=6XUrOV9KjmDxegCkNfX0PIIQoowek0suYJJVF4X_LIk,4424
|
140
|
-
zenml/integrations/airflow/__init__.py,sha256=
|
140
|
+
zenml/integrations/airflow/__init__.py,sha256=hm_KBce12WDKvg8QqEC7WI9AbeSIrUypSHNYguX6jvI,1866
|
141
141
|
zenml/integrations/airflow/flavors/__init__.py,sha256=Y48mn5OxERPPaXDBd5CFAIn6yhLPsgN5ZMk26hLXiNM,800
|
142
142
|
zenml/integrations/airflow/flavors/airflow_orchestrator_flavor.py,sha256=M5hVqkPqZto3xz1xiU7Z4dNhY7aD88KixtbicHPwTu0,6071
|
143
143
|
zenml/integrations/airflow/orchestrators/__init__.py,sha256=UPly5wqlFdzLSiCeEtIExRXjTNdO0ys2tHSEbEv1Dks,845
|
@@ -161,7 +161,7 @@ zenml/integrations/aws/orchestrators/sagemaker_orchestrator_entrypoint_config.py
|
|
161
161
|
zenml/integrations/aws/service_connectors/__init__.py,sha256=w2Md40yG89PwmU9eBceh6dGy3XYZ3MKusNAZ51sGOgE,783
|
162
162
|
zenml/integrations/aws/service_connectors/aws_service_connector.py,sha256=T77DHFZovaKh240SnP6i9PuHC1BSR_u9tND1WH6bhqY,91990
|
163
163
|
zenml/integrations/aws/step_operators/__init__.py,sha256=HK5oIqLixYKUKoiN4LnqTyGjAZJUdUqWYGqJhFSWyo0,817
|
164
|
-
zenml/integrations/aws/step_operators/sagemaker_step_operator.py,sha256
|
164
|
+
zenml/integrations/aws/step_operators/sagemaker_step_operator.py,sha256=-y1zqfIDJm2wwy_KETJ1nHdKuSbIHPFK3bT-0i9tpoA,10113
|
165
165
|
zenml/integrations/aws/step_operators/sagemaker_step_operator_entrypoint_config.py,sha256=2cXroe6-bXyHVkO5yPnZagNpqx6MrMDcvuvNr8J2j-A,1581
|
166
166
|
zenml/integrations/azure/__init__.py,sha256=v147xzcv4pkbiqAxNYYhWUWN9rjQNYsbblMT0BhiT3M,2515
|
167
167
|
zenml/integrations/azure/artifact_stores/__init__.py,sha256=dlIwbpgjE0Hy4rhMbelNJHVKm4t8tj_hRu9mQ_cEIAg,820
|
@@ -172,7 +172,7 @@ zenml/integrations/azure/flavors/azureml_step_operator_flavor.py,sha256=QR5gp1Wp
|
|
172
172
|
zenml/integrations/azure/service_connectors/__init__.py,sha256=yMz6bTCtIZqZwfEM6h7-PSWsd_DB8l0OD9z_bdzomZw,793
|
173
173
|
zenml/integrations/azure/service_connectors/azure_service_connector.py,sha256=AqBWodE3dpZhpK5xjINs_-uflKubG2pYbBxkPppOYHY,76373
|
174
174
|
zenml/integrations/azure/step_operators/__init__.py,sha256=fV4_nAO0cH53x6_-F8-CbDEZwb_Vv64oq1r0-vtigEU,819
|
175
|
-
zenml/integrations/azure/step_operators/azureml_step_operator.py,sha256=
|
175
|
+
zenml/integrations/azure/step_operators/azureml_step_operator.py,sha256=M_Uc1mecwz9OmqhfF73MCWZJr-yABf7taSUnwT4KWnw,10693
|
176
176
|
zenml/integrations/bentoml/__init__.py,sha256=q7Vo8DL4j5N3p2Gu0_vio5VUUlW8wQ6N-ZcunK_ibiY,1876
|
177
177
|
zenml/integrations/bentoml/constants.py,sha256=vZXwQbLgF4Vi2F_DICZlNnDcUa5FMejLZkjc0U1RpYo,788
|
178
178
|
zenml/integrations/bentoml/flavors/__init__.py,sha256=7hzxI2zleFI9cplVJXn63iwL3s4XHeH1iup1Xc_dvIY,877
|
@@ -196,8 +196,8 @@ zenml/integrations/comet/experiment_trackers/__init__.py,sha256=reGygyAEgMrlc-9Q
|
|
196
196
|
zenml/integrations/comet/experiment_trackers/comet_experiment_tracker.py,sha256=JnB_TqiCD8t9t6cVxWoomxvBuhA4jIJHYFZ-gKdGXf8,5767
|
197
197
|
zenml/integrations/comet/flavors/__init__.py,sha256=x-XK-YwHMxz3zZPoIXo3X5vq_5VYUJAnsIoEX_ZooOU,883
|
198
198
|
zenml/integrations/comet/flavors/comet_experiment_tracker_flavor.py,sha256=Sk8iEKOCy-icytdwg83MuVtwE-NYb6e4RA4FQ2dlOYw,3779
|
199
|
-
zenml/integrations/constants.py,sha256=
|
200
|
-
zenml/integrations/deepchecks/__init__.py,sha256=
|
199
|
+
zenml/integrations/constants.py,sha256=tF6joxaMMuEjpmHUV32_0tQrgk8gxL493Mqiys0vPoE,1913
|
200
|
+
zenml/integrations/deepchecks/__init__.py,sha256=_3a8nMNzWQxWBPzFEZWzQVP4is1BNWYJYgLP7IHweZM,2335
|
201
201
|
zenml/integrations/deepchecks/data_validators/__init__.py,sha256=i7QKjkqoUSFGg_l7JuVbnHFs5uxOKRcSp0s3apwF2RM,835
|
202
202
|
zenml/integrations/deepchecks/data_validators/deepchecks_data_validator.py,sha256=7lBWLbYrKljbAMsJZeFfLnVtPNWc9rmqb8JaSKhURPM,19668
|
203
203
|
zenml/integrations/deepchecks/flavors/__init__.py,sha256=TkUMrj_WWzGiPqc4GxCYjE-80AQyYhYDUBoqZ9fWTOc,819
|
@@ -219,7 +219,7 @@ zenml/integrations/discord/flavors/discord_alerter_flavor.py,sha256=9hX7R7dfxSwi
|
|
219
219
|
zenml/integrations/discord/steps/__init__.py,sha256=stSDntUMzrHzwMJm1V1-jm7otII7uW6Fxj7qYB7MWrc,663
|
220
220
|
zenml/integrations/discord/steps/discord_alerter_ask_step.py,sha256=puBERGjhpBRaift8GCygAgnjgZHbeqclRywxJjjjEG8,2553
|
221
221
|
zenml/integrations/discord/steps/discord_alerter_post_step.py,sha256=te4M4Q47e1nShPHLLv414bjDuG_r7XCxDUbLgwGXEtI,2283
|
222
|
-
zenml/integrations/evidently/__init__.py,sha256=
|
222
|
+
zenml/integrations/evidently/__init__.py,sha256=lQDaCJH7HqZmLvWOkV2m5zy8Mga_O1oOEa_xqi50GY4,2558
|
223
223
|
zenml/integrations/evidently/column_mapping.py,sha256=AVC-rDawczow3vgmhKXif7iaMBlIE_hYLAVZ2G7a8is,3350
|
224
224
|
zenml/integrations/evidently/data_validators/__init__.py,sha256=7H1HCXAefk-asnSAYqfud-l17rsBFfhCrgps2abhmFY,830
|
225
225
|
zenml/integrations/evidently/data_validators/evidently_data_validator.py,sha256=ES54WRMnDeRHvKTaRmstdXckmO-3TIggIBgogXX6NaM,9706
|
@@ -259,7 +259,7 @@ zenml/integrations/gcp/orchestrators/vertex_orchestrator.py,sha256=Xhe8B050Bi5pB
|
|
259
259
|
zenml/integrations/gcp/service_connectors/__init__.py,sha256=fdydawaor8KAtMYvRZieiTuA1i5QATxXXgI-yV1lsn8,788
|
260
260
|
zenml/integrations/gcp/service_connectors/gcp_service_connector.py,sha256=7LYlSid_jjP_mCy8ZSXiXOEc2ThknXs2Xc4agGvVuhw,78040
|
261
261
|
zenml/integrations/gcp/step_operators/__init__.py,sha256=iPkob2LtPIQ-OHszhbNz_ojhoovL6SprmTx37It4EJ8,808
|
262
|
-
zenml/integrations/gcp/step_operators/vertex_step_operator.py,sha256=
|
262
|
+
zenml/integrations/gcp/step_operators/vertex_step_operator.py,sha256=qPQOSacCFUcXCl0MkuzVkxpewU8NAPjiGQsjBF1N0ro,13492
|
263
263
|
zenml/integrations/github/__init__.py,sha256=A8Yd--BbAG3HEfbWYOIEy_kzyLs2tBiawiLMosXd1Do,1467
|
264
264
|
zenml/integrations/github/code_repositories/__init__.py,sha256=ub_hSE2ks2mZB1aeHRjQYz7QIRQIgOw2s080IIqJaGs,817
|
265
265
|
zenml/integrations/github/code_repositories/github_code_repository.py,sha256=G_cVWIiwYlnGAyTMpFoiHi8i3fZ9rVKrFjRxkoseIhc,6630
|
@@ -339,7 +339,7 @@ zenml/integrations/label_studio/label_config_generators/label_config_generators.
|
|
339
339
|
zenml/integrations/label_studio/label_studio_utils.py,sha256=NelKDXCoEIF37-xh7rffHeuHEwWvkfshR5w5f6HuBII,3316
|
340
340
|
zenml/integrations/label_studio/steps/__init__.py,sha256=SQ-6oyRtqHDsU-QjOdvtd-cD8plsW40Dwl5SZnWtbbA,895
|
341
341
|
zenml/integrations/label_studio/steps/label_studio_standard_steps.py,sha256=k7UTFzDZBTdV0NbVtRKMqQo-gURvdSMtjtHoFfiIWgs,8695
|
342
|
-
zenml/integrations/langchain/__init__.py,sha256=
|
342
|
+
zenml/integrations/langchain/__init__.py,sha256=HIpUU_qqULjQA6-hLkhteg1sfo5dTk1czCyOhug7Szs,1320
|
343
343
|
zenml/integrations/langchain/materializers/__init__.py,sha256=ouU6MDX_gZc0FVgNK8xO6F7B2XOEikrevQEZpdYyaOM,1037
|
344
344
|
zenml/integrations/langchain/materializers/document_materializer.py,sha256=p_QxwiHuOsk6qGy_T5AZMoLGUGeh8M30mDFDhB3mrQU,1239
|
345
345
|
zenml/integrations/langchain/materializers/openai_embedding_materializer.py,sha256=WLErmqNJU5gmc-EqMEsIOAdrpyZPB62th9r4Xx0g-Ao,1294
|
@@ -376,7 +376,7 @@ zenml/integrations/neptune/experiment_trackers/run_state.py,sha256=vY34dDSadyzuI
|
|
376
376
|
zenml/integrations/neptune/flavors/__init__.py,sha256=NzORpmtI3Vu7yH1maj5pYd_2gQoN4QR2ZZLy1uPr6uw,975
|
377
377
|
zenml/integrations/neptune/flavors/neptune_experiment_tracker_flavor.py,sha256=WkYmLCXAk8XzOvO34ueYoUX3BicIqrhcANjewWFkrVs,3622
|
378
378
|
zenml/integrations/neptune/neptune_constants.py,sha256=-VddhrALS1HMBhGtFiGDKaRahC-qhG0JAF2zAuc3lMM,746
|
379
|
-
zenml/integrations/neural_prophet/__init__.py,sha256=
|
379
|
+
zenml/integrations/neural_prophet/__init__.py,sha256=nQ5aBqKkzAukrEc7_9E1nU1iRhTHqhw0yAtEIk7dhys,1303
|
380
380
|
zenml/integrations/neural_prophet/materializers/__init__.py,sha256=7O-qwxLjxLmvqeUgeLWBOHe5pvxwDFRg5hCOhffyd0k,802
|
381
381
|
zenml/integrations/neural_prophet/materializers/neural_prophet_materializer.py,sha256=U8OvRObumGAk66UJFHLKWtez-I3wU2zd1j-XvCbSBr4,1570
|
382
382
|
zenml/integrations/openai/__init__.py,sha256=Zi9LaUe6sElglthZQ4iuqjO34v5DWZoltj387uPZTCs,966
|
@@ -482,7 +482,7 @@ zenml/integrations/spark/materializers/spark_model_materializer.py,sha256=bK6IUg
|
|
482
482
|
zenml/integrations/spark/step_operators/__init__.py,sha256=NNgZXOk1S9yjOtQgYMrUkD9RUuV1-IkNvr6obfF0z8s,799
|
483
483
|
zenml/integrations/spark/step_operators/kubernetes_step_operator.py,sha256=4GZfLP1bA1U7MCTHMC714X9LM_s_DQyxWSsmHx3-t0U,6295
|
484
484
|
zenml/integrations/spark/step_operators/spark_entrypoint_configuration.py,sha256=-zKDcOCMJ0mwDMi6MiTFhxkSqWfo8mLZ6cTqsLrMkwA,1336
|
485
|
-
zenml/integrations/spark/step_operators/spark_step_operator.py,sha256=
|
485
|
+
zenml/integrations/spark/step_operators/spark_step_operator.py,sha256=ZFvArHOS7PopwC96noXjz-rUgLyOX6y3UYtoBjJfia0,11501
|
486
486
|
zenml/integrations/tekton/__init__.py,sha256=0wU-1dxHCy6hSvomqttpQPUVFptYT1G_ngaMc6AhBQk,1629
|
487
487
|
zenml/integrations/tekton/flavors/__init__.py,sha256=-S5XuwcZKWyGb9tVfl_gEFJj1KSXX6kwIfe-EhE0TmM,864
|
488
488
|
zenml/integrations/tekton/flavors/tekton_orchestrator_flavor.py,sha256=WpmIlM-0MfGbOf7Vg-yJVLHu8cvYz-me_QuhRBBGEoE,6494
|
@@ -533,7 +533,7 @@ zenml/lineage_graph/node/base_node.py,sha256=-eH0CcxXkrfF_F1NhV1jMFzbjHvolpjl_od
|
|
533
533
|
zenml/lineage_graph/node/step_node.py,sha256=Tr9HbkBgcvpjKamX5cwPZM7i5LE66kU84_ATzVmKeMg,1300
|
534
534
|
zenml/logger.py,sha256=5K5csgOLAecvUOYWWSaqirgkC1sZkZ4Ka7JALAGL_Ik,6131
|
535
535
|
zenml/logging/__init__.py,sha256=lnqbOa31wAHwPP5f8vZazOrUwnP2QviLiIVwxoAefD8,975
|
536
|
-
zenml/logging/step_logging.py,sha256=
|
536
|
+
zenml/logging/step_logging.py,sha256=WDqKcQnKEs3hmWOaY1knttWRdunmJ1_PgmqrK7GRtd4,17038
|
537
537
|
zenml/materializers/__init__.py,sha256=YE4Eh-ftvnfKaqbwz4TylODPCGHBdMj2lJFjNtmjoko,1767
|
538
538
|
zenml/materializers/base_materializer.py,sha256=zvuden4-YQ1SO_lgwuenmt54xuUyFg-dw0aKqXKDDKg,10291
|
539
539
|
zenml/materializers/built_in_materializer.py,sha256=x8fCklOmBT9M83CkcmV8o4Qukxi7lEbarmZjIVNYJwk,14948
|
@@ -637,7 +637,7 @@ zenml/orchestrators/local_docker/__init__.py,sha256=k8J68ydy6HmmvE9tWo32g761H8P_
|
|
637
637
|
zenml/orchestrators/local_docker/local_docker_orchestrator.py,sha256=Dxx3PjmEukrUxVajChmqj8tqBKNNDG46D8eefTM6g2w,9263
|
638
638
|
zenml/orchestrators/output_utils.py,sha256=Gz7SX2cbQ3w4eyfU0XuhKEKGtalQGBoc6moDRNVHN8M,3311
|
639
639
|
zenml/orchestrators/publish_utils.py,sha256=aNwgTDmVSq9qCDP3Ldk77YNXnWx_YHjYNTEJwYeZo9s,4579
|
640
|
-
zenml/orchestrators/step_launcher.py,sha256=
|
640
|
+
zenml/orchestrators/step_launcher.py,sha256=uEJ55LtE_oVT8jp6seiifRaj5wkBPAzG1pGgliD6KbM,21241
|
641
641
|
zenml/orchestrators/step_runner.py,sha256=e_HXF5i1rJ06jddGL8TtBvNAPzOxxdR1VzorSIuoSro,26496
|
642
642
|
zenml/orchestrators/topsort.py,sha256=D8evz3X47zwpXd90NMLsJD-_uCeXtV6ClzNfDUrq7cM,5784
|
643
643
|
zenml/orchestrators/utils.py,sha256=osonxW0DZxDAHnHLKHcDRA63VMsZNjpg2BHY55lBVCg,10498
|
@@ -688,7 +688,7 @@ zenml/stack/stack_validator.py,sha256=hWbvvGIeWLj6NwSsF4GCc6RAxAWvxHXTcBZL9nJvca
|
|
688
688
|
zenml/stack/utils.py,sha256=W_ZKttALLGABYSzqapkIdHerbOWf6gRL8Tl9Bgj_q5s,5460
|
689
689
|
zenml/step_operators/__init__.py,sha256=tqj7fgnQyZubLjwUu4ITwkA-70KMQz4g37agbfF7ZgE,1228
|
690
690
|
zenml/step_operators/base_step_operator.py,sha256=ZRnY6lcEHY8xZskrKKdPhgKg2BlEoh2_kb8xCaM2D1g,3522
|
691
|
-
zenml/step_operators/step_operator_entrypoint_configuration.py,sha256
|
691
|
+
zenml/step_operators/step_operator_entrypoint_configuration.py,sha256=vG0Z9D2C72PYOZ_P3eXYTmm2TvL-dS_kHhSMq-coAKE,3690
|
692
692
|
zenml/steps/__init__.py,sha256=IvxepI3tYp6LiVHFJnet9xZ7yFlH6NHCAI69SvQsfaI,1682
|
693
693
|
zenml/steps/base_parameters.py,sha256=rKnALd0lMv0jOX8E9TwHJkeP3H-ijEFXY0T5dMCu9EQ,756
|
694
694
|
zenml/steps/base_step.py,sha256=2syYeLgmPwKPGKNp4mrXnSlZ3RVslXrvWGDFBXiK6EY,49665
|
@@ -720,7 +720,7 @@ zenml/utils/mlstacks_utils.py,sha256=Jv0ZRK8seBcnA96UelJhRaB6mRhZiA4062yE0yE7RaA
|
|
720
720
|
zenml/utils/networking_utils.py,sha256=zTDbOMkMPRWiWLZ2ccchd37rvvZWIIh0Kr9dZE-VJAs,7845
|
721
721
|
zenml/utils/package_utils.py,sha256=IrUYRkedfgJ6O6R-bmmpdrO_SS33QFsVJZOE61uM2vk,1677
|
722
722
|
zenml/utils/pagination_utils.py,sha256=nY6jg_RCQoeCipHrQfkdEarCah88P17IHMb4kswUhXY,1341
|
723
|
-
zenml/utils/pipeline_docker_image_builder.py,sha256=
|
723
|
+
zenml/utils/pipeline_docker_image_builder.py,sha256=mkIZyPrfUPbSduMC5nePlVnHPcC6q-IkVdEd-oOBZT8,27218
|
724
724
|
zenml/utils/proxy_utils.py,sha256=fgRlLa9pfXJDoxtB31_YP7DClOMQLek_nMmM0et6i3w,7241
|
725
725
|
zenml/utils/pydantic_utils.py,sha256=pDpv_ciIj7o5RIgwWa0W6BUjmHjltcjWK4RRSoGVR2A,8468
|
726
726
|
zenml/utils/secret_utils.py,sha256=0b0FeMhr28oxe4t6lOhnmHjENFADACynUEKeu6gBSkE,4019
|
@@ -1294,8 +1294,8 @@ zenml/zen_stores/secrets_stores/service_connector_secrets_store.py,sha256=0CgWJo
|
|
1294
1294
|
zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=Cips_SPX7CtfYQyOZNiHAhmVtVgb17HCyHQia5MlTX4,8653
|
1295
1295
|
zenml/zen_stores/sql_zen_store.py,sha256=f5spF_vWJg8kO6ud9uzELqh7LRxSAWyB1HLono1_gT0,353540
|
1296
1296
|
zenml/zen_stores/zen_store_interface.py,sha256=vi0tr6vDES97h_rFZZYeaz2Y0nM4xm66CcUXSOEITN4,86372
|
1297
|
-
zenml_nightly-0.58.2.
|
1298
|
-
zenml_nightly-0.58.2.
|
1299
|
-
zenml_nightly-0.58.2.
|
1300
|
-
zenml_nightly-0.58.2.
|
1301
|
-
zenml_nightly-0.58.2.
|
1297
|
+
zenml_nightly-0.58.2.dev20240618.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
|
1298
|
+
zenml_nightly-0.58.2.dev20240618.dist-info/METADATA,sha256=LyKsWSGuxRlx9vG5MS-VJXIdG9pVdQJJDXpxt8hymXo,20051
|
1299
|
+
zenml_nightly-0.58.2.dev20240618.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1300
|
+
zenml_nightly-0.58.2.dev20240618.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
|
1301
|
+
zenml_nightly-0.58.2.dev20240618.dist-info/RECORD,,
|
{zenml_nightly-0.58.2.dev20240617.dist-info → zenml_nightly-0.58.2.dev20240618.dist-info}/LICENSE
RENAMED
File without changes
|
{zenml_nightly-0.58.2.dev20240617.dist-info → zenml_nightly-0.58.2.dev20240618.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|