mlrun 1.8.0rc5__py3-none-any.whl → 1.8.0rc6__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/__init__.py +1 -1
- mlrun/artifacts/base.py +12 -1
- mlrun/artifacts/document.py +59 -38
- mlrun/common/model_monitoring/__init__.py +0 -2
- mlrun/common/model_monitoring/helpers.py +0 -28
- mlrun/common/schemas/__init__.py +1 -4
- mlrun/common/schemas/client_spec.py +0 -1
- mlrun/common/schemas/model_monitoring/__init__.py +0 -6
- mlrun/common/schemas/model_monitoring/constants.py +11 -9
- mlrun/common/schemas/model_monitoring/model_endpoints.py +77 -149
- mlrun/common/schemas/notification.py +6 -0
- mlrun/config.py +0 -2
- mlrun/datastore/datastore_profile.py +57 -17
- mlrun/datastore/vectorstore.py +67 -59
- mlrun/db/base.py +22 -18
- mlrun/db/httpdb.py +116 -148
- mlrun/db/nopdb.py +33 -17
- mlrun/execution.py +11 -4
- mlrun/model.py +3 -0
- mlrun/model_monitoring/__init__.py +3 -2
- mlrun/model_monitoring/api.py +40 -43
- mlrun/model_monitoring/applications/_application_steps.py +3 -1
- mlrun/model_monitoring/applications/context.py +15 -17
- mlrun/model_monitoring/controller.py +43 -37
- mlrun/model_monitoring/db/__init__.py +0 -2
- mlrun/model_monitoring/db/tsdb/base.py +2 -1
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +2 -1
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +43 -0
- mlrun/model_monitoring/helpers.py +12 -66
- mlrun/model_monitoring/stream_processing.py +83 -270
- mlrun/model_monitoring/writer.py +1 -10
- mlrun/projects/project.py +63 -55
- mlrun/runtimes/nuclio/function.py +7 -6
- mlrun/runtimes/nuclio/serving.py +7 -1
- mlrun/serving/routers.py +158 -145
- mlrun/serving/server.py +6 -0
- mlrun/serving/states.py +2 -0
- mlrun/serving/v2_serving.py +69 -60
- mlrun/utils/helpers.py +14 -30
- mlrun/utils/notifications/notification/mail.py +17 -6
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.8.0rc5.dist-info → mlrun-1.8.0rc6.dist-info}/METADATA +1 -1
- {mlrun-1.8.0rc5.dist-info → mlrun-1.8.0rc6.dist-info}/RECORD +47 -60
- mlrun/common/schemas/model_monitoring/model_endpoint_v2.py +0 -149
- mlrun/model_monitoring/db/stores/__init__.py +0 -136
- mlrun/model_monitoring/db/stores/base/__init__.py +0 -15
- mlrun/model_monitoring/db/stores/base/store.py +0 -154
- mlrun/model_monitoring/db/stores/sqldb/__init__.py +0 -13
- mlrun/model_monitoring/db/stores/sqldb/models/__init__.py +0 -46
- mlrun/model_monitoring/db/stores/sqldb/models/base.py +0 -93
- mlrun/model_monitoring/db/stores/sqldb/models/mysql.py +0 -47
- mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py +0 -25
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py +0 -408
- mlrun/model_monitoring/db/stores/v3io_kv/__init__.py +0 -13
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +0 -464
- mlrun/model_monitoring/model_endpoint.py +0 -120
- {mlrun-1.8.0rc5.dist-info → mlrun-1.8.0rc6.dist-info}/LICENSE +0 -0
- {mlrun-1.8.0rc5.dist-info → mlrun-1.8.0rc6.dist-info}/WHEEL +0 -0
- {mlrun-1.8.0rc5.dist-info → mlrun-1.8.0rc6.dist-info}/entry_points.txt +0 -0
- {mlrun-1.8.0rc5.dist-info → mlrun-1.8.0rc6.dist-info}/top_level.txt +0 -0
mlrun/serving/v2_serving.py
CHANGED
|
@@ -21,10 +21,9 @@ import mlrun.artifacts
|
|
|
21
21
|
import mlrun.common.model_monitoring.helpers
|
|
22
22
|
import mlrun.common.schemas.model_monitoring
|
|
23
23
|
import mlrun.model_monitoring
|
|
24
|
-
from mlrun.errors import err_to_str
|
|
25
24
|
from mlrun.utils import logger, now_date
|
|
26
25
|
|
|
27
|
-
from ..common.
|
|
26
|
+
from ..common.schemas.model_monitoring import ModelEndpointSchema
|
|
28
27
|
from .server import GraphServer
|
|
29
28
|
from .utils import StepToDict, _extract_input_data, _update_result_body
|
|
30
29
|
|
|
@@ -110,12 +109,6 @@ class V2ModelServer(StepToDict):
|
|
|
110
109
|
self._result_path = result_path
|
|
111
110
|
self._kwargs = kwargs # for to_dict()
|
|
112
111
|
self._params = kwargs
|
|
113
|
-
self._model_logger = (
|
|
114
|
-
_ModelLogPusher(self, context)
|
|
115
|
-
if context and context.stream.enabled
|
|
116
|
-
else None
|
|
117
|
-
)
|
|
118
|
-
|
|
119
112
|
self.metrics = {}
|
|
120
113
|
self.labels = {}
|
|
121
114
|
self.model = None
|
|
@@ -125,6 +118,7 @@ class V2ModelServer(StepToDict):
|
|
|
125
118
|
self._versioned_model_name = None
|
|
126
119
|
self.model_endpoint_uid = None
|
|
127
120
|
self.shard_by_endpoint = shard_by_endpoint
|
|
121
|
+
self._model_logger = None
|
|
128
122
|
|
|
129
123
|
def _load_and_update_state(self):
|
|
130
124
|
try:
|
|
@@ -157,6 +151,11 @@ class V2ModelServer(StepToDict):
|
|
|
157
151
|
self.model_endpoint_uid = _init_endpoint_record(
|
|
158
152
|
graph_server=server, model=self
|
|
159
153
|
)
|
|
154
|
+
self._model_logger = (
|
|
155
|
+
_ModelLogPusher(self, self.context)
|
|
156
|
+
if self.context and self.context.stream.enabled
|
|
157
|
+
else None
|
|
158
|
+
)
|
|
160
159
|
|
|
161
160
|
def get_param(self, key: str, default=None):
|
|
162
161
|
"""get param by key (specified in the model or the function)"""
|
|
@@ -474,7 +473,7 @@ class V2ModelServer(StepToDict):
|
|
|
474
473
|
|
|
475
474
|
|
|
476
475
|
class _ModelLogPusher:
|
|
477
|
-
def __init__(self, model, context, output_stream=None):
|
|
476
|
+
def __init__(self, model: V2ModelServer, context, output_stream=None):
|
|
478
477
|
self.model = model
|
|
479
478
|
self.verbose = context.verbose
|
|
480
479
|
self.hostname = context.stream.hostname
|
|
@@ -496,6 +495,7 @@ class _ModelLogPusher:
|
|
|
496
495
|
"version": self.model.version,
|
|
497
496
|
"host": self.hostname,
|
|
498
497
|
"function_uri": self.function_uri,
|
|
498
|
+
"endpoint_id": self.model.model_endpoint_uid,
|
|
499
499
|
}
|
|
500
500
|
if getattr(self.model, "labels", None):
|
|
501
501
|
base_data["labels"] = self.model.labels
|
|
@@ -567,26 +567,13 @@ def _init_endpoint_record(
|
|
|
567
567
|
"""
|
|
568
568
|
|
|
569
569
|
logger.info("Initializing endpoint records")
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
try:
|
|
573
|
-
# Getting project name from the function uri
|
|
574
|
-
project, uri, tag, hash_key = parse_versioned_object_uri(
|
|
575
|
-
graph_server.function_uri
|
|
576
|
-
)
|
|
577
|
-
except Exception as e:
|
|
578
|
-
logger.error("Failed to parse function URI", exc=err_to_str(e))
|
|
579
|
-
return None
|
|
580
|
-
|
|
581
|
-
# Generating model endpoint ID based on function uri and model version
|
|
582
|
-
uid = mlrun.common.model_monitoring.create_model_endpoint_uid(
|
|
583
|
-
function_uri=graph_server.function_uri,
|
|
584
|
-
versioned_model=model.versioned_model_name,
|
|
585
|
-
).uid
|
|
586
|
-
|
|
570
|
+
if not model.model_spec:
|
|
571
|
+
model.get_model()
|
|
587
572
|
try:
|
|
588
573
|
model_ep = mlrun.get_run_db().get_model_endpoint(
|
|
589
|
-
project=project,
|
|
574
|
+
project=graph_server.project,
|
|
575
|
+
name=model.name,
|
|
576
|
+
function_name=graph_server.function_name,
|
|
590
577
|
)
|
|
591
578
|
except mlrun.errors.MLRunNotFoundError:
|
|
592
579
|
model_ep = None
|
|
@@ -596,62 +583,84 @@ def _init_endpoint_record(
|
|
|
596
583
|
)
|
|
597
584
|
return
|
|
598
585
|
|
|
599
|
-
|
|
600
|
-
|
|
586
|
+
function = mlrun.get_run_db().get_function(
|
|
587
|
+
name=graph_server.function_name,
|
|
588
|
+
project=graph_server.project,
|
|
589
|
+
tag=graph_server.function_tag or "latest",
|
|
590
|
+
)
|
|
591
|
+
function_uid = function.get("metadata", {}).get("uid")
|
|
592
|
+
if not model_ep and model.context.server.track_models:
|
|
593
|
+
logger.info(
|
|
594
|
+
"Creating a new model endpoint record",
|
|
595
|
+
name=model.name,
|
|
596
|
+
project=graph_server.project,
|
|
597
|
+
function_name=graph_server.function_name,
|
|
598
|
+
function_uid=function_uid,
|
|
599
|
+
model_name=model.model_spec.metadata.key,
|
|
600
|
+
model_uid=model.model_spec.metadata.uid,
|
|
601
|
+
model_class=model.__class__.__name__,
|
|
602
|
+
model_tag=model.model_spec.tag,
|
|
603
|
+
)
|
|
601
604
|
model_endpoint = mlrun.common.schemas.ModelEndpoint(
|
|
602
605
|
metadata=mlrun.common.schemas.ModelEndpointMetadata(
|
|
603
|
-
project=project,
|
|
606
|
+
project=graph_server.project,
|
|
607
|
+
labels=model.model_spec.labels,
|
|
608
|
+
name=model.name,
|
|
609
|
+
endpoint_type=mlrun.common.schemas.model_monitoring.EndpointType.NODE_EP,
|
|
604
610
|
),
|
|
605
611
|
spec=mlrun.common.schemas.ModelEndpointSpec(
|
|
606
|
-
|
|
607
|
-
|
|
612
|
+
function_name=graph_server.function_name,
|
|
613
|
+
function_uid=function_uid,
|
|
614
|
+
function_tag=graph_server.function_tag or "latest",
|
|
615
|
+
model_name=model.model_spec.metadata.key,
|
|
616
|
+
model_uid=model.model_spec.metadata.uid,
|
|
608
617
|
model_class=model.__class__.__name__,
|
|
609
|
-
model_uri=model.model_path,
|
|
610
|
-
stream_path=model.context.stream.stream_uri,
|
|
611
|
-
active=True,
|
|
612
|
-
monitoring_mode=mlrun.common.schemas.model_monitoring.ModelMonitoringMode.enabled,
|
|
613
618
|
),
|
|
614
619
|
status=mlrun.common.schemas.ModelEndpointStatus(
|
|
615
|
-
|
|
620
|
+
monitoring_mode=mlrun.common.schemas.model_monitoring.ModelMonitoringMode.enabled
|
|
621
|
+
if model.context.server.track_models
|
|
622
|
+
else mlrun.common.schemas.model_monitoring.ModelMonitoringMode.disabled,
|
|
616
623
|
),
|
|
617
624
|
)
|
|
618
|
-
|
|
619
625
|
db = mlrun.get_run_db()
|
|
620
|
-
db.create_model_endpoint(
|
|
621
|
-
project=project,
|
|
622
|
-
endpoint_id=uid,
|
|
623
|
-
model_endpoint=model_endpoint.dict(),
|
|
624
|
-
)
|
|
626
|
+
db.create_model_endpoint(model_endpoint=model_endpoint)
|
|
625
627
|
|
|
626
628
|
elif model_ep:
|
|
627
629
|
attributes = {}
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
630
|
+
if function_uid != model_ep.spec.function_uid:
|
|
631
|
+
attributes[ModelEndpointSchema.FUNCTION_UID] = function_uid
|
|
632
|
+
if model.model_spec.metadata.key != model_ep.spec.model_name:
|
|
633
|
+
attributes[ModelEndpointSchema.MODEL_NAME] = model.model_spec.metadata.key
|
|
634
|
+
if model.model_spec.metadata.uid != model_ep.spec.model_uid:
|
|
635
|
+
attributes[ModelEndpointSchema.MODEL_UID] = model.model_spec.metadata.uid
|
|
636
|
+
if model.__class__.__name__ != model_ep.spec.model_class:
|
|
637
|
+
attributes[ModelEndpointSchema.MODEL_CLASS] = model.__class__.__name__
|
|
635
638
|
if (
|
|
636
|
-
model_ep.
|
|
639
|
+
model_ep.status.monitoring_mode
|
|
637
640
|
== mlrun.common.schemas.model_monitoring.ModelMonitoringMode.enabled
|
|
638
641
|
) != model.context.server.track_models:
|
|
639
|
-
attributes[
|
|
642
|
+
attributes[ModelEndpointSchema.MONITORING_MODE] = (
|
|
640
643
|
mlrun.common.schemas.model_monitoring.ModelMonitoringMode.enabled
|
|
641
644
|
if model.context.server.track_models
|
|
642
645
|
else mlrun.common.schemas.model_monitoring.ModelMonitoringMode.disabled
|
|
643
646
|
)
|
|
644
647
|
if attributes:
|
|
645
|
-
db = mlrun.get_run_db()
|
|
646
|
-
db.patch_model_endpoint(
|
|
647
|
-
project=project,
|
|
648
|
-
endpoint_id=uid,
|
|
649
|
-
attributes=attributes,
|
|
650
|
-
)
|
|
651
648
|
logger.info(
|
|
652
649
|
"Updating model endpoint attributes",
|
|
653
650
|
attributes=attributes,
|
|
654
|
-
|
|
651
|
+
project=model_ep.metadata.project,
|
|
652
|
+
name=model_ep.metadata.name,
|
|
653
|
+
function_name=model_ep.spec.function_name,
|
|
654
|
+
)
|
|
655
|
+
db = mlrun.get_run_db()
|
|
656
|
+
model_ep = db.patch_model_endpoint(
|
|
657
|
+
project=model_ep.metadata.project,
|
|
658
|
+
name=model_ep.metadata.name,
|
|
659
|
+
function_name=model_ep.spec.function_name,
|
|
660
|
+
endpoint_id=model_ep.metadata.uid,
|
|
661
|
+
attributes=attributes,
|
|
655
662
|
)
|
|
663
|
+
else:
|
|
664
|
+
return None
|
|
656
665
|
|
|
657
|
-
return uid
|
|
666
|
+
return model_ep.metadata.uid
|
mlrun/utils/helpers.py
CHANGED
|
@@ -956,36 +956,6 @@ def fill_function_hash(function_dict, tag=""):
|
|
|
956
956
|
return fill_object_hash(function_dict, "hash", tag)
|
|
957
957
|
|
|
958
958
|
|
|
959
|
-
def fill_model_endpoint_hash(
|
|
960
|
-
model_endpoint: mlrun.common.schemas.ModelEndpointV2,
|
|
961
|
-
created_time: typing.Union[str, datetime],
|
|
962
|
-
) -> str:
|
|
963
|
-
"""
|
|
964
|
-
Fill the model endpoint uid field in the model endpoint object and returns it.
|
|
965
|
-
The uid is generated by hashing the following model endpoint fields:
|
|
966
|
-
- name
|
|
967
|
-
- model_tag
|
|
968
|
-
- function_name
|
|
969
|
-
- project
|
|
970
|
-
- created_time
|
|
971
|
-
"""
|
|
972
|
-
|
|
973
|
-
name = model_endpoint.metadata.name
|
|
974
|
-
model_tag = model_endpoint.spec.model_tag
|
|
975
|
-
function_name = model_endpoint.spec.function_name
|
|
976
|
-
project = model_endpoint.metadata.project
|
|
977
|
-
created_time = (
|
|
978
|
-
created_time
|
|
979
|
-
if isinstance(created_time, str)
|
|
980
|
-
else created_time.isoformat(sep=" ", timespec="microseconds")
|
|
981
|
-
)
|
|
982
|
-
|
|
983
|
-
unique_string = f"{name}_{model_tag}_{function_name}_{project}_{created_time}"
|
|
984
|
-
uid = hashlib.sha1(unique_string.encode("utf-8")).hexdigest()
|
|
985
|
-
model_endpoint.metadata.uid = uid
|
|
986
|
-
return uid
|
|
987
|
-
|
|
988
|
-
|
|
989
959
|
def retry_until_successful(
|
|
990
960
|
backoff: int, timeout: int, logger, verbose: bool, _function, *args, **kwargs
|
|
991
961
|
):
|
|
@@ -1886,3 +1856,17 @@ def run_with_retry(
|
|
|
1886
1856
|
if attempt == retry_count:
|
|
1887
1857
|
raise
|
|
1888
1858
|
raise last_exception
|
|
1859
|
+
|
|
1860
|
+
|
|
1861
|
+
def join_urls(base_url: Optional[str], path: Optional[str]) -> str:
|
|
1862
|
+
"""
|
|
1863
|
+
Joins a base URL with a path, ensuring proper handling of slashes.
|
|
1864
|
+
|
|
1865
|
+
:param base_url: The base URL (e.g., "http://example.com").
|
|
1866
|
+
:param path: The path to append to the base URL (e.g., "/path/to/resource").
|
|
1867
|
+
|
|
1868
|
+
:return: A unified URL with exactly one slash between base_url and path.
|
|
1869
|
+
"""
|
|
1870
|
+
if base_url is None:
|
|
1871
|
+
base_url = ""
|
|
1872
|
+
return f"{base_url.rstrip('/')}/{path.lstrip('/')}" if path else base_url
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
import re
|
|
15
15
|
import typing
|
|
16
|
-
from email.
|
|
16
|
+
from email.mime.multipart import MIMEMultipart
|
|
17
|
+
from email.mime.text import MIMEText
|
|
17
18
|
|
|
18
19
|
import aiosmtplib
|
|
19
20
|
|
|
@@ -69,9 +70,19 @@ class MailNotification(base.NotificationBase):
|
|
|
69
70
|
alert: typing.Optional[mlrun.common.schemas.AlertConfig] = None,
|
|
70
71
|
event_data: typing.Optional[mlrun.common.schemas.Event] = None,
|
|
71
72
|
):
|
|
72
|
-
|
|
73
|
-
self.params.
|
|
74
|
-
|
|
73
|
+
self.params["subject"] = f"[{severity}] {message}"
|
|
74
|
+
message_body_override = self.params.get("message_body_override", None)
|
|
75
|
+
|
|
76
|
+
runs_html = self._get_html(
|
|
77
|
+
message, severity, runs, custom_html, alert, event_data
|
|
78
|
+
)
|
|
79
|
+
self.params["body"] = runs_html
|
|
80
|
+
|
|
81
|
+
if message_body_override:
|
|
82
|
+
self.params["body"] = message_body_override.replace(
|
|
83
|
+
"{{ runs }}", runs_html
|
|
84
|
+
).replace("{{runs}}", runs_html)
|
|
85
|
+
|
|
75
86
|
await self._send_email(**self.params)
|
|
76
87
|
|
|
77
88
|
@classmethod
|
|
@@ -146,11 +157,11 @@ class MailNotification(base.NotificationBase):
|
|
|
146
157
|
**kwargs,
|
|
147
158
|
):
|
|
148
159
|
# Create the email message
|
|
149
|
-
message =
|
|
160
|
+
message = MIMEMultipart("alternative")
|
|
150
161
|
message["From"] = sender_address
|
|
151
162
|
message["To"] = email_addresses
|
|
152
163
|
message["Subject"] = subject
|
|
153
|
-
message.
|
|
164
|
+
message.attach(MIMEText(body, "html"))
|
|
154
165
|
|
|
155
166
|
# Send the email
|
|
156
167
|
await aiosmtplib.send(
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=V11600nBHBHT84iZAFzZ7p1kbhEWaX99wzBIivl4ozo,7453
|
|
2
2
|
mlrun/__main__.py,sha256=o65gXHhmFA9GV_n2mqmAO80nW3MAwo_s7j80IKgCzRE,45949
|
|
3
|
-
mlrun/config.py,sha256=
|
|
3
|
+
mlrun/config.py,sha256=DSbhMEVV9QrTqlzedYg6YqvRahBq_VF1YNPALTJKuK8,70900
|
|
4
4
|
mlrun/errors.py,sha256=5raKb1PXQpTcIvWQ4sr1qn2IS7P_GT_FydBJ0dXkVuc,8097
|
|
5
|
-
mlrun/execution.py,sha256=
|
|
5
|
+
mlrun/execution.py,sha256=69SG3KUJbDixvVevFRWdcko7NpHT1__bSAaL9nJx9cI,47366
|
|
6
6
|
mlrun/features.py,sha256=ReBaNGsBYXqcbgI012n-SO_j6oHIbk_Vpv0CGPXbUmo,15842
|
|
7
7
|
mlrun/k8s_utils.py,sha256=mRQMs6NzPq36vx1n5_2BfFapXysc8wv3NcrZ77_2ANA,8949
|
|
8
8
|
mlrun/lists.py,sha256=1hFv3Iyu5DVX1kdBGJmwUoY0CqrzauhKdSq9g3piHb4,8442
|
|
9
|
-
mlrun/model.py,sha256=
|
|
9
|
+
mlrun/model.py,sha256=Qmj0UH5H0GKd6ZwxugxCvoqSP3O5q0LV0wSlHIzkyIM,85312
|
|
10
10
|
mlrun/render.py,sha256=940H9fBBFeghH4dlifbURvtjlvw4GlWdAXezN6ky4rI,13275
|
|
11
11
|
mlrun/run.py,sha256=OJRX96ijJL8DYRLgOAtcx1ZNlTIpgXXImKmbsHoFuBU,43743
|
|
12
12
|
mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
|
|
13
13
|
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
14
|
mlrun/alerts/alert.py,sha256=mTROlDXzQw5gyWBFaUnykai3wpvjmgRmo28p0ytbzIU,15930
|
|
15
15
|
mlrun/api/schemas/__init__.py,sha256=fEWH4I8hr5AdRJ7yoW44RlFB6NHkYDxyomP5J6ct1z4,14248
|
|
16
|
-
mlrun/artifacts/__init__.py,sha256=
|
|
17
|
-
mlrun/artifacts/base.py,sha256=
|
|
16
|
+
mlrun/artifacts/__init__.py,sha256=5NRo_T5Hrltdssepx6Rs4-2vxuiYooF-OPFtjj0Jfow,1138
|
|
17
|
+
mlrun/artifacts/base.py,sha256=3D1lcD-pyppvXPc_g89q8dV3cSgIcvY-WYD8QStAFuo,29813
|
|
18
18
|
mlrun/artifacts/dataset.py,sha256=QTot5vCgLHatlIWwNnKbWdZ8HHTxaZ7wk4gWQDoqQ2k,16655
|
|
19
|
-
mlrun/artifacts/document.py,sha256=
|
|
19
|
+
mlrun/artifacts/document.py,sha256=3dE3sr4PYLmyPa9zVSN9D4-YuwUruuhx3o-QQUqt-JY,12350
|
|
20
20
|
mlrun/artifacts/manager.py,sha256=PKLSGiIe4zpgMK3uNopfZwqpIS2r922m9poqJ4-5VZE,15771
|
|
21
21
|
mlrun/artifacts/model.py,sha256=jeOjUq_iZSHoNqlPyGgOz6acwje1Yqpg1yZwF9GbyG8,21615
|
|
22
22
|
mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
|
|
@@ -36,16 +36,16 @@ mlrun/common/formatters/model_endpoint.py,sha256=MQPNpj6lQbitvsT9tIm-XZbH18HDv0X
|
|
|
36
36
|
mlrun/common/formatters/pipeline.py,sha256=oATD3znsuq3s7LipPnZivDPelTX0hJ0MFeeXOQmwwLw,1762
|
|
37
37
|
mlrun/common/formatters/project.py,sha256=0G4lhcTAsxQCxd40dKC4894cMH8nKt03BcGyp9wQO14,2102
|
|
38
38
|
mlrun/common/formatters/run.py,sha256=Gcf9lVDqxPMNfWcPX0RJasjTC_N_U0yTBkQ02jOPJ7A,1062
|
|
39
|
-
mlrun/common/model_monitoring/__init__.py,sha256=
|
|
40
|
-
mlrun/common/model_monitoring/helpers.py,sha256=
|
|
39
|
+
mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
40
|
+
mlrun/common/model_monitoring/helpers.py,sha256=fg56lF3ZP8d5v_vA5OFLAleFw83w35dWrkURYhOng00,3676
|
|
41
41
|
mlrun/common/runtimes/constants.py,sha256=Mok3m9Rv182TTMp7uYNfWalm9Xcz86yva-4fTxfMOPI,10988
|
|
42
|
-
mlrun/common/schemas/__init__.py,sha256=
|
|
42
|
+
mlrun/common/schemas/__init__.py,sha256=bN0outkzAxPz7S8QVfcwo4nkIY-h3eeH0ITck5smIsc,5304
|
|
43
43
|
mlrun/common/schemas/alert.py,sha256=-Mz1QhyqGU6dyEBEIKZmKvR4v3qmGMp6-bWbDC9joy0,7258
|
|
44
44
|
mlrun/common/schemas/api_gateway.py,sha256=3a0QxECLmoDkD5IiOKtXJL-uiWB26Hg55WMA3nULYuI,7127
|
|
45
45
|
mlrun/common/schemas/artifact.py,sha256=i29BeZ4MoOLMST3WlApX1Nli0vy-M7Zj_oTm8jySlw4,3805
|
|
46
46
|
mlrun/common/schemas/auth.py,sha256=AGbBNvQq_vcvhX_NLqbT-QPHL4BAJMB3xwBXW7cFvpo,6761
|
|
47
47
|
mlrun/common/schemas/background_task.py,sha256=ofWRAQGGEkXEu79Dbw7tT_5GPolR09Lc3Ebg2r0fT24,1728
|
|
48
|
-
mlrun/common/schemas/client_spec.py,sha256=
|
|
48
|
+
mlrun/common/schemas/client_spec.py,sha256=j75fSEOm2bg4XYMKMzKpFVCcNBSv2ndY2J08jfMHerM,2820
|
|
49
49
|
mlrun/common/schemas/clusterization_spec.py,sha256=LAWOL6V3E5hAt8tKmnP3DOJcKG1FQqp8Z-x8szPkf1I,894
|
|
50
50
|
mlrun/common/schemas/common.py,sha256=3GcfkT7yOWmrieCSrjOJ_4aXkiUWwLd_kxqMDP1-_hw,3540
|
|
51
51
|
mlrun/common/schemas/constants.py,sha256=LfoSq8d2n7TMrM0IvxGylOtVEJGvvDVlK2-Yau-Tt30,7245
|
|
@@ -58,7 +58,7 @@ mlrun/common/schemas/http.py,sha256=1PtYFhF6sqLSBRcuPMtYcUGmroBhaleqLmYidSdL9LM,
|
|
|
58
58
|
mlrun/common/schemas/hub.py,sha256=L0MJp8Kg7NmcWXygnHiDZ8WpTHxEO06M7AtBuKEO0rg,4119
|
|
59
59
|
mlrun/common/schemas/k8s.py,sha256=Co4znGaCa1uX-2dsWSrZhy_OEYWoBCGWaDd1HXkz-8g,1404
|
|
60
60
|
mlrun/common/schemas/memory_reports.py,sha256=boLyk8RRhfRLv0JCYYWxcTxobKzqRzdtSY2zajhF6_c,901
|
|
61
|
-
mlrun/common/schemas/notification.py,sha256=
|
|
61
|
+
mlrun/common/schemas/notification.py,sha256=WDdGhFII--zII5XebfkTdse8reMgKeVCYXlgeH7M9WE,5430
|
|
62
62
|
mlrun/common/schemas/object.py,sha256=0vftHJcicAm87Hfgi_SdyQEqokoZRE4IEHHRPx34hNQ,1983
|
|
63
63
|
mlrun/common/schemas/pagination.py,sha256=8NEmiIkCXw5_sv-lE0MWgWz-WpxhSSn-vBtbPDBOGXc,899
|
|
64
64
|
mlrun/common/schemas/partition.py,sha256=s7607EKe4T_37wxS5kt-j4XFqwWY_90aHBZggAdYeDw,5516
|
|
@@ -71,11 +71,10 @@ mlrun/common/schemas/schedule.py,sha256=LTWdZ4FvKDGkmmfyqKoBQ36VFqnnyIYLnq1I6qrT
|
|
|
71
71
|
mlrun/common/schemas/secret.py,sha256=CCxFYiPwJtDxwg2VVJH9nUG9cAZ2a34IjeuaWv-BYlc,1487
|
|
72
72
|
mlrun/common/schemas/tag.py,sha256=HRZi5QZ4vVGaCr2AMk9eJgcNiAIXmH4YDc8a4fvF770,893
|
|
73
73
|
mlrun/common/schemas/workflow.py,sha256=rwYzDJYxpE9k4kC88j_eUCmqK4ZsWV_h-_nli7Fs7Ow,2078
|
|
74
|
-
mlrun/common/schemas/model_monitoring/__init__.py,sha256
|
|
75
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
74
|
+
mlrun/common/schemas/model_monitoring/__init__.py,sha256=6gQcNTzCDEd-rDv6qDC5pE78INnV1AHKP9WbysUVNcw,1840
|
|
75
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=UblKVJpdBDic7PvFSHboRHeTJVP-6O-upPHZ8nM8ZKo,11265
|
|
76
76
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=Rq10KKOyyUYr7qOQFZfwGZtUim0LY9O0LQ5uc9jmIVQ,1562
|
|
77
|
-
mlrun/common/schemas/model_monitoring/
|
|
78
|
-
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=zRrg0th-hM5M1QSQlJCmZF8Aj2OzqZv0AIdccPKePdI,13678
|
|
77
|
+
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=Ibb9S3DYi9rgXR8xCYyRK9wrET0MgUheb9BLCfnImzw,10888
|
|
79
78
|
mlrun/data_types/__init__.py,sha256=unRo9GGwCmj0hBKBRsXJ2P4BzpQaddlQTvIrVQaKluI,984
|
|
80
79
|
mlrun/data_types/data_types.py,sha256=uB9qJusSvPRK2PTvrFBXrS5jcDXMuwqXokJGToDg4VA,4953
|
|
81
80
|
mlrun/data_types/infer.py,sha256=KdaRgWcqvLkuLjXrMuDr3ik6WY7JP5wJO0Yii_Vl5kw,6173
|
|
@@ -86,7 +85,7 @@ mlrun/datastore/alibaba_oss.py,sha256=k-OHVe08HjMewlkpsT657CbOiVFAfSq9_EqhCE-k86
|
|
|
86
85
|
mlrun/datastore/azure_blob.py,sha256=SzAcHYSXkm8Zpopz2Ea-rWVClH0URocUazcNK04S9W0,12776
|
|
87
86
|
mlrun/datastore/base.py,sha256=Dqg8PqX0TFKHZg27Dgguc3RnQ1GABZiLf87p5ErTqJs,26448
|
|
88
87
|
mlrun/datastore/datastore.py,sha256=frUYYP4i8ZmnY8GNXSgN_3x_exRgRPfxrCtAGEUifEU,9478
|
|
89
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
88
|
+
mlrun/datastore/datastore_profile.py,sha256=DOCiN90li7G3kIe6z3vfHxf8iQKS6V_UNai_woeFR80,20884
|
|
90
89
|
mlrun/datastore/dbfs_store.py,sha256=QkDRzwFnvm7CgEg4NuGxes6tBgKDyhX0CiBUvK8c9pk,6568
|
|
91
90
|
mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
|
|
92
91
|
mlrun/datastore/google_cloud_storage.py,sha256=MnToY6irdhBZ8Wcapqnr1Yq2724LAh2uPO7MAtdWfUY,8716
|
|
@@ -103,15 +102,15 @@ mlrun/datastore/storeytargets.py,sha256=uNYG4nCBD3JIfa51CG4cDe9ryc9oIcqUdUXKvCPB
|
|
|
103
102
|
mlrun/datastore/targets.py,sha256=0RuprYSc95Uy-P_fk30d1dMGHDpgx7DAeydZEA3uR_k,80660
|
|
104
103
|
mlrun/datastore/utils.py,sha256=ZDAzz0W16_JcM6Q9h4RoMbdruM9eA6YGlA5dw8gW8Bw,7754
|
|
105
104
|
mlrun/datastore/v3io.py,sha256=QSYBORRLcJTeM9mt0EaWzyLcdmzrPkqrF7k5uLTam5U,8209
|
|
106
|
-
mlrun/datastore/vectorstore.py,sha256=
|
|
105
|
+
mlrun/datastore/vectorstore.py,sha256=vDHYaKJ0wB0fiBSSRlFmeH5dRbPDY5l9VCpAr5p-wDA,8384
|
|
107
106
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
108
107
|
mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
|
|
109
108
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
110
109
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
111
|
-
mlrun/db/base.py,sha256=
|
|
110
|
+
mlrun/db/base.py,sha256=zg54PqHh-IYBSmlO1Q8DBS04r-U7v5x2-4Zncb0OIuI,28892
|
|
112
111
|
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
113
|
-
mlrun/db/httpdb.py,sha256=
|
|
114
|
-
mlrun/db/nopdb.py,sha256=
|
|
112
|
+
mlrun/db/httpdb.py,sha256=jEHqrEt7H2HIETXsMXRwzc0zQ9KGMnAVIR5nmLZT-Cw,219430
|
|
113
|
+
mlrun/db/nopdb.py,sha256=U8YW45sD5YZGoDrkRzFWIZJ0req_9yE59J1I9W8WeC4,26002
|
|
115
114
|
mlrun/feature_store/__init__.py,sha256=AVnY2AFUNc2dKxLLUMx2K3Wo1eGviv0brDcYlDnmtf4,1506
|
|
116
115
|
mlrun/feature_store/api.py,sha256=mrvFNwnX7GviWBVklruXbqLmXKSMGt0P6cJtmy9Z8Nw,50394
|
|
117
116
|
mlrun/feature_store/common.py,sha256=Z7USI-d1fo0iwBMsqMBtJflJfyuiV3BLoDXQPSAoBAs,12826
|
|
@@ -216,46 +215,34 @@ mlrun/launcher/client.py,sha256=FXzQQqrSVE9oapLjjUYvx5qhZPG1r4ynUjUUFZVPekE,6228
|
|
|
216
215
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
217
216
|
mlrun/launcher/local.py,sha256=9zNiuswHnSINDj4yYP2Vd192b5d4FUtSA8O2ICKjsKo,11279
|
|
218
217
|
mlrun/launcher/remote.py,sha256=rLJW4UAnUT5iUb4BsGBOAV3K4R29a0X4lFtRkVKlyYU,7709
|
|
219
|
-
mlrun/model_monitoring/__init__.py,sha256=
|
|
220
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
221
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
218
|
+
mlrun/model_monitoring/__init__.py,sha256=RgXjrQSN7gZwo-URei3FNo3fE9wWlo1-wNhSVtNXbPA,784
|
|
219
|
+
mlrun/model_monitoring/api.py,sha256=qOyEtBtJcAprITe9jAu6rFQ_vRZFLiN_NKDNkZLOSQs,27708
|
|
220
|
+
mlrun/model_monitoring/controller.py,sha256=dBfZQswF67vqeUFnmgsm9jU_5sOs9dLwMPEiYHG-Kk8,19786
|
|
222
221
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
223
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
224
|
-
mlrun/model_monitoring/
|
|
225
|
-
mlrun/model_monitoring/stream_processing.py,sha256=XulKYz0xvnFrKdN9wcQT0WCHRbS3Hw6hHQ-Ev7M6Wx8,38905
|
|
222
|
+
mlrun/model_monitoring/helpers.py,sha256=x2nXtgMRePK6gvxfyZBmqISCQ9OZycOz963xA6kqnkg,13672
|
|
223
|
+
mlrun/model_monitoring/stream_processing.py,sha256=LtnSsGyfPNMq0t-L6soYNRcwErjLVotxbpY_yBo0SpE,31712
|
|
226
224
|
mlrun/model_monitoring/tracking_policy.py,sha256=PBIGrUYWrwcE5gwXupBIVzOb0QRRwPJsgQm_yLGQxB4,5595
|
|
227
|
-
mlrun/model_monitoring/writer.py,sha256
|
|
225
|
+
mlrun/model_monitoring/writer.py,sha256=-47Z7oMr6q2ieJunZgkMK8d0IHZJhC3jxTBIxHgtSOk,10490
|
|
228
226
|
mlrun/model_monitoring/applications/__init__.py,sha256=QYvzgCutFdAkzqKPD3mvkX_3c1X4tzd-kW8ojUOE9ic,889
|
|
229
|
-
mlrun/model_monitoring/applications/_application_steps.py,sha256=
|
|
227
|
+
mlrun/model_monitoring/applications/_application_steps.py,sha256=h80Rs0vN70R3YOW-mCN8quWw1gFbfQdOPQeUwYFic_Q,7162
|
|
230
228
|
mlrun/model_monitoring/applications/base.py,sha256=ObHX1zSBjoEoaS1HE77Q05Gcpgvd_uza6ttRt16NgPU,6902
|
|
231
|
-
mlrun/model_monitoring/applications/context.py,sha256=
|
|
229
|
+
mlrun/model_monitoring/applications/context.py,sha256=cywoPOg5VI-HsZLPj2qta2Xtpn9wwqmdUi8imv2oaHM,13886
|
|
232
230
|
mlrun/model_monitoring/applications/evidently_base.py,sha256=hRjXuXf6xf8sbjGt9yYfGDUGnvS5rV3W7tkJroF3QJA,5098
|
|
233
231
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=DW_-DIBTy6sP-rKbt4BY-MrwswYsuQmZpllJtHrsNso,14454
|
|
234
232
|
mlrun/model_monitoring/applications/results.py,sha256=oh1z9oacWWP4azVXm_Fx7j8uXSfdkB9T4mtGwyPBveE,5748
|
|
235
|
-
mlrun/model_monitoring/db/__init__.py,sha256=
|
|
233
|
+
mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
|
|
236
234
|
mlrun/model_monitoring/db/_schedules.py,sha256=NTO1rbSyhW1JidpBDSN39ZBD0ctp5pbJFYQwxKRIRrs,5821
|
|
237
235
|
mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
|
|
238
|
-
mlrun/model_monitoring/db/stores/__init__.py,sha256=snjv_lrGKiUc913feYrRTw3_lBBOjTt0txht_1B3rSg,4769
|
|
239
|
-
mlrun/model_monitoring/db/stores/base/__init__.py,sha256=JufJETW3BXzPhFwbRa8dMf7BFGGZKceIWIMgr5x9n9c,599
|
|
240
|
-
mlrun/model_monitoring/db/stores/base/store.py,sha256=WU545LovRIRvTrthkY7nVp4n5YcyNDXCLJ6AneEAhV4,5429
|
|
241
|
-
mlrun/model_monitoring/db/stores/sqldb/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
242
|
-
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=YO8scfwQDZH4aeM0589F83Vpdd-UozO3gr1cxGwbFCI,15865
|
|
243
|
-
mlrun/model_monitoring/db/stores/sqldb/models/__init__.py,sha256=enJr3FfzpvMSzRrGKUsVesuR0HVpGuoy2DscXgezBNI,1519
|
|
244
|
-
mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=hVpfffTW18J3vuOdHGUYdl1Wg1PsBfvhIfZrqHkdAyU,2995
|
|
245
|
-
mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=IV1dzN-d5rOeKOU1L6FhlxeNogvj4hrgSrzlJfS46QI,1578
|
|
246
|
-
mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=yWlFnhiDxEsfBG_1DVvX_rD4vQZzfisd2m6JpqDGF_U,774
|
|
247
|
-
mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
248
|
-
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=vZes3ZORFzfIhwLbvJJ1dkVc8c3ZOtd8jh4z7YOapNQ,16625
|
|
249
236
|
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=Zqh_27I2YAEHk9nl0Z6lUxP7VEfrgrpnwhmHsbi4jnA,4055
|
|
250
|
-
mlrun/model_monitoring/db/tsdb/base.py,sha256=
|
|
237
|
+
mlrun/model_monitoring/db/tsdb/base.py,sha256=EWm-56AzuLSH1JV6DAhSRu9sUel5YD6Ch1n5tgUHODo,20983
|
|
251
238
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
252
239
|
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
253
240
|
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=5otz6VXRYNMc55hq9SdTQoglywdr2Ylh-ApL1dCyqls,13169
|
|
254
241
|
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Uadj0UvAmln2MxDWod-kAzau1uNlqZh981rPhbUH_5M,2857
|
|
255
|
-
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=
|
|
242
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=a2AjI7_jTnbJ8as1Bt0AMQcwsPgFsR0tvyxlKp3uZrs,29706
|
|
256
243
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
257
244
|
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
|
|
258
|
-
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=
|
|
245
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=_9n837rmlmxeEzqKjc5LerXRxNqKAgjMMzU-sKz4uyo,35668
|
|
259
246
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
260
247
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
261
248
|
mlrun/package/__init__.py,sha256=v7VDyK9kDOOuDvFo4oiGV2fx-vM1KL7fdN9pGLakhUQ,7008
|
|
@@ -280,7 +267,7 @@ mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13
|
|
|
280
267
|
mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
|
|
281
268
|
mlrun/projects/operations.py,sha256=VXUlMrouFTls-I-bMhdN5pPfQ34TR7bFQ-NUSWNvl84,20029
|
|
282
269
|
mlrun/projects/pipelines.py,sha256=DWAWkFXLDoPIaKySgdn4XVqkIMfxCcCNUdw7XwAsfno,45924
|
|
283
|
-
mlrun/projects/project.py,sha256=
|
|
270
|
+
mlrun/projects/project.py,sha256=iVaLufFtTGTmvi39MarzBVpktj2o3isvvCHPGz8ic0M,219268
|
|
284
271
|
mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
|
|
285
272
|
mlrun/runtimes/base.py,sha256=Yt2l7srrXjK783cunBEKH0yQxQZRH8lkedXNOXuLbbo,37841
|
|
286
273
|
mlrun/runtimes/daskjob.py,sha256=JwuGvOiPsxEDHHMMUS4Oie4hLlYYIZwihAl6DjroTY0,19521
|
|
@@ -302,9 +289,9 @@ mlrun/runtimes/mpijob/abstract.py,sha256=JGMjcJ4dvpJbctF6psU9UvYyNCutMxTMgBQeTlz
|
|
|
302
289
|
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
303
290
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
304
291
|
mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
|
|
305
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
292
|
+
mlrun/runtimes/nuclio/function.py,sha256=ZXXHuPkQPgOewaGr9G3jLTQSFQHSJpLVFJ2bIA6bfpI,52287
|
|
306
293
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
307
|
-
mlrun/runtimes/nuclio/serving.py,sha256=
|
|
294
|
+
mlrun/runtimes/nuclio/serving.py,sha256=Oxbs2-aMK58s7JmaHiYMp7but4KQr7rbIHW59IGe7ak,30139
|
|
308
295
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
309
296
|
mlrun/runtimes/nuclio/application/application.py,sha256=HlEq4A6hbFqr3Ba3TL4m7nbmfMYI06Zb_NAKGjzkEFU,29242
|
|
310
297
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=JIIYae6bXzCLf3jXuu49KWPQYoXr_FDQ2Rbo1OWKAd0,3150
|
|
@@ -313,13 +300,13 @@ mlrun/runtimes/sparkjob/spark3job.py,sha256=0ipkgAjDYDJDlcuvt379zonjhepCspsQQXMr
|
|
|
313
300
|
mlrun/serving/__init__.py,sha256=-SMRV3q_5cGVPDxRslXPU0zGYZIygs0cSj7WKlOJJUc,1163
|
|
314
301
|
mlrun/serving/merger.py,sha256=Sj2OUjPNLQrGZD_StMx8-j0kGyzKlp4QjTmDHmpJQLA,6185
|
|
315
302
|
mlrun/serving/remote.py,sha256=KBSC3Aw0H6fOlmwdnc37C1CtegCiI7MhkKAXgaxFESs,18158
|
|
316
|
-
mlrun/serving/routers.py,sha256=
|
|
317
|
-
mlrun/serving/server.py,sha256=
|
|
303
|
+
mlrun/serving/routers.py,sha256=3jkLU8F-c311KUX2YtYeORDsogutY8S_HbdQPRhsG_w,56358
|
|
304
|
+
mlrun/serving/server.py,sha256=KtcK_fn57G4CLgtEvSeaxwA-kruhUxv28StV3HimvXE,22294
|
|
318
305
|
mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
|
|
319
|
-
mlrun/serving/states.py,sha256=
|
|
306
|
+
mlrun/serving/states.py,sha256=gPaE9Nqd2_ilY7GCGYNVJNw6-z1Yj8b10470lZz14_k,61202
|
|
320
307
|
mlrun/serving/utils.py,sha256=k2EIYDWHUGkE-IBI6T0UNT32fw-KySsccIJM_LObI00,4171
|
|
321
308
|
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
322
|
-
mlrun/serving/v2_serving.py,sha256=
|
|
309
|
+
mlrun/serving/v2_serving.py,sha256=rr21Y3Adg9UmJDDbxBRS8qfalsrxUTK7durh-cg88Ys,27416
|
|
323
310
|
mlrun/track/__init__.py,sha256=yVXbT52fXvGKRlc_ByHqIVt7-9L3DRE634RSeQwgXtU,665
|
|
324
311
|
mlrun/track/tracker.py,sha256=CyTU6Qd3_5GGEJ_hpocOj71wvV65EuFYUjaYEUKAL6Q,3575
|
|
325
312
|
mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
|
|
@@ -331,7 +318,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
331
318
|
mlrun/utils/clones.py,sha256=y3zC9QS7z5mLuvyQ6vFd6sJnikbgtDwrBvieQq0sovY,7359
|
|
332
319
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
333
320
|
mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
|
|
334
|
-
mlrun/utils/helpers.py,sha256=
|
|
321
|
+
mlrun/utils/helpers.py,sha256=aCTSeGRjxhPaE0xA_4l1x8wmJJfcVMiLNNsboDD7eg8,63141
|
|
335
322
|
mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
|
|
336
323
|
mlrun/utils/logger.py,sha256=_v4UTv1-STzC2c6aAWAa0NNl9STQoBYbR3OHgAiL41s,14606
|
|
337
324
|
mlrun/utils/regex.py,sha256=zxeogx8gsZU8txvmRF5LEtOSqt6m3vpzkUDKLkPdvdA,4999
|
|
@@ -346,15 +333,15 @@ mlrun/utils/notifications/notification/base.py,sha256=r-5eAGm2xz5VZGbV6NfeRV-heF
|
|
|
346
333
|
mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
|
|
347
334
|
mlrun/utils/notifications/notification/git.py,sha256=t2lqRrPRBO4awf_uhxJreH9CpcbYSH8T3CvHtwspHkE,6306
|
|
348
335
|
mlrun/utils/notifications/notification/ipython.py,sha256=9uZvI1uOLFaNuAsfJPXmL3l6dOzFoWdBK5GYNYFAfks,2282
|
|
349
|
-
mlrun/utils/notifications/notification/mail.py,sha256=
|
|
336
|
+
mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAqp1vij7C6aRJ9h2mgs,6012
|
|
350
337
|
mlrun/utils/notifications/notification/slack.py,sha256=NKV4RFiY3gLsS8uPppgniPLyag8zJ9O1VhixoXkM7kw,7108
|
|
351
338
|
mlrun/utils/notifications/notification/webhook.py,sha256=lSGKCQMa-TstKbMpZnU5uQkW14tzIaqjBHDXUNh9dlU,4848
|
|
352
339
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
353
|
-
mlrun/utils/version/version.json,sha256=
|
|
340
|
+
mlrun/utils/version/version.json,sha256=DPwkk-LMY-TirkTLeYmU3lDjDZeoCxs37pnRsMuC-iM,88
|
|
354
341
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
355
|
-
mlrun-1.8.
|
|
356
|
-
mlrun-1.8.
|
|
357
|
-
mlrun-1.8.
|
|
358
|
-
mlrun-1.8.
|
|
359
|
-
mlrun-1.8.
|
|
360
|
-
mlrun-1.8.
|
|
342
|
+
mlrun-1.8.0rc6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
343
|
+
mlrun-1.8.0rc6.dist-info/METADATA,sha256=8roaqnmhOVgQjaSs2_xApcn24qTxpRhjcL9RQzZIt7Y,24456
|
|
344
|
+
mlrun-1.8.0rc6.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
345
|
+
mlrun-1.8.0rc6.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
346
|
+
mlrun-1.8.0rc6.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
347
|
+
mlrun-1.8.0rc6.dist-info/RECORD,,
|