mlrun 1.7.0rc42__py3-none-any.whl → 1.7.0rc45__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 +4 -2
- mlrun/artifacts/manager.py +9 -2
- mlrun/common/schemas/__init__.py +1 -0
- mlrun/common/schemas/alert.py +11 -11
- mlrun/common/schemas/auth.py +2 -0
- mlrun/common/schemas/client_spec.py +0 -1
- mlrun/common/schemas/frontend_spec.py +7 -0
- mlrun/common/schemas/notification.py +32 -5
- mlrun/common/schemas/workflow.py +1 -0
- mlrun/config.py +47 -22
- mlrun/data_types/data_types.py +5 -0
- mlrun/datastore/base.py +4 -7
- mlrun/datastore/storeytargets.py +4 -3
- mlrun/datastore/targets.py +17 -4
- mlrun/db/httpdb.py +10 -12
- mlrun/db/nopdb.py +21 -4
- mlrun/execution.py +7 -2
- mlrun/feature_store/api.py +1 -0
- mlrun/feature_store/retrieval/spark_merger.py +7 -3
- mlrun/frameworks/_common/plan.py +3 -3
- mlrun/frameworks/_ml_common/plan.py +1 -1
- mlrun/frameworks/parallel_coordinates.py +2 -3
- mlrun/k8s_utils.py +48 -2
- mlrun/launcher/client.py +6 -6
- mlrun/model.py +2 -1
- mlrun/model_monitoring/applications/results.py +2 -2
- mlrun/model_monitoring/controller.py +1 -1
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py +15 -1
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +12 -0
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +2 -2
- mlrun/model_monitoring/helpers.py +7 -15
- mlrun/model_monitoring/writer.py +8 -2
- mlrun/projects/pipelines.py +2 -0
- mlrun/projects/project.py +152 -60
- mlrun/render.py +3 -3
- mlrun/runtimes/daskjob.py +1 -1
- mlrun/runtimes/kubejob.py +6 -6
- mlrun/runtimes/local.py +4 -1
- mlrun/runtimes/nuclio/api_gateway.py +6 -0
- mlrun/runtimes/nuclio/application/application.py +5 -4
- mlrun/runtimes/nuclio/function.py +45 -0
- mlrun/runtimes/pod.py +21 -13
- mlrun/runtimes/sparkjob/spark3job.py +4 -0
- mlrun/serving/server.py +2 -0
- mlrun/utils/async_http.py +1 -1
- mlrun/utils/helpers.py +39 -16
- mlrun/utils/notifications/notification/__init__.py +0 -1
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.0rc42.dist-info → mlrun-1.7.0rc45.dist-info}/METADATA +27 -27
- {mlrun-1.7.0rc42.dist-info → mlrun-1.7.0rc45.dist-info}/RECORD +54 -54
- {mlrun-1.7.0rc42.dist-info → mlrun-1.7.0rc45.dist-info}/WHEEL +1 -1
- {mlrun-1.7.0rc42.dist-info → mlrun-1.7.0rc45.dist-info}/LICENSE +0 -0
- {mlrun-1.7.0rc42.dist-info → mlrun-1.7.0rc45.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.0rc42.dist-info → mlrun-1.7.0rc45.dist-info}/top_level.txt +0 -0
mlrun/utils/async_http.py
CHANGED
|
@@ -237,7 +237,7 @@ class _CustomRequestContext(_RequestContext):
|
|
|
237
237
|
retry_wait = self._retry_options.get_timeout(
|
|
238
238
|
attempt=current_attempt, response=None
|
|
239
239
|
)
|
|
240
|
-
self._logger.
|
|
240
|
+
self._logger.warning(
|
|
241
241
|
"Request failed on retryable exception, retrying",
|
|
242
242
|
retry_wait_secs=retry_wait,
|
|
243
243
|
method=params.method,
|
mlrun/utils/helpers.py
CHANGED
|
@@ -41,7 +41,7 @@ import semver
|
|
|
41
41
|
import yaml
|
|
42
42
|
from dateutil import parser
|
|
43
43
|
from mlrun_pipelines.models import PipelineRun
|
|
44
|
-
from pandas
|
|
44
|
+
from pandas import Timedelta, Timestamp
|
|
45
45
|
from yaml.representer import RepresenterError
|
|
46
46
|
|
|
47
47
|
import mlrun
|
|
@@ -111,9 +111,12 @@ def get_artifact_target(item: dict, project=None):
|
|
|
111
111
|
project_str = project or item["metadata"].get("project")
|
|
112
112
|
tree = item["metadata"].get("tree")
|
|
113
113
|
tag = item["metadata"].get("tag")
|
|
114
|
+
kind = item.get("kind")
|
|
114
115
|
|
|
115
|
-
if
|
|
116
|
-
target =
|
|
116
|
+
if kind in {"dataset", "model", "artifact"} and db_key:
|
|
117
|
+
target = (
|
|
118
|
+
f"{DB_SCHEMA}://{StorePrefix.kind_to_prefix(kind)}/{project_str}/{db_key}"
|
|
119
|
+
)
|
|
117
120
|
target += f":{tag}" if tag else ":latest"
|
|
118
121
|
if tree:
|
|
119
122
|
target += f"@{tree}"
|
|
@@ -133,18 +136,25 @@ def is_legacy_artifact(artifact):
|
|
|
133
136
|
logger = create_logger(config.log_level, config.log_formatter, "mlrun", sys.stdout)
|
|
134
137
|
missing = object()
|
|
135
138
|
|
|
136
|
-
is_ipython = False
|
|
139
|
+
is_ipython = False # is IPython terminal, including Jupyter
|
|
140
|
+
is_jupyter = False # is Jupyter notebook/lab terminal
|
|
137
141
|
try:
|
|
138
|
-
import IPython
|
|
142
|
+
import IPython.core.getipython
|
|
143
|
+
|
|
144
|
+
ipy = IPython.core.getipython.get_ipython()
|
|
145
|
+
|
|
146
|
+
is_ipython = ipy is not None
|
|
147
|
+
is_jupyter = (
|
|
148
|
+
is_ipython
|
|
149
|
+
# not IPython
|
|
150
|
+
and "Terminal" not in str(type(ipy))
|
|
151
|
+
)
|
|
139
152
|
|
|
140
|
-
ipy
|
|
141
|
-
|
|
142
|
-
if ipy and "Terminal" not in str(type(ipy)):
|
|
143
|
-
is_ipython = True
|
|
144
|
-
except ImportError:
|
|
153
|
+
del ipy
|
|
154
|
+
except ModuleNotFoundError:
|
|
145
155
|
pass
|
|
146
156
|
|
|
147
|
-
if
|
|
157
|
+
if is_jupyter and config.nest_asyncio_enabled in ["1", "True"]:
|
|
148
158
|
# bypass Jupyter asyncio bug
|
|
149
159
|
import nest_asyncio
|
|
150
160
|
|
|
@@ -1007,6 +1017,23 @@ def get_workflow_url(project, id=None):
|
|
|
1007
1017
|
return url
|
|
1008
1018
|
|
|
1009
1019
|
|
|
1020
|
+
def get_kfp_project_filter(project_name: str) -> str:
|
|
1021
|
+
"""
|
|
1022
|
+
Generates a filter string for KFP runs, using a substring predicate
|
|
1023
|
+
on the run's 'name' field. This is used as a heuristic to retrieve runs that are associated
|
|
1024
|
+
with a specific project. The 'op: 9' operator indicates that the filter checks if the
|
|
1025
|
+
project name appears as a substring in the run's name, ensuring that we can identify
|
|
1026
|
+
runs belonging to the desired project.
|
|
1027
|
+
"""
|
|
1028
|
+
is_substring_op = 9
|
|
1029
|
+
project_name_filter = {
|
|
1030
|
+
"predicates": [
|
|
1031
|
+
{"key": "name", "op": is_substring_op, "string_value": project_name}
|
|
1032
|
+
]
|
|
1033
|
+
}
|
|
1034
|
+
return json.dumps(project_name_filter)
|
|
1035
|
+
|
|
1036
|
+
|
|
1010
1037
|
def are_strings_in_exception_chain_messages(
|
|
1011
1038
|
exception: Exception, strings_list: list[str]
|
|
1012
1039
|
) -> bool:
|
|
@@ -1404,11 +1431,7 @@ def is_running_in_jupyter_notebook() -> bool:
|
|
|
1404
1431
|
Check if the code is running inside a Jupyter Notebook.
|
|
1405
1432
|
:return: True if running inside a Jupyter Notebook, False otherwise.
|
|
1406
1433
|
"""
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
ipy = IPython.get_ipython()
|
|
1410
|
-
# if its IPython terminal, it isn't a Jupyter ipython
|
|
1411
|
-
return ipy and "Terminal" not in str(type(ipy))
|
|
1434
|
+
return is_jupyter
|
|
1412
1435
|
|
|
1413
1436
|
|
|
1414
1437
|
def create_ipython_display():
|
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.0rc45
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -33,7 +33,7 @@ Requires-Dist: numpy <1.27.0,>=1.16.5
|
|
|
33
33
|
Requires-Dist: pandas <2.2,>=1.2
|
|
34
34
|
Requires-Dist: pyarrow <15,>=10.0
|
|
35
35
|
Requires-Dist: pyyaml <7,>=5.4.1
|
|
36
|
-
Requires-Dist: requests ~=2.
|
|
36
|
+
Requires-Dist: requests ~=2.32
|
|
37
37
|
Requires-Dist: tabulate ~=0.8.6
|
|
38
38
|
Requires-Dist: v3io ~=0.6.9
|
|
39
39
|
Requires-Dist: pydantic <1.10.15,>=1.10.8
|
|
@@ -41,7 +41,7 @@ Requires-Dist: mergedeep ~=1.3
|
|
|
41
41
|
Requires-Dist: v3io-frames ~=0.10.14
|
|
42
42
|
Requires-Dist: semver ~=3.0
|
|
43
43
|
Requires-Dist: dependency-injector ~=4.41
|
|
44
|
-
Requires-Dist: fsspec <2024.
|
|
44
|
+
Requires-Dist: fsspec <2024.7,>=2023.9.2
|
|
45
45
|
Requires-Dist: v3iofs ~=0.1.17
|
|
46
46
|
Requires-Dist: storey ~=1.7.24
|
|
47
47
|
Requires-Dist: inflection ~=0.5.0
|
|
@@ -57,17 +57,17 @@ Requires-Dist: ossfs ==2023.12.0 ; extra == 'alibaba-oss'
|
|
|
57
57
|
Requires-Dist: oss2 ==2.18.1 ; extra == 'alibaba-oss'
|
|
58
58
|
Provides-Extra: all
|
|
59
59
|
Requires-Dist: adlfs ==2023.9.0 ; extra == 'all'
|
|
60
|
-
Requires-Dist: aiobotocore <2.
|
|
60
|
+
Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 'all'
|
|
61
61
|
Requires-Dist: avro ~=1.11 ; extra == 'all'
|
|
62
62
|
Requires-Dist: azure-core ~=1.24 ; extra == 'all'
|
|
63
63
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'all'
|
|
64
64
|
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'all'
|
|
65
65
|
Requires-Dist: bokeh >=2.4.2,~=2.4 ; extra == 'all'
|
|
66
|
-
Requires-Dist: boto3 <1.
|
|
67
|
-
Requires-Dist: dask ~=2023.
|
|
66
|
+
Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 'all'
|
|
67
|
+
Requires-Dist: dask ~=2023.12.1 ; extra == 'all'
|
|
68
68
|
Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'all'
|
|
69
|
-
Requires-Dist: distributed ~=2023.
|
|
70
|
-
Requires-Dist: gcsfs <2024.
|
|
69
|
+
Requires-Dist: distributed ~=2023.12.1 ; extra == 'all'
|
|
70
|
+
Requires-Dist: gcsfs <2024.7,>=2023.9.2 ; extra == 'all'
|
|
71
71
|
Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'all'
|
|
72
72
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'all'
|
|
73
73
|
Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'all'
|
|
@@ -81,7 +81,7 @@ Requires-Dist: ossfs ==2023.12.0 ; extra == 'all'
|
|
|
81
81
|
Requires-Dist: plotly ~=5.23 ; extra == 'all'
|
|
82
82
|
Requires-Dist: pyopenssl >=23 ; extra == 'all'
|
|
83
83
|
Requires-Dist: redis ~=4.3 ; extra == 'all'
|
|
84
|
-
Requires-Dist: s3fs <2024.
|
|
84
|
+
Requires-Dist: s3fs <2024.7,>=2023.9.2 ; extra == 'all'
|
|
85
85
|
Requires-Dist: snowflake-connector-python ~=3.7 ; extra == 'all'
|
|
86
86
|
Requires-Dist: sqlalchemy ~=1.4 ; extra == 'all'
|
|
87
87
|
Requires-Dist: taos-ws-py ~=0.3.2 ; extra == 'all'
|
|
@@ -111,16 +111,16 @@ Provides-Extra: bokeh
|
|
|
111
111
|
Requires-Dist: bokeh >=2.4.2,~=2.4 ; extra == 'bokeh'
|
|
112
112
|
Provides-Extra: complete
|
|
113
113
|
Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete'
|
|
114
|
-
Requires-Dist: aiobotocore <2.
|
|
114
|
+
Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 'complete'
|
|
115
115
|
Requires-Dist: avro ~=1.11 ; extra == 'complete'
|
|
116
116
|
Requires-Dist: azure-core ~=1.24 ; extra == 'complete'
|
|
117
117
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'complete'
|
|
118
118
|
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete'
|
|
119
|
-
Requires-Dist: boto3 <1.
|
|
120
|
-
Requires-Dist: dask ~=2023.
|
|
119
|
+
Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 'complete'
|
|
120
|
+
Requires-Dist: dask ~=2023.12.1 ; extra == 'complete'
|
|
121
121
|
Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete'
|
|
122
|
-
Requires-Dist: distributed ~=2023.
|
|
123
|
-
Requires-Dist: gcsfs <2024.
|
|
122
|
+
Requires-Dist: distributed ~=2023.12.1 ; extra == 'complete'
|
|
123
|
+
Requires-Dist: gcsfs <2024.7,>=2023.9.2 ; extra == 'complete'
|
|
124
124
|
Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'complete'
|
|
125
125
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete'
|
|
126
126
|
Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'complete'
|
|
@@ -134,26 +134,26 @@ Requires-Dist: ossfs ==2023.12.0 ; extra == 'complete'
|
|
|
134
134
|
Requires-Dist: plotly ~=5.23 ; extra == 'complete'
|
|
135
135
|
Requires-Dist: pyopenssl >=23 ; extra == 'complete'
|
|
136
136
|
Requires-Dist: redis ~=4.3 ; extra == 'complete'
|
|
137
|
-
Requires-Dist: s3fs <2024.
|
|
137
|
+
Requires-Dist: s3fs <2024.7,>=2023.9.2 ; extra == 'complete'
|
|
138
138
|
Requires-Dist: snowflake-connector-python ~=3.7 ; extra == 'complete'
|
|
139
139
|
Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete'
|
|
140
140
|
Requires-Dist: taos-ws-py ~=0.3.2 ; extra == 'complete'
|
|
141
141
|
Provides-Extra: complete-api
|
|
142
142
|
Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete-api'
|
|
143
|
-
Requires-Dist: aiobotocore <2.
|
|
143
|
+
Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 'complete-api'
|
|
144
144
|
Requires-Dist: alembic ~=1.9 ; extra == 'complete-api'
|
|
145
145
|
Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'complete-api'
|
|
146
146
|
Requires-Dist: avro ~=1.11 ; extra == 'complete-api'
|
|
147
147
|
Requires-Dist: azure-core ~=1.24 ; extra == 'complete-api'
|
|
148
148
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'complete-api'
|
|
149
149
|
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete-api'
|
|
150
|
-
Requires-Dist: boto3 <1.
|
|
150
|
+
Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 'complete-api'
|
|
151
151
|
Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'complete-api'
|
|
152
|
-
Requires-Dist: dask ~=2023.
|
|
152
|
+
Requires-Dist: dask ~=2023.12.1 ; extra == 'complete-api'
|
|
153
153
|
Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete-api'
|
|
154
|
-
Requires-Dist: distributed ~=2023.
|
|
154
|
+
Requires-Dist: distributed ~=2023.12.1 ; extra == 'complete-api'
|
|
155
155
|
Requires-Dist: fastapi ~=0.110.0 ; extra == 'complete-api'
|
|
156
|
-
Requires-Dist: gcsfs <2024.
|
|
156
|
+
Requires-Dist: gcsfs <2024.7,>=2023.9.2 ; extra == 'complete-api'
|
|
157
157
|
Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'complete-api'
|
|
158
158
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete-api'
|
|
159
159
|
Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'complete-api'
|
|
@@ -171,7 +171,7 @@ Requires-Dist: plotly ~=5.23 ; extra == 'complete-api'
|
|
|
171
171
|
Requires-Dist: pymysql ~=1.0 ; extra == 'complete-api'
|
|
172
172
|
Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
|
|
173
173
|
Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
|
|
174
|
-
Requires-Dist: s3fs <2024.
|
|
174
|
+
Requires-Dist: s3fs <2024.7,>=2023.9.2 ; extra == 'complete-api'
|
|
175
175
|
Requires-Dist: snowflake-connector-python ~=3.7 ; extra == 'complete-api'
|
|
176
176
|
Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete-api'
|
|
177
177
|
Requires-Dist: taos-ws-py ~=0.3.2 ; extra == 'complete-api'
|
|
@@ -179,8 +179,8 @@ Requires-Dist: timelength ~=1.1 ; extra == 'complete-api'
|
|
|
179
179
|
Requires-Dist: uvicorn ~=0.27.1 ; extra == 'complete-api'
|
|
180
180
|
Requires-Dist: memray ~=1.12 ; (sys_platform != "win32") and extra == 'complete-api'
|
|
181
181
|
Provides-Extra: dask
|
|
182
|
-
Requires-Dist: dask ~=2023.
|
|
183
|
-
Requires-Dist: distributed ~=2023.
|
|
182
|
+
Requires-Dist: dask ~=2023.12.1 ; extra == 'dask'
|
|
183
|
+
Requires-Dist: distributed ~=2023.12.1 ; extra == 'dask'
|
|
184
184
|
Provides-Extra: databricks-sdk
|
|
185
185
|
Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'databricks-sdk'
|
|
186
186
|
Provides-Extra: google-cloud
|
|
@@ -188,7 +188,7 @@ Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'google-cloud'
|
|
|
188
188
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'google-cloud'
|
|
189
189
|
Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'google-cloud'
|
|
190
190
|
Requires-Dist: google-cloud ==0.34 ; extra == 'google-cloud'
|
|
191
|
-
Requires-Dist: gcsfs <2024.
|
|
191
|
+
Requires-Dist: gcsfs <2024.7,>=2023.9.2 ; extra == 'google-cloud'
|
|
192
192
|
Provides-Extra: graphviz
|
|
193
193
|
Requires-Dist: graphviz ~=0.20.0 ; extra == 'graphviz'
|
|
194
194
|
Provides-Extra: kafka
|
|
@@ -201,9 +201,9 @@ Requires-Dist: plotly ~=5.23 ; extra == 'plotly'
|
|
|
201
201
|
Provides-Extra: redis
|
|
202
202
|
Requires-Dist: redis ~=4.3 ; extra == 'redis'
|
|
203
203
|
Provides-Extra: s3
|
|
204
|
-
Requires-Dist: boto3 <1.
|
|
205
|
-
Requires-Dist: aiobotocore <2.
|
|
206
|
-
Requires-Dist: s3fs <2024.
|
|
204
|
+
Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 's3'
|
|
205
|
+
Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 's3'
|
|
206
|
+
Requires-Dist: s3fs <2024.7,>=2023.9.2 ; extra == 's3'
|
|
207
207
|
Provides-Extra: snowflake
|
|
208
208
|
Requires-Dist: snowflake-connector-python ~=3.7 ; extra == 'snowflake'
|
|
209
209
|
Provides-Extra: sqlalchemy
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=y08M1JcKXy5-9_5WaI9fn5aV5BxIQ5QkbduJK0OxWbA,7470
|
|
2
|
-
mlrun/__main__.py,sha256=
|
|
3
|
-
mlrun/config.py,sha256=
|
|
2
|
+
mlrun/__main__.py,sha256=mC_Izs4kuHUHQi88QJFLN22n1kbygGM0wAirjNt7uj4,45938
|
|
3
|
+
mlrun/config.py,sha256=NJG59Rl_5-mwgCdPDboRhjHD1ujW9ITYL7gtCbSMkM8,67308
|
|
4
4
|
mlrun/errors.py,sha256=nY23dns_kTzbOrelJf0FyxLw5mglv7jo4Sx3efKS9Fs,7798
|
|
5
|
-
mlrun/execution.py,sha256=
|
|
5
|
+
mlrun/execution.py,sha256=EGsEeSqOFnSxYFL4_YVKv8DEx2YsmJ9aA1gXBAV5W5A,42563
|
|
6
6
|
mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
|
|
7
|
-
mlrun/k8s_utils.py,sha256=
|
|
7
|
+
mlrun/k8s_utils.py,sha256=mRQMs6NzPq36vx1n5_2BfFapXysc8wv3NcrZ77_2ANA,8949
|
|
8
8
|
mlrun/lists.py,sha256=3PqBdcajdwhTe1XuFsAaHTuFVM2kjwepf31qqE82apg,8384
|
|
9
|
-
mlrun/model.py,sha256=
|
|
10
|
-
mlrun/render.py,sha256=
|
|
9
|
+
mlrun/model.py,sha256=WcRg13FSww_4YLpL-WDRnfoBnfiEHXRFTMLEMJIeICk,80694
|
|
10
|
+
mlrun/render.py,sha256=940H9fBBFeghH4dlifbURvtjlvw4GlWdAXezN6ky4rI,13275
|
|
11
11
|
mlrun/run.py,sha256=hNxV-TnixbH8MCos2jqz8jdTDlK7dBSvJMil_QoGKQI,43616
|
|
12
12
|
mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
|
|
13
13
|
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
@@ -16,7 +16,7 @@ mlrun/api/schemas/__init__.py,sha256=fEWH4I8hr5AdRJ7yoW44RlFB6NHkYDxyomP5J6ct1z4
|
|
|
16
16
|
mlrun/artifacts/__init__.py,sha256=daGrLqltI1nE3ES30nm-tanUnxReRzfyxyaxNRx2zbc,1168
|
|
17
17
|
mlrun/artifacts/base.py,sha256=EystjLta4XVdZP2x4nz1ZNlDUYKTIcFNfMVfBVseCHw,29168
|
|
18
18
|
mlrun/artifacts/dataset.py,sha256=O_2g2RFHYEAXIBX86mgyc0wBNOhWLT7NlYvxFeLNTuw,16505
|
|
19
|
-
mlrun/artifacts/manager.py,sha256=
|
|
19
|
+
mlrun/artifacts/manager.py,sha256=1hSPEMqZG18OsA4smjxaIUabtelQO8wLfgbb8gkMQJg,15587
|
|
20
20
|
mlrun/artifacts/model.py,sha256=ObUkqFMejYOtq0CDFdpYwzwhQ5bsHv0dHTysuVPJnbs,21102
|
|
21
21
|
mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
|
|
22
22
|
mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
@@ -36,26 +36,26 @@ mlrun/common/formatters/run.py,sha256=eEBy1NEwGT9b98TWS2OetEbDnDrnHBIBVMrlXsxveo
|
|
|
36
36
|
mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
|
|
37
37
|
mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
|
|
38
38
|
mlrun/common/runtimes/constants.py,sha256=Rl0Sd8n_L7Imo-uF1LL9CJ5Szi0W1gUm36yrF8PXfSc,10989
|
|
39
|
-
mlrun/common/schemas/__init__.py,sha256=
|
|
40
|
-
mlrun/common/schemas/alert.py,sha256=
|
|
39
|
+
mlrun/common/schemas/__init__.py,sha256=xCRh98GdHfB6Tzb7_lrOhgoO9UnkUfTcsjStLZll8tc,5247
|
|
40
|
+
mlrun/common/schemas/alert.py,sha256=qWYCISNYMdkgAARVQNxshVr9d-s8LGscfLKpczkTBms,6749
|
|
41
41
|
mlrun/common/schemas/api_gateway.py,sha256=9ilorgLOiWxFZbv89-dbPNfVdaChlGOIdC4SLTxQwNI,7118
|
|
42
42
|
mlrun/common/schemas/artifact.py,sha256=V3ngobnzI1v2eoOroWBEedjAZu0ntCSIQ-LzsOK1Z9k,3570
|
|
43
|
-
mlrun/common/schemas/auth.py,sha256=
|
|
43
|
+
mlrun/common/schemas/auth.py,sha256=faxZeVCmIRchMnDCaiIhwTdGTtRc7u1ImbZQvxm6FJ4,6500
|
|
44
44
|
mlrun/common/schemas/background_task.py,sha256=2qZxib2qrF_nPZj0ncitCG-2jxz2hg1qj0hFc8eswWQ,1707
|
|
45
|
-
mlrun/common/schemas/client_spec.py,sha256=
|
|
45
|
+
mlrun/common/schemas/client_spec.py,sha256=wqzQ5R4Zc7FL-8lV_BRN6nLrD0jK1kon05-JQ3fy2KY,2892
|
|
46
46
|
mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
|
|
47
47
|
mlrun/common/schemas/common.py,sha256=73KxUHF6gvTdI29qLWecmOWqpOxDpMbD8ypsK03GtEE,1654
|
|
48
48
|
mlrun/common/schemas/constants.py,sha256=sTNCimttd7ytSZ3jxbftItw_HDGxPwY96Ub86OvcT9w,6660
|
|
49
49
|
mlrun/common/schemas/datastore_profile.py,sha256=hJ8q54A8VZKsnOvSIjcllj4MZ1bBhb_EmBgsqpwSF_Y,750
|
|
50
50
|
mlrun/common/schemas/events.py,sha256=ROHJLo_fqYjc96pek7yhAUPpPRIuAR76lwxvNz8LIr8,1026
|
|
51
51
|
mlrun/common/schemas/feature_store.py,sha256=T0yKYcv6cb3ZwgY5Jh9kWp94zLv2ImxAQUy6x68Imd0,4776
|
|
52
|
-
mlrun/common/schemas/frontend_spec.py,sha256=
|
|
52
|
+
mlrun/common/schemas/frontend_spec.py,sha256=Xos6Jagj0ayqJXw0OrFIFMhSOkuKZcHE3ijB9l6-Kg0,2611
|
|
53
53
|
mlrun/common/schemas/function.py,sha256=fZZBZroj6Ok0giRn2pYSzR40bx037v9pIWvSagPA2fE,4820
|
|
54
54
|
mlrun/common/schemas/http.py,sha256=1PtYFhF6sqLSBRcuPMtYcUGmroBhaleqLmYidSdL9LM,705
|
|
55
55
|
mlrun/common/schemas/hub.py,sha256=cuv_vpkO27XNCZzfytnUyi0k0ZA4wf_QRn5B0ZPoK-Y,4116
|
|
56
56
|
mlrun/common/schemas/k8s.py,sha256=nmMnhgjVMLem5jyumoG2eQKioGK9eUVhQnOSb3hG7yw,1395
|
|
57
57
|
mlrun/common/schemas/memory_reports.py,sha256=tpS3fpvxa6VcBpzCRzcZTt0fCF0h6ReUetYs7j6kdps,892
|
|
58
|
-
mlrun/common/schemas/notification.py,sha256=
|
|
58
|
+
mlrun/common/schemas/notification.py,sha256=BsDjHHH1k8OW2bTi49ww77LIfvjVFde7Btv9vILxcvs,4404
|
|
59
59
|
mlrun/common/schemas/object.py,sha256=VleJSUmDJMl92knLgaDE8SWCi3ky0UaHcwcwOIapPQ8,1980
|
|
60
60
|
mlrun/common/schemas/pagination.py,sha256=q7nk6bipkDiE7HExIVqhy5ANl-zv0x8QC9Kg6AkLtDA,887
|
|
61
61
|
mlrun/common/schemas/pipeline.py,sha256=MhH07_fAQXNAnmf5j6oXZp8qh9cxGcZlReMdt-ZJf40,1429
|
|
@@ -66,20 +66,20 @@ mlrun/common/schemas/runtime_resource.py,sha256=2rSuYL-9JkESSomlnU91mYDbfV-IkqZe
|
|
|
66
66
|
mlrun/common/schemas/schedule.py,sha256=nD9kxH2KjXkbGZPNfzVNlNSxbyFZmZUlwtT04_z2xCw,4289
|
|
67
67
|
mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
|
|
68
68
|
mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
|
|
69
|
-
mlrun/common/schemas/workflow.py,sha256=
|
|
69
|
+
mlrun/common/schemas/workflow.py,sha256=WxmlwtwrzwL4lfHYjQTOp03uv6PWYMpZ4cNBMOA6N6E,1897
|
|
70
70
|
mlrun/common/schemas/model_monitoring/__init__.py,sha256=uCnHhhVZkWbbtsawIjOa3ub9ShDJK2md-s2fbx46crg,1792
|
|
71
71
|
mlrun/common/schemas/model_monitoring/constants.py,sha256=YaKwvMHhJVIwFJDsLg2Iu6zCv2YgxdiiJ1owvb5IGGk,9568
|
|
72
72
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=SG13MFUUz_tk6-mWeSx17qcdEW4ekicxqNtnMSwRTCY,1559
|
|
73
73
|
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=FdKbO8Lb_SDrEXtEHn19GEiAWUWLd_fS6bk0ytanhmo,13762
|
|
74
74
|
mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
|
|
75
|
-
mlrun/data_types/data_types.py,sha256=
|
|
75
|
+
mlrun/data_types/data_types.py,sha256=3dmmIxJ2_uKzf-dbbgOwbYJx8cvUYrPiQan40vcSqJo,4948
|
|
76
76
|
mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
|
|
77
77
|
mlrun/data_types/spark.py,sha256=xfcr6lcaLcHepnrHavx_vacMJK7BC8FWsUKjwrjjn6w,9509
|
|
78
78
|
mlrun/data_types/to_pandas.py,sha256=-ZbJBg00x4xxyqqqu3AVbEh-HaO2--DrChyPuedRhHA,11215
|
|
79
79
|
mlrun/datastore/__init__.py,sha256=8WvgHF245fvU9u98ctRqosvEmQ9iAKKIIS_dSgj_fmU,4153
|
|
80
80
|
mlrun/datastore/alibaba_oss.py,sha256=-RMA4vCE4rar-D57Niy3tY_6bXKHLFpMp28z5YR7-jI,4888
|
|
81
81
|
mlrun/datastore/azure_blob.py,sha256=9qkgrEMXGiuYYcc6b6HkuHlRHDbl0p7tIzeWxAAcEVs,12724
|
|
82
|
-
mlrun/datastore/base.py,sha256=
|
|
82
|
+
mlrun/datastore/base.py,sha256=2tGtl1S59SVkk3ZaIZ_Fm2UgAdHtByXUWu3cR36aAYk,26231
|
|
83
83
|
mlrun/datastore/datastore.py,sha256=F2i8XI2hkQwf51OjqdFZ8179oHvDfQtaT5pvfkvMV9U,9389
|
|
84
84
|
mlrun/datastore/datastore_profile.py,sha256=ZCU-brdRNXNE8EnknzFljtWjciEJ9sGZnoahFxbdEt4,18940
|
|
85
85
|
mlrun/datastore/dbfs_store.py,sha256=mylyl-evK3CVe5fx6rwawITxPIc2YVbw5WHGbL24jtM,6516
|
|
@@ -94,8 +94,8 @@ mlrun/datastore/sources.py,sha256=op90ksx95wqaBtoiORpHnqEgw4iGEDPsJ3_lI8ftS-E,48
|
|
|
94
94
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
95
95
|
mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
|
|
96
96
|
mlrun/datastore/store_resources.py,sha256=rcLoG506AMmR8qPJU_gE-G5d34VJVV_vNlZ3VHqho6c,6869
|
|
97
|
-
mlrun/datastore/storeytargets.py,sha256=
|
|
98
|
-
mlrun/datastore/targets.py,sha256=
|
|
97
|
+
mlrun/datastore/storeytargets.py,sha256=t1TCqeXr2GZ-w_tgKhPyubOtlFRcYAnvXXR3peR0T-8,5015
|
|
98
|
+
mlrun/datastore/targets.py,sha256=TkG2HG4h7SaQ3qG2sKAHAuJJyj_gnE-eChaIsyjlq1o,80450
|
|
99
99
|
mlrun/datastore/utils.py,sha256=l9dLZb_VCbHs_htqMFRv4qiestZ8z8K-4eY1MxHS8wE,7720
|
|
100
100
|
mlrun/datastore/v3io.py,sha256=HxP6mygiYM6leDAbQ9KdTxObLCt9yGMro0YhfdU6KUo,8157
|
|
101
101
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
@@ -104,10 +104,10 @@ mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
|
104
104
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
105
105
|
mlrun/db/base.py,sha256=VztBik6tUYFKGRVXIsXZE7HrALx0hO_sgpCcE2O0cLU,24156
|
|
106
106
|
mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
|
|
107
|
-
mlrun/db/httpdb.py,sha256=
|
|
108
|
-
mlrun/db/nopdb.py,sha256=
|
|
107
|
+
mlrun/db/httpdb.py,sha256=VzfHIdqKLd9KFF7RV0qx2f6znyz413bNQNL8zRZ29Yw,184207
|
|
108
|
+
mlrun/db/nopdb.py,sha256=Juj4Wq9r6IRBdsktFL7TT7T3ueuEouKOHlLAvRvp9n0,21479
|
|
109
109
|
mlrun/feature_store/__init__.py,sha256=FhHRc8NdqL_HWpCs7A8dKruxJS5wEm55Gs3dcgBiRUg,1522
|
|
110
|
-
mlrun/feature_store/api.py,sha256=
|
|
110
|
+
mlrun/feature_store/api.py,sha256=SWBbFD4KU2U4TUaAbD2hRLSquFWxX46mZGCToI0GfFQ,49994
|
|
111
111
|
mlrun/feature_store/common.py,sha256=mSlfEj_LIbtM-pNiIWUGIdX0Z0y5ZoH5nKow7KMc5VQ,12673
|
|
112
112
|
mlrun/feature_store/feature_set.py,sha256=qD8RqkeoJFbJMMK5-zjs-27DC4UXQiQSokkt4pdMzkw,56027
|
|
113
113
|
mlrun/feature_store/feature_vector.py,sha256=HAhAX9peGdTBT_rbWRJyAnMM836OImMI3q7RbU7urjE,44169
|
|
@@ -118,15 +118,15 @@ mlrun/feature_store/retrieval/base.py,sha256=zgDsRsYQz8eqReKBEeTP0O4UoLoVYjWpO1o
|
|
|
118
118
|
mlrun/feature_store/retrieval/dask_merger.py,sha256=t60xciYp6StUQLEyFyI4JK5NpWkdBy2MGCs6beimaWU,5575
|
|
119
119
|
mlrun/feature_store/retrieval/job.py,sha256=xNIe3fAZ-wQ_sVLG2iTMLrnWSRIJ3EbDR10mnUUiSKE,8593
|
|
120
120
|
mlrun/feature_store/retrieval/local_merger.py,sha256=jM-8ta44PeNUc1cKMPs-TxrO9t8pXbwu_Tw8MZrLxUY,4513
|
|
121
|
-
mlrun/feature_store/retrieval/spark_merger.py,sha256=
|
|
121
|
+
mlrun/feature_store/retrieval/spark_merger.py,sha256=PM7BXSfhAngcMGN8Vjhbnw6TSes63nGPg2IlNaBlC_A,10662
|
|
122
122
|
mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
|
|
123
123
|
mlrun/frameworks/__init__.py,sha256=qRHe_nUfxpoLaSASAkIxcW6IyunMtxq5LXhjzZMO_1E,743
|
|
124
|
-
mlrun/frameworks/parallel_coordinates.py,sha256=
|
|
124
|
+
mlrun/frameworks/parallel_coordinates.py,sha256=XY2C1Q29VWxcWIsIhcluUivpEHglr8PcZHCMs2MH4GM,11485
|
|
125
125
|
mlrun/frameworks/_common/__init__.py,sha256=7afutDCDVp999gyWSWQZMJRKGuW3VP3MFil8cobRsyg,962
|
|
126
126
|
mlrun/frameworks/_common/artifacts_library.py,sha256=f0rtDRQI3BYT2ZvXR4drSXZPYPJG19Sbej-_ru-i0II,8497
|
|
127
127
|
mlrun/frameworks/_common/mlrun_interface.py,sha256=HbnE1jtApNjMog3fhd40Ayq6mos_vFUx5ICGEgFzNEA,20999
|
|
128
128
|
mlrun/frameworks/_common/model_handler.py,sha256=OkC4CZP2F7XME58bO6a0mMvCf1qb8j95JM5Su4YXeeo,55312
|
|
129
|
-
mlrun/frameworks/_common/plan.py,sha256=
|
|
129
|
+
mlrun/frameworks/_common/plan.py,sha256=Yr98b5lkCV0K0u_krnU8gZJiXj14xfrFjJ6xD6QJdn0,3444
|
|
130
130
|
mlrun/frameworks/_common/producer.py,sha256=OMRrV-auRIzdUbxp612QE7zTwkik1nBRvP4gBS7kvLo,5727
|
|
131
131
|
mlrun/frameworks/_common/utils.py,sha256=NqoKbgj6UGPMBNhpK6mkKK4GOt5ko1lDqExFhQm9oEc,9131
|
|
132
132
|
mlrun/frameworks/_dl_common/__init__.py,sha256=t4GWqonje9xSOPKTxFBjiOaK57l06ALmIXi4EJsG9LM,750
|
|
@@ -140,7 +140,7 @@ mlrun/frameworks/_ml_common/__init__.py,sha256=0Tf6dl15IuJ41aokIpDmcGbV_aczHniZ1
|
|
|
140
140
|
mlrun/frameworks/_ml_common/artifacts_library.py,sha256=eHCrc43NjLYSOcixiW31SQ-SoxAvBBNf2W5Xb-4W48U,3145
|
|
141
141
|
mlrun/frameworks/_ml_common/model_handler.py,sha256=3iDzjCooqKJutXAa4B2sgaUArV_f1KzWPJDn7k4l7Zs,16885
|
|
142
142
|
mlrun/frameworks/_ml_common/pkl_model_server.py,sha256=NbaEveUcpNXsiJIlc7kdeYfjcVPsTs9blsygxtAXB0k,2717
|
|
143
|
-
mlrun/frameworks/_ml_common/plan.py,sha256=
|
|
143
|
+
mlrun/frameworks/_ml_common/plan.py,sha256=B1jiFpGAZeYDLEXlY5dne_GCoF4os4E0TtnfELsFNsc,4864
|
|
144
144
|
mlrun/frameworks/_ml_common/producer.py,sha256=5sCFmr38zg_ZTZUvukVti0-z2VP6d-vBhQbIOEPwJf0,4061
|
|
145
145
|
mlrun/frameworks/_ml_common/utils.py,sha256=_PGPTG4uqk4tYjtu-X-0qInMgYEiN_UxYDG4GsPplYo,10477
|
|
146
146
|
mlrun/frameworks/_ml_common/loggers/__init__.py,sha256=AWw6H8xG4237XGzqNKIhO-wbzBRREHaY_AXF-NRLBNo,737
|
|
@@ -206,45 +206,45 @@ mlrun/frameworks/xgboost/model_handler.py,sha256=e7IwdrmAaQ5Yy_fqOirN7oi-xEJgg_G
|
|
|
206
206
|
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
207
207
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
208
208
|
mlrun/launcher/base.py,sha256=ud1qc2v66-84haAVBuQ2e0IsOzvd_bleSVVImwNWhwE,16461
|
|
209
|
-
mlrun/launcher/client.py,sha256=
|
|
209
|
+
mlrun/launcher/client.py,sha256=FXzQQqrSVE9oapLjjUYvx5qhZPG1r4ynUjUUFZVPekE,6228
|
|
210
210
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
211
211
|
mlrun/launcher/local.py,sha256=pP9-ZrNL8OnNDEiXTAKAZQnmLpS_mCc2v-mJw329eks,11269
|
|
212
212
|
mlrun/launcher/remote.py,sha256=tGICSfWtvUHeR31mbzy6gqHejmDxjPUgjtxXTWhRubg,7699
|
|
213
213
|
mlrun/model_monitoring/__init__.py,sha256=dm5_j0_pwqrdzFwTaEtGnKfv2nVpNaM56nBI-oqLbNU,879
|
|
214
214
|
mlrun/model_monitoring/api.py,sha256=L5f4mum-zv-4kMTqJDHWWzNnVcoGYDxf3zvpS-U4rQc,28596
|
|
215
215
|
mlrun/model_monitoring/application.py,sha256=RJ8HeAPfGO3P2A_dEZYNg60c1wKTADh2YSv8BQ5embg,745
|
|
216
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
216
|
+
mlrun/model_monitoring/controller.py,sha256=ZKp3mWMhj6irCuREs-OH1MYYh5DzqNEDe04kVPVrZzw,27971
|
|
217
217
|
mlrun/model_monitoring/evidently_application.py,sha256=iOc42IVjj8m6PDBmVcKIMWm46Bu0EdO9SDcH40Eqhyo,769
|
|
218
218
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
219
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
219
|
+
mlrun/model_monitoring/helpers.py,sha256=zoUfwo0IMOBa71p-DQgxS2lnpX3STcCv-XgClnBqWOU,12770
|
|
220
220
|
mlrun/model_monitoring/model_endpoint.py,sha256=7VX0cBATqLsA4sSinDzouf41ndxqh2mf5bO9BW0G5Z4,4017
|
|
221
221
|
mlrun/model_monitoring/stream_processing.py,sha256=0eu1Gq1Obq87LFno6eIZ55poXoFaeloqYTLiQgyfd0k,38687
|
|
222
222
|
mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
|
|
223
|
-
mlrun/model_monitoring/writer.py,sha256=
|
|
223
|
+
mlrun/model_monitoring/writer.py,sha256=TrBwngRmdwr67De71UCcCFsJOfcqQe8jDp0vkBvGf0o,10177
|
|
224
224
|
mlrun/model_monitoring/applications/__init__.py,sha256=i793GqYee01mRh_KD6GShvX7UbPBgdJDO4qf9Z3BXEQ,970
|
|
225
225
|
mlrun/model_monitoring/applications/_application_steps.py,sha256=fvZbtat7eXe5mo927_jyhq4BqWCapKZn7OVjptepIAI,7055
|
|
226
226
|
mlrun/model_monitoring/applications/base.py,sha256=snr3xYdqv6Po19yS0Z1VktyoLrbl88lljSFQyjnKjR0,11616
|
|
227
227
|
mlrun/model_monitoring/applications/context.py,sha256=jTZaRdPZBc2m8-rcC3gKFkSsaQByWn6ZCQuqCOOWdWo,12747
|
|
228
228
|
mlrun/model_monitoring/applications/evidently_base.py,sha256=6hzfO6s0jEVHj4R_pujcn_p6LvdkKUDb9S4B6j2XEUY,8024
|
|
229
229
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=OOPojE-KIP9rAPZ6va6uJOjqJOb3c8K_VAmITXZd918,13341
|
|
230
|
-
mlrun/model_monitoring/applications/results.py,sha256=
|
|
230
|
+
mlrun/model_monitoring/applications/results.py,sha256=d1Ffsz8rCymus8U3Ei7IUhL3Iie-AEGPsuFlhdQAGg0,3593
|
|
231
231
|
mlrun/model_monitoring/db/__init__.py,sha256=6Ic-X3Fh9XLPYMytmevGNSs-Hii1rAjLLoFTSPwTguw,736
|
|
232
232
|
mlrun/model_monitoring/db/stores/__init__.py,sha256=m6Z6rPQyaufq5oXF3HVUYGDN34biAX1JE1F6OxLN9B8,4752
|
|
233
233
|
mlrun/model_monitoring/db/stores/base/__init__.py,sha256=JufJETW3BXzPhFwbRa8dMf7BFGGZKceIWIMgr5x9n9c,599
|
|
234
234
|
mlrun/model_monitoring/db/stores/base/store.py,sha256=xaiaUwXDYYV1z6e17Ny9IiE3a7pSiEFg8nffdWHSq0A,7517
|
|
235
235
|
mlrun/model_monitoring/db/stores/sqldb/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
236
|
-
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=
|
|
236
|
+
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=9YjYqLue1GV1K4G2VRLVFObySEaIDnGqivvvXDM29to,26154
|
|
237
237
|
mlrun/model_monitoring/db/stores/sqldb/models/__init__.py,sha256=lCiGw9WKPtHAIgrtNS2jyvM5OZvZvogBh76iurNYblg,2453
|
|
238
238
|
mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=V2B5WdQM0KHKq0FNDq61q7tkNJ9fNRbxfnxrholKgjk,5352
|
|
239
239
|
mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=4SfjS0Rz6hSvZwU4s_weQ1jk5IPvaCU1HLum459U5ig,3192
|
|
240
240
|
mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=yJJZppbKj3PsOANS_DXAQFFHKX4cQcm6Pz2DoxRiXMk,1104
|
|
241
241
|
mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
242
|
-
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=
|
|
242
|
+
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=LWVXKTVWAnDHNlbAw7lSQ-J0uq2bclzhmfVOvbGXYUo,27169
|
|
243
243
|
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=Zqh_27I2YAEHk9nl0Z6lUxP7VEfrgrpnwhmHsbi4jnA,4055
|
|
244
244
|
mlrun/model_monitoring/db/tsdb/base.py,sha256=X89X763sDrShfRXE1N-p8k97E8NBs7O1QJFiO-CffLM,18583
|
|
245
245
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
246
246
|
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
247
|
-
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=
|
|
247
|
+
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=1I47m4gbplXYiYgV_RP3mKF7WbfG6cyFJPABXHDMrfs,10524
|
|
248
248
|
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Hb0vcCBP-o0ET78mU4P32fnhUL65QZv-pMuv2lnCby4,1586
|
|
249
249
|
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=CaBTBi-skQzM9kvLjYWNc_I3yrAtvsaN3dAOefanh04,18489
|
|
250
250
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
@@ -273,17 +273,17 @@ mlrun/platforms/__init__.py,sha256=ggSGF7inITs6S-vj9u4S9X_5psgbA0G3GVqf7zu8qYc,2
|
|
|
273
273
|
mlrun/platforms/iguazio.py,sha256=1h5BpdAEQJBg2vIt7ySjUADU0ip5OkaMYr0_VREi9ys,13084
|
|
274
274
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
275
275
|
mlrun/projects/operations.py,sha256=UEpiW4bDscth4pwWcLWF1xz-IU7bnZfckPR7sXp3O-g,19441
|
|
276
|
-
mlrun/projects/pipelines.py,sha256=
|
|
277
|
-
mlrun/projects/project.py,sha256=
|
|
276
|
+
mlrun/projects/pipelines.py,sha256=tFqmE_diKiGURwZPCHVPZmwEKza_gyfpr7F8bLS3plA,40173
|
|
277
|
+
mlrun/projects/project.py,sha256=e6rvQFjFFeQoyHScn-N8tJqDp_2RHhNlBE_8R_kH4Ho,190255
|
|
278
278
|
mlrun/runtimes/__init__.py,sha256=egLM94cDMUyQ1GVABdFGXUQcDhU70lP3k7qSnM_UnHY,9008
|
|
279
279
|
mlrun/runtimes/base.py,sha256=JXWmTIcm3b0klGUOHDlyFNa3bUgsNzQIgWhUQpSZoE0,37692
|
|
280
|
-
mlrun/runtimes/daskjob.py,sha256=
|
|
280
|
+
mlrun/runtimes/daskjob.py,sha256=Ka_xqim8LkCYjp-M_WgteJy6ZN_3qfmLLHvXs7N6pa4,19411
|
|
281
281
|
mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
|
|
282
282
|
mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51PFr8Q4mg,4918
|
|
283
283
|
mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
|
|
284
|
-
mlrun/runtimes/kubejob.py,sha256=
|
|
285
|
-
mlrun/runtimes/local.py,sha256=
|
|
286
|
-
mlrun/runtimes/pod.py,sha256=
|
|
284
|
+
mlrun/runtimes/kubejob.py,sha256=ZhOCfykKI6Z4p5uBDCGTVilgBrLDfo91ySEylNPCQz8,8747
|
|
285
|
+
mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
|
|
286
|
+
mlrun/runtimes/pod.py,sha256=d65UiHsaTx2BOkjTCSeb4MWwMYeR-73hlxgQ9RTAFKk,63829
|
|
287
287
|
mlrun/runtimes/remotesparkjob.py,sha256=3ggRVNod67TRnsM2-Ilr9Sw5OWqkRwHWaiBkGvmWU2c,7357
|
|
288
288
|
mlrun/runtimes/utils.py,sha256=9RnfpZxZEuE2bFVLSaUxBxi2IWsnKoaWF-eljP2FpbA,15637
|
|
289
289
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
@@ -294,20 +294,20 @@ mlrun/runtimes/mpijob/__init__.py,sha256=V_1gQD1VHa0Qvjqgyv8RLouH27Sy9YTwj2ZG62o
|
|
|
294
294
|
mlrun/runtimes/mpijob/abstract.py,sha256=kDWo-IY1FKLZhI30j38Xx9HMhlUvHezfd1DT2ShoxZY,9161
|
|
295
295
|
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
296
296
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
297
|
-
mlrun/runtimes/nuclio/api_gateway.py,sha256=
|
|
298
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
297
|
+
mlrun/runtimes/nuclio/api_gateway.py,sha256=2sHtkVHSS3L1DuV2KNWatJJRxvoGSBOjB6tnqv6SA5w,26730
|
|
298
|
+
mlrun/runtimes/nuclio/function.py,sha256=OgPqTFFpfP-QtwKXq5b114jnKpxAN_okzQ_OWCZv_xI,52290
|
|
299
299
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
300
300
|
mlrun/runtimes/nuclio/serving.py,sha256=X0fYJnidH0S5xrupoTC74OhZz7Tym34iw6hFSzahMCk,29720
|
|
301
301
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
302
|
-
mlrun/runtimes/nuclio/application/application.py,sha256=
|
|
302
|
+
mlrun/runtimes/nuclio/application/application.py,sha256=5XFIg7tgU9kKWwGdMFwB1OJpw79BWwlWUdGiHlDo4AY,29055
|
|
303
303
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=JIIYae6bXzCLf3jXuu49KWPQYoXr_FDQ2Rbo1OWKAd0,3150
|
|
304
304
|
mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
|
|
305
|
-
mlrun/runtimes/sparkjob/spark3job.py,sha256=
|
|
305
|
+
mlrun/runtimes/sparkjob/spark3job.py,sha256=RuwO9Pk1IFaUCFz8zoYLaK3pYT7w07uAjoucYDVtwL8,41327
|
|
306
306
|
mlrun/serving/__init__.py,sha256=-SMRV3q_5cGVPDxRslXPU0zGYZIygs0cSj7WKlOJJUc,1163
|
|
307
307
|
mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
|
|
308
308
|
mlrun/serving/remote.py,sha256=MrFByphQWmIsKXqw-MOwl2Q1hbtWReYVRKvlcKj9pfw,17980
|
|
309
309
|
mlrun/serving/routers.py,sha256=el3-pfh7jXdnobt229jbMagD4WA-elp_ejX54VZQg6k,55347
|
|
310
|
-
mlrun/serving/server.py,sha256=
|
|
310
|
+
mlrun/serving/server.py,sha256=m1HzUDconjowDtheQ71HEKbV7e9A-TUtaCdoqxTH2Pw,22092
|
|
311
311
|
mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
|
|
312
312
|
mlrun/serving/states.py,sha256=e4QGSAnNq_eLPDoojxkMkw7fLgUST5ea_BQTO7jWsTA,60228
|
|
313
313
|
mlrun/serving/utils.py,sha256=lej7XcUPX1MmHkEOi_0KZRGSpfbmpnE0GK_Sn4zLkHY,4025
|
|
@@ -319,12 +319,12 @@ mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgi
|
|
|
319
319
|
mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
|
|
320
320
|
mlrun/track/trackers/mlflow_tracker.py,sha256=O3ROZh6NZ92Ghga8c2FGaYmWLdgTs33GchNJVa8ypkY,23469
|
|
321
321
|
mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
|
|
322
|
-
mlrun/utils/async_http.py,sha256=
|
|
322
|
+
mlrun/utils/async_http.py,sha256=EitI8ndS3kKkB1oAfZ5RvlGMtE4ktzyEuCJd5K9QvSs,11726
|
|
323
323
|
mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
|
|
324
324
|
mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
|
|
325
325
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
326
326
|
mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
|
|
327
|
-
mlrun/utils/helpers.py,sha256=
|
|
327
|
+
mlrun/utils/helpers.py,sha256=112XTi14zIQwqyb0KeDcwLa4vAIm8kG1rBaypjXCffY,59716
|
|
328
328
|
mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
|
|
329
329
|
mlrun/utils/logger.py,sha256=cag2J30-jynIHmHZ2J8RYmVMNhYBGgAoimc5sbk-A1U,10016
|
|
330
330
|
mlrun/utils/regex.py,sha256=b0AUa2THS-ELzJj0grl5b8Stq609F2XomTZkD9SB1fQ,4900
|
|
@@ -334,7 +334,7 @@ mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1
|
|
|
334
334
|
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
335
335
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
336
336
|
mlrun/utils/notifications/notification_pusher.py,sha256=4ecV6JfCtvYpb0kl1-sdg4Cw6XTrAjmmh2olhUenesY,26752
|
|
337
|
-
mlrun/utils/notifications/notification/__init__.py,sha256=
|
|
337
|
+
mlrun/utils/notifications/notification/__init__.py,sha256=o1OgBKFSQoD6g8Lh20Cw-_CLa-FPVaL33Kv6YwKiLGA,2154
|
|
338
338
|
mlrun/utils/notifications/notification/base.py,sha256=hf3BDZ4-bq92MsqofQHt8DZqqlcKbWHscZFvzHdMcw4,4265
|
|
339
339
|
mlrun/utils/notifications/notification/console.py,sha256=MAVk7v5PJ52vdGRv76YcEPixWgV0licBPWGpR01uR40,2643
|
|
340
340
|
mlrun/utils/notifications/notification/git.py,sha256=g_8RksjCboGrKKjyhkePk5nSWrfdT61JkhMeg9EeGcY,6119
|
|
@@ -342,11 +342,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT
|
|
|
342
342
|
mlrun/utils/notifications/notification/slack.py,sha256=wqpFGr5BTvFO5KuUSzFfxsgmyU1Ohq7fbrGeNe9TXOk,7006
|
|
343
343
|
mlrun/utils/notifications/notification/webhook.py,sha256=cb9w1Mc8ENfJBdgan7iiVHK9eVls4-R3tUxmXM-P-8I,4746
|
|
344
344
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
345
|
-
mlrun/utils/version/version.json,sha256=
|
|
345
|
+
mlrun/utils/version/version.json,sha256=2SNY7ygI-aD63JsgGzknLUNHzNvkj2GDLMmmUEeTEPU,89
|
|
346
346
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
347
|
-
mlrun-1.7.
|
|
348
|
-
mlrun-1.7.
|
|
349
|
-
mlrun-1.7.
|
|
350
|
-
mlrun-1.7.
|
|
351
|
-
mlrun-1.7.
|
|
352
|
-
mlrun-1.7.
|
|
347
|
+
mlrun-1.7.0rc45.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
348
|
+
mlrun-1.7.0rc45.dist-info/METADATA,sha256=Uwx_ZH45pJOp1i9093x75g4sp9cKL4azSR8oTeoxf-U,19943
|
|
349
|
+
mlrun-1.7.0rc45.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
350
|
+
mlrun-1.7.0rc45.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
351
|
+
mlrun-1.7.0rc45.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
352
|
+
mlrun-1.7.0rc45.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|