mlrun 1.6.0rc6__py3-none-any.whl → 1.6.0rc8__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.
Potentially problematic release.
This version of mlrun might be problematic. Click here for more details.
- mlrun/__main__.py +32 -31
- mlrun/common/schemas/auth.py +2 -0
- mlrun/common/schemas/workflow.py +2 -0
- mlrun/config.py +3 -3
- mlrun/datastore/base.py +9 -3
- mlrun/datastore/datastore.py +10 -7
- mlrun/datastore/datastore_profile.py +19 -2
- mlrun/datastore/dbfs_store.py +6 -6
- mlrun/datastore/s3.py +6 -2
- mlrun/datastore/sources.py +12 -2
- mlrun/datastore/targets.py +43 -20
- mlrun/db/httpdb.py +22 -0
- mlrun/feature_store/feature_set.py +5 -2
- mlrun/feature_store/retrieval/spark_merger.py +7 -1
- mlrun/kfpops.py +1 -1
- mlrun/launcher/client.py +1 -6
- mlrun/launcher/remote.py +5 -3
- mlrun/model.py +2 -2
- mlrun/model_monitoring/batch_application.py +61 -94
- mlrun/package/packager.py +115 -89
- mlrun/package/packagers/default_packager.py +66 -65
- mlrun/package/packagers/numpy_packagers.py +109 -62
- mlrun/package/packagers/pandas_packagers.py +12 -23
- mlrun/package/packagers/python_standard_library_packagers.py +35 -57
- mlrun/package/packagers_manager.py +16 -13
- mlrun/package/utils/_pickler.py +8 -18
- mlrun/package/utils/_supported_format.py +1 -1
- mlrun/projects/pipelines.py +63 -4
- mlrun/projects/project.py +34 -11
- mlrun/runtimes/__init__.py +6 -0
- mlrun/runtimes/base.py +12 -1
- mlrun/runtimes/daskjob.py +73 -5
- mlrun/runtimes/databricks_job/databricks_runtime.py +2 -0
- mlrun/runtimes/function.py +53 -4
- mlrun/runtimes/kubejob.py +1 -1
- mlrun/runtimes/local.py +9 -9
- mlrun/runtimes/pod.py +1 -1
- mlrun/runtimes/remotesparkjob.py +1 -0
- mlrun/runtimes/serving.py +11 -1
- mlrun/runtimes/sparkjob/spark3job.py +4 -1
- mlrun/runtimes/utils.py +1 -46
- mlrun/utils/helpers.py +1 -17
- mlrun/utils/notifications/notification_pusher.py +27 -6
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.6.0rc6.dist-info → mlrun-1.6.0rc8.dist-info}/METADATA +7 -6
- {mlrun-1.6.0rc6.dist-info → mlrun-1.6.0rc8.dist-info}/RECORD +50 -50
- {mlrun-1.6.0rc6.dist-info → mlrun-1.6.0rc8.dist-info}/WHEEL +1 -1
- {mlrun-1.6.0rc6.dist-info → mlrun-1.6.0rc8.dist-info}/LICENSE +0 -0
- {mlrun-1.6.0rc6.dist-info → mlrun-1.6.0rc8.dist-info}/entry_points.txt +0 -0
- {mlrun-1.6.0rc6.dist-info → mlrun-1.6.0rc8.dist-info}/top_level.txt +0 -0
mlrun/runtimes/utils.py
CHANGED
|
@@ -15,7 +15,6 @@ import hashlib
|
|
|
15
15
|
import json
|
|
16
16
|
import os
|
|
17
17
|
import re
|
|
18
|
-
import typing
|
|
19
18
|
from io import StringIO
|
|
20
19
|
from sys import stderr
|
|
21
20
|
|
|
@@ -139,18 +138,13 @@ def add_code_metadata(path=""):
|
|
|
139
138
|
ValueError,
|
|
140
139
|
) as exc:
|
|
141
140
|
logger.warning(
|
|
142
|
-
"Failed to add git metadata, ignore if path is not part of a git repo
|
|
141
|
+
"Failed to add git metadata, ignore if path is not part of a git repo",
|
|
143
142
|
path=path,
|
|
144
143
|
error=err_to_str(exc),
|
|
145
144
|
)
|
|
146
145
|
return None
|
|
147
146
|
|
|
148
147
|
|
|
149
|
-
def set_if_none(struct, key, value):
|
|
150
|
-
if not struct.get(key):
|
|
151
|
-
struct[key] = value
|
|
152
|
-
|
|
153
|
-
|
|
154
148
|
def results_to_iter(results, runspec, execution):
|
|
155
149
|
if not results:
|
|
156
150
|
logger.error("got an empty results list in to_iter")
|
|
@@ -243,38 +237,6 @@ def log_iter_artifacts(execution, df, header):
|
|
|
243
237
|
logger.warning(f"failed to log iter artifacts, {err_to_str(exc)}")
|
|
244
238
|
|
|
245
239
|
|
|
246
|
-
def resolve_function_image_name(function, image: typing.Optional[str] = None) -> str:
|
|
247
|
-
project = function.metadata.project or config.default_project
|
|
248
|
-
name = function.metadata.name
|
|
249
|
-
tag = function.metadata.tag or "latest"
|
|
250
|
-
if image:
|
|
251
|
-
image_name_prefix = resolve_function_target_image_name_prefix(project, name)
|
|
252
|
-
registries_to_enforce_prefix = (
|
|
253
|
-
resolve_function_target_image_registries_to_enforce_prefix()
|
|
254
|
-
)
|
|
255
|
-
for registry in registries_to_enforce_prefix:
|
|
256
|
-
if image.startswith(registry):
|
|
257
|
-
prefix_with_registry = f"{registry}{image_name_prefix}"
|
|
258
|
-
if not image.startswith(prefix_with_registry):
|
|
259
|
-
raise mlrun.errors.MLRunInvalidArgumentError(
|
|
260
|
-
f"Configured registry enforces image name to start with this prefix: {image_name_prefix}"
|
|
261
|
-
)
|
|
262
|
-
return image
|
|
263
|
-
return generate_function_image_name(project, name, tag)
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
def generate_function_image_name(project: str, name: str, tag: str) -> str:
|
|
267
|
-
_, repository = helpers.get_parsed_docker_registry()
|
|
268
|
-
repository = helpers.get_docker_repository_or_default(repository)
|
|
269
|
-
return fill_function_image_name_template(
|
|
270
|
-
mlrun.common.constants.IMAGE_NAME_ENRICH_REGISTRY_PREFIX,
|
|
271
|
-
repository,
|
|
272
|
-
project,
|
|
273
|
-
name,
|
|
274
|
-
tag,
|
|
275
|
-
)
|
|
276
|
-
|
|
277
|
-
|
|
278
240
|
def fill_function_image_name_template(
|
|
279
241
|
registry: str,
|
|
280
242
|
repository: str,
|
|
@@ -308,13 +270,6 @@ def set_named_item(obj, item):
|
|
|
308
270
|
obj[item.name] = item
|
|
309
271
|
|
|
310
272
|
|
|
311
|
-
def set_item_attribute(item, attribute, value):
|
|
312
|
-
if isinstance(item, dict):
|
|
313
|
-
item[attribute] = value
|
|
314
|
-
else:
|
|
315
|
-
setattr(item, attribute, value)
|
|
316
|
-
|
|
317
|
-
|
|
318
273
|
def get_item_name(item, attr="name"):
|
|
319
274
|
if isinstance(item, dict):
|
|
320
275
|
return item.get(attr)
|
mlrun/utils/helpers.py
CHANGED
|
@@ -41,7 +41,6 @@ import yaml
|
|
|
41
41
|
from dateutil import parser
|
|
42
42
|
from deprecated import deprecated
|
|
43
43
|
from pandas._libs.tslibs.timestamps import Timedelta, Timestamp
|
|
44
|
-
from timelength import TimeLength
|
|
45
44
|
from yaml.representer import RepresenterError
|
|
46
45
|
|
|
47
46
|
import mlrun
|
|
@@ -898,7 +897,7 @@ def get_docker_repository_or_default(repository: str) -> str:
|
|
|
898
897
|
|
|
899
898
|
def get_parsed_docker_registry() -> Tuple[Optional[str], Optional[str]]:
|
|
900
899
|
# according to https://stackoverflow.com/questions/37861791/how-are-docker-image-names-parsed
|
|
901
|
-
docker_registry = config.httpdb.builder.docker_registry
|
|
900
|
+
docker_registry = config.httpdb.builder.docker_registry or ""
|
|
902
901
|
first_slash_index = docker_registry.find("/")
|
|
903
902
|
# this is exception to the rules from the link above, since the config value is called docker_registry we assume
|
|
904
903
|
# that if someone gave just one component without any slash they gave a registry and not a repository
|
|
@@ -1508,21 +1507,6 @@ def line_terminator_kwargs():
|
|
|
1508
1507
|
return {line_terminator_parameter: "\n"}
|
|
1509
1508
|
|
|
1510
1509
|
|
|
1511
|
-
def time_string_to_seconds(time_str: str) -> Optional[int]:
|
|
1512
|
-
if not time_str:
|
|
1513
|
-
return None
|
|
1514
|
-
|
|
1515
|
-
if time_str == "-1":
|
|
1516
|
-
return -1
|
|
1517
|
-
|
|
1518
|
-
parsed_length = TimeLength(time_str, strict=True)
|
|
1519
|
-
total_seconds = parsed_length.to_seconds()
|
|
1520
|
-
if total_seconds < 1:
|
|
1521
|
-
raise ValueError(f"Invalid time string {time_str}, must be at least 1 second")
|
|
1522
|
-
|
|
1523
|
-
return total_seconds
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
1510
|
def iterate_list_by_chunks(
|
|
1527
1511
|
iterable_list: typing.Iterable, chunk_size: int
|
|
1528
1512
|
) -> typing.Iterable:
|
|
@@ -90,9 +90,9 @@ class _NotificationPusherBase(object):
|
|
|
90
90
|
class NotificationPusher(_NotificationPusherBase):
|
|
91
91
|
|
|
92
92
|
messages = {
|
|
93
|
-
"completed": "
|
|
94
|
-
"error": "
|
|
95
|
-
"aborted": "
|
|
93
|
+
"completed": "{resource} completed",
|
|
94
|
+
"error": "{resource} failed",
|
|
95
|
+
"aborted": "{resource} aborted",
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
def __init__(self, runs: typing.Union[mlrun.lists.RunList, list]):
|
|
@@ -236,13 +236,34 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
236
236
|
custom_message = (
|
|
237
237
|
f": {notification_object.message}" if notification_object.message else ""
|
|
238
238
|
)
|
|
239
|
-
|
|
239
|
+
resource = "Run"
|
|
240
|
+
runs = [run.to_dict()]
|
|
241
|
+
|
|
242
|
+
if "workflow" in run.metadata.labels:
|
|
243
|
+
resource = "Workflow"
|
|
244
|
+
custom_message = (
|
|
245
|
+
f" (workflow: {run.metadata.labels['workflow']}){custom_message}"
|
|
246
|
+
)
|
|
247
|
+
db = mlrun.get_run_db()
|
|
248
|
+
|
|
249
|
+
workflow_id = run.status.results.get("workflow_id", None)
|
|
250
|
+
if workflow_id:
|
|
251
|
+
workflow_runs = db.list_runs(
|
|
252
|
+
project=run.metadata.project,
|
|
253
|
+
labels=f"workflow={workflow_id}",
|
|
254
|
+
)
|
|
255
|
+
runs.extend(workflow_runs)
|
|
256
|
+
|
|
257
|
+
message = (
|
|
258
|
+
self.messages.get(run.state(), "").format(resource=resource)
|
|
259
|
+
+ custom_message
|
|
260
|
+
)
|
|
240
261
|
|
|
241
262
|
severity = (
|
|
242
263
|
notification_object.severity
|
|
243
264
|
or mlrun.common.schemas.NotificationSeverity.INFO
|
|
244
265
|
)
|
|
245
|
-
return message, severity,
|
|
266
|
+
return message, severity, runs
|
|
246
267
|
|
|
247
268
|
def _push_notification_sync(
|
|
248
269
|
self,
|
|
@@ -528,7 +549,7 @@ class CustomNotificationPusher(_NotificationPusherBase):
|
|
|
528
549
|
runs_list.append(run.to_dict())
|
|
529
550
|
run._notified = True
|
|
530
551
|
|
|
531
|
-
text = "
|
|
552
|
+
text = "Pipeline run finished"
|
|
532
553
|
if had_errors:
|
|
533
554
|
text += f" with {had_errors} errors"
|
|
534
555
|
if state:
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.0rc8
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -23,10 +23,10 @@ Description-Content-Type: text/markdown
|
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
Requires-Dist: urllib3 <1.27,>=1.26.9
|
|
25
25
|
Requires-Dist: GitPython >=3.1.30,~=3.1
|
|
26
|
-
Requires-Dist: aiohttp
|
|
26
|
+
Requires-Dist: aiohttp <3.8.4,~=3.8
|
|
27
27
|
Requires-Dist: aiohttp-retry ~=2.8
|
|
28
28
|
Requires-Dist: click ~=8.1
|
|
29
|
-
Requires-Dist: kfp
|
|
29
|
+
Requires-Dist: kfp ~=1.8
|
|
30
30
|
Requires-Dist: nest-asyncio ~=1.0
|
|
31
31
|
Requires-Dist: ipython ~=8.10
|
|
32
32
|
Requires-Dist: nuclio-jupyter ~=0.9.13
|
|
@@ -43,8 +43,8 @@ Requires-Dist: v3io-frames ~=0.10.7
|
|
|
43
43
|
Requires-Dist: semver ~=3.0
|
|
44
44
|
Requires-Dist: dependency-injector ~=4.41
|
|
45
45
|
Requires-Dist: fsspec <2023.7,>=2023.1
|
|
46
|
-
Requires-Dist: v3iofs ~=0.1.
|
|
47
|
-
Requires-Dist: storey ~=1.6.
|
|
46
|
+
Requires-Dist: v3iofs ~=0.1.17
|
|
47
|
+
Requires-Dist: storey ~=1.6.6
|
|
48
48
|
Requires-Dist: inflection ~=0.5.0
|
|
49
49
|
Requires-Dist: python-dotenv ~=0.17.0
|
|
50
50
|
Requires-Dist: setuptools ~=68.2
|
|
@@ -52,7 +52,6 @@ Requires-Dist: deprecated ~=1.2
|
|
|
52
52
|
Requires-Dist: jinja2 ~=3.1
|
|
53
53
|
Requires-Dist: anyio ~=3.7
|
|
54
54
|
Requires-Dist: orjson ~=3.9
|
|
55
|
-
Requires-Dist: timelength ~=1.1
|
|
56
55
|
Provides-Extra: all
|
|
57
56
|
Requires-Dist: adlfs <2023.5,>=2022.2 ; extra == 'all'
|
|
58
57
|
Requires-Dist: aiobotocore <2.6,>=2.4.2 ; extra == 'all'
|
|
@@ -91,6 +90,7 @@ Requires-Dist: fastapi ~=0.103.2 ; extra == 'api'
|
|
|
91
90
|
Requires-Dist: sqlalchemy ~=1.4 ; extra == 'api'
|
|
92
91
|
Requires-Dist: pymysql ~=1.0 ; extra == 'api'
|
|
93
92
|
Requires-Dist: alembic ~=1.9 ; extra == 'api'
|
|
93
|
+
Requires-Dist: timelength ~=1.1 ; extra == 'api'
|
|
94
94
|
Provides-Extra: azure-blob-storage
|
|
95
95
|
Requires-Dist: msrest ~=0.6.21 ; extra == 'azure-blob-storage'
|
|
96
96
|
Requires-Dist: azure-core ~=1.24 ; extra == 'azure-blob-storage'
|
|
@@ -158,6 +158,7 @@ Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
|
|
|
158
158
|
Requires-Dist: s3fs <2023.7,>=2023.1 ; extra == 'complete-api'
|
|
159
159
|
Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete-api'
|
|
160
160
|
Requires-Dist: sqlite3-to-mysql ~=1.4 ; extra == 'complete-api'
|
|
161
|
+
Requires-Dist: timelength ~=1.1 ; extra == 'complete-api'
|
|
161
162
|
Requires-Dist: uvicorn ~=0.23.2 ; extra == 'complete-api'
|
|
162
163
|
Provides-Extra: dask
|
|
163
164
|
Requires-Dist: dask ~=2023.9.0 ; extra == 'dask'
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
|
|
2
|
-
mlrun/__main__.py,sha256=
|
|
3
|
-
mlrun/config.py,sha256=
|
|
2
|
+
mlrun/__main__.py,sha256=_fEf6dPbiYVB4yOur_M3MJj2vjxpePVw2sF1XJl0tpM,49066
|
|
3
|
+
mlrun/config.py,sha256=fD_27tukinrXMhbSd4emSQwz5tjRUBgBj0Ya8nFazYY,60613
|
|
4
4
|
mlrun/errors.py,sha256=pYZZtJsMqkFktG6T8iTyfyESrrhOLfKvB3U_jUDHMo8,6780
|
|
5
5
|
mlrun/execution.py,sha256=dWus2hBaT7qj5CwsVlmNSjFYopcWW1q9ceU3AoDNW80,39708
|
|
6
6
|
mlrun/features.py,sha256=UQQ2uh5Xh9XsMGiYBqh3bKgDhOHANjv1gQgWyId9qQE,15624
|
|
7
7
|
mlrun/k8s_utils.py,sha256=UJTo0uHTphDi-o305l7R-oeyDfqVVfoYbk0EW6cm38Q,5382
|
|
8
|
-
mlrun/kfpops.py,sha256=
|
|
8
|
+
mlrun/kfpops.py,sha256=L7YyQ5HBmTWFCmj3isOqRX2nbNwV2GElkYpDZyXPZk4,30412
|
|
9
9
|
mlrun/lists.py,sha256=lMbcVvtS5MLI40JPtT5ithTojX8xUZx4RkZX0-L9zUE,8390
|
|
10
|
-
mlrun/model.py,sha256=
|
|
10
|
+
mlrun/model.py,sha256=L_q9wiwgeycjcFyEftzLkE1yAttIudh-ytQUnlNqRvc,63183
|
|
11
11
|
mlrun/render.py,sha256=a_s-kzQ35bJg7e7cBxk3MCnoIK4qvDS2dGO8RzHgI1c,13016
|
|
12
12
|
mlrun/run.py,sha256=cCgWwgq5AFcwt4DbYlOzO8-1XsXmwIJVAEeUumQIK-I,42536
|
|
13
13
|
mlrun/secrets.py,sha256=hr2Ia9kLkoMM3KoxijXqO6AIJOUrrLxvz4Q7Xk39d4Y,7783
|
|
@@ -28,7 +28,7 @@ mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ
|
|
|
28
28
|
mlrun/common/model_monitoring/helpers.py,sha256=FTp6tDHhi7oqbgAz-cu7DpcSKSxOtTgJY2v2B_tnkf8,3955
|
|
29
29
|
mlrun/common/schemas/__init__.py,sha256=CyhrKVCvj8M-c5gpu-YJ_a4fco7Y5bB6jGumkubq6GY,4590
|
|
30
30
|
mlrun/common/schemas/artifact.py,sha256=vbXaY8eHxKt7YHKksD_PYEC-47eguxVb6wRAtMAW7Bk,1923
|
|
31
|
-
mlrun/common/schemas/auth.py,sha256=
|
|
31
|
+
mlrun/common/schemas/auth.py,sha256=hojz3QQfLm55_rv-7J_vHzeuvmVvWVBiXubU2vKat6E,6007
|
|
32
32
|
mlrun/common/schemas/background_task.py,sha256=xc-GY3PjRzYonojB9T0XGDkLbV6wr3Hwf-9TZ2POuRY,1585
|
|
33
33
|
mlrun/common/schemas/client_spec.py,sha256=_fuzFghpvI49Aun76T_-Cqpx196ooDxnJbjE_8GlXuw,2948
|
|
34
34
|
mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
|
|
@@ -52,7 +52,7 @@ mlrun/common/schemas/runtime_resource.py,sha256=GyeqRwbBoLMq-0zWCkocvKl2nz9a62dA
|
|
|
52
52
|
mlrun/common/schemas/schedule.py,sha256=dFaPWY3CtuW1KKGcs-br1Gsm5vPjiTgcBZGfcbAAeug,4293
|
|
53
53
|
mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
|
|
54
54
|
mlrun/common/schemas/tag.py,sha256=2sm2Z5qM0jyakHuT_lxb-EQ2M5Unpodz4lj6MNkDEzo,905
|
|
55
|
-
mlrun/common/schemas/workflow.py,sha256=
|
|
55
|
+
mlrun/common/schemas/workflow.py,sha256=6ScEXBHxmnIve9vrFpCHWRHBeR_iSCfdKi6VPsMkLQQ,1837
|
|
56
56
|
mlrun/common/schemas/model_monitoring/__init__.py,sha256=IuiiZbcNNlYpDxeJmkQoT3SD6Thm8PJYUIRPCwl8cM0,1393
|
|
57
57
|
mlrun/common/schemas/model_monitoring/constants.py,sha256=FvEdweQ9q2ZvikL3ygOvUZq_50RfAYFDc59U3uVklt4,7449
|
|
58
58
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=W6TcNc7mqPj040lfQrEadEQ37csdxLDgdU3QRLlELMQ,1444
|
|
@@ -64,20 +64,20 @@ mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,945
|
|
|
64
64
|
mlrun/data_types/to_pandas.py,sha256=URPi0jKpsHof0fobrKv6HafJeH1eYOTTQ7OLNlTm2Yo,10028
|
|
65
65
|
mlrun/datastore/__init__.py,sha256=bsRzu39UOocQAAl_nOKCbhxrZhWUEXrAc8WV3zs0VyI,4118
|
|
66
66
|
mlrun/datastore/azure_blob.py,sha256=8j3cZuQ8pqnPx48JAJvjtqSqufyNlqXROGrMGD8h3wM,6946
|
|
67
|
-
mlrun/datastore/base.py,sha256=
|
|
68
|
-
mlrun/datastore/datastore.py,sha256=
|
|
69
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
70
|
-
mlrun/datastore/dbfs_store.py,sha256=
|
|
67
|
+
mlrun/datastore/base.py,sha256=oiNNiv5d8kzDE4O7ro_fGhcrFANULHxqWf8gMrvZ4kM,24909
|
|
68
|
+
mlrun/datastore/datastore.py,sha256=RsgViisGlQvwPxtnHTCSNKuqujaz6dJ6z643S2ooAZE,9234
|
|
69
|
+
mlrun/datastore/datastore_profile.py,sha256=YpVkJXE_4zoj5uFqUqNdeOkMlYnAQ34aqI1-xkIDKN8,11878
|
|
70
|
+
mlrun/datastore/dbfs_store.py,sha256=mF4XHxy2nh6eIz2ZDNXbLWCEY804LR-fpEJzIGZeENI,6542
|
|
71
71
|
mlrun/datastore/filestore.py,sha256=o4ex777XyxyV1CQBP7M2JyyssCVVAc4H3JrvNC9eryM,3791
|
|
72
72
|
mlrun/datastore/google_cloud_storage.py,sha256=Y_X4ODhvvBeknE_Aqaky_Fdi0-EY5waZAglmAttgFgY,5114
|
|
73
73
|
mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,622
|
|
74
74
|
mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
|
|
75
75
|
mlrun/datastore/redis.py,sha256=UaQyMkNbmXZ0B8h-d_u6G88L2hfiEX6o9hBx60Tspj8,5515
|
|
76
|
-
mlrun/datastore/s3.py,sha256=
|
|
77
|
-
mlrun/datastore/sources.py,sha256=
|
|
76
|
+
mlrun/datastore/s3.py,sha256=3EZREO4wppnQKlmTW-S4RS17WZFxGi8wPl5Y0I_cUK8,7452
|
|
77
|
+
mlrun/datastore/sources.py,sha256=wpSre3oQTTi5imUFDBkmUfE0koOFtkIEtatZCyX1YKE,38642
|
|
78
78
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
79
79
|
mlrun/datastore/store_resources.py,sha256=SUY9oJieq3r8PEq8G661XxmXem_e-CxDoy2AJ7dpXBk,6906
|
|
80
|
-
mlrun/datastore/targets.py,sha256=
|
|
80
|
+
mlrun/datastore/targets.py,sha256=2KvlLCmRP3u2QlR4yP_EI_RbJ5Fck0BKpYNYNjglrDk,68626
|
|
81
81
|
mlrun/datastore/utils.py,sha256=HWX9SfCsBk4Mx-0xp5kwshTZnm32fHdy3gRdVaYSt0Y,5805
|
|
82
82
|
mlrun/datastore/v3io.py,sha256=ywd-rrB5Uicdk7KGMk-nJ4mKPjvg2z5w6TVx5Bo5jIo,8099
|
|
83
83
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
@@ -85,12 +85,12 @@ mlrun/datastore/wasbfs/fs.py,sha256=FfKli7rBwres1pg8AxDlyyg1D5WukBEKb8Mi1SF5HqY,
|
|
|
85
85
|
mlrun/db/__init__.py,sha256=Wy3NbZwgAneRHXCIKygQE-68tnAhvF7lVxrFSh9G6Y4,1145
|
|
86
86
|
mlrun/db/base.py,sha256=VqEu40H9aJOT5egr0Ygm3v32AgHmPh4VTgYqEZyYkys,17043
|
|
87
87
|
mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
|
|
88
|
-
mlrun/db/httpdb.py,sha256=
|
|
88
|
+
mlrun/db/httpdb.py,sha256=BcQwDU8ltNNCrx8UGo7PkNp1cEnape66uDaIxEqMCoA,147665
|
|
89
89
|
mlrun/db/nopdb.py,sha256=wD3kgOENlS6Pi9kBzjeyShN2hvqMeX5rFJiNfhAid8E,14006
|
|
90
90
|
mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
|
|
91
91
|
mlrun/feature_store/api.py,sha256=zDqMRfYMpks4dSiQqpgqUFFI4k9Rn1jXQbKzOUsQB9M,46076
|
|
92
92
|
mlrun/feature_store/common.py,sha256=w74ETyTjw5xpzxNqFGggcu9Akjy_VT7mnTpC5KWTL14,12867
|
|
93
|
-
mlrun/feature_store/feature_set.py,sha256=
|
|
93
|
+
mlrun/feature_store/feature_set.py,sha256=0Xz4xGNTnpTEi5CDIrLED_5AeWXUGa5oYpnxGKrSA3c,46896
|
|
94
94
|
mlrun/feature_store/feature_vector.py,sha256=3v0MFS4LvcFQ7cJA6-vPoa1tJ-qMIejnDuJhHGY7J5k,35012
|
|
95
95
|
mlrun/feature_store/ingestion.py,sha256=GZkrke5_JJfA_PGOFc6ekbHKujHgMgqr6t4vop5n_bg,11210
|
|
96
96
|
mlrun/feature_store/steps.py,sha256=jleXgtUbR_BDk0Q060vHYwfBwX01VoU3Y1s5S6QF8mo,29028
|
|
@@ -99,7 +99,7 @@ mlrun/feature_store/retrieval/base.py,sha256=gzY7sesiy2sMQa6VtG2nSpscEIjcrsLm5Qg
|
|
|
99
99
|
mlrun/feature_store/retrieval/dask_merger.py,sha256=4KQhP2ScBn0L--pR_lhCP9tgqDKQLsMna3H6GqMpSTY,5272
|
|
100
100
|
mlrun/feature_store/retrieval/job.py,sha256=udrpAf8Q1uNhGj3ATvoEV7M8hlZr3dW_P0T5MqKc1Dc,8262
|
|
101
101
|
mlrun/feature_store/retrieval/local_merger.py,sha256=M0R2FWc-kuLVvyAYbawrxAJvqjshtaRK2gQqF6DjgxM,4218
|
|
102
|
-
mlrun/feature_store/retrieval/spark_merger.py,sha256=
|
|
102
|
+
mlrun/feature_store/retrieval/spark_merger.py,sha256=zevhXt6SJeMbV8xORaYwo5kfeVC9b9RF3tF8K5vjkB4,11073
|
|
103
103
|
mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
|
|
104
104
|
mlrun/frameworks/__init__.py,sha256=qRHe_nUfxpoLaSASAkIxcW6IyunMtxq5LXhjzZMO_1E,743
|
|
105
105
|
mlrun/frameworks/parallel_coordinates.py,sha256=8buVHWA-mD1R5R9jm71XN5fvDyz9Bkp7D1xD4vFYHTE,11466
|
|
@@ -187,15 +187,15 @@ mlrun/frameworks/xgboost/model_handler.py,sha256=XV8xndGhQsPkOX9djqiNVYFB0xiZPuj
|
|
|
187
187
|
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
188
188
|
mlrun/launcher/__init__.py,sha256=pZgS6ZN126aJme4z5spCX-RmdchShxMnQeCPya8AsQI,577
|
|
189
189
|
mlrun/launcher/base.py,sha256=xCg9jti8b_2MYG3eitYEHZQt1UJ1pZgcEEyk18R0W_Q,16372
|
|
190
|
-
mlrun/launcher/client.py,sha256=
|
|
190
|
+
mlrun/launcher/client.py,sha256=DrMf7P-G371SINO4RAZOol9RIOb5WwJj3zc8ByzwgL4,6120
|
|
191
191
|
mlrun/launcher/factory.py,sha256=tk6foFWox7f_xaeTgkWTx9ht_5fv0XzLDR8ucdb8oTE,2344
|
|
192
192
|
mlrun/launcher/local.py,sha256=iSPQjnAeBmIz-oWprDmQqD9TUkz85h9aaJIbybcT1R0,10930
|
|
193
|
-
mlrun/launcher/remote.py,sha256=
|
|
193
|
+
mlrun/launcher/remote.py,sha256=e7orva_ozrtmvEE-QihoFi8MKNCAHxzeUNQpqwQbEoQ,7007
|
|
194
194
|
mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
|
|
195
195
|
mlrun/model_monitoring/api.py,sha256=MyS6dmFv2w9X-kGEPV4Z-Sn2Sihx85hmSe8Yd-NRQgI,34624
|
|
196
196
|
mlrun/model_monitoring/application.py,sha256=nwKWg_LNWBmXWjvwtMuio9dKWxyUdfuTVSAdcMti_DI,12251
|
|
197
197
|
mlrun/model_monitoring/batch.py,sha256=7Iq0LNbuG6yAzaZ3ut1qFMZTP2ODvGd57cufrP84wtg,43286
|
|
198
|
-
mlrun/model_monitoring/batch_application.py,sha256=
|
|
198
|
+
mlrun/model_monitoring/batch_application.py,sha256=r0O5nfKAsQrRoGh3tGfqHazLqgqfGt5sn0FF1AKeqS4,20371
|
|
199
199
|
mlrun/model_monitoring/batch_application_handler.py,sha256=6I3XmganxCfI-IUFEvFpdsUFiw3OiIMq58BS-XARIMs,1046
|
|
200
200
|
mlrun/model_monitoring/evidently_application.py,sha256=vlua7ikl736bFKwigCz3Qh4KV4CoWaqJ1ZVPbwCac90,3792
|
|
201
201
|
mlrun/model_monitoring/features_drift_table.py,sha256=2r51W4xQ8gNq3PXt73IfsYu4l4mjwD-dLfRVAvKplTE,24209
|
|
@@ -216,18 +216,18 @@ mlrun/model_monitoring/stores/models/sqlite.py,sha256=9c5Tw4YuuRiD4GBoQdWGPUzm_6
|
|
|
216
216
|
mlrun/package/__init__.py,sha256=4A1houoObsq46gc4eSeaEanoJKTpund00KZomyciN2I,7101
|
|
217
217
|
mlrun/package/context_handler.py,sha256=xB3FntZFfoV6TP5GAXgplnUReQVveBjJ29hLXXfkPbY,15404
|
|
218
218
|
mlrun/package/errors.py,sha256=LKF8SSaRIdbkB7JQz6b9U4mZV42Ebnf6ZHu4wKuWqK4,1204
|
|
219
|
-
mlrun/package/packager.py,sha256=
|
|
220
|
-
mlrun/package/packagers_manager.py,sha256=
|
|
219
|
+
mlrun/package/packager.py,sha256=cAjzU1vmnbwys6nhKw50nCfQaC_PWPAfhO_MlqTcBoQ,15083
|
|
220
|
+
mlrun/package/packagers_manager.py,sha256=Ps34YUUPpYu0ZFFlWVrKCPk9YJzuMvMMiqxdaue0REY,37399
|
|
221
221
|
mlrun/package/packagers/__init__.py,sha256=rpxpuATMoxCMgHDaVamm0uwocy71e0CSXm85Q5X9tkU,769
|
|
222
|
-
mlrun/package/packagers/default_packager.py,sha256=
|
|
223
|
-
mlrun/package/packagers/numpy_packagers.py,sha256=
|
|
224
|
-
mlrun/package/packagers/pandas_packagers.py,sha256=
|
|
225
|
-
mlrun/package/packagers/python_standard_library_packagers.py,sha256=
|
|
222
|
+
mlrun/package/packagers/default_packager.py,sha256=ecUaodnSfhKY3prigqALI61bj5WyyCM1xfhRNUHw5vc,26644
|
|
223
|
+
mlrun/package/packagers/numpy_packagers.py,sha256=a6Pmu_g-fBaWyQ8LB69ijAWkCi46iuXuO4m8oOpmT00,25620
|
|
224
|
+
mlrun/package/packagers/pandas_packagers.py,sha256=0clr8klM24W1S2Q9H3mRt2r7gBR5M5Uqw96FmvHNP3E,35772
|
|
225
|
+
mlrun/package/packagers/python_standard_library_packagers.py,sha256=BxVb4u3N_gAIky8SyW__OMqlZJb7WkQ-49Ag54nj7OQ,22335
|
|
226
226
|
mlrun/package/utils/__init__.py,sha256=RXkhPH-zFLFFvOjMRJUVgVT33rusK5J4eTVLJ7bjN6k,1722
|
|
227
227
|
mlrun/package/utils/_archiver.py,sha256=EF9r6BBwrFq7o8ig5nFlOnXJ-JsBnvSFTQphYuoGGAM,7567
|
|
228
228
|
mlrun/package/utils/_formatter.py,sha256=EgdSMrJMgt-35myGuwfIOOKAe4jBi6QU7ssw1G0cacY,6393
|
|
229
|
-
mlrun/package/utils/_pickler.py,sha256=
|
|
230
|
-
mlrun/package/utils/_supported_format.py,sha256=
|
|
229
|
+
mlrun/package/utils/_pickler.py,sha256=cqqcSo2V0Ky086s-wLrJw0moD0XEU-DNOYefdRUHbPY,10354
|
|
230
|
+
mlrun/package/utils/_supported_format.py,sha256=Svmfcqc4X7Kq-7pmyzGyI6PgDBaJ3zTT-au0beLZYS8,2375
|
|
231
231
|
mlrun/package/utils/log_hint_utils.py,sha256=ie7opnHlhVdh1mBkvYDFyWyFIjHn8Lm2FcxkiCmL9Z8,3709
|
|
232
232
|
mlrun/package/utils/type_hint_utils.py,sha256=f-1AeFv2vwljH0ymXA4JmcIkH1lEf7HfsJ2A62H-X4A,14825
|
|
233
233
|
mlrun/platforms/__init__.py,sha256=ArWn_iZiEE6qz7hvY_1RqMkFnHGuKjP3k5xYKnfKA58,2352
|
|
@@ -235,33 +235,33 @@ mlrun/platforms/iguazio.py,sha256=LU1d33ll5EKIyp2zitCffZIbq-3fRwNSNO9MK2cIsHc,21
|
|
|
235
235
|
mlrun/platforms/other.py,sha256=z4pWqxXkVVuMLk-MbNb0Y_ZR5pmIsUm0R8vHnqpEnew,11852
|
|
236
236
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
237
237
|
mlrun/projects/operations.py,sha256=ew_wGc6GVWjX1upsh7kBMZHtWyjKglxWPFQ0Tg9o5OI,18134
|
|
238
|
-
mlrun/projects/pipelines.py,sha256=
|
|
239
|
-
mlrun/projects/project.py,sha256=
|
|
240
|
-
mlrun/runtimes/__init__.py,sha256=
|
|
241
|
-
mlrun/runtimes/base.py,sha256=
|
|
238
|
+
mlrun/projects/pipelines.py,sha256=qVlG5ZxdcXxdgtxeht-r6QHDUMw7DUkDPv-yuvui3Rk,39297
|
|
239
|
+
mlrun/projects/project.py,sha256=lYyOYro6wlewR0VX3_YrcixENjQdE5OHB8lhU2HrCfw,143235
|
|
240
|
+
mlrun/runtimes/__init__.py,sha256=kmL7w1z9UTy8oVKBhpk0RN15vHv0Khh-oya1RF33E24,6917
|
|
241
|
+
mlrun/runtimes/base.py,sha256=056I8Oh1KX-qD5hFSVmiuB2bX0ZhOztohOkomMoJ9s8,35525
|
|
242
242
|
mlrun/runtimes/constants.py,sha256=Y7ZETb5-sD1m6H0dqEHmPrtvhqrwYf-uYcKgMxHFYhw,8657
|
|
243
|
-
mlrun/runtimes/daskjob.py,sha256=
|
|
243
|
+
mlrun/runtimes/daskjob.py,sha256=EoTnCeQgOupl90Tg6IrQjo8Fc2I2ZwdTFMq8HD9r8Qw,19100
|
|
244
244
|
mlrun/runtimes/funcdoc.py,sha256=FHwnLfFzoD6yGlsAJXAl_3VTtudgg4fTrsw_XqLOkC0,10508
|
|
245
|
-
mlrun/runtimes/function.py,sha256=
|
|
245
|
+
mlrun/runtimes/function.py,sha256=P44Add7IPmTQTRQTYrkRqFlTYrCgs5ksvyEq67MvNso,47057
|
|
246
246
|
mlrun/runtimes/function_reference.py,sha256=SJ0J-4ww0FQdijmdnUwGUKhMb-h5wtzqCPItTWKIL40,4911
|
|
247
247
|
mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
|
|
248
|
-
mlrun/runtimes/kubejob.py,sha256=
|
|
249
|
-
mlrun/runtimes/local.py,sha256=
|
|
248
|
+
mlrun/runtimes/kubejob.py,sha256=ojmFYLdECGZJbyAXMdee_U3VSkB2393AqyRIWAOrygM,12088
|
|
249
|
+
mlrun/runtimes/local.py,sha256=wF2WZ_NyG6OKdte05Hkr085AFxJr1COI4fJfsJeHbdI,21160
|
|
250
250
|
mlrun/runtimes/nuclio.py,sha256=hwk4dUaZefI-Qbb4s289vQpt1h0nAucxf6eINzVI-d8,2908
|
|
251
|
-
mlrun/runtimes/pod.py,sha256=
|
|
252
|
-
mlrun/runtimes/remotesparkjob.py,sha256=
|
|
253
|
-
mlrun/runtimes/serving.py,sha256=
|
|
254
|
-
mlrun/runtimes/utils.py,sha256=
|
|
251
|
+
mlrun/runtimes/pod.py,sha256=TNM8fee1lSSVHrfig0aPQRV2Vp6ICH09DhFoA6nTO-U,56312
|
|
252
|
+
mlrun/runtimes/remotesparkjob.py,sha256=W7WqlPbyqE6FjOZ2EFeOzlL1jLGWAWe61jOH0Umy3F4,7334
|
|
253
|
+
mlrun/runtimes/serving.py,sha256=IKAv5gHrk7GXkWaVW_tvF7uPtXcdPyQnETJRVj7wXEw,30338
|
|
254
|
+
mlrun/runtimes/utils.py,sha256=eEbWJLC7vl2vG6bRTxsKhvbRBJuPHsf4hfM5cGHcd08,15324
|
|
255
255
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
256
256
|
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=lYItecKYdWkvmuE0gCLqx2OkBfC6JFp4PE3dW6WXHsI,2249
|
|
257
|
-
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=
|
|
257
|
+
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=3FpmWoSsRRYwLJlWJ-aTCG3UOWtX3Mqi-UvhIgLgfC8,8307
|
|
258
258
|
mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=dTnUp7GJxHSaeEfVMb7zxKLfyVrGLLXgnbYA3GXgc_8,8104
|
|
259
259
|
mlrun/runtimes/mpijob/__init__.py,sha256=jZf2uPBv6IB18Jj-dGSQ9NU5_xxni7XS4dnDZGwESFE,1583
|
|
260
260
|
mlrun/runtimes/mpijob/abstract.py,sha256=B9opVnv3Hdm17rFITEemYLoh9ft8q-I4wql4g12jidg,9179
|
|
261
261
|
mlrun/runtimes/mpijob/v1.py,sha256=_RUlFo_3NcFf7x-QpUNVm8f7qNbRDIdUmPf_ijrv54U,3206
|
|
262
262
|
mlrun/runtimes/mpijob/v1alpha1.py,sha256=w_971wwL03hW_ksgHJXdjTdjhxCs9KJ0zNqHSQ9whIM,1034
|
|
263
263
|
mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
|
|
264
|
-
mlrun/runtimes/sparkjob/spark3job.py,sha256=
|
|
264
|
+
mlrun/runtimes/sparkjob/spark3job.py,sha256=A3pXd52mQvoiVnvVd7br_A7Uj0B6eYKfShoi4XuJ3R0,40960
|
|
265
265
|
mlrun/serving/__init__.py,sha256=_6HRAOuS2Ehjo3vwx5h1aI_-JppxEAsl4VfEERAbGFE,1078
|
|
266
266
|
mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
|
|
267
267
|
mlrun/serving/remote.py,sha256=XtCgEY-azxcP0VUG1TupZXQ_dttPkAKIAtszW-GfGpQ,18038
|
|
@@ -283,7 +283,7 @@ mlrun/utils/azure_vault.py,sha256=VNs2fz0XlFrV5Ggz3T0mR7mOWHefEcC14wM7QpsbY44,34
|
|
|
283
283
|
mlrun/utils/clones.py,sha256=QG2ka65-ysfrOaoziudEjJqGgAxJvFKZOXkiD9WZGN4,7386
|
|
284
284
|
mlrun/utils/condition_evaluator.py,sha256=oR-GjryAg76D4G79G-DzVkx631D6Gd4jJgbr_d3Btnw,1920
|
|
285
285
|
mlrun/utils/db.py,sha256=2pdIYKIA0GiwwuWLW0PJ_bPu9M1rd7ESBqnMr5wWuW4,1662
|
|
286
|
-
mlrun/utils/helpers.py,sha256=
|
|
286
|
+
mlrun/utils/helpers.py,sha256=_8tSlPz_f1zLbE2iklBYh_ioDiLJjdGacDmd5VmXac4,49769
|
|
287
287
|
mlrun/utils/http.py,sha256=_3pJPuDPz7M9pU4uRN-NPUmCyaANCQsAWAIrlVLZPiY,8733
|
|
288
288
|
mlrun/utils/logger.py,sha256=ZVT9vnDGeuMKsbiEHTN3AXyF_hvUgpv4jGa1lgwFXJU,7049
|
|
289
289
|
mlrun/utils/regex.py,sha256=V0kaw1-zuehkN20g_Pq6SgkJTBLRdBqNkXOGN_2TJEw,4430
|
|
@@ -291,7 +291,7 @@ mlrun/utils/singleton.py,sha256=UUTQiBTXyzmjeYzsvTUsSxqyLJHOtesqif9GNfZO9rc,883
|
|
|
291
291
|
mlrun/utils/v3io_clients.py,sha256=HL7Hma-pxaQBXMKcEnWqGLCpFgykwnszlabzeOHC9-E,1319
|
|
292
292
|
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
293
293
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
294
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
294
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=oEp4ScghAQRH99ahFPAKyegyFSLTM4nLdIeDs9_aL1M,21583
|
|
295
295
|
mlrun/utils/notifications/notification/__init__.py,sha256=v2ULfsoGLlgBKS90ezou9wooBX7fo0NJgDsNdr51YEk,2113
|
|
296
296
|
mlrun/utils/notifications/notification/base.py,sha256=t1sxExL2i2tJr3UuiQ9NTDONrpXcGBsrnxtAdemog2s,2293
|
|
297
297
|
mlrun/utils/notifications/notification/console.py,sha256=leZrjwu3fFA1sCYsTxDXEGZ02SWTUk4GNzp7tT2uaCc,2532
|
|
@@ -300,11 +300,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=qrBmtECiRG6sZpCIVMg7RZc
|
|
|
300
300
|
mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
|
|
301
301
|
mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
|
|
302
302
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
303
|
-
mlrun/utils/version/version.json,sha256=
|
|
303
|
+
mlrun/utils/version/version.json,sha256=IkJb029Bmvw9FBE87Dn38jmED3xMIy3H__mZ6t9jEVo,88
|
|
304
304
|
mlrun/utils/version/version.py,sha256=HMwseV8xjTQ__6T6yUWojx_z6yUj7Io7O4NcCCH_sz8,1970
|
|
305
|
-
mlrun-1.6.
|
|
306
|
-
mlrun-1.6.
|
|
307
|
-
mlrun-1.6.
|
|
308
|
-
mlrun-1.6.
|
|
309
|
-
mlrun-1.6.
|
|
310
|
-
mlrun-1.6.
|
|
305
|
+
mlrun-1.6.0rc8.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
306
|
+
mlrun-1.6.0rc8.dist-info/METADATA,sha256=7LKDQBFx18N74EJe5McMHcuCHq8OM-8ozHoapdigwJA,18584
|
|
307
|
+
mlrun-1.6.0rc8.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
308
|
+
mlrun-1.6.0rc8.dist-info/entry_points.txt,sha256=ZbXmb36B9JmK7EaleP8MIAbZSOQXQV0iwKR6si0HUWk,47
|
|
309
|
+
mlrun-1.6.0rc8.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
310
|
+
mlrun-1.6.0rc8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|