mlrun 1.8.0rc30__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 -35
- mlrun/api/schemas/__init__.py +1 -6
- mlrun/common/runtimes/constants.py +4 -0
- mlrun/common/schemas/__init__.py +0 -2
- mlrun/common/schemas/model_monitoring/__init__.py +0 -2
- mlrun/common/schemas/model_monitoring/constants.py +1 -6
- mlrun/common/schemas/model_monitoring/grafana.py +17 -11
- mlrun/config.py +9 -36
- mlrun/datastore/storeytargets.py +20 -3
- mlrun/model_monitoring/applications/base.py +55 -40
- mlrun/model_monitoring/applications/results.py +2 -2
- mlrun/model_monitoring/controller.py +4 -3
- 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 +117 -52
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +140 -14
- mlrun/model_monitoring/helpers.py +16 -15
- mlrun/model_monitoring/stream_processing.py +6 -13
- mlrun/projects/pipelines.py +11 -3
- mlrun/projects/project.py +84 -107
- mlrun/serving/states.py +1 -1
- mlrun/serving/v2_serving.py +20 -10
- mlrun/utils/helpers.py +1 -1
- mlrun/utils/logger.py +13 -10
- mlrun/utils/notifications/notification_pusher.py +24 -0
- mlrun/utils/regex.py +1 -0
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.8.0rc30.dist-info → mlrun-1.8.0rc31.dist-info}/METADATA +2 -2
- {mlrun-1.8.0rc30.dist-info → mlrun-1.8.0rc31.dist-info}/RECORD +33 -33
- {mlrun-1.8.0rc30.dist-info → mlrun-1.8.0rc31.dist-info}/LICENSE +0 -0
- {mlrun-1.8.0rc30.dist-info → mlrun-1.8.0rc31.dist-info}/WHEEL +0 -0
- {mlrun-1.8.0rc30.dist-info → mlrun-1.8.0rc31.dist-info}/entry_points.txt +0 -0
- {mlrun-1.8.0rc30.dist-info → mlrun-1.8.0rc31.dist-info}/top_level.txt +0 -0
mlrun/serving/v2_serving.py
CHANGED
|
@@ -115,6 +115,7 @@ class V2ModelServer(StepToDict):
|
|
|
115
115
|
self.shard_by_endpoint = shard_by_endpoint
|
|
116
116
|
self._model_logger = None
|
|
117
117
|
self.initialized = False
|
|
118
|
+
self.output_schema = []
|
|
118
119
|
|
|
119
120
|
def _load_and_update_state(self):
|
|
120
121
|
try:
|
|
@@ -175,17 +176,15 @@ class V2ModelServer(StepToDict):
|
|
|
175
176
|
"Model endpoint creation task name not provided",
|
|
176
177
|
)
|
|
177
178
|
try:
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
.
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
function_tag=server.function_tag or "latest",
|
|
185
|
-
tsdb_metrics=False,
|
|
186
|
-
)
|
|
187
|
-
.metadata.uid
|
|
179
|
+
model_endpoint = mlrun.get_run_db().get_model_endpoint(
|
|
180
|
+
project=server.project,
|
|
181
|
+
name=self.name,
|
|
182
|
+
function_name=server.function_name,
|
|
183
|
+
function_tag=server.function_tag or "latest",
|
|
184
|
+
tsdb_metrics=False,
|
|
188
185
|
)
|
|
186
|
+
self.model_endpoint_uid = model_endpoint.metadata.uid
|
|
187
|
+
self.output_schema = model_endpoint.spec.label_names
|
|
189
188
|
except mlrun.errors.MLRunNotFoundError:
|
|
190
189
|
logger.info(
|
|
191
190
|
"Model endpoint not found for this step; monitoring for this model will not be performed",
|
|
@@ -566,6 +565,17 @@ class _ModelLogPusher:
|
|
|
566
565
|
resp["outputs"] = [
|
|
567
566
|
resp["outputs"][i] for i in sampled_requests_indices
|
|
568
567
|
]
|
|
568
|
+
if self.model.output_schema and len(self.model.output_schema) != len(
|
|
569
|
+
resp["outputs"][0]
|
|
570
|
+
):
|
|
571
|
+
logger.info(
|
|
572
|
+
"The number of outputs returned by the model does not match the number of outputs "
|
|
573
|
+
"specified in the model endpoint.",
|
|
574
|
+
model_endpoint=self.model.name,
|
|
575
|
+
model_endpoint_id=self.model.model_endpoint_uid,
|
|
576
|
+
output_len=len(resp["outputs"][0]),
|
|
577
|
+
schema_len=len(self.model.output_schema),
|
|
578
|
+
)
|
|
569
579
|
|
|
570
580
|
data = self.base_data()
|
|
571
581
|
data["request"] = request
|
mlrun/utils/helpers.py
CHANGED
|
@@ -2037,7 +2037,7 @@ class Workflow:
|
|
|
2037
2037
|
pod_phase
|
|
2038
2038
|
)
|
|
2039
2039
|
function["status"] = {"state": state}
|
|
2040
|
-
if isinstance(function["metadata"].get("updated"), datetime
|
|
2040
|
+
if isinstance(function["metadata"].get("updated"), datetime):
|
|
2041
2041
|
function["metadata"]["updated"] = function["metadata"][
|
|
2042
2042
|
"updated"
|
|
2043
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):
|
|
@@ -58,12 +61,19 @@ class _BaseFormatter(logging.Formatter):
|
|
|
58
61
|
default=default,
|
|
59
62
|
).decode()
|
|
60
63
|
|
|
61
|
-
|
|
62
|
-
class JSONFormatter(_BaseFormatter):
|
|
63
|
-
def format(self, record) -> str:
|
|
64
|
+
def _record_with(self, record):
|
|
64
65
|
record_with = getattr(record, "with", {})
|
|
65
66
|
if record.exc_info:
|
|
66
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)
|
|
67
77
|
record_fields = {
|
|
68
78
|
"datetime": self.formatTime(record, self.datefmt),
|
|
69
79
|
"level": record.levelname.lower(),
|
|
@@ -90,12 +100,6 @@ class HumanReadableFormatter(_BaseFormatter):
|
|
|
90
100
|
more = f": {record_with_encoded}" if record_with_encoded else ""
|
|
91
101
|
return more
|
|
92
102
|
|
|
93
|
-
def _record_with(self, record):
|
|
94
|
-
record_with = getattr(record, "with", {})
|
|
95
|
-
if record.exc_info:
|
|
96
|
-
record_with.update(exc_info=format_exception(*record.exc_info))
|
|
97
|
-
return record_with
|
|
98
|
-
|
|
99
103
|
|
|
100
104
|
class CustomFormatter(HumanReadableFormatter):
|
|
101
105
|
"""
|
|
@@ -354,7 +358,6 @@ class Logger:
|
|
|
354
358
|
self, level, message, *args, exc_info=None, **kw_args
|
|
355
359
|
):
|
|
356
360
|
kw_args.update(self._bound_variables)
|
|
357
|
-
|
|
358
361
|
if kw_args:
|
|
359
362
|
self._logger.log(
|
|
360
363
|
level, message, *args, exc_info=exc_info, extra={"with": kw_args}
|
|
@@ -474,6 +474,7 @@ class CustomNotificationPusher(_NotificationPusherBase):
|
|
|
474
474
|
for notification_type, notification in notifications.items()
|
|
475
475
|
if notification.is_async
|
|
476
476
|
}
|
|
477
|
+
self._server_notifications = []
|
|
477
478
|
|
|
478
479
|
@property
|
|
479
480
|
def notifications(self):
|
|
@@ -481,6 +482,10 @@ class CustomNotificationPusher(_NotificationPusherBase):
|
|
|
481
482
|
notifications.update(self._async_notifications)
|
|
482
483
|
return notifications
|
|
483
484
|
|
|
485
|
+
@property
|
|
486
|
+
def server_notifications(self):
|
|
487
|
+
return self._server_notifications
|
|
488
|
+
|
|
484
489
|
def push(
|
|
485
490
|
self,
|
|
486
491
|
message: str,
|
|
@@ -511,6 +516,14 @@ class CustomNotificationPusher(_NotificationPusherBase):
|
|
|
511
516
|
self,
|
|
512
517
|
notification_type: str,
|
|
513
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,
|
|
514
527
|
):
|
|
515
528
|
if notification_type not in [
|
|
516
529
|
notification_module.NotificationTypes.console,
|
|
@@ -518,6 +531,17 @@ class CustomNotificationPusher(_NotificationPusherBase):
|
|
|
518
531
|
]:
|
|
519
532
|
# We want that only the console and ipython notifications will be notified by the client.
|
|
520
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
|
+
)
|
|
521
545
|
return
|
|
522
546
|
|
|
523
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
|
|
@@ -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,6 +1,6 @@
|
|
|
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
|
|
@@ -12,7 +12,7 @@ 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
|
|
@@ -38,8 +38,8 @@ mlrun/common/formatters/project.py,sha256=0G4lhcTAsxQCxd40dKC4894cMH8nKt03BcGyp9
|
|
|
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
40
|
mlrun/common/model_monitoring/helpers.py,sha256=A2svqjCsZV8FmlimnY9QI_kKIEUJINu6YI7uJfO-Kn0,3173
|
|
41
|
-
mlrun/common/runtimes/constants.py,sha256=
|
|
42
|
-
mlrun/common/schemas/__init__.py,sha256=
|
|
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
|
|
@@ -99,7 +99,7 @@ mlrun/datastore/sources.py,sha256=LnFeiYxcotw_H_vIwCORE8fFaJB21XGBG77iJKaYHmI,49
|
|
|
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
|
|
@@ -218,32 +218,32 @@ 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
220
|
mlrun/model_monitoring/api.py,sha256=3QoMEmJ523rzoWFRkx6SmZ9s0Y5b3RX8bZZMHUoZnf0,28484
|
|
221
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
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
228
|
mlrun/model_monitoring/applications/_application_steps.py,sha256=97taCEkfGx-QO-gD9uKnRF1PDIxQhY7sjPg85GxgIpA,6628
|
|
229
|
-
mlrun/model_monitoring/applications/base.py,sha256=
|
|
229
|
+
mlrun/model_monitoring/applications/base.py,sha256=9mRnykWqWnKrtJ6qrov1t6sjEz56YaID9_eh_5Cq7EA,21334
|
|
230
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
|
|
@@ -304,10 +304,10 @@ mlrun/serving/remote.py,sha256=gxJkj_J3j-sZcVUbUzbAmJafP6t6y4NVFsu0kWmYngA,18818
|
|
|
304
304
|
mlrun/serving/routers.py,sha256=tKsOPegKy6FyTfSBWqMEYGQMSKNeqM-9L__tozE6ftU,52978
|
|
305
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
|
|
@@ -319,16 +319,16 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
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
|