mlrun 1.7.0rc3__py3-none-any.whl → 1.7.0rc4__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/artifacts/manager.py +6 -1
- mlrun/common/constants.py +1 -0
- mlrun/common/model_monitoring/helpers.py +12 -6
- mlrun/common/schemas/__init__.py +1 -0
- mlrun/common/schemas/client_spec.py +1 -0
- mlrun/common/schemas/common.py +40 -0
- mlrun/common/schemas/model_monitoring/constants.py +4 -1
- mlrun/common/schemas/project.py +2 -0
- mlrun/config.py +20 -15
- mlrun/datastore/azure_blob.py +22 -9
- mlrun/datastore/base.py +15 -25
- mlrun/datastore/datastore.py +19 -8
- mlrun/datastore/datastore_profile.py +47 -5
- mlrun/datastore/google_cloud_storage.py +10 -6
- mlrun/datastore/hdfs.py +51 -0
- mlrun/datastore/redis.py +4 -0
- mlrun/datastore/s3.py +4 -0
- mlrun/datastore/sources.py +29 -43
- mlrun/datastore/targets.py +58 -48
- mlrun/datastore/utils.py +2 -49
- mlrun/datastore/v3io.py +4 -0
- mlrun/db/base.py +34 -0
- mlrun/db/httpdb.py +71 -42
- mlrun/execution.py +3 -3
- mlrun/feature_store/feature_vector.py +2 -2
- mlrun/frameworks/tf_keras/callbacks/logging_callback.py +3 -3
- mlrun/frameworks/tf_keras/model_handler.py +7 -7
- mlrun/k8s_utils.py +10 -5
- mlrun/kfpops.py +19 -10
- mlrun/model.py +5 -0
- mlrun/model_monitoring/api.py +3 -3
- mlrun/model_monitoring/application.py +1 -1
- mlrun/model_monitoring/applications/__init__.py +13 -0
- mlrun/model_monitoring/applications/histogram_data_drift.py +218 -0
- mlrun/model_monitoring/batch.py +9 -111
- mlrun/model_monitoring/controller.py +73 -55
- mlrun/model_monitoring/controller_handler.py +13 -5
- mlrun/model_monitoring/features_drift_table.py +62 -53
- mlrun/model_monitoring/helpers.py +30 -21
- mlrun/model_monitoring/metrics/__init__.py +13 -0
- mlrun/model_monitoring/metrics/histogram_distance.py +127 -0
- mlrun/model_monitoring/stores/kv_model_endpoint_store.py +14 -14
- mlrun/model_monitoring/stores/sql_model_endpoint_store.py +0 -1
- mlrun/package/packagers/pandas_packagers.py +3 -3
- mlrun/package/utils/_archiver.py +3 -1
- mlrun/platforms/iguazio.py +8 -65
- mlrun/projects/pipelines.py +21 -11
- mlrun/projects/project.py +121 -42
- mlrun/runtimes/base.py +21 -2
- mlrun/runtimes/kubejob.py +5 -3
- mlrun/runtimes/local.py +2 -2
- mlrun/runtimes/mpijob/abstract.py +6 -6
- mlrun/runtimes/nuclio/function.py +9 -9
- mlrun/runtimes/nuclio/serving.py +3 -3
- mlrun/runtimes/pod.py +3 -3
- mlrun/runtimes/sparkjob/spark3job.py +3 -3
- mlrun/serving/remote.py +4 -2
- mlrun/serving/server.py +2 -8
- mlrun/utils/async_http.py +3 -3
- mlrun/utils/helpers.py +27 -5
- mlrun/utils/http.py +3 -3
- mlrun/utils/notifications/notification_pusher.py +6 -6
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.0rc3.dist-info → mlrun-1.7.0rc4.dist-info}/METADATA +13 -16
- {mlrun-1.7.0rc3.dist-info → mlrun-1.7.0rc4.dist-info}/RECORD +69 -63
- {mlrun-1.7.0rc3.dist-info → mlrun-1.7.0rc4.dist-info}/LICENSE +0 -0
- {mlrun-1.7.0rc3.dist-info → mlrun-1.7.0rc4.dist-info}/WHEEL +0 -0
- {mlrun-1.7.0rc3.dist-info → mlrun-1.7.0rc4.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.0rc3.dist-info → mlrun-1.7.0rc4.dist-info}/top_level.txt +0 -0
mlrun/serving/server.py
CHANGED
|
@@ -188,7 +188,6 @@ class GraphServer(ModelObj):
|
|
|
188
188
|
|
|
189
189
|
def init_object(self, namespace):
|
|
190
190
|
self.graph.init_object(self.context, namespace, self.load_mode, reset=True)
|
|
191
|
-
return v2_serving_handler if self.context.is_mock else v2_serving_async_handler
|
|
192
191
|
|
|
193
192
|
def test(
|
|
194
193
|
self,
|
|
@@ -339,9 +338,9 @@ def v2_serving_init(context, namespace=None):
|
|
|
339
338
|
**kwargs,
|
|
340
339
|
)
|
|
341
340
|
context.logger.info("Initializing graph steps")
|
|
342
|
-
|
|
341
|
+
server.init_object(namespace or get_caller_globals())
|
|
343
342
|
# set the handler hook to point to our handler
|
|
344
|
-
setattr(context, "mlrun_handler",
|
|
343
|
+
setattr(context, "mlrun_handler", v2_serving_handler)
|
|
345
344
|
setattr(context, "_server", server)
|
|
346
345
|
context.logger.info_with("Serving was initialized", verbose=server.verbose)
|
|
347
346
|
if server.verbose:
|
|
@@ -389,11 +388,6 @@ def v2_serving_handler(context, event, get_body=False):
|
|
|
389
388
|
return context._server.run(event, context, get_body)
|
|
390
389
|
|
|
391
390
|
|
|
392
|
-
async def v2_serving_async_handler(context, event, get_body=False):
|
|
393
|
-
"""hook for nuclio handler()"""
|
|
394
|
-
return await context._server.run(event, context, get_body)
|
|
395
|
-
|
|
396
|
-
|
|
397
391
|
def create_graph_server(
|
|
398
392
|
parameters={},
|
|
399
393
|
load_mode=None,
|
mlrun/utils/async_http.py
CHANGED
|
@@ -137,9 +137,9 @@ class _CustomRequestContext(_RequestContext):
|
|
|
137
137
|
|
|
138
138
|
# enrich user agent
|
|
139
139
|
# will help traceability and debugging
|
|
140
|
-
headers[
|
|
141
|
-
aiohttp.
|
|
142
|
-
|
|
140
|
+
headers[aiohttp.hdrs.USER_AGENT] = (
|
|
141
|
+
f"{aiohttp.http.SERVER_SOFTWARE} mlrun/{config.version}"
|
|
142
|
+
)
|
|
143
143
|
|
|
144
144
|
response: typing.Optional[
|
|
145
145
|
aiohttp.ClientResponse
|
mlrun/utils/helpers.py
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
+
import asyncio
|
|
15
16
|
import enum
|
|
16
17
|
import functools
|
|
17
18
|
import hashlib
|
|
@@ -30,7 +31,6 @@ from os import path
|
|
|
30
31
|
from types import ModuleType
|
|
31
32
|
from typing import Any, Optional
|
|
32
33
|
|
|
33
|
-
import anyio
|
|
34
34
|
import git
|
|
35
35
|
import inflection
|
|
36
36
|
import numpy as np
|
|
@@ -49,6 +49,7 @@ import mlrun.common.schemas
|
|
|
49
49
|
import mlrun.errors
|
|
50
50
|
import mlrun.utils.regex
|
|
51
51
|
import mlrun.utils.version.version
|
|
52
|
+
from mlrun.common.constants import MYSQL_MEDIUMBLOB_SIZE_BYTES
|
|
52
53
|
from mlrun.config import config
|
|
53
54
|
|
|
54
55
|
from .logger import create_logger
|
|
@@ -270,6 +271,17 @@ def validate_artifact_key_name(
|
|
|
270
271
|
)
|
|
271
272
|
|
|
272
273
|
|
|
274
|
+
def validate_inline_artifact_body_size(body: typing.Union[str, bytes, None]) -> None:
|
|
275
|
+
if body and len(body) > MYSQL_MEDIUMBLOB_SIZE_BYTES:
|
|
276
|
+
raise mlrun.errors.MLRunBadRequestError(
|
|
277
|
+
"The body of the artifact exceeds the maximum allowed size. "
|
|
278
|
+
"Avoid embedding the artifact body. "
|
|
279
|
+
"This increases the size of the project yaml file and could affect the project during loading and saving. "
|
|
280
|
+
"More information is available at"
|
|
281
|
+
"https://docs.mlrun.org/en/latest/projects/automate-project-git-source.html#setting-and-registering-the-project-artifacts"
|
|
282
|
+
)
|
|
283
|
+
|
|
284
|
+
|
|
273
285
|
def validate_v3io_stream_consumer_group(
|
|
274
286
|
value: str, raise_on_failure: bool = True
|
|
275
287
|
) -> bool:
|
|
@@ -1464,13 +1476,15 @@ def normalize_project_username(username: str):
|
|
|
1464
1476
|
return username
|
|
1465
1477
|
|
|
1466
1478
|
|
|
1467
|
-
# run_in threadpool is taken from fastapi to allow us to run sync functions in a threadpool
|
|
1468
|
-
# without importing fastapi in the client
|
|
1469
1479
|
async def run_in_threadpool(func, *args, **kwargs):
|
|
1480
|
+
"""
|
|
1481
|
+
Run a sync-function in the loop default thread pool executor pool and await its result.
|
|
1482
|
+
Note that this function is not suitable for CPU-bound tasks, as it will block the event loop.
|
|
1483
|
+
"""
|
|
1484
|
+
loop = asyncio.get_running_loop()
|
|
1470
1485
|
if kwargs:
|
|
1471
|
-
# run_sync doesn't accept 'kwargs', so bind them in here
|
|
1472
1486
|
func = functools.partial(func, **kwargs)
|
|
1473
|
-
return await
|
|
1487
|
+
return await loop.run_in_executor(None, func, *args)
|
|
1474
1488
|
|
|
1475
1489
|
|
|
1476
1490
|
def is_explicit_ack_supported(context):
|
|
@@ -1540,3 +1554,11 @@ def get_local_file_schema() -> list:
|
|
|
1540
1554
|
# The expression `list(string.ascii_lowercase)` generates a list of lowercase alphabets,
|
|
1541
1555
|
# which corresponds to drive letters in Windows file paths such as `C:/Windows/path`.
|
|
1542
1556
|
return ["file"] + list(string.ascii_lowercase)
|
|
1557
|
+
|
|
1558
|
+
|
|
1559
|
+
def is_safe_path(base, filepath, is_symlink=False):
|
|
1560
|
+
# Avoid path traversal attacks by ensuring that the path is safe
|
|
1561
|
+
resolved_filepath = (
|
|
1562
|
+
os.path.abspath(filepath) if not is_symlink else os.path.realpath(filepath)
|
|
1563
|
+
)
|
|
1564
|
+
return base == os.path.commonpath((base, resolved_filepath))
|
mlrun/utils/http.py
CHANGED
|
@@ -109,9 +109,9 @@ class HTTPSessionWithRetry(requests.Session):
|
|
|
109
109
|
def request(self, method, url, **kwargs):
|
|
110
110
|
retry_count = 0
|
|
111
111
|
kwargs.setdefault("headers", {})
|
|
112
|
-
kwargs["headers"][
|
|
113
|
-
"
|
|
114
|
-
|
|
112
|
+
kwargs["headers"]["User-Agent"] = (
|
|
113
|
+
f"{requests.utils.default_user_agent()} mlrun/{config.version}"
|
|
114
|
+
)
|
|
115
115
|
while True:
|
|
116
116
|
try:
|
|
117
117
|
response = super().request(method, url, **kwargs)
|
|
@@ -303,9 +303,9 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
303
303
|
traceback=traceback.format_exc(),
|
|
304
304
|
)
|
|
305
305
|
update_notification_status_kwargs["reason"] = f"Exception error: {str(exc)}"
|
|
306
|
-
update_notification_status_kwargs[
|
|
307
|
-
|
|
308
|
-
|
|
306
|
+
update_notification_status_kwargs["status"] = (
|
|
307
|
+
mlrun.common.schemas.NotificationStatus.ERROR
|
|
308
|
+
)
|
|
309
309
|
raise exc
|
|
310
310
|
finally:
|
|
311
311
|
self._update_notification_status(
|
|
@@ -352,9 +352,9 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
352
352
|
traceback=traceback.format_exc(),
|
|
353
353
|
)
|
|
354
354
|
update_notification_status_kwargs["reason"] = f"Exception error: {str(exc)}"
|
|
355
|
-
update_notification_status_kwargs[
|
|
356
|
-
|
|
357
|
-
|
|
355
|
+
update_notification_status_kwargs["status"] = (
|
|
356
|
+
mlrun.common.schemas.NotificationStatus.ERROR
|
|
357
|
+
)
|
|
358
358
|
raise exc
|
|
359
359
|
finally:
|
|
360
360
|
await mlrun.utils.helpers.run_in_threadpool(
|
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.0rc4
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -44,13 +44,12 @@ Requires-Dist: semver ~=3.0
|
|
|
44
44
|
Requires-Dist: dependency-injector ~=4.41
|
|
45
45
|
Requires-Dist: fsspec ==2023.9.2
|
|
46
46
|
Requires-Dist: v3iofs ~=0.1.17
|
|
47
|
-
Requires-Dist: storey ~=1.7.
|
|
47
|
+
Requires-Dist: storey ~=1.7.5
|
|
48
48
|
Requires-Dist: inflection ~=0.5.0
|
|
49
49
|
Requires-Dist: python-dotenv ~=0.17.0
|
|
50
|
-
Requires-Dist: setuptools ~=
|
|
50
|
+
Requires-Dist: setuptools ~=69.1
|
|
51
51
|
Requires-Dist: deprecated ~=1.2
|
|
52
52
|
Requires-Dist: jinja2 >=3.1.3,~=3.1
|
|
53
|
-
Requires-Dist: anyio ~=3.7
|
|
54
53
|
Requires-Dist: orjson ~=3.9
|
|
55
54
|
Provides-Extra: all
|
|
56
55
|
Requires-Dist: adlfs ==2023.9.0 ; extra == 'all'
|
|
@@ -80,12 +79,11 @@ Requires-Dist: sqlalchemy ~=1.4 ; extra == 'all'
|
|
|
80
79
|
Provides-Extra: api
|
|
81
80
|
Requires-Dist: uvicorn ~=0.27.1 ; extra == 'api'
|
|
82
81
|
Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'api'
|
|
83
|
-
Requires-Dist: apscheduler
|
|
84
|
-
Requires-Dist:
|
|
85
|
-
Requires-Dist:
|
|
86
|
-
Requires-Dist:
|
|
87
|
-
Requires-Dist:
|
|
88
|
-
Requires-Dist: fastapi ~=0.103.2 ; extra == 'api'
|
|
82
|
+
Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'api'
|
|
83
|
+
Requires-Dist: objgraph ~=3.6 ; extra == 'api'
|
|
84
|
+
Requires-Dist: igz-mgmt ~=0.1.0 ; extra == 'api'
|
|
85
|
+
Requires-Dist: humanfriendly ~=10.0 ; extra == 'api'
|
|
86
|
+
Requires-Dist: fastapi ~=0.110.0 ; extra == 'api'
|
|
89
87
|
Requires-Dist: sqlalchemy ~=1.4 ; extra == 'api'
|
|
90
88
|
Requires-Dist: pymysql ~=1.0 ; extra == 'api'
|
|
91
89
|
Requires-Dist: alembic ~=1.9 ; extra == 'api'
|
|
@@ -127,7 +125,7 @@ Provides-Extra: complete-api
|
|
|
127
125
|
Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete-api'
|
|
128
126
|
Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 'complete-api'
|
|
129
127
|
Requires-Dist: alembic ~=1.9 ; extra == 'complete-api'
|
|
130
|
-
Requires-Dist: apscheduler
|
|
128
|
+
Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'complete-api'
|
|
131
129
|
Requires-Dist: avro ~=1.11 ; extra == 'complete-api'
|
|
132
130
|
Requires-Dist: azure-core ~=1.24 ; extra == 'complete-api'
|
|
133
131
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'complete-api'
|
|
@@ -137,23 +135,22 @@ Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'complete-api'
|
|
|
137
135
|
Requires-Dist: dask ~=2023.9.0 ; extra == 'complete-api'
|
|
138
136
|
Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete-api'
|
|
139
137
|
Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete-api'
|
|
140
|
-
Requires-Dist: fastapi ~=0.
|
|
138
|
+
Requires-Dist: fastapi ~=0.110.0 ; extra == 'complete-api'
|
|
141
139
|
Requires-Dist: gcsfs ==2023.9.2 ; extra == 'complete-api'
|
|
142
140
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete-api'
|
|
143
141
|
Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete-api'
|
|
144
|
-
Requires-Dist: humanfriendly ~=
|
|
145
|
-
Requires-Dist: igz-mgmt ~=0.0
|
|
142
|
+
Requires-Dist: humanfriendly ~=10.0 ; extra == 'complete-api'
|
|
143
|
+
Requires-Dist: igz-mgmt ~=0.1.0 ; extra == 'complete-api'
|
|
146
144
|
Requires-Dist: kafka-python ~=2.0 ; extra == 'complete-api'
|
|
147
145
|
Requires-Dist: mlflow ~=2.8 ; extra == 'complete-api'
|
|
148
146
|
Requires-Dist: msrest ~=0.6.21 ; extra == 'complete-api'
|
|
149
|
-
Requires-Dist: objgraph ~=3.
|
|
147
|
+
Requires-Dist: objgraph ~=3.6 ; extra == 'complete-api'
|
|
150
148
|
Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete-api'
|
|
151
149
|
Requires-Dist: pymysql ~=1.0 ; extra == 'complete-api'
|
|
152
150
|
Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
|
|
153
151
|
Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
|
|
154
152
|
Requires-Dist: s3fs ==2023.9.2 ; extra == 'complete-api'
|
|
155
153
|
Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete-api'
|
|
156
|
-
Requires-Dist: sqlite3-to-mysql ~=1.4 ; extra == 'complete-api'
|
|
157
154
|
Requires-Dist: timelength ~=1.1 ; extra == 'complete-api'
|
|
158
155
|
Requires-Dist: uvicorn ~=0.27.1 ; extra == 'complete-api'
|
|
159
156
|
Provides-Extra: dask
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
|
|
2
2
|
mlrun/__main__.py,sha256=vg-HMhJqQ3OYt31YmijjBh6-6AZQVe4FvDYn4MwEpYs,49229
|
|
3
|
-
mlrun/config.py,sha256=
|
|
3
|
+
mlrun/config.py,sha256=xH1gK-yMe6PdUEyB2FCGfoNzDILHak_6H9J-1CdLwUg,62255
|
|
4
4
|
mlrun/errors.py,sha256=HmOAdfpL0bCDisZMUoJPOumneq71ko49Ph-XBL-A4xA,7080
|
|
5
|
-
mlrun/execution.py,sha256=
|
|
5
|
+
mlrun/execution.py,sha256=meZ_qSdTmnpqW7DKv7LdBmuE1Ut34E1RbK2kO0MD_QM,40866
|
|
6
6
|
mlrun/features.py,sha256=nPDvy8tJuxwbRr843oWcnLBrqMJDPUanzn2Sb3BBi6w,15569
|
|
7
|
-
mlrun/k8s_utils.py,sha256=
|
|
8
|
-
mlrun/kfpops.py,sha256=
|
|
7
|
+
mlrun/k8s_utils.py,sha256=YyFZT2WNZrJkcZoqxrkduQgzQ1X-7195O0mmEqvaIug,7023
|
|
8
|
+
mlrun/kfpops.py,sha256=nVQUjLVBhXqkL2OTWJUo4qFIfNVEXUKIXJmRpBW0MVU,30481
|
|
9
9
|
mlrun/lists.py,sha256=ev-gLBPc_az03yQEHrKyDPq_Bjosa4D_XFiVbRIpmRY,8286
|
|
10
|
-
mlrun/model.py,sha256=
|
|
10
|
+
mlrun/model.py,sha256=e9tJG8-wP3gPywDu7wJMNsusLTGpVA9WpBbILFwR5Ns,70583
|
|
11
11
|
mlrun/render.py,sha256=aMH3U2z7ELpW8MwYEGOrqLdEUwMX29shqy6V6-KbgiM,13009
|
|
12
12
|
mlrun/run.py,sha256=Xj9CdKuRFqMGTJ2fV2YTKFlTg45ZgYtrHx8Ooaljgek,42400
|
|
13
13
|
mlrun/secrets.py,sha256=Nl_7ZNSErd-AOH19vVx_PjrLg9bJM9L-BvEYoPolB1c,7776
|
|
@@ -15,24 +15,25 @@ mlrun/api/schemas/__init__.py,sha256=LhfO3myrnLVxC0MYCAc1_LTuqhRlYV3H7BwJkjOu3dQ
|
|
|
15
15
|
mlrun/artifacts/__init__.py,sha256=LxEWcMYPawJYvNOl6H2_UvrxdLTNYfKeZcMEKFZnGgA,1187
|
|
16
16
|
mlrun/artifacts/base.py,sha256=qAM4Tjcduf3unCvYTVV3jzMTqDWgMhYft2O-fVv5kbQ,34970
|
|
17
17
|
mlrun/artifacts/dataset.py,sha256=hKdKtyAJqPWUGs1yefOAxa10s_ar3o7MaO7oiiD_HqU,22360
|
|
18
|
-
mlrun/artifacts/manager.py,sha256=
|
|
18
|
+
mlrun/artifacts/manager.py,sha256=p6CmIJH91vm9DsEZHgHxKYTHU2BvF9IwpLv85cqoHNs,14425
|
|
19
19
|
mlrun/artifacts/model.py,sha256=DXT24CH1ZgQLz9HcWBfjRAEhCBfznoa7-pB52N9qMOI,25205
|
|
20
20
|
mlrun/artifacts/plots.py,sha256=dHt7Ardo4yZWaPtlUN3b78eB8NXV8XKigPP0u0poRl0,15701
|
|
21
21
|
mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
22
|
-
mlrun/common/constants.py,sha256=
|
|
22
|
+
mlrun/common/constants.py,sha256=sIec-l1aj4GHOn__iwX-2A2mbTx5YYeWMLyhMUsWNTQ,707
|
|
23
23
|
mlrun/common/helpers.py,sha256=BAhyuUnZvD_BT43i0_1EszuSbKgZx7bFy2KRIWP0XeA,1087
|
|
24
24
|
mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
|
|
25
25
|
mlrun/common/types.py,sha256=V_jCEFCJZcycFVsPzEToCRQja5bqW0zRAAVaGN_QYxQ,790
|
|
26
26
|
mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
27
27
|
mlrun/common/db/sql_session.py,sha256=Znc8KE2oLy4lg3_vRki1sVlNx59TgDSOTCXfU561hBU,2659
|
|
28
28
|
mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
|
|
29
|
-
mlrun/common/model_monitoring/helpers.py,sha256=
|
|
30
|
-
mlrun/common/schemas/__init__.py,sha256=
|
|
29
|
+
mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
|
|
30
|
+
mlrun/common/schemas/__init__.py,sha256=JZZB7i513MJZUYQgEJ5KxMlTyEfvJJvWKyHB25meS5E,4718
|
|
31
31
|
mlrun/common/schemas/artifact.py,sha256=d6srME_eWn2MpGuqvPQZtePRFkjDfNJgQ6JDd51qVrI,2796
|
|
32
32
|
mlrun/common/schemas/auth.py,sha256=4aiaBy-g8iDQo41_9FQydI49Onak6j4PNsmI79s-vT4,5957
|
|
33
33
|
mlrun/common/schemas/background_task.py,sha256=2qZxib2qrF_nPZj0ncitCG-2jxz2hg1qj0hFc8eswWQ,1707
|
|
34
|
-
mlrun/common/schemas/client_spec.py,sha256=
|
|
34
|
+
mlrun/common/schemas/client_spec.py,sha256=EFYUSstblo13-O0LTwJfnsYmxbGPAypY3idy8SHpq1c,2858
|
|
35
35
|
mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
|
|
36
|
+
mlrun/common/schemas/common.py,sha256=00upzVLPN7O511Q87yt-fvRcDQFbXra4j0_lqMGg6rs,1557
|
|
36
37
|
mlrun/common/schemas/constants.py,sha256=UnnhyLeF-SSjy8KaV5a-TBw4Ws675gueYGiP1fr5NfU,6476
|
|
37
38
|
mlrun/common/schemas/datastore_profile.py,sha256=hJ8q54A8VZKsnOvSIjcllj4MZ1bBhb_EmBgsqpwSF_Y,750
|
|
38
39
|
mlrun/common/schemas/events.py,sha256=ROHJLo_fqYjc96pek7yhAUPpPRIuAR76lwxvNz8LIr8,1026
|
|
@@ -46,7 +47,7 @@ mlrun/common/schemas/memory_reports.py,sha256=tpS3fpvxa6VcBpzCRzcZTt0fCF0h6ReUet
|
|
|
46
47
|
mlrun/common/schemas/notification.py,sha256=Ge7eWNGf_XUFkjOnUkyUOubdEbmXh9z_OSGcSturt4w,1768
|
|
47
48
|
mlrun/common/schemas/object.py,sha256=VleJSUmDJMl92knLgaDE8SWCi3ky0UaHcwcwOIapPQ8,1980
|
|
48
49
|
mlrun/common/schemas/pipeline.py,sha256=GhrIsf5tRUQtQYboZ2feXdMjpFelVvduM-SIQoV5TZw,1177
|
|
49
|
-
mlrun/common/schemas/project.py,sha256=
|
|
50
|
+
mlrun/common/schemas/project.py,sha256=OsWVDDShfgKnNMFXHep7EhbL75_hZmfwKbED10HCRZg,4277
|
|
50
51
|
mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
|
|
51
52
|
mlrun/common/schemas/runs.py,sha256=H9QhaN83cFUN42eE9TLgi1gs6Xdq11oQSZ96ESM94mI,745
|
|
52
53
|
mlrun/common/schemas/runtime_resource.py,sha256=2rSuYL-9JkESSomlnU91mYDbfV-IkqZeXx6OHuMmDxs,1554
|
|
@@ -55,7 +56,7 @@ mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF
|
|
|
55
56
|
mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
|
|
56
57
|
mlrun/common/schemas/workflow.py,sha256=eRoaOBFiWbvP0iwZ6Aof5JmheV81A0-0PGi8L4vuXmI,1823
|
|
57
58
|
mlrun/common/schemas/model_monitoring/__init__.py,sha256=aBpxCS3CqAuhzSIdlqLEfRBneOW0FtID701C00J1L0Q,1415
|
|
58
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
59
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=qEZfe3DabmiDIoTDuYZiKEqXtaIjm19sN91ly0iK_KA,7822
|
|
59
60
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=aiNK8iL_fIzDVO_bj4fted9P6fAwaymcPC2OnRk36po,1431
|
|
60
61
|
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=ct8Jd-08KwrFw2uVjdwO_jmNrbhYmQvHBAPLO7AVpn4,12000
|
|
61
62
|
mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
|
|
@@ -64,36 +65,37 @@ mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,613
|
|
|
64
65
|
mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,9457
|
|
65
66
|
mlrun/data_types/to_pandas.py,sha256=_8_M9WclYNkPeHLo0eXhrnLE6SiLkvNTreeqfJ9G5yY,9945
|
|
66
67
|
mlrun/datastore/__init__.py,sha256=bsRzu39UOocQAAl_nOKCbhxrZhWUEXrAc8WV3zs0VyI,4118
|
|
67
|
-
mlrun/datastore/azure_blob.py,sha256=
|
|
68
|
-
mlrun/datastore/base.py,sha256=
|
|
69
|
-
mlrun/datastore/datastore.py,sha256=
|
|
70
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
68
|
+
mlrun/datastore/azure_blob.py,sha256=W8mR9t3WChITQHJ3oY3DEfFDKKx1wjFNMzB07wf8Il0,9168
|
|
69
|
+
mlrun/datastore/base.py,sha256=XsjmFOeLzkTnokkoEJLYtWdcy1m9V7i1PuE8zHUj9X4,24175
|
|
70
|
+
mlrun/datastore/datastore.py,sha256=yEdiPzMx69zTCMtY4fZ7aQafyAMHynQs2papTQ-Sc0E,9018
|
|
71
|
+
mlrun/datastore/datastore_profile.py,sha256=JSfZaxP1DZRnbRUTu00FEYp-C4bCKJziNgd5xRGrBaI,15985
|
|
71
72
|
mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
|
|
72
73
|
mlrun/datastore/filestore.py,sha256=nS3Ie6jG41NDiW_as9tF8Nu5maaSVEKYKUr1IQtPhuA,3767
|
|
73
|
-
mlrun/datastore/google_cloud_storage.py,sha256=
|
|
74
|
+
mlrun/datastore/google_cloud_storage.py,sha256=ri5bTqTNLij3ujlPoKlptDPi7oN6JgqIiVGWYoEmgsE,6112
|
|
75
|
+
mlrun/datastore/hdfs.py,sha256=jCuuPbnITezNYug9iYNLEJW87GGXSqW6H-UiqAynfdw,1674
|
|
74
76
|
mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,622
|
|
75
77
|
mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
|
|
76
|
-
mlrun/datastore/redis.py,sha256=
|
|
77
|
-
mlrun/datastore/s3.py,sha256=
|
|
78
|
-
mlrun/datastore/sources.py,sha256=
|
|
78
|
+
mlrun/datastore/redis.py,sha256=yJ8xYHAR4DyYzsAMLQmsdzO-VVUTQABkIxcWhVHeUFI,5575
|
|
79
|
+
mlrun/datastore/s3.py,sha256=EIPAXJGZ9kpQVbb_utFFZskDM21fAGz4m6QEAGecABU,8110
|
|
80
|
+
mlrun/datastore/sources.py,sha256=6rK3pmpQ0Mzk1p3yEvMSqiaJOpjXGsMpXOcDYlcHaP8,40060
|
|
79
81
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
80
82
|
mlrun/datastore/spark_utils.py,sha256=50rllp6xXpXY__1LbU7aTXUU5ca8dKAfoskPre3npZo,1611
|
|
81
83
|
mlrun/datastore/store_resources.py,sha256=dfMdFy2urilECtlwLJr5CSG12MA645b-NPYDnbr5s1A,6839
|
|
82
|
-
mlrun/datastore/targets.py,sha256=
|
|
83
|
-
mlrun/datastore/utils.py,sha256=
|
|
84
|
-
mlrun/datastore/v3io.py,sha256=
|
|
84
|
+
mlrun/datastore/targets.py,sha256=Hei-PlXmNpbb9IJ0LOz7gGarvXoD2ca46r_47V3O9Y8,70653
|
|
85
|
+
mlrun/datastore/utils.py,sha256=YKK9q1C0LmveQFnbh1Dkb8LwA4WbOYFTsNxziC8d0E4,5227
|
|
86
|
+
mlrun/datastore/v3io.py,sha256=oCAMpST6sKnjm5CaNsTrcwqk3bvUFzuKBvNFmUJpPfw,9252
|
|
85
87
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
86
88
|
mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
|
|
87
89
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
88
|
-
mlrun/db/base.py,sha256=
|
|
90
|
+
mlrun/db/base.py,sha256=exhNorDB-wxRq0yRUj-cXe5NUB1hR6fe7p9grvw3sWc,18505
|
|
89
91
|
mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
|
|
90
|
-
mlrun/db/httpdb.py,sha256=
|
|
92
|
+
mlrun/db/httpdb.py,sha256=pljaKPnFAPX4zuDHl8KcQ8-nkR-KLrEW9bcXFws4LbE,156837
|
|
91
93
|
mlrun/db/nopdb.py,sha256=7SnfMdusNvtxM0GmFIYLCBnkB-fSnvUtM2hQoF1q--I,14514
|
|
92
94
|
mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
|
|
93
95
|
mlrun/feature_store/api.py,sha256=bO5I_lkIPLv8j3AXYOAseSBI8RrsGwQ9m7isepuADkw,49480
|
|
94
96
|
mlrun/feature_store/common.py,sha256=DKmoRk04NCS1gv7qZuEUa2-g8WsfR6IWjYctcrqKVlg,12853
|
|
95
97
|
mlrun/feature_store/feature_set.py,sha256=iIEFt85Bpc4Q0jNqNXLptVZfULpFBHT5iLSzrZVYvbY,55295
|
|
96
|
-
mlrun/feature_store/feature_vector.py,sha256=
|
|
98
|
+
mlrun/feature_store/feature_vector.py,sha256=2sGbHAXdkm92-R29HXeFxwScvZM4M2gk-t9RteaHc4c,43560
|
|
97
99
|
mlrun/feature_store/ingestion.py,sha256=GZkrke5_JJfA_PGOFc6ekbHKujHgMgqr6t4vop5n_bg,11210
|
|
98
100
|
mlrun/feature_store/steps.py,sha256=bx9pjdiV2teE1wNrigriT2Xp4RQ_TwC46-yboLnpQw0,28882
|
|
99
101
|
mlrun/feature_store/retrieval/__init__.py,sha256=bwA4copPpLQi8fyoUAYtOyrlw0-6f3-Knct8GbJSvRg,1282
|
|
@@ -177,11 +179,11 @@ mlrun/frameworks/sklearn/model_handler.py,sha256=h2fZGq8y_0okTq9ygsRtVwE3IduNYcU
|
|
|
177
179
|
mlrun/frameworks/sklearn/utils.py,sha256=Cg_pSxUMvKe8vBSLQor6JM8u9_ccKJg4Rk5EPDzTsVo,1209
|
|
178
180
|
mlrun/frameworks/tf_keras/__init__.py,sha256=ZHK6lXdu-DY3yRsP4RPAXlkSbQiDdHHIr3ed6cO0Y7E,10447
|
|
179
181
|
mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=L-tPpHmR9mEea6fqkNcbGLgrqdU-_sgCKZewXmD_7Bc,16610
|
|
180
|
-
mlrun/frameworks/tf_keras/model_handler.py,sha256=
|
|
182
|
+
mlrun/frameworks/tf_keras/model_handler.py,sha256=2BFrYc7mKLKmEdgPAzBa8c_OnvSHqO9HXv7At3onrlo,28102
|
|
181
183
|
mlrun/frameworks/tf_keras/model_server.py,sha256=64x0nWFGdEONrye5F1socl8KXhMiia_neAoMzXcPF8A,9529
|
|
182
184
|
mlrun/frameworks/tf_keras/utils.py,sha256=_QWk1YmdRybbUB54vsQFE2_WMuAK0g7eR1ozVbMk0Go,4284
|
|
183
185
|
mlrun/frameworks/tf_keras/callbacks/__init__.py,sha256=ufH33gxHF4erP9RCiM8O2YaXLG6btLIU98gCS_MGFjI,844
|
|
184
|
-
mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=
|
|
186
|
+
mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=5GjK4cfq_5gmyl9L9nJSk8qTwaVH0eGkTnZinE5jjtQ,21855
|
|
185
187
|
mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py,sha256=RuR4tuPNCAeUC_6z6MEdMc_OzejFs3lEMSxvO5k5mUo,8701
|
|
186
188
|
mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py,sha256=bdhMM6ZaCQObhzGry8Sg-uVJ89P7U2nr6RnIQoNDy_Q,28419
|
|
187
189
|
mlrun/frameworks/xgboost/__init__.py,sha256=opkcSxdS4y-FF6EO2KHHmtEqpACk06RU2y6ilnFK-Zc,10276
|
|
@@ -195,23 +197,27 @@ mlrun/launcher/factory.py,sha256=tk6foFWox7f_xaeTgkWTx9ht_5fv0XzLDR8ucdb8oTE,234
|
|
|
195
197
|
mlrun/launcher/local.py,sha256=s6waNbLAUC6qb0bpWWHCq2aveRGUSaEbAL7x1F1cgxQ,10915
|
|
196
198
|
mlrun/launcher/remote.py,sha256=zxPaN6yElLiZ51ABSz8qfnulNXpDFuW_xN3vNy2xiDQ,7475
|
|
197
199
|
mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
|
|
198
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
199
|
-
mlrun/model_monitoring/application.py,sha256=
|
|
200
|
-
mlrun/model_monitoring/batch.py,sha256=
|
|
201
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
202
|
-
mlrun/model_monitoring/controller_handler.py,sha256=
|
|
200
|
+
mlrun/model_monitoring/api.py,sha256=GXQNIVjjoMK-lM2MRRdQxQPnyfNhzm3ZgyxgSTcF3OM,36626
|
|
201
|
+
mlrun/model_monitoring/application.py,sha256=Omy8t8GKqtCachQ67iovM1e0DQ24WXCH7K9QfjJ42Gw,12282
|
|
202
|
+
mlrun/model_monitoring/batch.py,sha256=s2QCB0NW6Aiwy8JXveOb5-ULcwr5cCp4zG1z1yCkkog,39836
|
|
203
|
+
mlrun/model_monitoring/controller.py,sha256=9HIM0Ko2c4D-1d2q4--Bebuch8r6CMZHGrtef5jVZg8,28342
|
|
204
|
+
mlrun/model_monitoring/controller_handler.py,sha256=J9Y9ppLsQaxyYRl21165Rr7QuI9EM-mk-5veAqs4Bi0,1336
|
|
203
205
|
mlrun/model_monitoring/evidently_application.py,sha256=o9PsDsjyRfcbuC1X1gb2ww5nzWCsR_KheabtpxKZ5yY,4824
|
|
204
|
-
mlrun/model_monitoring/features_drift_table.py,sha256=
|
|
205
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
206
|
+
mlrun/model_monitoring/features_drift_table.py,sha256=1HrL11_0zvl8LjKSjluEaE92WlCmGwoeqoBazxYog6M,24866
|
|
207
|
+
mlrun/model_monitoring/helpers.py,sha256=Y7X-YjIaV2LN4Aiski50IEIP0dLCv6uTfzwzS5FVisE,7302
|
|
206
208
|
mlrun/model_monitoring/model_endpoint.py,sha256=BBtxdY5ciormI_al4zshmIp0GN7hGhOCn-hLgpCXek0,3938
|
|
207
209
|
mlrun/model_monitoring/prometheus.py,sha256=cUR4y73GutJB_pA_VCBDl9YtK4PcIJp2wj2rnLVmYi4,7578
|
|
208
210
|
mlrun/model_monitoring/stream_processing.py,sha256=o2EmztZH3SZTawZwcvwCsaxGwNWmoZdw3YS1-YJJG0o,48113
|
|
209
211
|
mlrun/model_monitoring/tracking_policy.py,sha256=9P0oRjFMfoqKY7Zv2rv7abKgnKkiepFJfimWx-LOm0M,5283
|
|
210
212
|
mlrun/model_monitoring/writer.py,sha256=IWPzPenoAkfIxlvn0IdcdB19Nxqmg4mjbo3-RnYWw9A,8669
|
|
213
|
+
mlrun/model_monitoring/applications/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
214
|
+
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=FeEKXYY7ORiBOKNUI45z8Z2xXzzuIKIai1WQnPMc5bU,8005
|
|
215
|
+
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
216
|
+
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
211
217
|
mlrun/model_monitoring/stores/__init__.py,sha256=adU_G07jkD3JUT8__d0jAxs9nNomL7igKmd6uVM9L50,4525
|
|
212
|
-
mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=
|
|
218
|
+
mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=SVHoaG4cfwntPfQMj6ZEzL5lGDYG67orCIAIb5-G9SE,22222
|
|
213
219
|
mlrun/model_monitoring/stores/model_endpoint_store.py,sha256=stinaLq9W1iq2UJiTbPnk28Mvaeail7gwcJYHbrVjfE,5590
|
|
214
|
-
mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=
|
|
220
|
+
mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=S5SA2P2BfLeg5lXCrEnMutghFffdmE59SCnQUiEjP7w,16139
|
|
215
221
|
mlrun/model_monitoring/stores/models/__init__.py,sha256=5Djb73mfM9PxWE5EFUzrpLVLkuGaA34APibi_l-lu8k,1111
|
|
216
222
|
mlrun/model_monitoring/stores/models/base.py,sha256=yC2_u8wTNoP9JHHewYQgWgarP400OgzlqYWpS-N1V4s,2801
|
|
217
223
|
mlrun/model_monitoring/stores/models/mysql.py,sha256=9UYG5FuoVJQoAXP_xrCnbwmTVAm8ba6Bu54R9yg5BJs,1131
|
|
@@ -224,32 +230,32 @@ mlrun/package/packagers_manager.py,sha256=POjI_dH6jji8qIg_0mWlPX-jNKzVTC0VXrXuxE
|
|
|
224
230
|
mlrun/package/packagers/__init__.py,sha256=rpxpuATMoxCMgHDaVamm0uwocy71e0CSXm85Q5X9tkU,769
|
|
225
231
|
mlrun/package/packagers/default_packager.py,sha256=QaZyxm03fRTJy5OGBeyVvSpEqnWj3-hSQVbsCjlTpLM,26625
|
|
226
232
|
mlrun/package/packagers/numpy_packagers.py,sha256=k7Vke41LOp1ExbXCKf4FyahBIDlBqSiYrGPMeH0yI7M,25602
|
|
227
|
-
mlrun/package/packagers/pandas_packagers.py,sha256=
|
|
233
|
+
mlrun/package/packagers/pandas_packagers.py,sha256=KPOZj1yiHxV2b1iah4hlwoNQP4JKzt95Fe9Tn9OUPs8,35761
|
|
228
234
|
mlrun/package/packagers/python_standard_library_packagers.py,sha256=p2IK18m_8sGbw8fPOuUVna-AXI8Nyjj2tz0pROKy3TQ,22322
|
|
229
235
|
mlrun/package/utils/__init__.py,sha256=RXkhPH-zFLFFvOjMRJUVgVT33rusK5J4eTVLJ7bjN6k,1722
|
|
230
|
-
mlrun/package/utils/_archiver.py,sha256=
|
|
236
|
+
mlrun/package/utils/_archiver.py,sha256=EK47v44yZOx2XeM4YGidgszsnrryz2J35f9M2A47bms,7951
|
|
231
237
|
mlrun/package/utils/_formatter.py,sha256=Y6gsFwnY1ulKpnhMNrA3_7jbgVaFCTe69TUyWInFBF0,6373
|
|
232
238
|
mlrun/package/utils/_pickler.py,sha256=aDFbafkOK7K_n0CFn3OBRGD1cDBx7-iGN88zd5ywbWw,10341
|
|
233
239
|
mlrun/package/utils/_supported_format.py,sha256=O3LPTvZ6A-nGi6mB2kTzJp2DQ-cCOgnlvFCiIqetPTY,2357
|
|
234
240
|
mlrun/package/utils/log_hint_utils.py,sha256=40X7oVzCiAIGsTTSON0iYNHj-_1Y4l4SDMThTA85If8,3696
|
|
235
241
|
mlrun/package/utils/type_hint_utils.py,sha256=JYrek6vuN3z7e6MGUD3qBLDfQ03C4puZXNTpDSj-VrM,14695
|
|
236
242
|
mlrun/platforms/__init__.py,sha256=ArWn_iZiEE6qz7hvY_1RqMkFnHGuKjP3k5xYKnfKA58,2352
|
|
237
|
-
mlrun/platforms/iguazio.py,sha256=
|
|
243
|
+
mlrun/platforms/iguazio.py,sha256=M89zXuCd1bbcIANSy4ec-9evXIs7nPRVo3D0YhKvEtE,19434
|
|
238
244
|
mlrun/platforms/other.py,sha256=T1BibmEBNggM62YJ6oejRmcVv_1besfH5DDHhCaDkRg,11828
|
|
239
245
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
240
246
|
mlrun/projects/operations.py,sha256=SiDHd7cqh9u23AVpETbkJE6WmOnB434zBrwM-StZLQY,18538
|
|
241
|
-
mlrun/projects/pipelines.py,sha256=
|
|
242
|
-
mlrun/projects/project.py,sha256=
|
|
247
|
+
mlrun/projects/pipelines.py,sha256=SMXBmIeuopwPpU0o2VFvaPXgbmaj-2WfCJryN6mZvZY,40124
|
|
248
|
+
mlrun/projects/project.py,sha256=fRsf7dVj9F9jpVqp7bnQ7B5fNAFY-tAcpwgMWtkuq_w,155594
|
|
243
249
|
mlrun/runtimes/__init__.py,sha256=vsoNA9ts_VPvGN9YPYKAjkxZe1RaZu22D5t-tiMyP-4,7034
|
|
244
|
-
mlrun/runtimes/base.py,sha256=
|
|
250
|
+
mlrun/runtimes/base.py,sha256=G0OtEBza6I_6AwQPA-k4XhNkbboxwf9g3Q56kowl1V4,36355
|
|
245
251
|
mlrun/runtimes/constants.py,sha256=oP3OxdYCpbvadJ3zP1JGkqGBKaBheNkCnJISWha9x58,9513
|
|
246
252
|
mlrun/runtimes/daskjob.py,sha256=xvN8ajs3-_voqxrfz6b3rh_idNw4ypRAkPRWGOnDMGA,19149
|
|
247
253
|
mlrun/runtimes/funcdoc.py,sha256=FHwnLfFzoD6yGlsAJXAl_3VTtudgg4fTrsw_XqLOkC0,10508
|
|
248
254
|
mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51PFr8Q4mg,4918
|
|
249
255
|
mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
|
|
250
|
-
mlrun/runtimes/kubejob.py,sha256=
|
|
251
|
-
mlrun/runtimes/local.py,sha256=
|
|
252
|
-
mlrun/runtimes/pod.py,sha256=
|
|
256
|
+
mlrun/runtimes/kubejob.py,sha256=UfSm7hiPLAtM0TfIE5nbBdSvrbsKWCZfvKP-SZhGyAk,12500
|
|
257
|
+
mlrun/runtimes/local.py,sha256=u9MhASzF7VRt_yT6_mZPze_hDvAaBxonPk_KafRG3Gg,21783
|
|
258
|
+
mlrun/runtimes/pod.py,sha256=6s-ZLNudzoILXfpvb0_DPWujMrKXaza_yc2rfId8wss,58650
|
|
253
259
|
mlrun/runtimes/remotesparkjob.py,sha256=ORkKmZRz_V3YiNE1NF7JIa_hI_LWbKEyI15Qb6R6g5I,7326
|
|
254
260
|
mlrun/runtimes/utils.py,sha256=G4t29elE2PBT7WQZmrEOTIFAJUmeu6zXGEWwgz533vg,16004
|
|
255
261
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
@@ -257,20 +263,20 @@ mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=sIqIg5DQAf4j0wCPA
|
|
|
257
263
|
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=a9W7A8sboteQov0Z9uVcthEU3FGYFf2cdAsi-vdjH1w,12749
|
|
258
264
|
mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=-kzz5b3YBit6sGWojjREW_aHHRTx72zzTbxWGxvUplE,8679
|
|
259
265
|
mlrun/runtimes/mpijob/__init__.py,sha256=jZf2uPBv6IB18Jj-dGSQ9NU5_xxni7XS4dnDZGwESFE,1583
|
|
260
|
-
mlrun/runtimes/mpijob/abstract.py,sha256=
|
|
266
|
+
mlrun/runtimes/mpijob/abstract.py,sha256=AqIb-nEKZaRO7x1GxJea6cXg_Tn3Dr4WiWZUz3ywCjU,9161
|
|
261
267
|
mlrun/runtimes/mpijob/v1.py,sha256=_RUlFo_3NcFf7x-QpUNVm8f7qNbRDIdUmPf_ijrv54U,3206
|
|
262
268
|
mlrun/runtimes/mpijob/v1alpha1.py,sha256=w_971wwL03hW_ksgHJXdjTdjhxCs9KJ0zNqHSQ9whIM,1034
|
|
263
269
|
mlrun/runtimes/nuclio/__init__.py,sha256=5V9oUtyU058xH_n9CiAXWDZJuipTyG3I1RGhBTt7T_0,758
|
|
264
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
270
|
+
mlrun/runtimes/nuclio/function.py,sha256=glnE8K-4rQVfQB2hCeLt8OtcpG2NFwKgEB8aRClcSJ4,47402
|
|
265
271
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
266
|
-
mlrun/runtimes/nuclio/serving.py,sha256=
|
|
272
|
+
mlrun/runtimes/nuclio/serving.py,sha256=hzkXKCVgU6uXLYfO3H15ZWJIQiSbcKY2M_WLybHW1hM,30363
|
|
267
273
|
mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
|
|
268
|
-
mlrun/runtimes/sparkjob/spark3job.py,sha256=
|
|
274
|
+
mlrun/runtimes/sparkjob/spark3job.py,sha256=yU-PxEI2pDJK5LHXTTcmrdjmO1Jwrj5Zyf8NwPDnZyA,41189
|
|
269
275
|
mlrun/serving/__init__.py,sha256=_6HRAOuS2Ehjo3vwx5h1aI_-JppxEAsl4VfEERAbGFE,1078
|
|
270
276
|
mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
|
|
271
|
-
mlrun/serving/remote.py,sha256=
|
|
277
|
+
mlrun/serving/remote.py,sha256=jLFjMfgPx_PwJkpRHYbKrB9EQZcD4gZ-iczzHl1o0zs,18010
|
|
272
278
|
mlrun/serving/routers.py,sha256=YN8k6eWWraqWOU3SqYFda7ky-oV_O0--zAuPEGwKdPI,54976
|
|
273
|
-
mlrun/serving/server.py,sha256=
|
|
279
|
+
mlrun/serving/server.py,sha256=42wWLtMb1AWeXtSXzSv0bKfQkxAQreqxs40Q0C_Bc-c,21161
|
|
274
280
|
mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
|
|
275
281
|
mlrun/serving/states.py,sha256=Jd08eDKSeh_PmR5HEwmCDYmCinOUUUacHwWW_URnjK0,56175
|
|
276
282
|
mlrun/serving/utils.py,sha256=WO0n_YTO0YVPTjp_90zxRl4vey4flDgw5vaOHK5p_qY,3871
|
|
@@ -282,13 +288,13 @@ mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgi
|
|
|
282
288
|
mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
|
|
283
289
|
mlrun/track/trackers/mlflow_tracker.py,sha256=HkNO9fENOCl1DgAU72FclowVnFfmyQlZeWlj4GklvMI,23258
|
|
284
290
|
mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
|
|
285
|
-
mlrun/utils/async_http.py,sha256=
|
|
291
|
+
mlrun/utils/async_http.py,sha256=EeTPE_iCGIAHWna-ISzxrG76WnRpvjLew2N2gDw7sk8,11092
|
|
286
292
|
mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
|
|
287
293
|
mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
|
|
288
294
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
289
295
|
mlrun/utils/db.py,sha256=KEa-vzicUhzIwo1wBXax2ZuXtYgf5to7wnsY3CYCiOQ,1713
|
|
290
|
-
mlrun/utils/helpers.py,sha256=
|
|
291
|
-
mlrun/utils/http.py,sha256=
|
|
296
|
+
mlrun/utils/helpers.py,sha256=guQSdMvQT8KdS2_LHXe0C9pTEC56XtsWNMliSI0i5CQ,51162
|
|
297
|
+
mlrun/utils/http.py,sha256=mQqnCsdsg9_q2WIbgoEKGQpMesslb0ErvbwYV-htarw,8700
|
|
292
298
|
mlrun/utils/logger.py,sha256=MCj18mxDbDV86CV_R2l7_8PoAWZPU-GtmkSbWFkss4w,8135
|
|
293
299
|
mlrun/utils/regex.py,sha256=Nd7xnDHU9PEOsse6rFwLNVgU4AaYCyuwMmQ9qgx2-Vw,4581
|
|
294
300
|
mlrun/utils/retryer.py,sha256=BsST2dbGCHcY46wyGG3zWel_O9YquO0c57P3rcBxXU0,7522
|
|
@@ -296,7 +302,7 @@ mlrun/utils/singleton.py,sha256=p1Y-X0mPSs_At092GS-pZCA8CTR62HOqPU07_ZH6-To,869
|
|
|
296
302
|
mlrun/utils/v3io_clients.py,sha256=7eReciHBPLuLW6b5DIc8emnmrjh4D8hXPuqZDooR6HQ,1284
|
|
297
303
|
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
298
304
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
299
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
305
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=yub2_MDkDGKcnWGL9kulPsiBEB1fyA6VpZkxex_EHFI,21679
|
|
300
306
|
mlrun/utils/notifications/notification/__init__.py,sha256=Kucv9d0x1MBk-6kxpe1-3He6eKCRinPeItcbiJsdDqg,2092
|
|
301
307
|
mlrun/utils/notifications/notification/base.py,sha256=gnmhNl59K9h4BGVAk77gVHWw-3kphchRL3Cwm-R0Cp4,2279
|
|
302
308
|
mlrun/utils/notifications/notification/console.py,sha256=leZrjwu3fFA1sCYsTxDXEGZ02SWTUk4GNzp7tT2uaCc,2532
|
|
@@ -305,11 +311,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=d47s-fW4TgqOJZOSdmzBQvd
|
|
|
305
311
|
mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
|
|
306
312
|
mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
|
|
307
313
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
308
|
-
mlrun/utils/version/version.json,sha256=
|
|
314
|
+
mlrun/utils/version/version.json,sha256=gHF4gBcfnBuVhOFzc6eGMjVwEIMbyScdRcHadPcGqMA,88
|
|
309
315
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
310
|
-
mlrun-1.7.
|
|
311
|
-
mlrun-1.7.
|
|
312
|
-
mlrun-1.7.
|
|
313
|
-
mlrun-1.7.
|
|
314
|
-
mlrun-1.7.
|
|
315
|
-
mlrun-1.7.
|
|
316
|
+
mlrun-1.7.0rc4.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
317
|
+
mlrun-1.7.0rc4.dist-info/METADATA,sha256=cK98mzAZ6SZp3vGbvlgSuC72lt064HWhDulfYclg04Y,18263
|
|
318
|
+
mlrun-1.7.0rc4.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
319
|
+
mlrun-1.7.0rc4.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
320
|
+
mlrun-1.7.0rc4.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
321
|
+
mlrun-1.7.0rc4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|