mlrun 1.8.0rc29__py3-none-any.whl → 1.8.0rc31__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 +2 -34
- mlrun/api/schemas/__init__.py +1 -6
- mlrun/artifacts/document.py +3 -3
- mlrun/artifacts/manager.py +1 -0
- mlrun/artifacts/model.py +3 -3
- mlrun/common/model_monitoring/helpers.py +16 -7
- mlrun/common/runtimes/constants.py +5 -0
- mlrun/common/schemas/__init__.py +0 -2
- mlrun/common/schemas/model_monitoring/__init__.py +0 -2
- mlrun/common/schemas/model_monitoring/constants.py +4 -7
- mlrun/common/schemas/model_monitoring/grafana.py +17 -11
- mlrun/config.py +9 -36
- mlrun/datastore/datastore_profile.py +1 -1
- mlrun/datastore/sources.py +14 -13
- mlrun/datastore/storeytargets.py +20 -3
- mlrun/db/httpdb.py +4 -30
- mlrun/k8s_utils.py +2 -5
- mlrun/launcher/base.py +16 -0
- mlrun/model_monitoring/api.py +1 -2
- mlrun/model_monitoring/applications/_application_steps.py +23 -37
- mlrun/model_monitoring/applications/base.py +55 -40
- mlrun/model_monitoring/applications/context.py +0 -3
- mlrun/model_monitoring/applications/results.py +16 -16
- mlrun/model_monitoring/controller.py +35 -31
- mlrun/model_monitoring/db/tsdb/__init__.py +9 -5
- mlrun/model_monitoring/db/tsdb/base.py +60 -39
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +122 -53
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +140 -14
- mlrun/model_monitoring/helpers.py +124 -16
- mlrun/model_monitoring/stream_processing.py +6 -21
- mlrun/projects/pipelines.py +11 -3
- mlrun/projects/project.py +104 -115
- mlrun/run.py +2 -2
- mlrun/runtimes/nuclio/function.py +4 -2
- mlrun/serving/routers.py +3 -4
- mlrun/serving/server.py +10 -8
- mlrun/serving/states.py +12 -2
- mlrun/serving/v2_serving.py +25 -20
- mlrun/utils/async_http.py +32 -19
- mlrun/utils/helpers.py +5 -2
- mlrun/utils/logger.py +14 -10
- mlrun/utils/notifications/notification_pusher.py +25 -0
- mlrun/utils/regex.py +1 -0
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.8.0rc29.dist-info → mlrun-1.8.0rc31.dist-info}/METADATA +4 -4
- {mlrun-1.8.0rc29.dist-info → mlrun-1.8.0rc31.dist-info}/RECORD +50 -50
- {mlrun-1.8.0rc29.dist-info → mlrun-1.8.0rc31.dist-info}/LICENSE +0 -0
- {mlrun-1.8.0rc29.dist-info → mlrun-1.8.0rc31.dist-info}/WHEEL +0 -0
- {mlrun-1.8.0rc29.dist-info → mlrun-1.8.0rc31.dist-info}/entry_points.txt +0 -0
- {mlrun-1.8.0rc29.dist-info → mlrun-1.8.0rc31.dist-info}/top_level.txt +0 -0
mlrun/utils/async_http.py
CHANGED
|
@@ -24,10 +24,17 @@ from aiohttp_retry import ExponentialRetry, RequestParams, RetryClient, RetryOpt
|
|
|
24
24
|
from aiohttp_retry.client import _RequestContext
|
|
25
25
|
|
|
26
26
|
from mlrun.config import config
|
|
27
|
-
from mlrun.errors import err_to_str
|
|
27
|
+
from mlrun.errors import err_to_str
|
|
28
|
+
from mlrun.errors import raise_for_status as ml_raise_for_status
|
|
28
29
|
|
|
29
30
|
from .helpers import logger as mlrun_logger
|
|
30
31
|
|
|
32
|
+
DEFAULT_BLACKLISTED_METHODS = [
|
|
33
|
+
"POST",
|
|
34
|
+
"PUT",
|
|
35
|
+
"PATCH",
|
|
36
|
+
]
|
|
37
|
+
|
|
31
38
|
|
|
32
39
|
class AsyncClientWithRetry(RetryClient):
|
|
33
40
|
"""
|
|
@@ -46,16 +53,6 @@ class AsyncClientWithRetry(RetryClient):
|
|
|
46
53
|
*args,
|
|
47
54
|
**kwargs,
|
|
48
55
|
):
|
|
49
|
-
# do not retry on PUT / PATCH as they might have side effects (not truly idempotent)
|
|
50
|
-
blacklisted_methods = (
|
|
51
|
-
blacklisted_methods
|
|
52
|
-
if blacklisted_methods is not None
|
|
53
|
-
else [
|
|
54
|
-
"POST",
|
|
55
|
-
"PUT",
|
|
56
|
-
"PATCH",
|
|
57
|
-
]
|
|
58
|
-
)
|
|
59
56
|
super().__init__(
|
|
60
57
|
*args,
|
|
61
58
|
retry_options=ExponentialRetryOverride(
|
|
@@ -72,9 +69,13 @@ class AsyncClientWithRetry(RetryClient):
|
|
|
72
69
|
**kwargs,
|
|
73
70
|
)
|
|
74
71
|
|
|
72
|
+
@property
|
|
73
|
+
def retry_options(self) -> "ExponentialRetryOverride":
|
|
74
|
+
return typing.cast(ExponentialRetryOverride, self._retry_options)
|
|
75
|
+
|
|
75
76
|
def methods_blacklist_update_required(self, new_blacklist: str):
|
|
76
77
|
self._retry_options: ExponentialRetryOverride
|
|
77
|
-
return set(self.
|
|
78
|
+
return set(self.retry_options.blacklisted_methods).difference(
|
|
78
79
|
set(new_blacklist)
|
|
79
80
|
)
|
|
80
81
|
|
|
@@ -114,8 +115,8 @@ class ExponentialRetryOverride(ExponentialRetry):
|
|
|
114
115
|
|
|
115
116
|
def __init__(
|
|
116
117
|
self,
|
|
117
|
-
retry_on_exception: bool,
|
|
118
|
-
blacklisted_methods: list[str],
|
|
118
|
+
retry_on_exception: typing.Optional[bool] = True,
|
|
119
|
+
blacklisted_methods: typing.Optional[list[str]] = None,
|
|
119
120
|
*args,
|
|
120
121
|
**kwargs,
|
|
121
122
|
):
|
|
@@ -123,7 +124,12 @@ class ExponentialRetryOverride(ExponentialRetry):
|
|
|
123
124
|
self.retry_on_exception = retry_on_exception
|
|
124
125
|
|
|
125
126
|
# methods that should not be retried
|
|
126
|
-
|
|
127
|
+
# do not retry on PUT / PATCH as they might have side effects (not truly idempotent)
|
|
128
|
+
self.blacklisted_methods = (
|
|
129
|
+
blacklisted_methods
|
|
130
|
+
if blacklisted_methods is not None
|
|
131
|
+
else DEFAULT_BLACKLISTED_METHODS
|
|
132
|
+
)
|
|
127
133
|
|
|
128
134
|
# default exceptions that should be retried on (when retry_on_exception is True)
|
|
129
135
|
if "exceptions" not in kwargs:
|
|
@@ -136,6 +142,10 @@ class _CustomRequestContext(_RequestContext):
|
|
|
136
142
|
Extends by adding retry logic on both error statuses and certain exceptions.
|
|
137
143
|
"""
|
|
138
144
|
|
|
145
|
+
@property
|
|
146
|
+
def retry_options(self) -> ExponentialRetryOverride:
|
|
147
|
+
return typing.cast(ExponentialRetryOverride, self._retry_options)
|
|
148
|
+
|
|
139
149
|
async def _do_request(self) -> aiohttp.ClientResponse:
|
|
140
150
|
current_attempt = 0
|
|
141
151
|
while True:
|
|
@@ -186,9 +196,9 @@ class _CustomRequestContext(_RequestContext):
|
|
|
186
196
|
return response
|
|
187
197
|
|
|
188
198
|
last_attempt = current_attempt == self._retry_options.attempts
|
|
189
|
-
if self.
|
|
199
|
+
if not self._is_status_retryable(response.status) or last_attempt:
|
|
190
200
|
if self._raise_for_status:
|
|
191
|
-
|
|
201
|
+
ml_raise_for_status(response)
|
|
192
202
|
|
|
193
203
|
self._response = response
|
|
194
204
|
return response
|
|
@@ -204,7 +214,7 @@ class _CustomRequestContext(_RequestContext):
|
|
|
204
214
|
)
|
|
205
215
|
|
|
206
216
|
except Exception as exc:
|
|
207
|
-
if not self.
|
|
217
|
+
if not self.retry_options.retry_on_exception:
|
|
208
218
|
self._logger.warning(
|
|
209
219
|
"Request failed, retry on exception is disabled",
|
|
210
220
|
method=params.method,
|
|
@@ -250,7 +260,10 @@ class _CustomRequestContext(_RequestContext):
|
|
|
250
260
|
await asyncio.sleep(retry_wait)
|
|
251
261
|
|
|
252
262
|
def _is_method_retryable(self, method: str):
|
|
253
|
-
return method not in self.
|
|
263
|
+
return method not in self.retry_options.blacklisted_methods
|
|
264
|
+
|
|
265
|
+
def _is_status_retryable(self, status: int):
|
|
266
|
+
return status in self._retry_options.statuses
|
|
254
267
|
|
|
255
268
|
async def _check_response_callback(
|
|
256
269
|
self,
|
mlrun/utils/helpers.py
CHANGED
|
@@ -34,6 +34,7 @@ from importlib import import_module, reload
|
|
|
34
34
|
from os import path
|
|
35
35
|
from types import ModuleType
|
|
36
36
|
from typing import Any, Optional
|
|
37
|
+
from urllib.parse import urlparse
|
|
37
38
|
|
|
38
39
|
import git
|
|
39
40
|
import inflection
|
|
@@ -1736,7 +1737,9 @@ setting partitioned=False"""
|
|
|
1736
1737
|
|
|
1737
1738
|
def is_ecr_url(registry: str) -> bool:
|
|
1738
1739
|
# example URL: <aws_account_id>.dkr.ecr.<region>.amazonaws.com
|
|
1739
|
-
|
|
1740
|
+
parsed_url = urlparse(f"https://{registry}")
|
|
1741
|
+
hostname = parsed_url.hostname
|
|
1742
|
+
return hostname and ".ecr." in hostname and hostname.endswith(".amazonaws.com")
|
|
1740
1743
|
|
|
1741
1744
|
|
|
1742
1745
|
def get_local_file_schema() -> list:
|
|
@@ -2034,7 +2037,7 @@ class Workflow:
|
|
|
2034
2037
|
pod_phase
|
|
2035
2038
|
)
|
|
2036
2039
|
function["status"] = {"state": state}
|
|
2037
|
-
if isinstance(function["metadata"].get("updated"), datetime
|
|
2040
|
+
if isinstance(function["metadata"].get("updated"), datetime):
|
|
2038
2041
|
function["metadata"]["updated"] = function["metadata"][
|
|
2039
2042
|
"updated"
|
|
2040
2043
|
].isoformat()
|
mlrun/utils/logger.py
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
|
+
import contextvars
|
|
14
15
|
import datetime
|
|
15
16
|
import logging
|
|
16
17
|
import os
|
|
@@ -29,6 +30,8 @@ import pydantic.v1
|
|
|
29
30
|
from mlrun import errors
|
|
30
31
|
from mlrun.config import config
|
|
31
32
|
|
|
33
|
+
context_id_var = contextvars.ContextVar("context_id", default=None)
|
|
34
|
+
|
|
32
35
|
|
|
33
36
|
class _BaseFormatter(logging.Formatter):
|
|
34
37
|
def _json_dump(self, json_object):
|
|
@@ -53,16 +56,24 @@ class _BaseFormatter(logging.Formatter):
|
|
|
53
56
|
json_object,
|
|
54
57
|
option=orjson.OPT_NAIVE_UTC
|
|
55
58
|
| orjson.OPT_SERIALIZE_NUMPY
|
|
59
|
+
| orjson.OPT_NON_STR_KEYS
|
|
56
60
|
| orjson.OPT_SORT_KEYS,
|
|
57
61
|
default=default,
|
|
58
62
|
).decode()
|
|
59
63
|
|
|
60
|
-
|
|
61
|
-
class JSONFormatter(_BaseFormatter):
|
|
62
|
-
def format(self, record) -> str:
|
|
64
|
+
def _record_with(self, record):
|
|
63
65
|
record_with = getattr(record, "with", {})
|
|
64
66
|
if record.exc_info:
|
|
65
67
|
record_with.update(exc_info=format_exception(*record.exc_info))
|
|
68
|
+
if "ctx" not in record_with:
|
|
69
|
+
if (ctx_id := context_id_var.get()) is not None:
|
|
70
|
+
record_with["ctx"] = ctx_id
|
|
71
|
+
return record_with
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
class JSONFormatter(_BaseFormatter):
|
|
75
|
+
def format(self, record) -> str:
|
|
76
|
+
record_with = self._record_with(record)
|
|
66
77
|
record_fields = {
|
|
67
78
|
"datetime": self.formatTime(record, self.datefmt),
|
|
68
79
|
"level": record.levelname.lower(),
|
|
@@ -89,12 +100,6 @@ class HumanReadableFormatter(_BaseFormatter):
|
|
|
89
100
|
more = f": {record_with_encoded}" if record_with_encoded else ""
|
|
90
101
|
return more
|
|
91
102
|
|
|
92
|
-
def _record_with(self, record):
|
|
93
|
-
record_with = getattr(record, "with", {})
|
|
94
|
-
if record.exc_info:
|
|
95
|
-
record_with.update(exc_info=format_exception(*record.exc_info))
|
|
96
|
-
return record_with
|
|
97
|
-
|
|
98
103
|
|
|
99
104
|
class CustomFormatter(HumanReadableFormatter):
|
|
100
105
|
"""
|
|
@@ -353,7 +358,6 @@ class Logger:
|
|
|
353
358
|
self, level, message, *args, exc_info=None, **kw_args
|
|
354
359
|
):
|
|
355
360
|
kw_args.update(self._bound_variables)
|
|
356
|
-
|
|
357
361
|
if kw_args:
|
|
358
362
|
self._logger.log(
|
|
359
363
|
level, message, *args, exc_info=exc_info, extra={"with": kw_args}
|
|
@@ -55,6 +55,7 @@ class _NotificationPusherBase:
|
|
|
55
55
|
event_loop = asyncio.get_event_loop()
|
|
56
56
|
except RuntimeError:
|
|
57
57
|
event_loop = asyncio.new_event_loop()
|
|
58
|
+
asyncio.set_event_loop(event_loop)
|
|
58
59
|
|
|
59
60
|
if not event_loop.is_running():
|
|
60
61
|
event_loop.run_until_complete(async_push_callback())
|
|
@@ -473,6 +474,7 @@ class CustomNotificationPusher(_NotificationPusherBase):
|
|
|
473
474
|
for notification_type, notification in notifications.items()
|
|
474
475
|
if notification.is_async
|
|
475
476
|
}
|
|
477
|
+
self._server_notifications = []
|
|
476
478
|
|
|
477
479
|
@property
|
|
478
480
|
def notifications(self):
|
|
@@ -480,6 +482,10 @@ class CustomNotificationPusher(_NotificationPusherBase):
|
|
|
480
482
|
notifications.update(self._async_notifications)
|
|
481
483
|
return notifications
|
|
482
484
|
|
|
485
|
+
@property
|
|
486
|
+
def server_notifications(self):
|
|
487
|
+
return self._server_notifications
|
|
488
|
+
|
|
483
489
|
def push(
|
|
484
490
|
self,
|
|
485
491
|
message: str,
|
|
@@ -510,6 +516,14 @@ class CustomNotificationPusher(_NotificationPusherBase):
|
|
|
510
516
|
self,
|
|
511
517
|
notification_type: str,
|
|
512
518
|
params: typing.Optional[dict[str, str]] = None,
|
|
519
|
+
name: typing.Optional[str] = None,
|
|
520
|
+
message: typing.Optional[str] = None,
|
|
521
|
+
severity: mlrun.common.schemas.notification.NotificationSeverity = (
|
|
522
|
+
mlrun.common.schemas.notification.NotificationSeverity.INFO
|
|
523
|
+
),
|
|
524
|
+
when: typing.Optional[list[str]] = None,
|
|
525
|
+
condition: typing.Optional[str] = None,
|
|
526
|
+
secret_params: typing.Optional[dict[str, str]] = None,
|
|
513
527
|
):
|
|
514
528
|
if notification_type not in [
|
|
515
529
|
notification_module.NotificationTypes.console,
|
|
@@ -517,6 +531,17 @@ class CustomNotificationPusher(_NotificationPusherBase):
|
|
|
517
531
|
]:
|
|
518
532
|
# We want that only the console and ipython notifications will be notified by the client.
|
|
519
533
|
# The rest of the notifications will be notified by the BE.
|
|
534
|
+
self._server_notifications.append(
|
|
535
|
+
mlrun.model.Notification(
|
|
536
|
+
kind=notification_type,
|
|
537
|
+
name=name,
|
|
538
|
+
message=message,
|
|
539
|
+
severity=severity,
|
|
540
|
+
when=when or runtimes_constants.RunStates.notification_states(),
|
|
541
|
+
params=params,
|
|
542
|
+
secret_params=secret_params,
|
|
543
|
+
)
|
|
544
|
+
)
|
|
520
545
|
return
|
|
521
546
|
|
|
522
547
|
if notification_type in self._async_notifications:
|
mlrun/utils/regex.py
CHANGED
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.0rc31
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -23,8 +23,8 @@ Description-Content-Type: text/markdown
|
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
Requires-Dist: urllib3<1.27,>=1.26.9
|
|
25
25
|
Requires-Dist: GitPython>=3.1.41,~=3.1
|
|
26
|
-
Requires-Dist: aiohttp~=3.
|
|
27
|
-
Requires-Dist: aiohttp-retry~=2.
|
|
26
|
+
Requires-Dist: aiohttp~=3.11
|
|
27
|
+
Requires-Dist: aiohttp-retry~=2.9
|
|
28
28
|
Requires-Dist: click~=8.1
|
|
29
29
|
Requires-Dist: nest-asyncio~=1.0
|
|
30
30
|
Requires-Dist: ipython~=8.10
|
|
@@ -51,7 +51,7 @@ 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.9
|
|
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
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
mlrun/__init__.py,sha256=
|
|
1
|
+
mlrun/__init__.py,sha256=Cqm9U9eCEdLpMejhU2BEhubu0mHL71igJJIwYa738EA,7450
|
|
2
2
|
mlrun/__main__.py,sha256=ysteSDo1LYe_YOXVdIVEJ3BhLPOfBngkEfRg5iaGGg4,46202
|
|
3
|
-
mlrun/config.py,sha256=
|
|
3
|
+
mlrun/config.py,sha256=bW8K3MHK7jommbncuDr5N5EM9yoBqT4kA4DjKQ_1vxA,71264
|
|
4
4
|
mlrun/errors.py,sha256=LkcbXTLANGdsgo2CRX2pdbyNmt--lMsjGv0XZMgP-Nc,8222
|
|
5
5
|
mlrun/execution.py,sha256=FUktsD3puSFjc3LZJU35b-OmFBrBPBNntViCLQVuwnk,50008
|
|
6
6
|
mlrun/features.py,sha256=ReBaNGsBYXqcbgI012n-SO_j6oHIbk_Vpv0CGPXbUmo,15842
|
|
7
|
-
mlrun/k8s_utils.py,sha256
|
|
7
|
+
mlrun/k8s_utils.py,sha256=-RmKAlSBo_qVeJa1bIiwi6TUyuEpb4AhF7wIQ_H5ZJ0,8909
|
|
8
8
|
mlrun/lists.py,sha256=-nbmqScRia0v2IdSHt6Pd0fLRLSEtdB9bSxyD92BWvs,8562
|
|
9
9
|
mlrun/model.py,sha256=Fh8aoMVDiWY7CiMsuLGaA2zCv17DklmW2dbTp3ZpG7M,85368
|
|
10
10
|
mlrun/render.py,sha256=940H9fBBFeghH4dlifbURvtjlvw4GlWdAXezN6ky4rI,13275
|
|
11
|
-
mlrun/run.py,sha256=
|
|
11
|
+
mlrun/run.py,sha256=NScg8Acp62329jryOK5nldu2LYVkIZgSiEEg8IJrQwo,45124
|
|
12
12
|
mlrun/secrets.py,sha256=dZPdkc_zzfscVQepOHUwmzFqnBavDCBXV9DQoH_eIYM,7800
|
|
13
13
|
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
14
|
mlrun/alerts/alert.py,sha256=9kGTtV385Ax-aTm-450HzPwEek9e0c3O3Qln-jXjhFg,15948
|
|
15
|
-
mlrun/api/schemas/__init__.py,sha256=
|
|
15
|
+
mlrun/api/schemas/__init__.py,sha256=UHUqUkMpmGtWuLN9YEwOcRB-J7IB1e59A9gy45rX7uk,14021
|
|
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=
|
|
20
|
-
mlrun/artifacts/manager.py,sha256=
|
|
21
|
-
mlrun/artifacts/model.py,sha256=
|
|
19
|
+
mlrun/artifacts/document.py,sha256=3X1i27NYSd-cOcX-lEvaNTUvwS2UKWXW2EnlfWokrVk,17374
|
|
20
|
+
mlrun/artifacts/manager.py,sha256=MgUF_JYgQ_i7su3fqvK2CZ_uMxXyCB6M1jDr_k6tAYw,16191
|
|
21
|
+
mlrun/artifacts/model.py,sha256=pfhbEIfTpXZ0xubc_PVP2OtQDUj-EThs6HlZnzPQQJU,22144
|
|
22
22
|
mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
|
|
23
23
|
mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
24
24
|
mlrun/common/constants.py,sha256=14xMUX9C5BB-LxsTlMTJQf_Xz2DyRjaK9yeR5dadcDU,3426
|
|
@@ -37,9 +37,9 @@ mlrun/common/formatters/pipeline.py,sha256=oATD3znsuq3s7LipPnZivDPelTX0hJ0MFeeXO
|
|
|
37
37
|
mlrun/common/formatters/project.py,sha256=0G4lhcTAsxQCxd40dKC4894cMH8nKt03BcGyp9wQO14,2102
|
|
38
38
|
mlrun/common/formatters/run.py,sha256=Gcf9lVDqxPMNfWcPX0RJasjTC_N_U0yTBkQ02jOPJ7A,1062
|
|
39
39
|
mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
40
|
-
mlrun/common/model_monitoring/helpers.py,sha256=
|
|
41
|
-
mlrun/common/runtimes/constants.py,sha256=
|
|
42
|
-
mlrun/common/schemas/__init__.py,sha256=
|
|
40
|
+
mlrun/common/model_monitoring/helpers.py,sha256=A2svqjCsZV8FmlimnY9QI_kKIEUJINu6YI7uJfO-Kn0,3173
|
|
41
|
+
mlrun/common/runtimes/constants.py,sha256=PBpCtPixbKjP9aTo6Qqtui6FjWcXbFxhbSzduV4ttc4,12324
|
|
42
|
+
mlrun/common/schemas/__init__.py,sha256=QuMQClP_LvEcUCKp0v2nmA_xUizm644SWvlIdZaP59Q,5335
|
|
43
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
|
|
@@ -72,9 +72,9 @@ mlrun/common/schemas/secret.py,sha256=CCxFYiPwJtDxwg2VVJH9nUG9cAZ2a34IjeuaWv-BYl
|
|
|
72
72
|
mlrun/common/schemas/serving.py,sha256=81ZxlDHP1fm9VPmXZGkjZj2n6cVRmqEN478hsmvv5QA,744
|
|
73
73
|
mlrun/common/schemas/tag.py,sha256=HRZi5QZ4vVGaCr2AMk9eJgcNiAIXmH4YDc8a4fvF770,893
|
|
74
74
|
mlrun/common/schemas/workflow.py,sha256=6u9niXfXpV-_c2rZL97gFIdAnOfM5WK-OCbrM5Kk34s,2108
|
|
75
|
-
mlrun/common/schemas/model_monitoring/__init__.py,sha256=
|
|
76
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
77
|
-
mlrun/common/schemas/model_monitoring/grafana.py,sha256=
|
|
75
|
+
mlrun/common/schemas/model_monitoring/__init__.py,sha256=0mgmCpEAyqytI2Hjpqvp6Q83HvqIl2lUBYN5fO4Eo7c,1849
|
|
76
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=CuaHnTsMaqWfJgfUKpoLsb75JmSGss7USsYlv_C9nOI,12594
|
|
77
|
+
mlrun/common/schemas/model_monitoring/grafana.py,sha256=THQlLfPBevBksta8p5OaIsBaJtsNSXexLvHrDxOaVns,2095
|
|
78
78
|
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=0gBH-KnDDbGLOkiqHtk0_iNIdW-NPVy0TKJnZ1fDcEQ,11807
|
|
79
79
|
mlrun/data_types/__init__.py,sha256=unRo9GGwCmj0hBKBRsXJ2P4BzpQaddlQTvIrVQaKluI,984
|
|
80
80
|
mlrun/data_types/data_types.py,sha256=0_oKLC6-sXL2_nnaDMP_HSXB3fD1nJAG4J2Jq6sGNNw,4998
|
|
@@ -86,7 +86,7 @@ mlrun/datastore/alibaba_oss.py,sha256=k-OHVe08HjMewlkpsT657CbOiVFAfSq9_EqhCE-k86
|
|
|
86
86
|
mlrun/datastore/azure_blob.py,sha256=SzAcHYSXkm8Zpopz2Ea-rWVClH0URocUazcNK04S9W0,12776
|
|
87
87
|
mlrun/datastore/base.py,sha256=5WYsdmE_Nog2mflRfI5bOP9X5qW39xzM0TdVZXxhaHM,26308
|
|
88
88
|
mlrun/datastore/datastore.py,sha256=frUYYP4i8ZmnY8GNXSgN_3x_exRgRPfxrCtAGEUifEU,9478
|
|
89
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
89
|
+
mlrun/datastore/datastore_profile.py,sha256=MEXccb-qr1bnOMtHwBeOC5v2lzUqeH1NFF4k7QLvcjA,23739
|
|
90
90
|
mlrun/datastore/dbfs_store.py,sha256=QkDRzwFnvm7CgEg4NuGxes6tBgKDyhX0CiBUvK8c9pk,6568
|
|
91
91
|
mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
|
|
92
92
|
mlrun/datastore/google_cloud_storage.py,sha256=MnToY6irdhBZ8Wcapqnr1Yq2724LAh2uPO7MAtdWfUY,8716
|
|
@@ -95,11 +95,11 @@ mlrun/datastore/inmem.py,sha256=IsM83nn-3CqmGdLzim7i9ZmJwG6ZGhBZGN6_hszWZnE,2951
|
|
|
95
95
|
mlrun/datastore/redis.py,sha256=QeNMkSz3zQXiXZhFUZcEtViqqbUysGJditbqe5M-J48,5682
|
|
96
96
|
mlrun/datastore/s3.py,sha256=GjJnQLrigCqU9_ukRWv1pKhxfUtrMGFBUp6fmpPXUCY,9224
|
|
97
97
|
mlrun/datastore/snowflake_utils.py,sha256=Wohvnlmq8j1d98RCaknll-iWdZZpSlCrKhUOEy0_-CA,1483
|
|
98
|
-
mlrun/datastore/sources.py,sha256=
|
|
98
|
+
mlrun/datastore/sources.py,sha256=LnFeiYxcotw_H_vIwCORE8fFaJB21XGBG77iJKaYHmI,49240
|
|
99
99
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
100
100
|
mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
|
|
101
101
|
mlrun/datastore/store_resources.py,sha256=PFOMrZ6KH6hBOb0PiO-cHx_kv0UpHu5P2t8_mrR-lS4,6842
|
|
102
|
-
mlrun/datastore/storeytargets.py,sha256=
|
|
102
|
+
mlrun/datastore/storeytargets.py,sha256=NiPoUHxXjWNm4OR6lx2amw0L6n6vLpofY1Hej7wbn7k,5927
|
|
103
103
|
mlrun/datastore/targets.py,sha256=QiEK-mHmUt2qnS2yaBSSKgk8CKqsGU-JoQ9kHoW1bvE,80759
|
|
104
104
|
mlrun/datastore/utils.py,sha256=ZDAzz0W16_JcM6Q9h4RoMbdruM9eA6YGlA5dw8gW8Bw,7754
|
|
105
105
|
mlrun/datastore/v3io.py,sha256=QSYBORRLcJTeM9mt0EaWzyLcdmzrPkqrF7k5uLTam5U,8209
|
|
@@ -110,7 +110,7 @@ mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
|
110
110
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
111
111
|
mlrun/db/base.py,sha256=jVM_M5_K0EyOSEwxQokGTM6dKKsMcy5LnFGDtVpKkgc,30678
|
|
112
112
|
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
113
|
-
mlrun/db/httpdb.py,sha256=
|
|
113
|
+
mlrun/db/httpdb.py,sha256=I_UiwFtwF5kUvyS1aJyF67vCCQ1oPey4J6yo2ApRtW0,230195
|
|
114
114
|
mlrun/db/nopdb.py,sha256=dtyUqnleBN7i59xfgjMB4e-aGM_Oj6ONOIzMKxG3UlM,27113
|
|
115
115
|
mlrun/feature_store/__init__.py,sha256=AVnY2AFUNc2dKxLLUMx2K3Wo1eGviv0brDcYlDnmtf4,1506
|
|
116
116
|
mlrun/feature_store/api.py,sha256=qkojZpzqGAn3r9ww0ynBRKOs8ji8URaK4DSYD4SE-CE,50395
|
|
@@ -211,39 +211,39 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=QcP_mTKBjxvRyWcNnju0BlvXBDOqN
|
|
|
211
211
|
mlrun/frameworks/xgboost/model_handler.py,sha256=e3VLKMmaC9OFoclUPx9buUXYLDe1Ab3zMxXUmL8TMO4,11664
|
|
212
212
|
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
213
213
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
214
|
-
mlrun/launcher/base.py,sha256=
|
|
214
|
+
mlrun/launcher/base.py,sha256=tTON7And0Et9RtvWaisoyEdrFXMjnQD7KSG7K-aw2fE,17088
|
|
215
215
|
mlrun/launcher/client.py,sha256=lJ3y9brmPspgwAZrUPAeu3Dn5B7mh9k3MhrbFKhNDvw,6286
|
|
216
216
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
217
217
|
mlrun/launcher/local.py,sha256=775HY-8S9LFUX5ubGXrLO0N1lVh8bn-DHFmNYuNqQPA,11451
|
|
218
218
|
mlrun/launcher/remote.py,sha256=rLJW4UAnUT5iUb4BsGBOAV3K4R29a0X4lFtRkVKlyYU,7709
|
|
219
219
|
mlrun/model_monitoring/__init__.py,sha256=ELy7njEtZnz09Dc6PGZSFFEGtnwI15bJNWM3Pj4_YIs,753
|
|
220
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
221
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
220
|
+
mlrun/model_monitoring/api.py,sha256=3QoMEmJ523rzoWFRkx6SmZ9s0Y5b3RX8bZZMHUoZnf0,28484
|
|
221
|
+
mlrun/model_monitoring/controller.py,sha256=j6hqNYKhrw37PJZBcW4BgjsCpG7PtVMvFTpnZO95QVQ,29078
|
|
222
222
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
223
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
224
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
223
|
+
mlrun/model_monitoring/helpers.py,sha256=rsWH_u0qPRwS9URYI1yK8hUeQc7jhJ2alvt_RLz63oU,22402
|
|
224
|
+
mlrun/model_monitoring/stream_processing.py,sha256=NcvUdfVzveFzmphU65sFGfxp9Jh5ZKq2tSiWWftML9A,34531
|
|
225
225
|
mlrun/model_monitoring/tracking_policy.py,sha256=PBIGrUYWrwcE5gwXupBIVzOb0QRRwPJsgQm_yLGQxB4,5595
|
|
226
226
|
mlrun/model_monitoring/writer.py,sha256=vbL7bqTyNu8q4bNcebX72sUMybVDAoTWg-CXq4fov3Y,8429
|
|
227
227
|
mlrun/model_monitoring/applications/__init__.py,sha256=QYvzgCutFdAkzqKPD3mvkX_3c1X4tzd-kW8ojUOE9ic,889
|
|
228
|
-
mlrun/model_monitoring/applications/_application_steps.py,sha256=
|
|
229
|
-
mlrun/model_monitoring/applications/base.py,sha256=
|
|
230
|
-
mlrun/model_monitoring/applications/context.py,sha256=
|
|
228
|
+
mlrun/model_monitoring/applications/_application_steps.py,sha256=97taCEkfGx-QO-gD9uKnRF1PDIxQhY7sjPg85GxgIpA,6628
|
|
229
|
+
mlrun/model_monitoring/applications/base.py,sha256=9mRnykWqWnKrtJ6qrov1t6sjEz56YaID9_eh_5Cq7EA,21334
|
|
230
|
+
mlrun/model_monitoring/applications/context.py,sha256=xqbKS61iXE6jBekyW8zjo_E3lxe2D8VepuXG_BA5y2k,14931
|
|
231
231
|
mlrun/model_monitoring/applications/evidently_base.py,sha256=hRjXuXf6xf8sbjGt9yYfGDUGnvS5rV3W7tkJroF3QJA,5098
|
|
232
232
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=G26_4gQfcwDZe3S6SIZ4Uc_qyrHAJ6lDTFOQGkbfQR8,14455
|
|
233
|
-
mlrun/model_monitoring/applications/results.py,sha256=
|
|
233
|
+
mlrun/model_monitoring/applications/results.py,sha256=_qmj6TWT0SR2bi7gUyRKBU418eGgGoLW2_hTJ7S-ock,5782
|
|
234
234
|
mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
|
|
235
235
|
mlrun/model_monitoring/db/_schedules.py,sha256=AKyCJBAt0opNE3K3pg2TjCoD_afk1LKw5TY88rLQ2VA,6097
|
|
236
236
|
mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
|
|
237
|
-
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=
|
|
238
|
-
mlrun/model_monitoring/db/tsdb/base.py,sha256=
|
|
237
|
+
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=GRaQ9b4zNnbJIugRUwR2t5B1nNTtvPPf9RdNLTHRLKA,4645
|
|
238
|
+
mlrun/model_monitoring/db/tsdb/base.py,sha256=iT7ahaCW_4_dCwF4TiXrodTg5fx1JZNMDdhAvjQ-pJk,26590
|
|
239
239
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
240
240
|
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
241
241
|
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=qfKDUZhgteL0mp2A1aP1iMmcthgUMKmZqMUidZjQktQ,12649
|
|
242
242
|
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Uadj0UvAmln2MxDWod-kAzau1uNlqZh981rPhbUH_5M,2857
|
|
243
|
-
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=
|
|
243
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=mFvajKtmZ7EHre7b1px0QdnvHBjcipLr6PrKZekjSwY,32716
|
|
244
244
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
245
245
|
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
|
|
246
|
-
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=
|
|
246
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=foxYWx7OjOfat2SHmzYrG8bIfaQ5NDnBtpDZua_NVGE,41141
|
|
247
247
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
248
248
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
249
249
|
mlrun/package/__init__.py,sha256=v7VDyK9kDOOuDvFo4oiGV2fx-vM1KL7fdN9pGLakhUQ,7008
|
|
@@ -267,8 +267,8 @@ mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3
|
|
|
267
267
|
mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
|
|
268
268
|
mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
|
|
269
269
|
mlrun/projects/operations.py,sha256=VXUlMrouFTls-I-bMhdN5pPfQ34TR7bFQ-NUSWNvl84,20029
|
|
270
|
-
mlrun/projects/pipelines.py,sha256=
|
|
271
|
-
mlrun/projects/project.py,sha256=
|
|
270
|
+
mlrun/projects/pipelines.py,sha256=iSFSklUqhhR_0fvnG9AS4jWgt8kR3NrKo7vW9ehX4uo,48259
|
|
271
|
+
mlrun/projects/project.py,sha256=f1tNPVc_jqeXV0BnyYHEvQC1PZSQOydPvop-6_NlJBg,234476
|
|
272
272
|
mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
|
|
273
273
|
mlrun/runtimes/base.py,sha256=aAEGZKPkcFs30UzURS7al3xYEDDARpJQ8kFhtBKUhik,37845
|
|
274
274
|
mlrun/runtimes/daskjob.py,sha256=JwuGvOiPsxEDHHMMUS4Oie4hLlYYIZwihAl6DjroTY0,19521
|
|
@@ -290,7 +290,7 @@ mlrun/runtimes/mpijob/abstract.py,sha256=JGMjcJ4dvpJbctF6psU9UvYyNCutMxTMgBQeTlz
|
|
|
290
290
|
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
291
291
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
292
292
|
mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
|
|
293
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
293
|
+
mlrun/runtimes/nuclio/function.py,sha256=QCHlcC6ESw7fb0I0nZGv__XVHvGxBGQmtzby9EXhbG8,54097
|
|
294
294
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
295
295
|
mlrun/runtimes/nuclio/serving.py,sha256=SfvRcujt4EYYWwpNSJgozGhbn85OOSmpIrQNSOJYPCs,32222
|
|
296
296
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
@@ -301,34 +301,34 @@ mlrun/runtimes/sparkjob/spark3job.py,sha256=E777WdlSe7Yx2kpg1bK0zZokn93bOQiUbtvt
|
|
|
301
301
|
mlrun/serving/__init__.py,sha256=FhOlOCnBC5HFXOHzSDe4NHBs6mNUDP_Qqy6WMNsCwws,1307
|
|
302
302
|
mlrun/serving/merger.py,sha256=qtPJacx94Tsz_-8L3J_-aS2NEsTdechZkQzJmyHjmig,6195
|
|
303
303
|
mlrun/serving/remote.py,sha256=gxJkj_J3j-sZcVUbUzbAmJafP6t6y4NVFsu0kWmYngA,18818
|
|
304
|
-
mlrun/serving/routers.py,sha256=
|
|
305
|
-
mlrun/serving/server.py,sha256=
|
|
304
|
+
mlrun/serving/routers.py,sha256=tKsOPegKy6FyTfSBWqMEYGQMSKNeqM-9L__tozE6ftU,52978
|
|
305
|
+
mlrun/serving/server.py,sha256=KiNhW0nTV5STZPzR6kEAUFVzCCAX8qv0g9AoCopARrM,23429
|
|
306
306
|
mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
|
|
307
|
-
mlrun/serving/states.py,sha256=
|
|
307
|
+
mlrun/serving/states.py,sha256=MHYkSgb58yOLZ206lUFaOHK-3CToFm2FmjM_ircifc4,70614
|
|
308
308
|
mlrun/serving/utils.py,sha256=k2EIYDWHUGkE-IBI6T0UNT32fw-KySsccIJM_LObI00,4171
|
|
309
309
|
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
310
|
-
mlrun/serving/v2_serving.py,sha256=
|
|
310
|
+
mlrun/serving/v2_serving.py,sha256=ZSNVGY3iR3qKmi5-mr_-TIbZMaaJ_EiMm7jVvkzG4Lo,25044
|
|
311
311
|
mlrun/track/__init__.py,sha256=yVXbT52fXvGKRlc_ByHqIVt7-9L3DRE634RSeQwgXtU,665
|
|
312
312
|
mlrun/track/tracker.py,sha256=CyTU6Qd3_5GGEJ_hpocOj71wvV65EuFYUjaYEUKAL6Q,3575
|
|
313
313
|
mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
|
|
314
314
|
mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
|
|
315
315
|
mlrun/track/trackers/mlflow_tracker.py,sha256=8JnCelnjqqW2L8wjh4fCvEL8r5wYIOzboz3UZj0CyyY,23547
|
|
316
316
|
mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
|
|
317
|
-
mlrun/utils/async_http.py,sha256=
|
|
317
|
+
mlrun/utils/async_http.py,sha256=gzRYlEN4NYpHVvowAGi1gpH_3maQRsjU2hYXo6P4ZtU,12196
|
|
318
318
|
mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
|
|
319
319
|
mlrun/utils/clones.py,sha256=y3zC9QS7z5mLuvyQ6vFd6sJnikbgtDwrBvieQq0sovY,7359
|
|
320
320
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
321
321
|
mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
|
|
322
|
-
mlrun/utils/helpers.py,sha256=
|
|
322
|
+
mlrun/utils/helpers.py,sha256=kaYKV1HoH-DGYSMPEZ_x1yc-1YtU6auGkx4I48XbnbU,72230
|
|
323
323
|
mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
|
|
324
|
-
mlrun/utils/logger.py,sha256=
|
|
325
|
-
mlrun/utils/regex.py,sha256=
|
|
324
|
+
mlrun/utils/logger.py,sha256=RG0m1rx6gfkJ-2C1r_p41MMpPiaDYqaYM2lYHDlNZEU,14767
|
|
325
|
+
mlrun/utils/regex.py,sha256=jbR7IiOp6OO0mg9Fl_cVZCpWb9fL9nTPONCUxCDNWXg,5201
|
|
326
326
|
mlrun/utils/retryer.py,sha256=GzDMeATklqxcKSLYaFYcqioh8e5cbWRxA1_XKrGR1A4,7570
|
|
327
327
|
mlrun/utils/singleton.py,sha256=p1Y-X0mPSs_At092GS-pZCA8CTR62HOqPU07_ZH6-To,869
|
|
328
328
|
mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1294
|
|
329
329
|
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
330
330
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
331
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
331
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=38VcSCraW6Wy_DX10MpHoYQ7N1lQP87FL9os2GQ7IVk,26628
|
|
332
332
|
mlrun/utils/notifications/notification/__init__.py,sha256=9Rfy6Jm8n0LaEDO1VAQb6kIbr7_uVuQhK1pS_abELIY,2581
|
|
333
333
|
mlrun/utils/notifications/notification/base.py,sha256=-9e3XqUixrWwImnTGrIL4enJRSIUP9gMrJVxwaLqeXc,5403
|
|
334
334
|
mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
|
|
@@ -338,11 +338,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
|
|
|
338
338
|
mlrun/utils/notifications/notification/slack.py,sha256=eQvmctTh6wIG5xVOesLLV9S1-UUCu5UEQ9JIJOor3ts,7183
|
|
339
339
|
mlrun/utils/notifications/notification/webhook.py,sha256=NeyIMSBojjjTJaUHmPbxMByp34GxYkl1-16NqzU27fU,4943
|
|
340
340
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
341
|
-
mlrun/utils/version/version.json,sha256=
|
|
341
|
+
mlrun/utils/version/version.json,sha256=SaPAMx9h5srPLn9C27u30d_vVEwOOn2ZKxNhEF1-k-k,89
|
|
342
342
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
343
|
-
mlrun-1.8.
|
|
344
|
-
mlrun-1.8.
|
|
345
|
-
mlrun-1.8.
|
|
346
|
-
mlrun-1.8.
|
|
347
|
-
mlrun-1.8.
|
|
348
|
-
mlrun-1.8.
|
|
343
|
+
mlrun-1.8.0rc31.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
344
|
+
mlrun-1.8.0rc31.dist-info/METADATA,sha256=Dm4rCBBu0WElji39X7P0nCB0-HEGwzx4vLKY7UUWeiM,25985
|
|
345
|
+
mlrun-1.8.0rc31.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
346
|
+
mlrun-1.8.0rc31.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
347
|
+
mlrun-1.8.0rc31.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
348
|
+
mlrun-1.8.0rc31.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|