mlrun 1.7.0rc15__py3-none-any.whl → 1.7.0rc16__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/__init__.py +10 -1
- mlrun/__main__.py +18 -4
- mlrun/alerts/__init__.py +15 -0
- mlrun/alerts/alert.py +141 -0
- mlrun/artifacts/__init__.py +7 -1
- mlrun/artifacts/base.py +28 -3
- mlrun/artifacts/dataset.py +8 -0
- mlrun/artifacts/manager.py +18 -0
- mlrun/artifacts/model.py +7 -0
- mlrun/artifacts/plots.py +13 -0
- mlrun/common/schemas/__init__.py +4 -2
- mlrun/common/schemas/alert.py +46 -4
- mlrun/common/schemas/api_gateway.py +4 -0
- mlrun/common/schemas/artifact.py +15 -0
- mlrun/common/schemas/auth.py +2 -0
- mlrun/common/schemas/model_monitoring/__init__.py +4 -1
- mlrun/common/schemas/model_monitoring/constants.py +16 -1
- mlrun/common/schemas/model_monitoring/model_endpoints.py +60 -1
- mlrun/common/schemas/project.py +2 -0
- mlrun/config.py +4 -1
- mlrun/datastore/datastore_profile.py +10 -7
- mlrun/db/base.py +23 -3
- mlrun/db/httpdb.py +97 -43
- mlrun/db/nopdb.py +20 -2
- mlrun/errors.py +5 -0
- mlrun/launcher/base.py +3 -2
- mlrun/lists.py +2 -0
- mlrun/model.py +7 -2
- mlrun/model_monitoring/__init__.py +1 -1
- mlrun/model_monitoring/applications/_application_steps.py +1 -2
- mlrun/model_monitoring/applications/context.py +1 -1
- mlrun/model_monitoring/applications/histogram_data_drift.py +64 -38
- mlrun/model_monitoring/db/__init__.py +2 -0
- mlrun/model_monitoring/db/stores/base/store.py +9 -36
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py +63 -110
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +56 -202
- mlrun/model_monitoring/db/tsdb/__init__.py +71 -0
- mlrun/model_monitoring/db/tsdb/base.py +135 -0
- mlrun/model_monitoring/db/tsdb/v3io/__init__.py +15 -0
- mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +117 -0
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +404 -0
- mlrun/model_monitoring/db/v3io_tsdb_reader.py +134 -0
- mlrun/model_monitoring/stream_processing.py +46 -210
- mlrun/model_monitoring/writer.py +49 -99
- mlrun/platforms/__init__.py +10 -9
- mlrun/platforms/iguazio.py +19 -200
- mlrun/projects/operations.py +11 -7
- mlrun/projects/pipelines.py +13 -76
- mlrun/projects/project.py +55 -14
- mlrun/render.py +9 -3
- mlrun/run.py +5 -38
- mlrun/runtimes/base.py +3 -3
- mlrun/runtimes/kubejob.py +2 -1
- mlrun/runtimes/nuclio/api_gateway.py +75 -9
- mlrun/runtimes/nuclio/function.py +8 -34
- mlrun/runtimes/pod.py +16 -36
- mlrun/runtimes/remotesparkjob.py +1 -1
- mlrun/runtimes/sparkjob/spark3job.py +1 -1
- mlrun/runtimes/utils.py +0 -38
- mlrun/utils/helpers.py +45 -31
- mlrun/utils/notifications/notification/base.py +1 -1
- mlrun/utils/notifications/notification/slack.py +9 -4
- mlrun/utils/notifications/notification/webhook.py +1 -1
- mlrun/utils/notifications/notification_pusher.py +15 -14
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.0rc15.dist-info → mlrun-1.7.0rc16.dist-info}/METADATA +3 -2
- {mlrun-1.7.0rc15.dist-info → mlrun-1.7.0rc16.dist-info}/RECORD +71 -65
- mlrun/kfpops.py +0 -860
- mlrun/platforms/other.py +0 -305
- {mlrun-1.7.0rc15.dist-info → mlrun-1.7.0rc16.dist-info}/LICENSE +0 -0
- {mlrun-1.7.0rc15.dist-info → mlrun-1.7.0rc16.dist-info}/WHEEL +0 -0
- {mlrun-1.7.0rc15.dist-info → mlrun-1.7.0rc16.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.0rc15.dist-info → mlrun-1.7.0rc16.dist-info}/top_level.txt +0 -0
|
@@ -77,7 +77,7 @@ class NotificationBase:
|
|
|
77
77
|
return f"[{severity}] {message}"
|
|
78
78
|
return (
|
|
79
79
|
f"[{severity}] {message} for project {alert.project} "
|
|
80
|
-
f"UID {event_data.entity.
|
|
80
|
+
f"UID {event_data.entity.ids[0]}. Values {event_data.value_dict}"
|
|
81
81
|
)
|
|
82
82
|
|
|
83
83
|
if not runs:
|
|
@@ -135,7 +135,7 @@ class SlackNotification(NotificationBase):
|
|
|
135
135
|
line = [
|
|
136
136
|
self._get_slack_row(f":bell: {alert.name} alert has occurred"),
|
|
137
137
|
self._get_slack_row(f"*Project:*\n{alert.project}"),
|
|
138
|
-
self._get_slack_row(f"*UID:*\n{event_data.entity.
|
|
138
|
+
self._get_slack_row(f"*UID:*\n{event_data.entity.ids[0]}"),
|
|
139
139
|
]
|
|
140
140
|
if event_data.value_dict:
|
|
141
141
|
data_lines = []
|
|
@@ -144,7 +144,9 @@ class SlackNotification(NotificationBase):
|
|
|
144
144
|
data_text = "\n".join(data_lines)
|
|
145
145
|
line.append(self._get_slack_row(f"*Event data:*\n{data_text}"))
|
|
146
146
|
|
|
147
|
-
if url := mlrun.utils.helpers.get_ui_url(
|
|
147
|
+
if url := mlrun.utils.helpers.get_ui_url(
|
|
148
|
+
alert.project, event_data.entity.ids[0]
|
|
149
|
+
):
|
|
148
150
|
line.append(self._get_slack_row(f"*Overview:*\n<{url}|*Job overview*>"))
|
|
149
151
|
|
|
150
152
|
return line
|
|
@@ -154,18 +156,21 @@ class SlackNotification(NotificationBase):
|
|
|
154
156
|
url = mlrun.utils.helpers.get_ui_url(meta.get("project"), meta.get("uid"))
|
|
155
157
|
|
|
156
158
|
# Only show the URL if the run is not a function (serving or mlrun function)
|
|
157
|
-
|
|
159
|
+
kind = run.get("step_kind")
|
|
160
|
+
if url and not kind or kind == "run":
|
|
158
161
|
line = f'<{url}|*{meta.get("name")}*>'
|
|
159
162
|
else:
|
|
160
163
|
line = meta.get("name")
|
|
161
164
|
state = run["status"].get("state", "")
|
|
165
|
+
if kind:
|
|
166
|
+
line = f'{line} *({run.get("step_kind", run.get("kind", ""))})*'
|
|
162
167
|
line = f'{self.emojis.get(state, ":question:")} {line}'
|
|
163
168
|
return self._get_slack_row(line)
|
|
164
169
|
|
|
165
170
|
def _get_run_result(self, run: dict) -> dict:
|
|
166
171
|
state = run["status"].get("state", "")
|
|
167
172
|
if state == "error":
|
|
168
|
-
error_status = run["status"].get("error", "")
|
|
173
|
+
error_status = run["status"].get("error", "") or state
|
|
169
174
|
result = f"*{error_status}*"
|
|
170
175
|
else:
|
|
171
176
|
result = mlrun.utils.helpers.dict_to_str(
|
|
@@ -57,7 +57,7 @@ class WebhookNotification(NotificationBase):
|
|
|
57
57
|
request_body["alert"] = alert.dict()
|
|
58
58
|
if event_data:
|
|
59
59
|
request_body["value"] = event_data.value_dict
|
|
60
|
-
request_body["id"] = event_data.entity.
|
|
60
|
+
request_body["id"] = event_data.entity.ids[0]
|
|
61
61
|
|
|
62
62
|
if custom_html:
|
|
63
63
|
request_body["custom_html"] = custom_html
|
|
@@ -22,13 +22,13 @@ import typing
|
|
|
22
22
|
from concurrent.futures import ThreadPoolExecutor
|
|
23
23
|
|
|
24
24
|
import kfp
|
|
25
|
+
import mlrun_pipelines.common.ops
|
|
25
26
|
|
|
26
27
|
import mlrun.common.runtimes.constants
|
|
27
28
|
import mlrun.common.schemas
|
|
28
29
|
import mlrun.config
|
|
29
30
|
import mlrun.db.base
|
|
30
31
|
import mlrun.errors
|
|
31
|
-
import mlrun.kfpops
|
|
32
32
|
import mlrun.lists
|
|
33
33
|
import mlrun.model
|
|
34
34
|
import mlrun.utils.helpers
|
|
@@ -392,15 +392,15 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
392
392
|
steps = []
|
|
393
393
|
db = mlrun.get_run_db()
|
|
394
394
|
|
|
395
|
-
def _add_run_step(_node_name,
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
)
|
|
395
|
+
def _add_run_step(_node_name, _node_template, _step_kind):
|
|
396
|
+
_run = db.list_runs(
|
|
397
|
+
project=run.metadata.project,
|
|
398
|
+
labels=f"mlrun/runner-pod={_node_name}",
|
|
399
|
+
)[0]
|
|
400
|
+
_run["step_kind"] = _step_kind
|
|
401
|
+
steps.append(_run)
|
|
402
402
|
|
|
403
|
-
def _add_deploy_function_step(_, _node_template):
|
|
403
|
+
def _add_deploy_function_step(_, _node_template, _step_kind):
|
|
404
404
|
project, name, hash_key = self._extract_function_uri(
|
|
405
405
|
_node_template["metadata"]["annotations"]["mlrun/function-uri"]
|
|
406
406
|
)
|
|
@@ -428,12 +428,13 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
428
428
|
function["metadata"]["updated"] = function["metadata"][
|
|
429
429
|
"updated"
|
|
430
430
|
].isoformat()
|
|
431
|
+
function["step_kind"] = _step_kind
|
|
431
432
|
steps.append(function)
|
|
432
433
|
|
|
433
434
|
step_methods = {
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
435
|
+
mlrun_pipelines.common.ops.PipelineRunType.run: _add_run_step,
|
|
436
|
+
mlrun_pipelines.common.ops.PipelineRunType.build: _add_deploy_function_step,
|
|
437
|
+
mlrun_pipelines.common.ops.PipelineRunType.deploy: _add_deploy_function_step,
|
|
437
438
|
}
|
|
438
439
|
|
|
439
440
|
workflow_id = run.status.results.get("workflow_id", None)
|
|
@@ -464,7 +465,7 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
464
465
|
)
|
|
465
466
|
step_method = step_methods.get(step_type)
|
|
466
467
|
if step_method:
|
|
467
|
-
step_method(node_name, node_template)
|
|
468
|
+
step_method(node_name, node_template, step_type)
|
|
468
469
|
return steps
|
|
469
470
|
except Exception:
|
|
470
471
|
# If we fail to read the pipeline steps, we will return the list of runs that have the same workflow id
|
|
@@ -481,7 +482,7 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
481
482
|
|
|
482
483
|
@staticmethod
|
|
483
484
|
def _get_workflow_manifest(workflow_id: str) -> typing.Optional[dict]:
|
|
484
|
-
kfp_client = kfp.Client(namespace=mlrun.
|
|
485
|
+
kfp_client = kfp.Client(namespace=mlrun.mlconf.namespace)
|
|
485
486
|
|
|
486
487
|
# arbitrary timeout of 5 seconds, the workflow should be done by now
|
|
487
488
|
kfp_run = kfp_client.wait_for_run_completion(workflow_id, 5)
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.0rc16
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -26,7 +26,6 @@ Requires-Dist: GitPython >=3.1.41,~=3.1
|
|
|
26
26
|
Requires-Dist: aiohttp ~=3.9
|
|
27
27
|
Requires-Dist: aiohttp-retry ~=2.8
|
|
28
28
|
Requires-Dist: click ~=8.1
|
|
29
|
-
Requires-Dist: kfp ~=1.8
|
|
30
29
|
Requires-Dist: nest-asyncio ~=1.0
|
|
31
30
|
Requires-Dist: ipython ~=8.10
|
|
32
31
|
Requires-Dist: nuclio-jupyter ~=0.9.16
|
|
@@ -51,6 +50,8 @@ Requires-Dist: setuptools ~=69.1
|
|
|
51
50
|
Requires-Dist: deprecated ~=1.2
|
|
52
51
|
Requires-Dist: jinja2 >=3.1.3,~=3.1
|
|
53
52
|
Requires-Dist: orjson <4,>=3.9.15
|
|
53
|
+
Requires-Dist: mlrun-pipelines-kfp-common-experiment ~=0.2.0
|
|
54
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8-experiment ~=0.2.0
|
|
54
55
|
Provides-Extra: alibaba-oss
|
|
55
56
|
Requires-Dist: ossfs ==2023.12.0 ; extra == 'alibaba-oss'
|
|
56
57
|
Requires-Dist: oss2 ==2.18.1 ; extra == 'alibaba-oss'
|
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
mlrun/__init__.py,sha256=
|
|
2
|
-
mlrun/__main__.py,sha256=
|
|
3
|
-
mlrun/config.py,sha256=
|
|
4
|
-
mlrun/errors.py,sha256=
|
|
1
|
+
mlrun/__init__.py,sha256=y08M1JcKXy5-9_5WaI9fn5aV5BxIQ5QkbduJK0OxWbA,7470
|
|
2
|
+
mlrun/__main__.py,sha256=J2Y7_hKWusNsinXVLdIkAPZl5ThRePaxSG1I9b6yI_E,45717
|
|
3
|
+
mlrun/config.py,sha256=QcDEPoMEyK19vx5PKJIsr-1aP9HlZ9IIJ3c8yp2_D6M,64735
|
|
4
|
+
mlrun/errors.py,sha256=Kx6XVGPDurT1S0qjD3PoaETvjsN5nQ4YErVSJkG-EPs,7269
|
|
5
5
|
mlrun/execution.py,sha256=F45o_rJI3Q8epQefTksvyjmgZr4ZxKmUxXbKW5UZOaY,40891
|
|
6
6
|
mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
|
|
7
7
|
mlrun/k8s_utils.py,sha256=YyFZT2WNZrJkcZoqxrkduQgzQ1X-7195O0mmEqvaIug,7023
|
|
8
|
-
mlrun/
|
|
9
|
-
mlrun/
|
|
10
|
-
mlrun/
|
|
11
|
-
mlrun/
|
|
12
|
-
mlrun/run.py,sha256=D7E3zWGPFDe6jLoW_WIyA75naaKOnQNRTP_-9_pvYVo,43100
|
|
8
|
+
mlrun/lists.py,sha256=hB6uBJFjlfdF9zBl-D7FO5wJkJaHDVc0u_Vaf5A2Ruc,8305
|
|
9
|
+
mlrun/model.py,sha256=Q5E6x9ki7Qf5CWZybRwruzL83oA2_n3e1DNexOsuF8g,71707
|
|
10
|
+
mlrun/render.py,sha256=4qYIKPy9lTsbnMvaSZRHelW35HebAYwNOivp6QDRHvA,12997
|
|
11
|
+
mlrun/run.py,sha256=0V99lXDuXtrUlZlmVHi7Dj2OyVT7fXrLHYLqqxfon_4,42457
|
|
13
12
|
mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
|
|
13
|
+
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
|
+
mlrun/alerts/alert.py,sha256=GSjv1ic9RnPBIf85pPaxNX-3Ej14EEw7NVkOxaAQtCU,5020
|
|
14
15
|
mlrun/api/schemas/__init__.py,sha256=LhfO3myrnLVxC0MYCAc1_LTuqhRlYV3H7BwJkjOu3dQ,14211
|
|
15
|
-
mlrun/artifacts/__init__.py,sha256=
|
|
16
|
-
mlrun/artifacts/base.py,sha256=
|
|
17
|
-
mlrun/artifacts/dataset.py,sha256=
|
|
18
|
-
mlrun/artifacts/manager.py,sha256=
|
|
19
|
-
mlrun/artifacts/model.py,sha256=
|
|
20
|
-
mlrun/artifacts/plots.py,sha256=
|
|
16
|
+
mlrun/artifacts/__init__.py,sha256=daGrLqltI1nE3ES30nm-tanUnxReRzfyxyaxNRx2zbc,1168
|
|
17
|
+
mlrun/artifacts/base.py,sha256=azVkiHaJq9JNFKlb91R1vwkdR2QEqF-rIn7bQIL6rf0,29148
|
|
18
|
+
mlrun/artifacts/dataset.py,sha256=O_2g2RFHYEAXIBX86mgyc0wBNOhWLT7NlYvxFeLNTuw,16505
|
|
19
|
+
mlrun/artifacts/manager.py,sha256=e5vIPwODitCyrIr9ZyU5AG4XUIa9CbJgoIRM36Rn7jA,14430
|
|
20
|
+
mlrun/artifacts/model.py,sha256=ku8IrxLTVEPm6S79gLUJkUaLrVnyuDSAbxe9BDLZwM4,21097
|
|
21
|
+
mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
|
|
21
22
|
mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
22
23
|
mlrun/common/constants.py,sha256=7SLxtvq1VGO9ed0xQ87jM09ScTKMuv_2qx_IBE6hybg,991
|
|
23
24
|
mlrun/common/helpers.py,sha256=BAhyuUnZvD_BT43i0_1EszuSbKgZx7bFy2KRIWP0XeA,1087
|
|
@@ -28,11 +29,11 @@ mlrun/common/db/sql_session.py,sha256=Znc8KE2oLy4lg3_vRki1sVlNx59TgDSOTCXfU561hB
|
|
|
28
29
|
mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
|
|
29
30
|
mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
|
|
30
31
|
mlrun/common/runtimes/constants.py,sha256=oP3OxdYCpbvadJ3zP1JGkqGBKaBheNkCnJISWha9x58,9513
|
|
31
|
-
mlrun/common/schemas/__init__.py,sha256=
|
|
32
|
-
mlrun/common/schemas/alert.py,sha256=
|
|
33
|
-
mlrun/common/schemas/api_gateway.py,sha256=
|
|
34
|
-
mlrun/common/schemas/artifact.py,sha256=
|
|
35
|
-
mlrun/common/schemas/auth.py,sha256=
|
|
32
|
+
mlrun/common/schemas/__init__.py,sha256=T2BePtlhroPqCJ8XGPtq-2dxh99mhjCkICA4ux-W1tE,5179
|
|
33
|
+
mlrun/common/schemas/alert.py,sha256=6BWAu28TVcF6dNlj-9FBivDaeP92wNHQdPhTFAnznrs,4724
|
|
34
|
+
mlrun/common/schemas/api_gateway.py,sha256=pWCSQ_devM8RAeiFyVpkA3Zb8e7TDomG5uoTzPs-pxg,2659
|
|
35
|
+
mlrun/common/schemas/artifact.py,sha256=RsiuVztn_eS5BuSRFUyJGTC9ed-Z2SpsEqJ_WslM30E,3375
|
|
36
|
+
mlrun/common/schemas/auth.py,sha256=5c4WSn3KdX1v04ttSQblkF_gyjdjuJSHG7BTCx4_LWM,6336
|
|
36
37
|
mlrun/common/schemas/background_task.py,sha256=2qZxib2qrF_nPZj0ncitCG-2jxz2hg1qj0hFc8eswWQ,1707
|
|
37
38
|
mlrun/common/schemas/client_spec.py,sha256=EEhnufqCawDLcYs8IPR6Fq3i1PWMuPpBp4cUHBoWEfA,2896
|
|
38
39
|
mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
|
|
@@ -51,7 +52,7 @@ mlrun/common/schemas/notification.py,sha256=Ge7eWNGf_XUFkjOnUkyUOubdEbmXh9z_OSGc
|
|
|
51
52
|
mlrun/common/schemas/object.py,sha256=VleJSUmDJMl92knLgaDE8SWCi3ky0UaHcwcwOIapPQ8,1980
|
|
52
53
|
mlrun/common/schemas/pagination.py,sha256=q7nk6bipkDiE7HExIVqhy5ANl-zv0x8QC9Kg6AkLtDA,887
|
|
53
54
|
mlrun/common/schemas/pipeline.py,sha256=GhrIsf5tRUQtQYboZ2feXdMjpFelVvduM-SIQoV5TZw,1177
|
|
54
|
-
mlrun/common/schemas/project.py,sha256=
|
|
55
|
+
mlrun/common/schemas/project.py,sha256=B0dW5qpgJF-N7EEJM5N3QS-y284MXcUxu6BejY7uVX0,4527
|
|
55
56
|
mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
|
|
56
57
|
mlrun/common/schemas/runs.py,sha256=H9QhaN83cFUN42eE9TLgi1gs6Xdq11oQSZ96ESM94mI,745
|
|
57
58
|
mlrun/common/schemas/runtime_resource.py,sha256=2rSuYL-9JkESSomlnU91mYDbfV-IkqZeXx6OHuMmDxs,1554
|
|
@@ -59,10 +60,10 @@ mlrun/common/schemas/schedule.py,sha256=e9nAeRkZkyk37Ws1cBNseHVKPOQqmWV16rt-zr_e
|
|
|
59
60
|
mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
|
|
60
61
|
mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
|
|
61
62
|
mlrun/common/schemas/workflow.py,sha256=eRoaOBFiWbvP0iwZ6Aof5JmheV81A0-0PGi8L4vuXmI,1823
|
|
62
|
-
mlrun/common/schemas/model_monitoring/__init__.py,sha256=
|
|
63
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
63
|
+
mlrun/common/schemas/model_monitoring/__init__.py,sha256=ZNPytT2wKHgLCnHhmbJfOEz4n6rAEPmgLDwxUQfJl4I,1673
|
|
64
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=7X2TMwOWFGVjP-4pWnMavThGhjacJkzjzaOoGBhWvbg,9185
|
|
64
65
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=aiNK8iL_fIzDVO_bj4fted9P6fAwaymcPC2OnRk36po,1431
|
|
65
|
-
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=
|
|
66
|
+
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=uQeM1MBaAbZUJbT6TwaGn-LRnA059OstqtLUvmAO394,13837
|
|
66
67
|
mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
|
|
67
68
|
mlrun/data_types/data_types.py,sha256=hWiL5TPOj9EK7_nd1yttLBUhXTmBYLDZzmG-hWzzhHE,4751
|
|
68
69
|
mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
|
|
@@ -73,7 +74,7 @@ mlrun/datastore/alibaba_oss.py,sha256=OfQ9AbsJNBFF9DFgUdq38TvKw6qwnHmEcnH-nze6ZZ
|
|
|
73
74
|
mlrun/datastore/azure_blob.py,sha256=NpkEoIie7mH171tOwlrwpEwzRYGoo9SF3FAAegEENhU,9019
|
|
74
75
|
mlrun/datastore/base.py,sha256=z1ON-fd6mjRu_YZybhY2uw26T5upk4HHAsV8PfkB3o4,25586
|
|
75
76
|
mlrun/datastore/datastore.py,sha256=GGo8XPnKVWWgY0b-18D93V1g8DJgeBNafa6knnHEabw,9111
|
|
76
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
77
|
+
mlrun/datastore/datastore_profile.py,sha256=lRVzPvx3O1MzoylkpXS_32LYfdDSmHgVFE4W5omwN4A,18903
|
|
77
78
|
mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
|
|
78
79
|
mlrun/datastore/filestore.py,sha256=nS3Ie6jG41NDiW_as9tF8Nu5maaSVEKYKUr1IQtPhuA,3767
|
|
79
80
|
mlrun/datastore/google_cloud_storage.py,sha256=Du5qYYUCSkLt9acQDeQ-PgEjttsE7D2eAoLebO43kiw,6110
|
|
@@ -93,10 +94,10 @@ mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev
|
|
|
93
94
|
mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
|
|
94
95
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
95
96
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
96
|
-
mlrun/db/base.py,sha256=
|
|
97
|
+
mlrun/db/base.py,sha256=bcYnbcaQvFnsz61-Il4uiP8AS9K0AUFSRt_Cu2cmY8E,21594
|
|
97
98
|
mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
|
|
98
|
-
mlrun/db/httpdb.py,sha256=
|
|
99
|
-
mlrun/db/nopdb.py,sha256=
|
|
99
|
+
mlrun/db/httpdb.py,sha256=FmYfkjxadPQMUyQzXmJ910DVqivI-GtRfBNNC8yp4TQ,172966
|
|
100
|
+
mlrun/db/nopdb.py,sha256=361lxiSEttAQsvx5Ow3wSiOG47qRG0ysBeSXWvFNziQ,18839
|
|
100
101
|
mlrun/feature_store/__init__.py,sha256=FhHRc8NdqL_HWpCs7A8dKruxJS5wEm55Gs3dcgBiRUg,1522
|
|
101
102
|
mlrun/feature_store/api.py,sha256=uYheyPkJOVCrz1jivvpGatgy_JBAq0It0XZqPpNVQkE,48699
|
|
102
103
|
mlrun/feature_store/common.py,sha256=DKmoRk04NCS1gv7qZuEUa2-g8WsfR6IWjYctcrqKVlg,12853
|
|
@@ -197,12 +198,12 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=QcP_mTKBjxvRyWcNnju0BlvXBDOqN
|
|
|
197
198
|
mlrun/frameworks/xgboost/model_handler.py,sha256=e7IwdrmAaQ5Yy_fqOirN7oi-xEJgg_Gqh83Dw1w-U34,11530
|
|
198
199
|
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
199
200
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
200
|
-
mlrun/launcher/base.py,sha256=
|
|
201
|
+
mlrun/launcher/base.py,sha256=ud1qc2v66-84haAVBuQ2e0IsOzvd_bleSVVImwNWhwE,16461
|
|
201
202
|
mlrun/launcher/client.py,sha256=ZVWAgVm-XFt-r1jJblXqaj_MrGztlcrUTd_qS6BqMq0,6062
|
|
202
203
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
203
204
|
mlrun/launcher/local.py,sha256=6E83lCJ8Ma4WPCQYzo3P6c4tvpIipJsokZ3zMrCORbk,10909
|
|
204
205
|
mlrun/launcher/remote.py,sha256=2DGInyx0um5BRUEA5DYcnLXzVKTIv8JxeXogWdxl48o,7469
|
|
205
|
-
mlrun/model_monitoring/__init__.py,sha256=
|
|
206
|
+
mlrun/model_monitoring/__init__.py,sha256=dm5_j0_pwqrdzFwTaEtGnKfv2nVpNaM56nBI-oqLbNU,879
|
|
206
207
|
mlrun/model_monitoring/api.py,sha256=zOYxVK-rTC1ZZkI9ImPb4ifxPk3mzEzQxMGHRSg2AV0,30298
|
|
207
208
|
mlrun/model_monitoring/application.py,sha256=RJ8HeAPfGO3P2A_dEZYNg60c1wKTADh2YSv8BQ5embg,745
|
|
208
209
|
mlrun/model_monitoring/controller.py,sha256=MQ4BF3vfJSyYZv6HuTuSLt_nqaflgBYyOSwCccbwaio,27981
|
|
@@ -212,28 +213,34 @@ mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4
|
|
|
212
213
|
mlrun/model_monitoring/helpers.py,sha256=hbDcxv0j3ob6eabEzlZ0JBr0GG1GsWZDdnJfHwNTrYs,9375
|
|
213
214
|
mlrun/model_monitoring/model_endpoint.py,sha256=7VX0cBATqLsA4sSinDzouf41ndxqh2mf5bO9BW0G5Z4,4017
|
|
214
215
|
mlrun/model_monitoring/prometheus.py,sha256=cUR4y73GutJB_pA_VCBDl9YtK4PcIJp2wj2rnLVmYi4,7578
|
|
215
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
216
|
+
mlrun/model_monitoring/stream_processing.py,sha256=lk0Cm17hyXMeh3yVLLFP973T3zgleLsDPlJFkRpbpB4,42170
|
|
216
217
|
mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
|
|
217
|
-
mlrun/model_monitoring/writer.py,sha256=
|
|
218
|
+
mlrun/model_monitoring/writer.py,sha256=OSYooRVC8vodZeVBKf4lxfdM3dEkUNKGAubhUuHUq4A,8853
|
|
218
219
|
mlrun/model_monitoring/applications/__init__.py,sha256=i793GqYee01mRh_KD6GShvX7UbPBgdJDO4qf9Z3BXEQ,970
|
|
219
|
-
mlrun/model_monitoring/applications/_application_steps.py,sha256
|
|
220
|
+
mlrun/model_monitoring/applications/_application_steps.py,sha256=-g9jxIAFM5f22iJaUAQVlM8QRSv6KFT92I4WHmZe_f0,6028
|
|
220
221
|
mlrun/model_monitoring/applications/base.py,sha256=5YYI3XDcXnbkDQFL5oZGfbco93dqv1vB2fLW0wK8lSo,11362
|
|
221
|
-
mlrun/model_monitoring/applications/context.py,sha256=
|
|
222
|
+
mlrun/model_monitoring/applications/context.py,sha256=i-9h6pWyrS8mjw53zd0kb_Dsf9ReS8cSfnth8PvOEI4,8571
|
|
222
223
|
mlrun/model_monitoring/applications/evidently_base.py,sha256=AE_eIz-GEYm3AZTrMCiqF9bcSMlvYk08LJb6bKWAQLg,8057
|
|
223
|
-
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=
|
|
224
|
+
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=HZmNg09SCjAKkIlKmJwqR7hr-8sXrwFEqXgJCitVbXc,13039
|
|
224
225
|
mlrun/model_monitoring/applications/results.py,sha256=VVlu9Si7Tj2LNJzPQrp4_Qeyh9mxOVMu1Jwb5K2LfvY,3577
|
|
225
|
-
mlrun/model_monitoring/db/__init__.py,sha256=
|
|
226
|
+
mlrun/model_monitoring/db/__init__.py,sha256=6Ic-X3Fh9XLPYMytmevGNSs-Hii1rAjLLoFTSPwTguw,736
|
|
227
|
+
mlrun/model_monitoring/db/v3io_tsdb_reader.py,sha256=F-GBZGB4kzn4oAa_eK-Aa7Vsi9TJgzsrv9lT6qtvCQk,4732
|
|
226
228
|
mlrun/model_monitoring/db/stores/__init__.py,sha256=G3g1ZclwVWfdtFsuTAW1O2A2ndR4ku9xU9TivnIb4yk,4305
|
|
227
229
|
mlrun/model_monitoring/db/stores/base/__init__.py,sha256=JufJETW3BXzPhFwbRa8dMf7BFGGZKceIWIMgr5x9n9c,599
|
|
228
|
-
mlrun/model_monitoring/db/stores/base/store.py,sha256=
|
|
230
|
+
mlrun/model_monitoring/db/stores/base/store.py,sha256=MKXmb1dtaXMdBaBdQDColpAVr9YV2ZXpgh5idoe5Ihs,5361
|
|
229
231
|
mlrun/model_monitoring/db/stores/sqldb/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
230
|
-
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=
|
|
232
|
+
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=gwJ5kH6r36ykEACdk6BgOQWqmkCaF_ZCv38DGGj_WuE,24131
|
|
231
233
|
mlrun/model_monitoring/db/stores/sqldb/models/__init__.py,sha256=359IyQfnBqe4MXrKe4wCPAM2-ntqjUYCx1n_djSdNYg,2196
|
|
232
234
|
mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=2EZD0VCl69PRyvfQ9QAAQp08MGAUllmj5nXiCwyj7VU,4423
|
|
233
235
|
mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=IQxnupQAVnAu_J2aENRyKuRJuOc5EcfVtWBRCEpOwzA,2022
|
|
234
236
|
mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=S45CfdLSq_XJVKz3ZtdA8imsWWnuKdHb696HjDktLTU,994
|
|
235
237
|
mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
236
|
-
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=
|
|
238
|
+
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=AiJyuTHxO-fyKSf9ns1GHd9nC-wslUKu6I9FJRFLOWI,24133
|
|
239
|
+
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=CDBQrSsgF3hzpwlXYawDCQERCyKJbA3Sdka0nZKTMWk,2589
|
|
240
|
+
mlrun/model_monitoring/db/tsdb/base.py,sha256=G0pGPSa6kxIj5KaT1HsoAKF3COTbTOJtuz8TNEOuzLQ,6575
|
|
241
|
+
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
242
|
+
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=qbiyBzrdWLJAKLmJV4K8jUxsAMbKGZ1vip7WNfRcpXM,4764
|
|
243
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=H-BBDr3ycupVI-8_moBcRbTjJtA83PYZd42OuMmYzME,16359
|
|
237
244
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
238
245
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
239
246
|
mlrun/package/__init__.py,sha256=uWILzN42bcq5vFRk6ptxEmn1I5uBWAnhaJr7e4H834w,7082
|
|
@@ -253,24 +260,23 @@ mlrun/package/utils/_pickler.py,sha256=aDFbafkOK7K_n0CFn3OBRGD1cDBx7-iGN88zd5ywb
|
|
|
253
260
|
mlrun/package/utils/_supported_format.py,sha256=O3LPTvZ6A-nGi6mB2kTzJp2DQ-cCOgnlvFCiIqetPTY,2357
|
|
254
261
|
mlrun/package/utils/log_hint_utils.py,sha256=40X7oVzCiAIGsTTSON0iYNHj-_1Y4l4SDMThTA85If8,3696
|
|
255
262
|
mlrun/package/utils/type_hint_utils.py,sha256=JYrek6vuN3z7e6MGUD3qBLDfQ03C4puZXNTpDSj-VrM,14695
|
|
256
|
-
mlrun/platforms/__init__.py,sha256=
|
|
257
|
-
mlrun/platforms/iguazio.py,sha256=
|
|
258
|
-
mlrun/platforms/other.py,sha256=jA-3e8rNq6NSzDHsox4evVMKVN9cnTTYOnVU6rL0zOA,11828
|
|
263
|
+
mlrun/platforms/__init__.py,sha256=ggSGF7inITs6S-vj9u4S9X_5psgbA0G3GVqf7zu8qYc,2406
|
|
264
|
+
mlrun/platforms/iguazio.py,sha256=1h5BpdAEQJBg2vIt7ySjUADU0ip5OkaMYr0_VREi9ys,13084
|
|
259
265
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
260
|
-
mlrun/projects/operations.py,sha256=
|
|
261
|
-
mlrun/projects/pipelines.py,sha256
|
|
262
|
-
mlrun/projects/project.py,sha256=
|
|
266
|
+
mlrun/projects/operations.py,sha256=C-28FkDxJvjSn_KKgVqqXXKUuEsM7BIbqaE44vVWYjs,18712
|
|
267
|
+
mlrun/projects/pipelines.py,sha256=9nYzoiw7BIb1g8NzJBIoFoo4tROXvxsVn85CBbYG2QQ,38140
|
|
268
|
+
mlrun/projects/project.py,sha256=pPkUqlM_VFaBkBXMREgSn1WfcPQ6AfyO8Lvgk0YnsMg,175021
|
|
263
269
|
mlrun/runtimes/__init__.py,sha256=H2C77DX4IUsOpGdZT-yrD3JcTxg3J2IR8Tf4HRPOcBQ,8652
|
|
264
|
-
mlrun/runtimes/base.py,sha256=
|
|
270
|
+
mlrun/runtimes/base.py,sha256=Yr_ATgHjCsE9jbbn8tVhjV3Ntky7MA1WjGFLlSxlXHc,36857
|
|
265
271
|
mlrun/runtimes/daskjob.py,sha256=xvN8ajs3-_voqxrfz6b3rh_idNw4ypRAkPRWGOnDMGA,19149
|
|
266
272
|
mlrun/runtimes/funcdoc.py,sha256=CC9cWRPgBiM2sk4NJTqusjc6O9kZ-49vGA5WRPjREKE,9796
|
|
267
273
|
mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51PFr8Q4mg,4918
|
|
268
274
|
mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
|
|
269
|
-
mlrun/runtimes/kubejob.py,sha256=
|
|
275
|
+
mlrun/runtimes/kubejob.py,sha256=ptBnMTIjukbEznkdixmbGvBqzujXrRzqNfP7ze6M76M,8660
|
|
270
276
|
mlrun/runtimes/local.py,sha256=2zWAjEQE2wS7mf9tjn2Ru2_H8nNh22IjH4humcgfWqA,21790
|
|
271
|
-
mlrun/runtimes/pod.py,sha256=
|
|
272
|
-
mlrun/runtimes/remotesparkjob.py,sha256=
|
|
273
|
-
mlrun/runtimes/utils.py,sha256=
|
|
277
|
+
mlrun/runtimes/pod.py,sha256=I9cfZH-u7ZmAHKc8D7htzKILO1K9lzfoHjBOVe29trU,64406
|
|
278
|
+
mlrun/runtimes/remotesparkjob.py,sha256=1MJLNzrw17wQoXy11KowHU18h_R_6R9iNZpqPMzt28c,7329
|
|
279
|
+
mlrun/runtimes/utils.py,sha256=MehwJHCm2ZMcnWqDp06karKEN-6rp98-muQiD1pkVTA,14188
|
|
274
280
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
275
281
|
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=sIqIg5DQAf4j0wCPA-G0GoxY6vacRddxCy5KDUZszek,2245
|
|
276
282
|
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=a9W7A8sboteQov0Z9uVcthEU3FGYFf2cdAsi-vdjH1w,12749
|
|
@@ -279,15 +285,15 @@ mlrun/runtimes/mpijob/__init__.py,sha256=V_1gQD1VHa0Qvjqgyv8RLouH27Sy9YTwj2ZG62o
|
|
|
279
285
|
mlrun/runtimes/mpijob/abstract.py,sha256=kDWo-IY1FKLZhI30j38Xx9HMhlUvHezfd1DT2ShoxZY,9161
|
|
280
286
|
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
281
287
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
282
|
-
mlrun/runtimes/nuclio/api_gateway.py,sha256=
|
|
283
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
288
|
+
mlrun/runtimes/nuclio/api_gateway.py,sha256=dYwInIWBGfcXur91ufeX8uL2aIxY6q7c-O3h0Ak-5ac,22113
|
|
289
|
+
mlrun/runtimes/nuclio/function.py,sha256=TQ9CWcOnHVO2D6z5LocamH_7P025kVl3X6bfLpWl6r4,48537
|
|
284
290
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
285
291
|
mlrun/runtimes/nuclio/serving.py,sha256=H3bSI33FmfOBkL99ZU6_xKbFx4qKdyQVdpIwwfhK5qo,29649
|
|
286
292
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
287
293
|
mlrun/runtimes/nuclio/application/application.py,sha256=c8Z-eFlqcjn9b91xygfwT2ijLvo688p0EaieZlYnzKg,13349
|
|
288
294
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=JIIYae6bXzCLf3jXuu49KWPQYoXr_FDQ2Rbo1OWKAd0,3150
|
|
289
295
|
mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
|
|
290
|
-
mlrun/runtimes/sparkjob/spark3job.py,sha256=
|
|
296
|
+
mlrun/runtimes/sparkjob/spark3job.py,sha256=1bNRy72Migrh_ZASQOx7UlSZTbB-xpNc76sz4kfc9UM,41191
|
|
291
297
|
mlrun/serving/__init__.py,sha256=_6HRAOuS2Ehjo3vwx5h1aI_-JppxEAsl4VfEERAbGFE,1078
|
|
292
298
|
mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
|
|
293
299
|
mlrun/serving/remote.py,sha256=MrFByphQWmIsKXqw-MOwl2Q1hbtWReYVRKvlcKj9pfw,17980
|
|
@@ -309,7 +315,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
309
315
|
mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
|
|
310
316
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
311
317
|
mlrun/utils/db.py,sha256=KEa-vzicUhzIwo1wBXax2ZuXtYgf5to7wnsY3CYCiOQ,1713
|
|
312
|
-
mlrun/utils/helpers.py,sha256=
|
|
318
|
+
mlrun/utils/helpers.py,sha256=DImRmHdAioXvQuH542VQgGtjfWmXN1ce78OyHvGRESM,52544
|
|
313
319
|
mlrun/utils/http.py,sha256=l_JCPrCq8bfYUcUcAFWUPvb9Xu-93bLGIhV-H-XCU9s,8707
|
|
314
320
|
mlrun/utils/logger.py,sha256=6-XMv1ucg9NqTstLpiji9qb06XHpx2LvNA8JxU1J5Tk,8133
|
|
315
321
|
mlrun/utils/regex.py,sha256=Nd7xnDHU9PEOsse6rFwLNVgU4AaYCyuwMmQ9qgx2-Vw,4581
|
|
@@ -318,20 +324,20 @@ mlrun/utils/singleton.py,sha256=p1Y-X0mPSs_At092GS-pZCA8CTR62HOqPU07_ZH6-To,869
|
|
|
318
324
|
mlrun/utils/v3io_clients.py,sha256=7eReciHBPLuLW6b5DIc8emnmrjh4D8hXPuqZDooR6HQ,1284
|
|
319
325
|
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
320
326
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
321
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
327
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=5cPGuXWxzzZAaU9R86i12RoE4MgBa15_LcSWLs5W2-k,26452
|
|
322
328
|
mlrun/utils/notifications/notification/__init__.py,sha256=Kucv9d0x1MBk-6kxpe1-3He6eKCRinPeItcbiJsdDqg,2092
|
|
323
|
-
mlrun/utils/notifications/notification/base.py,sha256=
|
|
329
|
+
mlrun/utils/notifications/notification/base.py,sha256=b0nncv0oV01wNeT-3upWQkcvyVVbBbJkrFgk6PMAusw,2788
|
|
324
330
|
mlrun/utils/notifications/notification/console.py,sha256=MAVk7v5PJ52vdGRv76YcEPixWgV0licBPWGpR01uR40,2643
|
|
325
331
|
mlrun/utils/notifications/notification/git.py,sha256=ELZ-ZmbFDb39A0OUIhtvuSbqJoVfF_o_IOxMD5eBlv4,5351
|
|
326
332
|
mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT1U41IYwyytovv5X_LsI4,2066
|
|
327
|
-
mlrun/utils/notifications/notification/slack.py,sha256=
|
|
328
|
-
mlrun/utils/notifications/notification/webhook.py,sha256=
|
|
333
|
+
mlrun/utils/notifications/notification/slack.py,sha256=Hu-hXOGjLFCUJ-FGNda-oqEF8QYscPnxks5lsj4NQoE,6491
|
|
334
|
+
mlrun/utils/notifications/notification/webhook.py,sha256=WgfxX1cpm8n2A-O08pwnsP4tzbxxv_vNUSnyXG4uKts,2752
|
|
329
335
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
330
|
-
mlrun/utils/version/version.json,sha256=
|
|
336
|
+
mlrun/utils/version/version.json,sha256=rjDSM7tYL36JfiEOxxTbc63WhZuTAMLS2JOLYlH3gO8,89
|
|
331
337
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
332
|
-
mlrun-1.7.
|
|
333
|
-
mlrun-1.7.
|
|
334
|
-
mlrun-1.7.
|
|
335
|
-
mlrun-1.7.
|
|
336
|
-
mlrun-1.7.
|
|
337
|
-
mlrun-1.7.
|
|
338
|
+
mlrun-1.7.0rc16.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
339
|
+
mlrun-1.7.0rc16.dist-info/METADATA,sha256=kPrpyMBwYk71GqZtpL_s1w93af1aF37aFhMZHI-PfBo,18896
|
|
340
|
+
mlrun-1.7.0rc16.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
341
|
+
mlrun-1.7.0rc16.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
342
|
+
mlrun-1.7.0rc16.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
343
|
+
mlrun-1.7.0rc16.dist-info/RECORD,,
|