mlrun 1.8.0rc21__py3-none-any.whl → 1.8.0rc26__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 +37 -3
- mlrun/alerts/alert.py +1 -0
- mlrun/artifacts/document.py +78 -36
- mlrun/common/formatters/feature_set.py +1 -0
- mlrun/common/schemas/alert.py +3 -0
- mlrun/common/schemas/client_spec.py +0 -1
- mlrun/common/schemas/model_monitoring/constants.py +27 -9
- mlrun/common/schemas/workflow.py +1 -0
- mlrun/config.py +39 -6
- mlrun/datastore/datastore_profile.py +58 -16
- mlrun/datastore/sources.py +7 -1
- mlrun/datastore/vectorstore.py +20 -1
- mlrun/db/base.py +11 -0
- mlrun/db/httpdb.py +21 -9
- mlrun/db/nopdb.py +10 -0
- mlrun/errors.py +4 -0
- mlrun/execution.py +15 -6
- mlrun/launcher/client.py +2 -2
- mlrun/launcher/local.py +5 -1
- mlrun/model_monitoring/applications/_application_steps.py +3 -1
- mlrun/model_monitoring/controller.py +266 -103
- mlrun/model_monitoring/db/tsdb/__init__.py +11 -23
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +5 -2
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +8 -8
- mlrun/model_monitoring/helpers.py +16 -10
- mlrun/model_monitoring/stream_processing.py +85 -35
- mlrun/package/context_handler.py +1 -1
- mlrun/package/packagers_manager.py +4 -18
- mlrun/projects/pipelines.py +2 -2
- mlrun/projects/project.py +123 -38
- mlrun/runtimes/nuclio/serving.py +2 -2
- mlrun/runtimes/sparkjob/spark3job.py +1 -1
- mlrun/secrets.py +1 -1
- mlrun/serving/server.py +11 -3
- mlrun/serving/states.py +65 -8
- mlrun/serving/v2_serving.py +16 -8
- mlrun/utils/helpers.py +81 -21
- mlrun/utils/notifications/notification/base.py +6 -1
- mlrun/utils/notifications/notification/slack.py +5 -1
- mlrun/utils/notifications/notification_pusher.py +13 -4
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.8.0rc21.dist-info → mlrun-1.8.0rc26.dist-info}/METADATA +33 -16
- {mlrun-1.8.0rc21.dist-info → mlrun-1.8.0rc26.dist-info}/RECORD +47 -47
- {mlrun-1.8.0rc21.dist-info → mlrun-1.8.0rc26.dist-info}/WHEEL +1 -1
- {mlrun-1.8.0rc21.dist-info → mlrun-1.8.0rc26.dist-info}/LICENSE +0 -0
- {mlrun-1.8.0rc21.dist-info → mlrun-1.8.0rc26.dist-info}/entry_points.txt +0 -0
- {mlrun-1.8.0rc21.dist-info → mlrun-1.8.0rc26.dist-info}/top_level.txt +0 -0
mlrun/utils/helpers.py
CHANGED
|
@@ -93,14 +93,19 @@ class StorePrefix:
|
|
|
93
93
|
Artifact = "artifacts"
|
|
94
94
|
Model = "models"
|
|
95
95
|
Dataset = "datasets"
|
|
96
|
+
Document = "documents"
|
|
96
97
|
|
|
97
98
|
@classmethod
|
|
98
99
|
def is_artifact(cls, prefix):
|
|
99
|
-
return prefix in [cls.Artifact, cls.Model, cls.Dataset]
|
|
100
|
+
return prefix in [cls.Artifact, cls.Model, cls.Dataset, cls.Document]
|
|
100
101
|
|
|
101
102
|
@classmethod
|
|
102
103
|
def kind_to_prefix(cls, kind):
|
|
103
|
-
kind_map = {
|
|
104
|
+
kind_map = {
|
|
105
|
+
"model": cls.Model,
|
|
106
|
+
"dataset": cls.Dataset,
|
|
107
|
+
"document": cls.Document,
|
|
108
|
+
}
|
|
104
109
|
return kind_map.get(kind, cls.Artifact)
|
|
105
110
|
|
|
106
111
|
@classmethod
|
|
@@ -111,6 +116,7 @@ class StorePrefix:
|
|
|
111
116
|
cls.Dataset,
|
|
112
117
|
cls.FeatureSet,
|
|
113
118
|
cls.FeatureVector,
|
|
119
|
+
cls.Document,
|
|
114
120
|
]
|
|
115
121
|
|
|
116
122
|
|
|
@@ -1040,31 +1046,85 @@ async def retry_until_successful_async(
|
|
|
1040
1046
|
).run()
|
|
1041
1047
|
|
|
1042
1048
|
|
|
1043
|
-
def
|
|
1044
|
-
|
|
1049
|
+
def get_project_url(project: str) -> str:
|
|
1050
|
+
"""
|
|
1051
|
+
Generate the base URL for a given project.
|
|
1052
|
+
|
|
1053
|
+
:param project: The project name.
|
|
1054
|
+
:return: The base URL for the project, or an empty string if the base URL is not resolved.
|
|
1055
|
+
"""
|
|
1045
1056
|
if mlrun.mlconf.resolve_ui_url():
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
url += f"/monitor/{uid}/overview"
|
|
1049
|
-
return url
|
|
1057
|
+
return f"{mlrun.mlconf.resolve_ui_url()}/{mlrun.mlconf.ui.projects_prefix}/{project}"
|
|
1058
|
+
return ""
|
|
1050
1059
|
|
|
1051
1060
|
|
|
1052
|
-
def
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1061
|
+
def get_run_url(project: str, uid: str, name: str) -> str:
|
|
1062
|
+
"""
|
|
1063
|
+
Generate the URL for a specific run.
|
|
1064
|
+
|
|
1065
|
+
:param project: The project name.
|
|
1066
|
+
:param uid: The run UID.
|
|
1067
|
+
:param name: The run name.
|
|
1068
|
+
:return: The URL for the run, or an empty string if the base URL is not resolved.
|
|
1069
|
+
"""
|
|
1070
|
+
runs_url = get_runs_url(project)
|
|
1071
|
+
if not runs_url:
|
|
1072
|
+
return ""
|
|
1073
|
+
return f"{runs_url}/monitor-jobs/{name}/{uid}/overview"
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
def get_runs_url(project: str) -> str:
|
|
1077
|
+
"""
|
|
1078
|
+
Generate the URL for the runs of a given project.
|
|
1079
|
+
|
|
1080
|
+
:param project: The project name.
|
|
1081
|
+
:return: The URL for the runs, or an empty string if the base URL is not resolved.
|
|
1082
|
+
"""
|
|
1083
|
+
base_url = get_project_url(project)
|
|
1084
|
+
if not base_url:
|
|
1085
|
+
return ""
|
|
1086
|
+
return f"{base_url}/jobs"
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
def get_model_endpoint_url(
|
|
1090
|
+
project: str,
|
|
1091
|
+
model_name: Optional[str] = None,
|
|
1092
|
+
model_endpoint_id: Optional[str] = None,
|
|
1093
|
+
) -> str:
|
|
1094
|
+
"""
|
|
1095
|
+
Generate the URL for a specific model endpoint.
|
|
1096
|
+
|
|
1097
|
+
:param project: The project name.
|
|
1098
|
+
:param model_name: The model name.
|
|
1099
|
+
:param model_endpoint_id: The model endpoint ID.
|
|
1100
|
+
:return: The URL for the model endpoint, or an empty string if the base URL is not resolved.
|
|
1101
|
+
"""
|
|
1102
|
+
base_url = get_project_url(project)
|
|
1103
|
+
if not base_url:
|
|
1104
|
+
return ""
|
|
1105
|
+
url = f"{base_url}/models"
|
|
1106
|
+
if model_name and model_endpoint_id:
|
|
1107
|
+
url += f"/model-endpoints/{model_name}/{model_endpoint_id}/overview"
|
|
1058
1108
|
return url
|
|
1059
1109
|
|
|
1060
1110
|
|
|
1061
|
-
def get_workflow_url(
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1111
|
+
def get_workflow_url(
|
|
1112
|
+
project: str,
|
|
1113
|
+
id: Optional[str] = None,
|
|
1114
|
+
) -> str:
|
|
1115
|
+
"""
|
|
1116
|
+
Generate the URL for a specific workflow.
|
|
1117
|
+
|
|
1118
|
+
:param project: The project name.
|
|
1119
|
+
:param id: The workflow ID.
|
|
1120
|
+
:return: The URL for the workflow, or an empty string if the base URL is not resolved.
|
|
1121
|
+
"""
|
|
1122
|
+
base_url = get_project_url(project)
|
|
1123
|
+
if not base_url:
|
|
1124
|
+
return ""
|
|
1125
|
+
url = f"{base_url}/jobs/monitor-workflows/workflow"
|
|
1126
|
+
if id:
|
|
1127
|
+
url += f"/{id}"
|
|
1068
1128
|
return url
|
|
1069
1129
|
|
|
1070
1130
|
|
|
@@ -134,7 +134,12 @@ class NotificationBase:
|
|
|
134
134
|
event_data.entity.kind == mlrun.common.schemas.alert.EventEntityKind.JOB
|
|
135
135
|
): # JOB entity
|
|
136
136
|
uid = event_data.value_dict.get("uid")
|
|
137
|
-
|
|
137
|
+
name = event_data.entity.ids[0]
|
|
138
|
+
url = mlrun.utils.helpers.get_run_url(
|
|
139
|
+
alert.project,
|
|
140
|
+
uid=uid,
|
|
141
|
+
name=name,
|
|
142
|
+
)
|
|
138
143
|
overview_type = "Job overview"
|
|
139
144
|
else: # MODEL entity
|
|
140
145
|
model_name = event_data.value_dict.get("model")
|
|
@@ -168,7 +168,11 @@ class SlackNotification(NotificationBase):
|
|
|
168
168
|
|
|
169
169
|
def _get_run_line(self, run: dict) -> dict:
|
|
170
170
|
meta = run["metadata"]
|
|
171
|
-
url = mlrun.utils.helpers.
|
|
171
|
+
url = mlrun.utils.helpers.get_run_url(
|
|
172
|
+
meta.get("project"),
|
|
173
|
+
uid=meta.get("uid"),
|
|
174
|
+
name=meta.get("name"),
|
|
175
|
+
)
|
|
172
176
|
|
|
173
177
|
# Only show the URL if the run is not a function (serving or mlrun function)
|
|
174
178
|
kind = run.get("step_kind")
|
|
@@ -200,7 +200,7 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
200
200
|
"Failed to push notification async",
|
|
201
201
|
error=mlrun.errors.err_to_str(result),
|
|
202
202
|
traceback=traceback.format_exception(
|
|
203
|
-
|
|
203
|
+
result,
|
|
204
204
|
value=result,
|
|
205
205
|
tb=result.__traceback__,
|
|
206
206
|
),
|
|
@@ -412,8 +412,17 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
412
412
|
sent_time: typing.Optional[datetime.datetime] = None,
|
|
413
413
|
reason: typing.Optional[str] = None,
|
|
414
414
|
):
|
|
415
|
-
if
|
|
416
|
-
|
|
415
|
+
# Skip update the notification state if the following conditions are met:
|
|
416
|
+
# 1. the run is not in a terminal state
|
|
417
|
+
# 2. the when contains only one state (which is the current state)
|
|
418
|
+
# Skip updating because currently each notification has only one row in the db, even if it has multiple when.
|
|
419
|
+
# This means that if the notification is updated to sent for running state for example, it will not send for
|
|
420
|
+
# The terminal state
|
|
421
|
+
# TODO: Change this behavior after implementing ML-8723
|
|
422
|
+
if (
|
|
423
|
+
run_state not in runtimes_constants.RunStates.terminal_states()
|
|
424
|
+
and len(notification.when) > 1
|
|
425
|
+
):
|
|
417
426
|
logger.debug(
|
|
418
427
|
"Skip updating notification status - run not in terminal state",
|
|
419
428
|
run_uid=run_uid,
|
|
@@ -628,7 +637,7 @@ class CustomNotificationPusher(_NotificationPusherBase):
|
|
|
628
637
|
if has_workflow_url:
|
|
629
638
|
url = mlrun.utils.helpers.get_workflow_url(project, pipeline_id)
|
|
630
639
|
else:
|
|
631
|
-
url = mlrun.utils.helpers.
|
|
640
|
+
url = mlrun.utils.helpers.get_runs_url(project)
|
|
632
641
|
html = ""
|
|
633
642
|
if url:
|
|
634
643
|
html = (
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.0rc26
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -39,19 +39,19 @@ Requires-Dist: v3io~=0.6.9
|
|
|
39
39
|
Requires-Dist: pydantic>=1.10.15
|
|
40
40
|
Requires-Dist: mergedeep~=1.3
|
|
41
41
|
Requires-Dist: v3io-frames~=0.10.14; python_version < "3.11"
|
|
42
|
-
Requires-Dist: v3io-frames
|
|
42
|
+
Requires-Dist: v3io-frames>=0.13.0; python_version >= "3.11"
|
|
43
43
|
Requires-Dist: semver~=3.0
|
|
44
44
|
Requires-Dist: dependency-injector~=4.41
|
|
45
45
|
Requires-Dist: fsspec<2024.7,>=2023.9.2
|
|
46
46
|
Requires-Dist: v3iofs~=0.1.17
|
|
47
|
-
Requires-Dist: storey~=1.8.
|
|
47
|
+
Requires-Dist: storey~=1.8.8
|
|
48
48
|
Requires-Dist: inflection~=0.5.0
|
|
49
49
|
Requires-Dist: python-dotenv~=1.0
|
|
50
50
|
Requires-Dist: setuptools>=75.2
|
|
51
51
|
Requires-Dist: deprecated~=1.2
|
|
52
52
|
Requires-Dist: jinja2>=3.1.3,~=3.1
|
|
53
53
|
Requires-Dist: orjson<4,>=3.9.15
|
|
54
|
-
Requires-Dist: mlrun-pipelines-kfp-common~=0.3.
|
|
54
|
+
Requires-Dist: mlrun-pipelines-kfp-common~=0.3.6
|
|
55
55
|
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.3.5; python_version < "3.11"
|
|
56
56
|
Requires-Dist: docstring_parser~=0.16
|
|
57
57
|
Requires-Dist: aiosmtplib~=3.0
|
|
@@ -68,8 +68,6 @@ Provides-Extra: azure-key-vault
|
|
|
68
68
|
Requires-Dist: azure-identity~=1.5; extra == "azure-key-vault"
|
|
69
69
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "azure-key-vault"
|
|
70
70
|
Requires-Dist: pyopenssl>=23; extra == "azure-key-vault"
|
|
71
|
-
Provides-Extra: bokeh
|
|
72
|
-
Requires-Dist: bokeh>=2.4.2,~=2.4; extra == "bokeh"
|
|
73
71
|
Provides-Extra: plotly
|
|
74
72
|
Requires-Dist: plotly~=5.23; extra == "plotly"
|
|
75
73
|
Provides-Extra: graphviz
|
|
@@ -92,8 +90,10 @@ Requires-Dist: databricks-sdk~=0.20.0; extra == "databricks-sdk"
|
|
|
92
90
|
Provides-Extra: sqlalchemy
|
|
93
91
|
Requires-Dist: sqlalchemy~=1.4; extra == "sqlalchemy"
|
|
94
92
|
Provides-Extra: dask
|
|
95
|
-
Requires-Dist: dask~=
|
|
96
|
-
Requires-Dist: distributed~=
|
|
93
|
+
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "dask"
|
|
94
|
+
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "dask"
|
|
95
|
+
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "dask"
|
|
96
|
+
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "dask"
|
|
97
97
|
Provides-Extra: alibaba-oss
|
|
98
98
|
Requires-Dist: ossfs==2023.12.0; extra == "alibaba-oss"
|
|
99
99
|
Requires-Dist: oss2==2.18.1; extra == "alibaba-oss"
|
|
@@ -127,11 +127,12 @@ Requires-Dist: avro~=1.11; extra == "all"
|
|
|
127
127
|
Requires-Dist: azure-core~=1.24; extra == "all"
|
|
128
128
|
Requires-Dist: azure-identity~=1.5; extra == "all"
|
|
129
129
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "all"
|
|
130
|
-
Requires-Dist: bokeh>=2.4.2,~=2.4; extra == "all"
|
|
131
130
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "all"
|
|
132
|
-
Requires-Dist: dask~=2023.12.1; extra == "all"
|
|
131
|
+
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
132
|
+
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "all"
|
|
133
133
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "all"
|
|
134
|
-
Requires-Dist: distributed~=2023.12.1; extra == "all"
|
|
134
|
+
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
135
|
+
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "all"
|
|
135
136
|
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "all"
|
|
136
137
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "all"
|
|
137
138
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "all"
|
|
@@ -159,9 +160,11 @@ Requires-Dist: azure-core~=1.24; extra == "complete"
|
|
|
159
160
|
Requires-Dist: azure-identity~=1.5; extra == "complete"
|
|
160
161
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete"
|
|
161
162
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete"
|
|
162
|
-
Requires-Dist: dask~=2023.12.1; extra == "complete"
|
|
163
|
+
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
164
|
+
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete"
|
|
163
165
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete"
|
|
164
|
-
Requires-Dist: distributed~=2023.12.1; extra == "complete"
|
|
166
|
+
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
167
|
+
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "complete"
|
|
165
168
|
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete"
|
|
166
169
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete"
|
|
167
170
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete"
|
|
@@ -193,9 +196,11 @@ Requires-Dist: azure-identity~=1.5; extra == "complete-api"
|
|
|
193
196
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete-api"
|
|
194
197
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete-api"
|
|
195
198
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "complete-api"
|
|
196
|
-
Requires-Dist: dask~=2023.12.1; extra == "complete-api"
|
|
199
|
+
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
200
|
+
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
|
|
197
201
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete-api"
|
|
198
|
-
Requires-Dist: distributed~=2023.12.1; extra == "complete-api"
|
|
202
|
+
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
203
|
+
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
|
|
199
204
|
Requires-Dist: fastapi~=0.115.6; extra == "complete-api"
|
|
200
205
|
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete-api"
|
|
201
206
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete-api"
|
|
@@ -225,6 +230,18 @@ Requires-Dist: taos-ws-py==0.3.2; extra == "complete-api"
|
|
|
225
230
|
Requires-Dist: taoswswrap~=0.3.0; extra == "complete-api"
|
|
226
231
|
Requires-Dist: timelength~=1.1; extra == "complete-api"
|
|
227
232
|
Requires-Dist: uvicorn~=0.32.1; extra == "complete-api"
|
|
233
|
+
Dynamic: author
|
|
234
|
+
Dynamic: author-email
|
|
235
|
+
Dynamic: classifier
|
|
236
|
+
Dynamic: description
|
|
237
|
+
Dynamic: description-content-type
|
|
238
|
+
Dynamic: home-page
|
|
239
|
+
Dynamic: keywords
|
|
240
|
+
Dynamic: license
|
|
241
|
+
Dynamic: provides-extra
|
|
242
|
+
Dynamic: requires-dist
|
|
243
|
+
Dynamic: requires-python
|
|
244
|
+
Dynamic: summary
|
|
228
245
|
|
|
229
246
|
<a id="top"></a>
|
|
230
247
|
[](https://github.com/mlrun/mlrun/actions/workflows/build.yaml?query=branch%3Adevelopment)
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
mlrun/__init__.py,sha256=
|
|
1
|
+
mlrun/__init__.py,sha256=zS40Lp5ZKivLBlNDkv-OQmVvwDib7C-cCdtD6UKXe28,8808
|
|
2
2
|
mlrun/__main__.py,sha256=3CJdwbSQGpbEhnAnVN_-CkQmLOPUUXTKhMf7xIWNQrc,46138
|
|
3
|
-
mlrun/config.py,sha256=
|
|
4
|
-
mlrun/errors.py,sha256=
|
|
5
|
-
mlrun/execution.py,sha256=
|
|
3
|
+
mlrun/config.py,sha256=zzR_qbNuA-lLIScx5GLRIF21eNJIoiVeBU-JS_movKo,71711
|
|
4
|
+
mlrun/errors.py,sha256=LkcbXTLANGdsgo2CRX2pdbyNmt--lMsjGv0XZMgP-Nc,8222
|
|
5
|
+
mlrun/execution.py,sha256=TIrCxh-FC2VYyVaz_-xVUfOkY3jJh26NUaFt0ZGlIto,49548
|
|
6
6
|
mlrun/features.py,sha256=ReBaNGsBYXqcbgI012n-SO_j6oHIbk_Vpv0CGPXbUmo,15842
|
|
7
7
|
mlrun/k8s_utils.py,sha256=mRQMs6NzPq36vx1n5_2BfFapXysc8wv3NcrZ77_2ANA,8949
|
|
8
8
|
mlrun/lists.py,sha256=1hFv3Iyu5DVX1kdBGJmwUoY0CqrzauhKdSq9g3piHb4,8442
|
|
9
9
|
mlrun/model.py,sha256=Qmj0UH5H0GKd6ZwxugxCvoqSP3O5q0LV0wSlHIzkyIM,85312
|
|
10
10
|
mlrun/render.py,sha256=940H9fBBFeghH4dlifbURvtjlvw4GlWdAXezN6ky4rI,13275
|
|
11
11
|
mlrun/run.py,sha256=ht5tg-Sge_IYHILd55ym_HJTSmimu6sjBvSc5JzVqJc,45151
|
|
12
|
-
mlrun/secrets.py,sha256=
|
|
12
|
+
mlrun/secrets.py,sha256=dZPdkc_zzfscVQepOHUwmzFqnBavDCBXV9DQoH_eIYM,7800
|
|
13
13
|
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
|
-
mlrun/alerts/alert.py,sha256=
|
|
14
|
+
mlrun/alerts/alert.py,sha256=9kGTtV385Ax-aTm-450HzPwEek9e0c3O3Qln-jXjhFg,15948
|
|
15
15
|
mlrun/api/schemas/__init__.py,sha256=fEWH4I8hr5AdRJ7yoW44RlFB6NHkYDxyomP5J6ct1z4,14248
|
|
16
16
|
mlrun/artifacts/__init__.py,sha256=ofC2extBCOC1wg1YtdTzWzH3eeG_f-sFBUkHjYtZJpk,1175
|
|
17
17
|
mlrun/artifacts/base.py,sha256=nz2ZqC74JGfWN0M6_hOXXQj3bXSTxNp4eUgvWHVcdvY,29979
|
|
18
18
|
mlrun/artifacts/dataset.py,sha256=QTot5vCgLHatlIWwNnKbWdZ8HHTxaZ7wk4gWQDoqQ2k,16655
|
|
19
|
-
mlrun/artifacts/document.py,sha256=
|
|
19
|
+
mlrun/artifacts/document.py,sha256=O2nZhM47y6-miy47cIEBzLZyW92ZT2rxa-TMCAJlNY0,17181
|
|
20
20
|
mlrun/artifacts/manager.py,sha256=bXb70mKF6wIGs7syCiFfGnjalqx4g9bO_J5DaVzUUKw,16163
|
|
21
21
|
mlrun/artifacts/model.py,sha256=jeOjUq_iZSHoNqlPyGgOz6acwje1Yqpg1yZwF9GbyG8,21615
|
|
22
22
|
mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
|
|
@@ -30,7 +30,7 @@ mlrun/common/db/sql_session.py,sha256=J6b-0xrnFb-8n_xdksPXeA8kArSMfAiSDN4n7iOhtu
|
|
|
30
30
|
mlrun/common/formatters/__init__.py,sha256=lHcGFKKXx4vcCgJ0n2KHYD5sY5p5MvPz3DO9RbUoEOM,891
|
|
31
31
|
mlrun/common/formatters/artifact.py,sha256=8oet2n5_bZlUALNXIjeYCTPDYKRB1h3gu_NWNK2lEig,1425
|
|
32
32
|
mlrun/common/formatters/base.py,sha256=LHwWWnQJCmvlnOCCmG8YtJ_xzs0xBI8PujYDL5Ky9H4,4101
|
|
33
|
-
mlrun/common/formatters/feature_set.py,sha256=
|
|
33
|
+
mlrun/common/formatters/feature_set.py,sha256=hC4Yh0TTUzOk2tSPPRXmb0ynjrfaxYZGv578QfQKgC4,1536
|
|
34
34
|
mlrun/common/formatters/function.py,sha256=-DnfHThAcoizqJhTELeAltjsmlKRLnCaa1uKbWI0Eaw,1495
|
|
35
35
|
mlrun/common/formatters/model_endpoint.py,sha256=MQPNpj6lQbitvsT9tIm-XZbH18HDv0X4OR3SAG5MPDI,906
|
|
36
36
|
mlrun/common/formatters/pipeline.py,sha256=oATD3znsuq3s7LipPnZivDPelTX0hJ0MFeeXOQmwwLw,1762
|
|
@@ -40,12 +40,12 @@ mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0u
|
|
|
40
40
|
mlrun/common/model_monitoring/helpers.py,sha256=lV86teJYoE3MNDx4yhpbzO1KylWmvDbuNODw5yGZwgs,2943
|
|
41
41
|
mlrun/common/runtimes/constants.py,sha256=07wD1g8QjXZe1fm2hSMOxZG19aAUsEZM8WeXnyoBd6Q,12127
|
|
42
42
|
mlrun/common/schemas/__init__.py,sha256=PBuIAhXSkVEVxxKcv5hR_xvTwNAUqxOXHVPugOoWTyM,5386
|
|
43
|
-
mlrun/common/schemas/alert.py,sha256=
|
|
43
|
+
mlrun/common/schemas/alert.py,sha256=tRsjHEQTjCb-83GS0mprsu5junvqL4aQjWN2Rt_yAaM,10183
|
|
44
44
|
mlrun/common/schemas/api_gateway.py,sha256=3a0QxECLmoDkD5IiOKtXJL-uiWB26Hg55WMA3nULYuI,7127
|
|
45
45
|
mlrun/common/schemas/artifact.py,sha256=f0NPsoZmA-WD9RtN-dcKFW6KuV0PPQB25A2psF7LbP8,4013
|
|
46
46
|
mlrun/common/schemas/auth.py,sha256=AGbBNvQq_vcvhX_NLqbT-QPHL4BAJMB3xwBXW7cFvpo,6761
|
|
47
47
|
mlrun/common/schemas/background_task.py,sha256=ofWRAQGGEkXEu79Dbw7tT_5GPolR09Lc3Ebg2r0fT24,1728
|
|
48
|
-
mlrun/common/schemas/client_spec.py,sha256=
|
|
48
|
+
mlrun/common/schemas/client_spec.py,sha256=1RV2vx3PhXfk456b0qcU9R7dz4cisHsRD-HgjKeBdg0,2797
|
|
49
49
|
mlrun/common/schemas/clusterization_spec.py,sha256=LAWOL6V3E5hAt8tKmnP3DOJcKG1FQqp8Z-x8szPkf1I,894
|
|
50
50
|
mlrun/common/schemas/common.py,sha256=3GcfkT7yOWmrieCSrjOJ_4aXkiUWwLd_kxqMDP1-_hw,3540
|
|
51
51
|
mlrun/common/schemas/constants.py,sha256=LfoSq8d2n7TMrM0IvxGylOtVEJGvvDVlK2-Yau-Tt30,7245
|
|
@@ -70,9 +70,9 @@ mlrun/common/schemas/runtime_resource.py,sha256=74EGmk1iODg-wV0cn2ew44ZX20nqJMow
|
|
|
70
70
|
mlrun/common/schemas/schedule.py,sha256=LTWdZ4FvKDGkmmfyqKoBQ36VFqnnyIYLnq1I6qrTPyo,4292
|
|
71
71
|
mlrun/common/schemas/secret.py,sha256=CCxFYiPwJtDxwg2VVJH9nUG9cAZ2a34IjeuaWv-BYlc,1487
|
|
72
72
|
mlrun/common/schemas/tag.py,sha256=HRZi5QZ4vVGaCr2AMk9eJgcNiAIXmH4YDc8a4fvF770,893
|
|
73
|
-
mlrun/common/schemas/workflow.py,sha256=
|
|
73
|
+
mlrun/common/schemas/workflow.py,sha256=6u9niXfXpV-_c2rZL97gFIdAnOfM5WK-OCbrM5Kk34s,2108
|
|
74
74
|
mlrun/common/schemas/model_monitoring/__init__.py,sha256=jz0fvdn8BEecgUCKhiSNH6QtFhSW4O19Ql9KXo0AxOg,1900
|
|
75
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
75
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=UcRJ2hSyGAnyObQel5RtK58b-wGaQrowz_xDvp4Z7x0,12636
|
|
76
76
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=Rq10KKOyyUYr7qOQFZfwGZtUim0LY9O0LQ5uc9jmIVQ,1562
|
|
77
77
|
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=0gBH-KnDDbGLOkiqHtk0_iNIdW-NPVy0TKJnZ1fDcEQ,11807
|
|
78
78
|
mlrun/data_types/__init__.py,sha256=unRo9GGwCmj0hBKBRsXJ2P4BzpQaddlQTvIrVQaKluI,984
|
|
@@ -85,7 +85,7 @@ mlrun/datastore/alibaba_oss.py,sha256=k-OHVe08HjMewlkpsT657CbOiVFAfSq9_EqhCE-k86
|
|
|
85
85
|
mlrun/datastore/azure_blob.py,sha256=SzAcHYSXkm8Zpopz2Ea-rWVClH0URocUazcNK04S9W0,12776
|
|
86
86
|
mlrun/datastore/base.py,sha256=Dqg8PqX0TFKHZg27Dgguc3RnQ1GABZiLf87p5ErTqJs,26448
|
|
87
87
|
mlrun/datastore/datastore.py,sha256=frUYYP4i8ZmnY8GNXSgN_3x_exRgRPfxrCtAGEUifEU,9478
|
|
88
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
88
|
+
mlrun/datastore/datastore_profile.py,sha256=ZQyxwTTPLawfVeZObScGqoK89iqDcr358kuCtaMH_vM,23714
|
|
89
89
|
mlrun/datastore/dbfs_store.py,sha256=QkDRzwFnvm7CgEg4NuGxes6tBgKDyhX0CiBUvK8c9pk,6568
|
|
90
90
|
mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
|
|
91
91
|
mlrun/datastore/google_cloud_storage.py,sha256=MnToY6irdhBZ8Wcapqnr1Yq2724LAh2uPO7MAtdWfUY,8716
|
|
@@ -94,7 +94,7 @@ mlrun/datastore/inmem.py,sha256=IsM83nn-3CqmGdLzim7i9ZmJwG6ZGhBZGN6_hszWZnE,2951
|
|
|
94
94
|
mlrun/datastore/redis.py,sha256=QeNMkSz3zQXiXZhFUZcEtViqqbUysGJditbqe5M-J48,5682
|
|
95
95
|
mlrun/datastore/s3.py,sha256=U6487yQP8njrquZWvxHMPm_Q9gGOr4moCYWZ-U87U-c,9046
|
|
96
96
|
mlrun/datastore/snowflake_utils.py,sha256=Wohvnlmq8j1d98RCaknll-iWdZZpSlCrKhUOEy0_-CA,1483
|
|
97
|
-
mlrun/datastore/sources.py,sha256=
|
|
97
|
+
mlrun/datastore/sources.py,sha256=ypRaFyQHlzB_24tAw3VBvnig075rdv2ybjTIR4WQwHc,49414
|
|
98
98
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
99
99
|
mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
|
|
100
100
|
mlrun/datastore/store_resources.py,sha256=PFOMrZ6KH6hBOb0PiO-cHx_kv0UpHu5P2t8_mrR-lS4,6842
|
|
@@ -102,15 +102,15 @@ mlrun/datastore/storeytargets.py,sha256=uNYG4nCBD3JIfa51CG4cDe9ryc9oIcqUdUXKvCPB
|
|
|
102
102
|
mlrun/datastore/targets.py,sha256=QiEK-mHmUt2qnS2yaBSSKgk8CKqsGU-JoQ9kHoW1bvE,80759
|
|
103
103
|
mlrun/datastore/utils.py,sha256=ZDAzz0W16_JcM6Q9h4RoMbdruM9eA6YGlA5dw8gW8Bw,7754
|
|
104
104
|
mlrun/datastore/v3io.py,sha256=QSYBORRLcJTeM9mt0EaWzyLcdmzrPkqrF7k5uLTam5U,8209
|
|
105
|
-
mlrun/datastore/vectorstore.py,sha256=
|
|
105
|
+
mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
|
|
106
106
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
107
107
|
mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
|
|
108
108
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
109
109
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
110
|
-
mlrun/db/base.py,sha256=
|
|
110
|
+
mlrun/db/base.py,sha256=hYxV5VIz7EbnOA7AXIfWv52ABueCka07xM6xpH2hbto,30600
|
|
111
111
|
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
112
|
-
mlrun/db/httpdb.py,sha256=
|
|
113
|
-
mlrun/db/nopdb.py,sha256=
|
|
112
|
+
mlrun/db/httpdb.py,sha256=FzPF5kzE68k3paX93hEoOVRwvuK9BFpGHJJpQT5MrtI,231099
|
|
113
|
+
mlrun/db/nopdb.py,sha256=8nAuIn52NAfrKmk8EnE9kewLeGWOR29PxqVmfLxhhUw,27035
|
|
114
114
|
mlrun/feature_store/__init__.py,sha256=AVnY2AFUNc2dKxLLUMx2K3Wo1eGviv0brDcYlDnmtf4,1506
|
|
115
115
|
mlrun/feature_store/api.py,sha256=qkojZpzqGAn3r9ww0ynBRKOs8ji8URaK4DSYD4SE-CE,50395
|
|
116
116
|
mlrun/feature_store/common.py,sha256=Z7USI-d1fo0iwBMsqMBtJflJfyuiV3BLoDXQPSAoBAs,12826
|
|
@@ -211,20 +211,20 @@ mlrun/frameworks/xgboost/model_handler.py,sha256=e3VLKMmaC9OFoclUPx9buUXYLDe1Ab3
|
|
|
211
211
|
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
212
212
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
213
213
|
mlrun/launcher/base.py,sha256=uZaUpwjy9_Z137aQ4b1JsuYqD01ZVRxytAxZSFKSu6U,16480
|
|
214
|
-
mlrun/launcher/client.py,sha256=
|
|
214
|
+
mlrun/launcher/client.py,sha256=lJ3y9brmPspgwAZrUPAeu3Dn5B7mh9k3MhrbFKhNDvw,6286
|
|
215
215
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
216
|
-
mlrun/launcher/local.py,sha256=
|
|
216
|
+
mlrun/launcher/local.py,sha256=775HY-8S9LFUX5ubGXrLO0N1lVh8bn-DHFmNYuNqQPA,11451
|
|
217
217
|
mlrun/launcher/remote.py,sha256=rLJW4UAnUT5iUb4BsGBOAV3K4R29a0X4lFtRkVKlyYU,7709
|
|
218
218
|
mlrun/model_monitoring/__init__.py,sha256=ELy7njEtZnz09Dc6PGZSFFEGtnwI15bJNWM3Pj4_YIs,753
|
|
219
219
|
mlrun/model_monitoring/api.py,sha256=nH5aEUkmUEJF0CurrWJxmxVv1tQed2yzCLhQByG1L00,28561
|
|
220
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
220
|
+
mlrun/model_monitoring/controller.py,sha256=1SdrYC3n9nDOOM6G2dE0RgWnaq0o7u7sw2U2gJTpBPs,26516
|
|
221
221
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
222
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
223
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
222
|
+
mlrun/model_monitoring/helpers.py,sha256=nJhR7pQGzDGQDjGybV-pUyo4Eyt4OAeqqZ1aSEgs2lI,18328
|
|
223
|
+
mlrun/model_monitoring/stream_processing.py,sha256=xBN8LZ_MYkdAyXruRRYDysbkRlCMoI4XIXJlMgVqaGw,35092
|
|
224
224
|
mlrun/model_monitoring/tracking_policy.py,sha256=PBIGrUYWrwcE5gwXupBIVzOb0QRRwPJsgQm_yLGQxB4,5595
|
|
225
225
|
mlrun/model_monitoring/writer.py,sha256=vbL7bqTyNu8q4bNcebX72sUMybVDAoTWg-CXq4fov3Y,8429
|
|
226
226
|
mlrun/model_monitoring/applications/__init__.py,sha256=QYvzgCutFdAkzqKPD3mvkX_3c1X4tzd-kW8ojUOE9ic,889
|
|
227
|
-
mlrun/model_monitoring/applications/_application_steps.py,sha256=
|
|
227
|
+
mlrun/model_monitoring/applications/_application_steps.py,sha256=q4Dd7EtPPqrvLoBHh3eViu22_RF3CpnWBg7NN3aT_SM,7225
|
|
228
228
|
mlrun/model_monitoring/applications/base.py,sha256=pqmZ67zaslIkcJlsjcUG6TWjbBTD_fYci6rlEvbFttc,15091
|
|
229
229
|
mlrun/model_monitoring/applications/context.py,sha256=kE_8h7eoUES_bFG2s7nENRziMFB72fJvAZ3KpIBWxOo,15084
|
|
230
230
|
mlrun/model_monitoring/applications/evidently_base.py,sha256=hRjXuXf6xf8sbjGt9yYfGDUGnvS5rV3W7tkJroF3QJA,5098
|
|
@@ -233,23 +233,23 @@ mlrun/model_monitoring/applications/results.py,sha256=oh1z9oacWWP4azVXm_Fx7j8uXS
|
|
|
233
233
|
mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
|
|
234
234
|
mlrun/model_monitoring/db/_schedules.py,sha256=NTO1rbSyhW1JidpBDSN39ZBD0ctp5pbJFYQwxKRIRrs,5821
|
|
235
235
|
mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
|
|
236
|
-
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=
|
|
236
|
+
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=YchAn6KfmQ9kiBU31vUpU1z1FbcDWRy6I2ngjcdIx48,4209
|
|
237
237
|
mlrun/model_monitoring/db/tsdb/base.py,sha256=JjLBzZXE4ZxtBmihVXjUYZ2HKmgqX03ZhUynXp4948o,25372
|
|
238
238
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
239
239
|
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
240
240
|
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=qfKDUZhgteL0mp2A1aP1iMmcthgUMKmZqMUidZjQktQ,12649
|
|
241
241
|
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Uadj0UvAmln2MxDWod-kAzau1uNlqZh981rPhbUH_5M,2857
|
|
242
|
-
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=
|
|
242
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=eLi5kB1kFR8svukACnuYABaKOI4rof_SKMX61XXN5hI,30350
|
|
243
243
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
244
244
|
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
|
|
245
|
-
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=
|
|
245
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=w7k0HoA7lSRkxFWRpk56YL1x9jVKQTjTq9Eu38fKX5Y,37032
|
|
246
246
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
247
247
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
248
248
|
mlrun/package/__init__.py,sha256=v7VDyK9kDOOuDvFo4oiGV2fx-vM1KL7fdN9pGLakhUQ,7008
|
|
249
|
-
mlrun/package/context_handler.py,sha256=
|
|
249
|
+
mlrun/package/context_handler.py,sha256=in6jOV4O9ALUYaDKdsUVa8uFP4g9pVJsgvjamkfA4VY,14589
|
|
250
250
|
mlrun/package/errors.py,sha256=LKF8SSaRIdbkB7JQz6b9U4mZV42Ebnf6ZHu4wKuWqK4,1204
|
|
251
251
|
mlrun/package/packager.py,sha256=-eXESrSuPTT_3ELi9RG1-035O2J4R73umOkC5xnPgqc,15189
|
|
252
|
-
mlrun/package/packagers_manager.py,sha256=
|
|
252
|
+
mlrun/package/packagers_manager.py,sha256=hRRJxIZJhTEPaosWsDOUjcLTj-5-nCii94J5kLjpcRM,37337
|
|
253
253
|
mlrun/package/packagers/__init__.py,sha256=wF2OdhG1zgABbxYBxBNUCk0VNYwBMS9Yy4EW0OMPuoI,666
|
|
254
254
|
mlrun/package/packagers/default_packager.py,sha256=stA6WtaTbwacLSLqFOiHCnCBgb-afvzBRMicCtBIl-Y,26768
|
|
255
255
|
mlrun/package/packagers/numpy_packagers.py,sha256=UlhV4CE6r8uqlLKDOuRuMx154ktzcQ1hJNFB8sUgAeI,25767
|
|
@@ -266,8 +266,8 @@ mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3
|
|
|
266
266
|
mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
|
|
267
267
|
mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
|
|
268
268
|
mlrun/projects/operations.py,sha256=VXUlMrouFTls-I-bMhdN5pPfQ34TR7bFQ-NUSWNvl84,20029
|
|
269
|
-
mlrun/projects/pipelines.py,sha256=
|
|
270
|
-
mlrun/projects/project.py,sha256=
|
|
269
|
+
mlrun/projects/pipelines.py,sha256=3UmjPKKAKKttdAOFnv_3vF0YLU1LHKQqUO2xp0K5yng,47915
|
|
270
|
+
mlrun/projects/project.py,sha256=4RP8hH7rBdRVQPP4JiEqt6W4dAG-3mWUK2iPL9fAIQM,234437
|
|
271
271
|
mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
|
|
272
272
|
mlrun/runtimes/base.py,sha256=Yt2l7srrXjK783cunBEKH0yQxQZRH8lkedXNOXuLbbo,37841
|
|
273
273
|
mlrun/runtimes/daskjob.py,sha256=JwuGvOiPsxEDHHMMUS4Oie4hLlYYIZwihAl6DjroTY0,19521
|
|
@@ -291,22 +291,22 @@ mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVY
|
|
|
291
291
|
mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
|
|
292
292
|
mlrun/runtimes/nuclio/function.py,sha256=Bff8Veg-eaqNrQ7yn20HpRhwAO4OA7FTnzXnAyoaBPU,52365
|
|
293
293
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
294
|
-
mlrun/runtimes/nuclio/serving.py,sha256=
|
|
294
|
+
mlrun/runtimes/nuclio/serving.py,sha256=ycRbZysdaEcpHZVqzSqGZys9ZjdGFrAECBfJATQfzfo,31997
|
|
295
295
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
296
296
|
mlrun/runtimes/nuclio/application/application.py,sha256=HlEq4A6hbFqr3Ba3TL4m7nbmfMYI06Zb_NAKGjzkEFU,29242
|
|
297
297
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=JIIYae6bXzCLf3jXuu49KWPQYoXr_FDQ2Rbo1OWKAd0,3150
|
|
298
298
|
mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
|
|
299
|
-
mlrun/runtimes/sparkjob/spark3job.py,sha256=
|
|
299
|
+
mlrun/runtimes/sparkjob/spark3job.py,sha256=E777WdlSe7Yx2kpg1bK0zZokn93bOQiUbtvtbcHV7ig,41610
|
|
300
300
|
mlrun/serving/__init__.py,sha256=FhOlOCnBC5HFXOHzSDe4NHBs6mNUDP_Qqy6WMNsCwws,1307
|
|
301
301
|
mlrun/serving/merger.py,sha256=qtPJacx94Tsz_-8L3J_-aS2NEsTdechZkQzJmyHjmig,6195
|
|
302
302
|
mlrun/serving/remote.py,sha256=gxJkj_J3j-sZcVUbUzbAmJafP6t6y4NVFsu0kWmYngA,18818
|
|
303
303
|
mlrun/serving/routers.py,sha256=A_R34_N6uYw2veK58WpffEp1NsFwq0XbNU9is2Nd7s8,50901
|
|
304
|
-
mlrun/serving/server.py,sha256=
|
|
304
|
+
mlrun/serving/server.py,sha256=dh8WQ0yEAhDvun1VA_DI5HBfywsACCrxBKn06bIjm1c,22843
|
|
305
305
|
mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
|
|
306
|
-
mlrun/serving/states.py,sha256=
|
|
306
|
+
mlrun/serving/states.py,sha256=8-hXWNK3kJj3FH5AKAfYr93br3og6xb53jzTR6hKVEU,70443
|
|
307
307
|
mlrun/serving/utils.py,sha256=k2EIYDWHUGkE-IBI6T0UNT32fw-KySsccIJM_LObI00,4171
|
|
308
308
|
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
309
|
-
mlrun/serving/v2_serving.py,sha256=
|
|
309
|
+
mlrun/serving/v2_serving.py,sha256=pN49K7HOh1C1pAwAo_89FGB2HsLw0BO38unmUF3jE48,22956
|
|
310
310
|
mlrun/track/__init__.py,sha256=yVXbT52fXvGKRlc_ByHqIVt7-9L3DRE634RSeQwgXtU,665
|
|
311
311
|
mlrun/track/tracker.py,sha256=CyTU6Qd3_5GGEJ_hpocOj71wvV65EuFYUjaYEUKAL6Q,3575
|
|
312
312
|
mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
|
|
@@ -318,7 +318,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
318
318
|
mlrun/utils/clones.py,sha256=y3zC9QS7z5mLuvyQ6vFd6sJnikbgtDwrBvieQq0sovY,7359
|
|
319
319
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
320
320
|
mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
|
|
321
|
-
mlrun/utils/helpers.py,sha256=
|
|
321
|
+
mlrun/utils/helpers.py,sha256=fQmr1xcOB9Q3Z3CL-n9qqevBWsoMF7VPz_Uucmz4ORg,72101
|
|
322
322
|
mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
|
|
323
323
|
mlrun/utils/logger.py,sha256=_v4UTv1-STzC2c6aAWAa0NNl9STQoBYbR3OHgAiL41s,14606
|
|
324
324
|
mlrun/utils/regex.py,sha256=IQqwPna6Z8J31xkTUduYbGk48GkQBUJFZSuxAWm1pzU,5162
|
|
@@ -327,21 +327,21 @@ mlrun/utils/singleton.py,sha256=p1Y-X0mPSs_At092GS-pZCA8CTR62HOqPU07_ZH6-To,869
|
|
|
327
327
|
mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1294
|
|
328
328
|
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
329
329
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
330
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
330
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=DfYFiIVYbFybxvOx4uChaPWHjpMdOdUW2BS2FISH4Sw,25594
|
|
331
331
|
mlrun/utils/notifications/notification/__init__.py,sha256=9Rfy6Jm8n0LaEDO1VAQb6kIbr7_uVuQhK1pS_abELIY,2581
|
|
332
|
-
mlrun/utils/notifications/notification/base.py,sha256
|
|
332
|
+
mlrun/utils/notifications/notification/base.py,sha256=-9e3XqUixrWwImnTGrIL4enJRSIUP9gMrJVxwaLqeXc,5403
|
|
333
333
|
mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
|
|
334
334
|
mlrun/utils/notifications/notification/git.py,sha256=t2lqRrPRBO4awf_uhxJreH9CpcbYSH8T3CvHtwspHkE,6306
|
|
335
335
|
mlrun/utils/notifications/notification/ipython.py,sha256=9uZvI1uOLFaNuAsfJPXmL3l6dOzFoWdBK5GYNYFAfks,2282
|
|
336
336
|
mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAqp1vij7C6aRJ9h2mgs,6012
|
|
337
|
-
mlrun/utils/notifications/notification/slack.py,sha256=
|
|
337
|
+
mlrun/utils/notifications/notification/slack.py,sha256=eQvmctTh6wIG5xVOesLLV9S1-UUCu5UEQ9JIJOor3ts,7183
|
|
338
338
|
mlrun/utils/notifications/notification/webhook.py,sha256=NeyIMSBojjjTJaUHmPbxMByp34GxYkl1-16NqzU27fU,4943
|
|
339
339
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
340
|
-
mlrun/utils/version/version.json,sha256=
|
|
340
|
+
mlrun/utils/version/version.json,sha256=wrkxem6xGg7JTfrowBrtKwngt9TYgm-6riSXX68rrA8,89
|
|
341
341
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
342
|
-
mlrun-1.8.
|
|
343
|
-
mlrun-1.8.
|
|
344
|
-
mlrun-1.8.
|
|
345
|
-
mlrun-1.8.
|
|
346
|
-
mlrun-1.8.
|
|
347
|
-
mlrun-1.8.
|
|
342
|
+
mlrun-1.8.0rc26.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
343
|
+
mlrun-1.8.0rc26.dist-info/METADATA,sha256=VX9gsi_OEK4mR5gOUw-UGcyrp4VVLz3oMU89ADbY_MI,25888
|
|
344
|
+
mlrun-1.8.0rc26.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
345
|
+
mlrun-1.8.0rc26.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
346
|
+
mlrun-1.8.0rc26.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
347
|
+
mlrun-1.8.0rc26.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|