mlrun 1.10.0rc2__py3-none-any.whl → 1.10.0rc3__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 -2
- mlrun/__main__.py +2 -2
- mlrun/artifacts/base.py +6 -6
- mlrun/artifacts/dataset.py +1 -1
- mlrun/artifacts/document.py +1 -1
- mlrun/artifacts/model.py +1 -1
- mlrun/artifacts/plots.py +2 -2
- mlrun/common/runtimes/constants.py +1 -8
- mlrun/common/schemas/artifact.py +1 -1
- mlrun/common/schemas/pipeline.py +1 -1
- mlrun/common/schemas/project.py +1 -1
- mlrun/common/schemas/runs.py +1 -1
- mlrun/config.py +4 -4
- mlrun/datastore/datastore_profile.py +2 -2
- mlrun/datastore/sources.py +3 -3
- mlrun/datastore/store_resources.py +3 -3
- mlrun/datastore/targets.py +5 -5
- mlrun/datastore/utils.py +2 -2
- mlrun/db/base.py +6 -6
- mlrun/db/httpdb.py +66 -66
- mlrun/errors.py +22 -1
- mlrun/feature_store/common.py +5 -5
- mlrun/feature_store/feature_set.py +10 -6
- mlrun/feature_store/feature_vector.py +8 -6
- mlrun/launcher/base.py +1 -1
- mlrun/lists.py +1 -1
- mlrun/model_monitoring/__init__.py +0 -1
- mlrun/model_monitoring/api.py +0 -44
- mlrun/model_monitoring/applications/evidently/base.py +3 -41
- mlrun/model_monitoring/controller.py +1 -1
- mlrun/model_monitoring/writer.py +1 -4
- mlrun/projects/operations.py +3 -3
- mlrun/projects/project.py +19 -19
- mlrun/run.py +10 -10
- mlrun/runtimes/base.py +6 -6
- mlrun/runtimes/kubejob.py +2 -2
- mlrun/runtimes/nuclio/function.py +3 -3
- mlrun/runtimes/nuclio/serving.py +13 -23
- mlrun/serving/__init__.py +5 -1
- mlrun/serving/server.py +39 -3
- mlrun/serving/states.py +34 -1
- mlrun/utils/helpers.py +10 -4
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc3.dist-info}/METADATA +21 -9
- {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc3.dist-info}/RECORD +49 -50
- {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc3.dist-info}/WHEEL +1 -1
- mlrun/model_monitoring/tracking_policy.py +0 -124
- {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc3.dist-info}/entry_points.txt +0 -0
- {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc3.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc3.dist-info}/top_level.txt +0 -0
mlrun/serving/__init__.py
CHANGED
|
@@ -30,7 +30,11 @@ __all__ = [
|
|
|
30
30
|
]
|
|
31
31
|
|
|
32
32
|
from .routers import ModelRouter, VotingEnsemble # noqa
|
|
33
|
-
from .server import
|
|
33
|
+
from .server import (
|
|
34
|
+
GraphContext,
|
|
35
|
+
GraphServer,
|
|
36
|
+
create_graph_server,
|
|
37
|
+
) # noqa
|
|
34
38
|
from .states import (
|
|
35
39
|
ErrorStep,
|
|
36
40
|
QueueStep,
|
mlrun/serving/server.py
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
__all__ = ["GraphServer", "create_graph_server", "GraphContext", "MockEvent"]
|
|
16
16
|
|
|
17
17
|
import asyncio
|
|
18
|
+
import copy
|
|
18
19
|
import json
|
|
19
20
|
import os
|
|
20
21
|
import socket
|
|
@@ -71,7 +72,7 @@ class _StreamContext:
|
|
|
71
72
|
if (enabled or log_stream) and function_uri:
|
|
72
73
|
self.enabled = True
|
|
73
74
|
project, _, _, _ = parse_versioned_object_uri(
|
|
74
|
-
function_uri, config.
|
|
75
|
+
function_uri, config.active_project
|
|
75
76
|
)
|
|
76
77
|
|
|
77
78
|
stream_args = parameters.get("stream_args", {})
|
|
@@ -108,7 +109,6 @@ class GraphServer(ModelObj):
|
|
|
108
109
|
graph_initializer=None,
|
|
109
110
|
error_stream=None,
|
|
110
111
|
track_models=None,
|
|
111
|
-
tracking_policy=None,
|
|
112
112
|
secret_sources=None,
|
|
113
113
|
default_content_type=None,
|
|
114
114
|
function_name=None,
|
|
@@ -129,7 +129,6 @@ class GraphServer(ModelObj):
|
|
|
129
129
|
self.graph_initializer = graph_initializer
|
|
130
130
|
self.error_stream = error_stream
|
|
131
131
|
self.track_models = track_models
|
|
132
|
-
self.tracking_policy = tracking_policy
|
|
133
132
|
self._error_stream_object = None
|
|
134
133
|
self.secret_sources = secret_sources
|
|
135
134
|
self._secrets = SecretsStore.from_list(secret_sources)
|
|
@@ -330,12 +329,49 @@ class GraphServer(ModelObj):
|
|
|
330
329
|
return self.graph.wait_for_completion()
|
|
331
330
|
|
|
332
331
|
|
|
332
|
+
def add_system_steps_to_graph(graph: RootFlowStep):
|
|
333
|
+
model_runner_raisers = {}
|
|
334
|
+
steps = list(graph.steps.values())
|
|
335
|
+
for step in steps:
|
|
336
|
+
if (
|
|
337
|
+
isinstance(step, mlrun.serving.states.ModelRunnerStep)
|
|
338
|
+
and step.raise_exception
|
|
339
|
+
):
|
|
340
|
+
error_step = graph.add_step(
|
|
341
|
+
class_name="mlrun.serving.states.ModelRunnerErrorRaiser",
|
|
342
|
+
name=f"{step.name}_error_raise",
|
|
343
|
+
after=step.name,
|
|
344
|
+
full_event=True,
|
|
345
|
+
raise_exception=step.raise_exception,
|
|
346
|
+
models_names=list(step.class_args["models"].keys()),
|
|
347
|
+
)
|
|
348
|
+
if step.responder:
|
|
349
|
+
step.responder = False
|
|
350
|
+
error_step.respond()
|
|
351
|
+
model_runner_raisers[step.name] = error_step.name
|
|
352
|
+
error_step.on_error = step.on_error
|
|
353
|
+
if isinstance(step.after, list):
|
|
354
|
+
for i in range(len(step.after)):
|
|
355
|
+
if step.after[i] in model_runner_raisers:
|
|
356
|
+
step.after[i] = model_runner_raisers[step.after[i]]
|
|
357
|
+
else:
|
|
358
|
+
if step.after in model_runner_raisers:
|
|
359
|
+
step.after = model_runner_raisers[step.after]
|
|
360
|
+
return graph
|
|
361
|
+
|
|
362
|
+
|
|
333
363
|
def v2_serving_init(context, namespace=None):
|
|
334
364
|
"""hook for nuclio init_context()"""
|
|
335
365
|
|
|
336
366
|
context.logger.info("Initializing server from spec")
|
|
337
367
|
spec = mlrun.utils.get_serving_spec()
|
|
338
368
|
server = GraphServer.from_dict(spec)
|
|
369
|
+
if isinstance(server.graph, RootFlowStep):
|
|
370
|
+
server.graph = add_system_steps_to_graph(copy.deepcopy(server.graph))
|
|
371
|
+
context.logger.info_with(
|
|
372
|
+
"Server graph after adding system steps",
|
|
373
|
+
graph=str(server.graph.steps),
|
|
374
|
+
)
|
|
339
375
|
|
|
340
376
|
if config.log_level.lower() == "debug":
|
|
341
377
|
server.verbose = True
|
mlrun/serving/states.py
CHANGED
|
@@ -47,7 +47,7 @@ from ..datastore.utils import (
|
|
|
47
47
|
get_kafka_brokers_from_dict,
|
|
48
48
|
parse_kafka_url,
|
|
49
49
|
)
|
|
50
|
-
from ..errors import MLRunInvalidArgumentError, err_to_str
|
|
50
|
+
from ..errors import MLRunInvalidArgumentError, ModelRunnerError, err_to_str
|
|
51
51
|
from ..model import ModelObj, ObjectDict
|
|
52
52
|
from ..platforms.iguazio import parse_path
|
|
53
53
|
from ..utils import get_class, get_function, is_explicit_ack_supported
|
|
@@ -1022,14 +1022,18 @@ class ModelRunnerStep(TaskStep, StepToDict):
|
|
|
1022
1022
|
|
|
1023
1023
|
:param model_selector: ModelSelector instance whose select() method will be used to select models to run on each
|
|
1024
1024
|
event. Optional. If not passed, all models will be run.
|
|
1025
|
+
:param raise_exception: If True, an error will be raised when model selection fails or if one of the models raised
|
|
1026
|
+
an error. If False, the error will appear in the output event.
|
|
1025
1027
|
"""
|
|
1026
1028
|
|
|
1027
1029
|
kind = "model_runner"
|
|
1030
|
+
_dict_fields = TaskStep._dict_fields + ["raise_exception"]
|
|
1028
1031
|
|
|
1029
1032
|
def __init__(
|
|
1030
1033
|
self,
|
|
1031
1034
|
*args,
|
|
1032
1035
|
model_selector: Optional[Union[str, ModelSelector]] = None,
|
|
1036
|
+
raise_exception: bool = True,
|
|
1033
1037
|
**kwargs,
|
|
1034
1038
|
):
|
|
1035
1039
|
super().__init__(
|
|
@@ -1038,6 +1042,7 @@ class ModelRunnerStep(TaskStep, StepToDict):
|
|
|
1038
1042
|
class_args=dict(model_selector=model_selector),
|
|
1039
1043
|
**kwargs,
|
|
1040
1044
|
)
|
|
1045
|
+
self.raise_exception = raise_exception
|
|
1041
1046
|
|
|
1042
1047
|
def add_model(
|
|
1043
1048
|
self,
|
|
@@ -1121,7 +1126,12 @@ class ModelRunnerStep(TaskStep, StepToDict):
|
|
|
1121
1126
|
model_objects = []
|
|
1122
1127
|
for model, model_params in models.values():
|
|
1123
1128
|
if not isinstance(model, Model):
|
|
1129
|
+
# prevent model predict from raising error
|
|
1130
|
+
model_params["raise_exception"] = False
|
|
1124
1131
|
model = get_class(model, namespace)(**model_params)
|
|
1132
|
+
else:
|
|
1133
|
+
# prevent model predict from raising error
|
|
1134
|
+
model._raise_exception = False
|
|
1125
1135
|
model_objects.append(model)
|
|
1126
1136
|
self._async_object = ModelRunner(
|
|
1127
1137
|
model_selector=model_selector,
|
|
@@ -1129,6 +1139,29 @@ class ModelRunnerStep(TaskStep, StepToDict):
|
|
|
1129
1139
|
)
|
|
1130
1140
|
|
|
1131
1141
|
|
|
1142
|
+
class ModelRunnerErrorRaiser(storey.MapClass):
|
|
1143
|
+
def __init__(self, raise_exception: bool, models_names: list[str], **kwargs):
|
|
1144
|
+
super().__init__(**kwargs)
|
|
1145
|
+
self._raise_exception = raise_exception
|
|
1146
|
+
self._models_names = models_names
|
|
1147
|
+
|
|
1148
|
+
def do(self, event):
|
|
1149
|
+
if self._raise_exception:
|
|
1150
|
+
errors = {}
|
|
1151
|
+
should_raise = False
|
|
1152
|
+
if len(self._models_names) == 1:
|
|
1153
|
+
should_raise = event.body.get("error") is not None
|
|
1154
|
+
errors[self._models_names[0]] = event.body.get("error")
|
|
1155
|
+
else:
|
|
1156
|
+
for model in event.body:
|
|
1157
|
+
errors[model] = event.body.get(model).get("error")
|
|
1158
|
+
if errors[model] is not None:
|
|
1159
|
+
should_raise = True
|
|
1160
|
+
if should_raise:
|
|
1161
|
+
raise ModelRunnerError(models_errors=errors)
|
|
1162
|
+
return event
|
|
1163
|
+
|
|
1164
|
+
|
|
1132
1165
|
class QueueStep(BaseStep, StepToDict):
|
|
1133
1166
|
"""queue step, implement an async queue or represent a stream"""
|
|
1134
1167
|
|
mlrun/utils/helpers.py
CHANGED
|
@@ -876,13 +876,18 @@ def enrich_image_url(
|
|
|
876
876
|
client_version: Optional[str] = None,
|
|
877
877
|
client_python_version: Optional[str] = None,
|
|
878
878
|
) -> str:
|
|
879
|
+
image_url = image_url.strip()
|
|
880
|
+
|
|
881
|
+
# Add python version tag if needed
|
|
882
|
+
if image_url == "python" and client_python_version:
|
|
883
|
+
image_url = f"python:{client_python_version}"
|
|
884
|
+
|
|
879
885
|
client_version = _convert_python_package_version_to_image_tag(client_version)
|
|
880
886
|
server_version = _convert_python_package_version_to_image_tag(
|
|
881
887
|
mlrun.utils.version.Version().get()["version"]
|
|
882
888
|
)
|
|
883
|
-
image_url = image_url.strip()
|
|
884
889
|
mlrun_version = config.images_tag or client_version or server_version
|
|
885
|
-
tag = mlrun_version
|
|
890
|
+
tag = mlrun_version or ""
|
|
886
891
|
|
|
887
892
|
# TODO: Remove condition when mlrun/mlrun-kfp image is also supported
|
|
888
893
|
if "mlrun-kfp" not in image_url:
|
|
@@ -2226,8 +2231,9 @@ class Workflow:
|
|
|
2226
2231
|
namespace=mlrun.mlconf.namespace,
|
|
2227
2232
|
)
|
|
2228
2233
|
|
|
2229
|
-
# arbitrary timeout of
|
|
2230
|
-
|
|
2234
|
+
# arbitrary timeout of 60 seconds, the workflow should be done by now, however sometimes kfp takes a few
|
|
2235
|
+
# seconds to update the workflow status
|
|
2236
|
+
kfp_run = kfp_client.wait_for_run_completion(workflow_id, 60)
|
|
2231
2237
|
if not kfp_run:
|
|
2232
2238
|
return None
|
|
2233
2239
|
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.0rc3
|
|
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,8 +51,8 @@ Requires-Dist: setuptools>=75.2
|
|
|
51
51
|
Requires-Dist: deprecated~=1.2
|
|
52
52
|
Requires-Dist: jinja2>=3.1.6,~=3.1
|
|
53
53
|
Requires-Dist: orjson<4,>=3.9.15
|
|
54
|
-
Requires-Dist: mlrun-pipelines-kfp-common~=0.5.
|
|
55
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
54
|
+
Requires-Dist: mlrun-pipelines-kfp-common~=0.5.5
|
|
55
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.2
|
|
56
56
|
Requires-Dist: docstring_parser~=0.16
|
|
57
57
|
Requires-Dist: aiosmtplib~=3.0
|
|
58
58
|
Provides-Extra: s3
|
|
@@ -118,7 +118,7 @@ Requires-Dist: timelength~=1.1; extra == "api"
|
|
|
118
118
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "api"
|
|
119
119
|
Requires-Dist: aiosmtplib~=3.0; extra == "api"
|
|
120
120
|
Requires-Dist: pydantic<2,>=1; extra == "api"
|
|
121
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
121
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.2; extra == "api"
|
|
122
122
|
Requires-Dist: grpcio~=1.70.0; extra == "api"
|
|
123
123
|
Provides-Extra: all
|
|
124
124
|
Requires-Dist: adlfs==2023.9.0; extra == "all"
|
|
@@ -212,7 +212,7 @@ Requires-Dist: igz-mgmt~=0.4.1; extra == "complete-api"
|
|
|
212
212
|
Requires-Dist: kafka-python~=2.1.0; extra == "complete-api"
|
|
213
213
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "complete-api"
|
|
214
214
|
Requires-Dist: mlflow~=2.16; extra == "complete-api"
|
|
215
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
215
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.2; extra == "complete-api"
|
|
216
216
|
Requires-Dist: msrest~=0.6.21; extra == "complete-api"
|
|
217
217
|
Requires-Dist: objgraph~=3.6; extra == "complete-api"
|
|
218
218
|
Requires-Dist: oss2==2.18.1; extra == "complete-api"
|
|
@@ -252,7 +252,19 @@ Dynamic: summary
|
|
|
252
252
|

|
|
253
253
|
[](https://mlopslive.slack.com)
|
|
254
254
|
|
|
255
|
-
<
|
|
255
|
+
<div>
|
|
256
|
+
<span>
|
|
257
|
+
<picture>
|
|
258
|
+
<img img align="left" src="./docs/_static/images/MLRun-logo.png" alt="MLRun logo" width="150"/>
|
|
259
|
+
</picture>
|
|
260
|
+
</span>
|
|
261
|
+
<span>
|
|
262
|
+
<picture>
|
|
263
|
+
<img img align="right" src="./docs/_static/images/maintenance_logo.svg" alt="Maintenance logo" width="250"/>
|
|
264
|
+
</picture>
|
|
265
|
+
</span>
|
|
266
|
+
<br clear="all"/>
|
|
267
|
+
</div>
|
|
256
268
|
|
|
257
269
|
# Using MLRun
|
|
258
270
|
|
|
@@ -268,7 +280,7 @@ See the supported data stores, development tools, services, platforms, etc., sup
|
|
|
268
280
|
|
|
269
281
|
## Gen AI tasks
|
|
270
282
|
|
|
271
|
-
<p align="center"><img src="
|
|
283
|
+
<p align="center"><img src="./docs/_static/images/ai-tasks.png" alt="ai-tasks" width="800"/></p><br>
|
|
272
284
|
|
|
273
285
|
Use MLRun to develop, scale, deploy, and monitor your AI model across your enterprise. The [**gen AI development workflow**](https://docs.mlrun.org/en/stable/genai/genai-flow.html)
|
|
274
286
|
section describes the different tasks and stages in detail.
|
|
@@ -333,7 +345,7 @@ Collect production data, metadata, and metrics to tune the model and application
|
|
|
333
345
|
<a id="mlops-tasks"></a>
|
|
334
346
|
## MLOps tasks
|
|
335
347
|
|
|
336
|
-
<p align="center"><img src="
|
|
348
|
+
<p align="center"><img src="./docs/_static/images/mlops-task.png" alt="mlrun-tasks" width="800"/></p><br>
|
|
337
349
|
|
|
338
350
|
The [**MLOps development workflow**](https://docs.mlrun.org/en/stable/mlops-dev-flow.html) section describes the different tasks and stages in detail.
|
|
339
351
|
MLRun can be used to automate and orchestrate all the different tasks or just specific tasks (and integrate them with what you have already deployed).
|
|
@@ -383,7 +395,7 @@ Observability is built into the different MLRun objects (data, functions, jobs,
|
|
|
383
395
|
<a id="core-components"></a>
|
|
384
396
|
## MLRun core components
|
|
385
397
|
|
|
386
|
-
<p align="center"><img src="
|
|
398
|
+
<p align="center"><img src="./docs/_static/images/mlops-core.png" alt="mlrun-core" width="800"/></p><br>
|
|
387
399
|
|
|
388
400
|
|
|
389
401
|
MLRun includes the following major components:
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
mlrun/__init__.py,sha256=
|
|
2
|
-
mlrun/__main__.py,sha256=
|
|
3
|
-
mlrun/config.py,sha256=
|
|
4
|
-
mlrun/errors.py,sha256=
|
|
1
|
+
mlrun/__init__.py,sha256=uhNeFUVaV2spRa94u9tNZjMdLBixdu-9iY-uzORjsKQ,7448
|
|
2
|
+
mlrun/__main__.py,sha256=6Mihuy3M7l80rJKM-MeKJdzwMbidfgVw-i7CxqToNnY,46351
|
|
3
|
+
mlrun/config.py,sha256=LnyXHUThLZGoD4XqefNfc1Ii_HnOaRyuUgdUU0PyjJ4,71912
|
|
4
|
+
mlrun/errors.py,sha256=bAk0t_qmCxQSPNK0TugOAfA5R6f0G6OYvEvXUWSJ_5U,9062
|
|
5
5
|
mlrun/execution.py,sha256=ZUFUWj3BwCybTmxXqv9Yc42VF96qwhyuTj_bTS-5UWE,50663
|
|
6
6
|
mlrun/features.py,sha256=jMEXo6NB36A6iaxNEJWzdtYwUmglYD90OIKTIEeWhE8,15841
|
|
7
7
|
mlrun/k8s_utils.py,sha256=mMnGyouHoJC93ZD2KGf9neJM1pD7mR9IXLnHOEwYVTQ,21469
|
|
8
|
-
mlrun/lists.py,sha256
|
|
8
|
+
mlrun/lists.py,sha256=OlaV2QIFUzmenad9kxNJ3k4whlDyxI3zFbGwr6vpC5Y,8561
|
|
9
9
|
mlrun/model.py,sha256=wZADXOzaKMInw6w7xRxaSzx7Xgazlf_oJtWfoqPX8bE,86301
|
|
10
10
|
mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
|
|
11
|
-
mlrun/run.py,sha256=
|
|
11
|
+
mlrun/run.py,sha256=BxvFdPmjI4gqhJlPom9OvgK1KMtzIpoySr4lmjjt05A,45133
|
|
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=QQFZGydQbx9RvAaSiaH-ALQZVcDKQX5lgizqj_rXW2k,15948
|
|
15
15
|
mlrun/api/schemas/__init__.py,sha256=b8pOb-hPeojIisSSiy5zwMh-uZAebyB2mAnmGGLe5Sc,13919
|
|
16
16
|
mlrun/artifacts/__init__.py,sha256=ofC2extBCOC1wg1YtdTzWzH3eeG_f-sFBUkHjYtZJpk,1175
|
|
17
|
-
mlrun/artifacts/base.py,sha256=
|
|
18
|
-
mlrun/artifacts/dataset.py,sha256=
|
|
19
|
-
mlrun/artifacts/document.py,sha256=
|
|
17
|
+
mlrun/artifacts/base.py,sha256=m7cUAsK6wF9I7k6AhgM0RIvFoH15gx69JIRYj3cjiRQ,29981
|
|
18
|
+
mlrun/artifacts/dataset.py,sha256=p8Rk0yrBUszh4pe7VLfcUK9piD-J_UX_X6gU5fYCyQg,16665
|
|
19
|
+
mlrun/artifacts/document.py,sha256=p5HsWdmIIJ0NahS7y3EEQN2tfHtUrUmUG-8BEEyi_Jc,17373
|
|
20
20
|
mlrun/artifacts/manager.py,sha256=bqp2-VgThx5RAGEui6LwTA9EMNNq6Vu1Z_-yjBpk92c,16212
|
|
21
|
-
mlrun/artifacts/model.py,sha256=
|
|
22
|
-
mlrun/artifacts/plots.py,sha256=
|
|
21
|
+
mlrun/artifacts/model.py,sha256=J5b8zODrpx5ULtsgS9RGKqzMXYs7ADacE0BLBglmhrs,22239
|
|
22
|
+
mlrun/artifacts/plots.py,sha256=TxOHBaGbj7fEKNTHVIM_uxQjqPLpU3Rh1pqGh2_inuo,4833
|
|
23
23
|
mlrun/common/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
24
24
|
mlrun/common/constants.py,sha256=Yj5YHANbpKHDKxZ1y5bV1wifvV3UQZ2QuvECUuYhrpM,3594
|
|
25
25
|
mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
|
|
@@ -38,11 +38,11 @@ mlrun/common/formatters/project.py,sha256=4cxC5B6PKvpL2SYxxqg9vpEhoaWtart6iCIr2A
|
|
|
38
38
|
mlrun/common/formatters/run.py,sha256=LlqhhVY4dAp5y17k_sWBtHaJogdNdtJWF0iO9sX-bUw,1059
|
|
39
39
|
mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
40
40
|
mlrun/common/model_monitoring/helpers.py,sha256=AkuHz4u318MEP4ebxmNWlNXh6HiNLrI5oF7QvJiJkYc,2707
|
|
41
|
-
mlrun/common/runtimes/constants.py,sha256=
|
|
41
|
+
mlrun/common/runtimes/constants.py,sha256=JwPiu_yq96atods3B4OVIRDre9tF7v6qxeFK93Q8WgI,12324
|
|
42
42
|
mlrun/common/schemas/__init__.py,sha256=6f5oAznWONwTb0oxEwdBomdQrv-pfymwPWu85JOWqBc,5400
|
|
43
43
|
mlrun/common/schemas/alert.py,sha256=u6INAHBhQIfm-mMsGqDJo1_JDN6gOuWZa-8fOU-aOUE,10182
|
|
44
44
|
mlrun/common/schemas/api_gateway.py,sha256=bgC3vXbyb1SVwsSZkLXtEoQLCe_QDKpIhAVX3X_HWW4,7126
|
|
45
|
-
mlrun/common/schemas/artifact.py,sha256
|
|
45
|
+
mlrun/common/schemas/artifact.py,sha256=OqK0BFAFmNJXWSJZ7r4BAP8Cc136SJh1vYKoHE-lReE,4249
|
|
46
46
|
mlrun/common/schemas/auth.py,sha256=t8mEHc3MXNsAeKuv3khDwxitrwW0s7kbBSuhFKXXH7Y,6879
|
|
47
47
|
mlrun/common/schemas/background_task.py,sha256=v_LIQnPlqs9mYXNZl7a7Ay4q1d3pOl7KqiCtm1vfPxk,1727
|
|
48
48
|
mlrun/common/schemas/client_spec.py,sha256=-8fYRjcded-e0xqAEEd3LsXtgvk1hv1MKYmtu2zdpcc,2874
|
|
@@ -62,10 +62,10 @@ mlrun/common/schemas/notification.py,sha256=Q-tBaU_V7YZiuj3ankuACf3_-hb874_osxq0
|
|
|
62
62
|
mlrun/common/schemas/object.py,sha256=9g2bK3KUXmzhaGavbmpVf6rxDhquYogp8bb12dzP4XE,1982
|
|
63
63
|
mlrun/common/schemas/pagination.py,sha256=8NEmiIkCXw5_sv-lE0MWgWz-WpxhSSn-vBtbPDBOGXc,899
|
|
64
64
|
mlrun/common/schemas/partition.py,sha256=crl61DzS-9i5rCyHUbjtpTCk03lluxfb2dS0o1gdLH4,5920
|
|
65
|
-
mlrun/common/schemas/pipeline.py,sha256=
|
|
66
|
-
mlrun/common/schemas/project.py,sha256=
|
|
65
|
+
mlrun/common/schemas/pipeline.py,sha256=zm1cBpkhySQGfKwYz2HlsxNSDLwfmTY3W58SXPXjdME,1435
|
|
66
|
+
mlrun/common/schemas/project.py,sha256=IxewdIkv7sz_8nT_UNdKKFPYVvKBdDi-H5rX0BzQgKQ,6510
|
|
67
67
|
mlrun/common/schemas/regex.py,sha256=r-phg_9ge1lFraPCQd_wpnYGQ1oOCj3xChycJxZtIQY,775
|
|
68
|
-
mlrun/common/schemas/runs.py,sha256
|
|
68
|
+
mlrun/common/schemas/runs.py,sha256=Lo95LJVcLlYNkepgljxKC7VnMfnYNidcmdxKu2-jz0E,1275
|
|
69
69
|
mlrun/common/schemas/runtime_resource.py,sha256=TybJmCHJXmm1z3s5J1dd89TeFE6lG5t7vjcrf1R9YfE,1568
|
|
70
70
|
mlrun/common/schemas/schedule.py,sha256=L7z9Lp06-xmFmdp0q5PypCU_DCl6zZIyQTVoJa01gfM,4291
|
|
71
71
|
mlrun/common/schemas/secret.py,sha256=Td2UAeWHSAdA4nIP3rQv_PIVKVqcBnCnK6xjr528tS8,1486
|
|
@@ -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=9R3lwB_L4hv5WW2q24WS62_KTh-wO4UG6pwzISZU6bM,26231
|
|
88
88
|
mlrun/datastore/datastore.py,sha256=AXXPgHpSG8Ig1RtTDGfdCJu4UT-AQPC43FGBOptIVOg,9484
|
|
89
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
89
|
+
mlrun/datastore/datastore_profile.py,sha256=EL3XJMTgfufe1blF23v39kyDQ8uOJrWYx54ErgbBATc,22093
|
|
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,28 +95,28 @@ 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=lD4Fs69rwMeISovZzOxRdz_z9FuffysTdjJA9ybdnLA,9262
|
|
97
97
|
mlrun/datastore/snowflake_utils.py,sha256=KBbIN8REEuQyk1tVIW33rpwORzbC0Wmj0pm43h-dInA,1481
|
|
98
|
-
mlrun/datastore/sources.py,sha256=
|
|
98
|
+
mlrun/datastore/sources.py,sha256=5Y_jttMCqITkRRgqxRfQMSKRMo-dKc-P1su6XmwZ3FM,49389
|
|
99
99
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
100
100
|
mlrun/datastore/spark_utils.py,sha256=dn0RWpYzee-M8UZw-NVuHAdqlNAZ7VO-fNtI8ZiDkyM,2864
|
|
101
|
-
mlrun/datastore/store_resources.py,sha256=
|
|
101
|
+
mlrun/datastore/store_resources.py,sha256=s2794zqkzy_mjRMvRedDNs_tycTLoF8wxTqsWRQphCE,6839
|
|
102
102
|
mlrun/datastore/storeytargets.py,sha256=dSy9wr4IyxrIE1GHBxzVEeEY1sdU66s4w-oUuaIfa2U,6620
|
|
103
|
-
mlrun/datastore/targets.py,sha256=
|
|
104
|
-
mlrun/datastore/utils.py,sha256=
|
|
103
|
+
mlrun/datastore/targets.py,sha256=rVHWo-WtnPuO9OJ7089iAuqhzWcSzLOf4QCH7K1q8dg,81212
|
|
104
|
+
mlrun/datastore/utils.py,sha256=ZtLOJZbQbaWJ7quXc38naPIFDWlFFO-9pZl-dZetL18,11238
|
|
105
105
|
mlrun/datastore/v3io.py,sha256=QSYBORRLcJTeM9mt0EaWzyLcdmzrPkqrF7k5uLTam5U,8209
|
|
106
106
|
mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
|
|
107
107
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
108
108
|
mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
|
|
109
109
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
110
110
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
111
|
-
mlrun/db/base.py,sha256=
|
|
111
|
+
mlrun/db/base.py,sha256=lfPEPUBXPdmzXUhFD0hDBBWXdV7HXfcsz9Gj_AMLllg,30819
|
|
112
112
|
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
113
|
-
mlrun/db/httpdb.py,sha256=
|
|
113
|
+
mlrun/db/httpdb.py,sha256=Zwc3JBps3E1BC6mtbuHoO9jXand0uo729_jDsb3PSNo,232791
|
|
114
114
|
mlrun/db/nopdb.py,sha256=uNqqT5TPpUNL8syY-UjWsJeeCprlMrq7g6yOwuMyKhc,27196
|
|
115
115
|
mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
|
|
116
116
|
mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
|
|
117
|
-
mlrun/feature_store/common.py,sha256=
|
|
118
|
-
mlrun/feature_store/feature_set.py,sha256=
|
|
119
|
-
mlrun/feature_store/feature_vector.py,sha256=
|
|
117
|
+
mlrun/feature_store/common.py,sha256=JlQA7XWkg9fLuw7cXFmWpUneQqM3NBhwv7DU_xlenWI,12819
|
|
118
|
+
mlrun/feature_store/feature_set.py,sha256=HNLZ9pAzS16dgMMQzwTUsIh0dqpa08-fRX4PEwUbmNc,55785
|
|
119
|
+
mlrun/feature_store/feature_vector.py,sha256=OCPgHkvPNwKUYgjGBP0S-NRJvm0vnvrcyIWMJxz1JVk,31117
|
|
120
120
|
mlrun/feature_store/feature_vector_utils.py,sha256=1EIzCG5dtZu-lbvVP68yv2u8NkWo-aSin-uH5iLMByM,17189
|
|
121
121
|
mlrun/feature_store/ingestion.py,sha256=kT3Hbz1PBjsJd-GPBm2ap0sg9-fiXxaSXoEIo-dOXpU,11361
|
|
122
122
|
mlrun/feature_store/steps.py,sha256=Hk-pCwP0l-ff_gcgkXwUohI-mPGjzA__k9jDRxJLBxQ,29326
|
|
@@ -212,19 +212,18 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=KINOf0udbY75raTewjEFGNlIRyE0e
|
|
|
212
212
|
mlrun/frameworks/xgboost/model_handler.py,sha256=bJq4D1VK3rzhALovqIV5mS0LvGiTlsgAkHanD25pU2c,11663
|
|
213
213
|
mlrun/frameworks/xgboost/utils.py,sha256=4rShiFChzDbWJ4HoTo4qV_lj-Z89pHBAp6Z1yHmU8wA,1068
|
|
214
214
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
215
|
-
mlrun/launcher/base.py,sha256=
|
|
215
|
+
mlrun/launcher/base.py,sha256=VUjXoYcCopdJgSTkGDPOJWcZavKDoqmExv7GjqyRiws,16481
|
|
216
216
|
mlrun/launcher/client.py,sha256=iZS5rqIf2do1XNGJ4oyQHkdQtndr48l9Mffs_xCI_NI,6280
|
|
217
217
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
218
218
|
mlrun/launcher/local.py,sha256=9XEkWSRYokXbtL1d_XEH3yTNU2fQXX7JcUwfC_8NG_4,11457
|
|
219
219
|
mlrun/launcher/remote.py,sha256=GYXsxVIwcUZ1V-cv2R3Yk4nSoUeAtRurEawrUN3AkEE,7715
|
|
220
|
-
mlrun/model_monitoring/__init__.py,sha256=
|
|
221
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
222
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
220
|
+
mlrun/model_monitoring/__init__.py,sha256=2zigVN5JUnOhRcqGBd4gj0ctubVlyEvxmxXix0De5GQ,709
|
|
221
|
+
mlrun/model_monitoring/api.py,sha256=lAsUp-gzqw8D1cpHVGA2_nPMYn5R4jdxk9UaGOiQ8fE,25945
|
|
222
|
+
mlrun/model_monitoring/controller.py,sha256=CQxK9Sq5k8XonvVBQnSimakpTwMMAyqT5mOaG534MaM,37660
|
|
223
223
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
224
224
|
mlrun/model_monitoring/helpers.py,sha256=8QsoYRPOVSnR3Lcv99m4XYrp_cR6hSqBUflYSOkJmFQ,21019
|
|
225
225
|
mlrun/model_monitoring/stream_processing.py,sha256=Gu3TQzYoNjbreZYI73-F49QpYrod9RZOyGSgininBsA,33373
|
|
226
|
-
mlrun/model_monitoring/
|
|
227
|
-
mlrun/model_monitoring/writer.py,sha256=ibbhvfSHb8Reqlb7RGFEAUNM4iTyK1gk8-2m46mP6VM,8428
|
|
226
|
+
mlrun/model_monitoring/writer.py,sha256=rGRFzSOkqZWvD3Y6sVk2H1Gepfnkzkp9ce00PsApTLo,8288
|
|
228
227
|
mlrun/model_monitoring/applications/__init__.py,sha256=MaH_n4GiqqQvSkntM5yQ7_FCANtM_IfgK-IJTdo4G_E,757
|
|
229
228
|
mlrun/model_monitoring/applications/_application_steps.py,sha256=mjuBVqa7KY_Ymoo8DzddthUpBZyfio2e4O5ce-d-2eY,8444
|
|
230
229
|
mlrun/model_monitoring/applications/base.py,sha256=f73LycKUG85invl6l7V4MRiRd1bx8jmepayrpwpr3c0,25131
|
|
@@ -232,7 +231,7 @@ mlrun/model_monitoring/applications/context.py,sha256=VfyPCIdO4z73uqFcJs87jzSI4P
|
|
|
232
231
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
|
|
233
232
|
mlrun/model_monitoring/applications/results.py,sha256=_qmj6TWT0SR2bi7gUyRKBU418eGgGoLW2_hTJ7S-ock,5782
|
|
234
233
|
mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
|
|
235
|
-
mlrun/model_monitoring/applications/evidently/base.py,sha256=
|
|
234
|
+
mlrun/model_monitoring/applications/evidently/base.py,sha256=shH9YwuFrGNWy1IDAbv622l-GE4o1z_u1bqhqTyTHDA,5661
|
|
236
235
|
mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
|
|
237
236
|
mlrun/model_monitoring/db/_schedules.py,sha256=RWn4wtKsIXg668gMLpxO9I8GlkxvPSaA5y7w-wFDcgE,9048
|
|
238
237
|
mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
|
|
@@ -269,16 +268,16 @@ mlrun/package/utils/type_hint_utils.py,sha256=Ic3A7C9KnbfdLe-nUgzGoefBnsvOJJP9ip
|
|
|
269
268
|
mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3551
|
|
270
269
|
mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
|
|
271
270
|
mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
|
|
272
|
-
mlrun/projects/operations.py,sha256=
|
|
271
|
+
mlrun/projects/operations.py,sha256=dbCWb-KNlIIJeZH9lp4Y2PxkYMkZI2pJPYbMSbiDWe4,20840
|
|
273
272
|
mlrun/projects/pipelines.py,sha256=wud7ezeEmhIJvfYE_wzQbA4ygEfGXHtbOtoOpan6poY,48556
|
|
274
|
-
mlrun/projects/project.py,sha256=
|
|
273
|
+
mlrun/projects/project.py,sha256=F8bgxEYv9ffxHXFPwCPbI9ZUV7Z8KlVIi_SlmNwOxJ4,238691
|
|
275
274
|
mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
|
|
276
|
-
mlrun/runtimes/base.py,sha256=
|
|
275
|
+
mlrun/runtimes/base.py,sha256=QsHYTIMlfzElbGZ3yAzyHK5IdXFIfsYIv3dRUnN7c44,38493
|
|
277
276
|
mlrun/runtimes/daskjob.py,sha256=BHJ-BiAIozj9vQAnpsR0mN9xXQ7RE8aISEGPUR0d2-k,19558
|
|
278
277
|
mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
|
|
279
278
|
mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
|
|
280
279
|
mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
|
|
281
|
-
mlrun/runtimes/kubejob.py,sha256=
|
|
280
|
+
mlrun/runtimes/kubejob.py,sha256=xt6NyPiIiPYmGDFtTe4RHF-zhrFdgwcnRr2NQEBB5NI,8799
|
|
282
281
|
mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
|
|
283
282
|
mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
|
|
284
283
|
mlrun/runtimes/pod.py,sha256=nucFAGTcKbN79VRs06NVmcEnahtkQAsX_9MDDum3_Zg,51755
|
|
@@ -293,21 +292,21 @@ mlrun/runtimes/mpijob/abstract.py,sha256=JGMjcJ4dvpJbctF6psU9UvYyNCutMxTMgBQeTlz
|
|
|
293
292
|
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
294
293
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
295
294
|
mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
|
|
296
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
295
|
+
mlrun/runtimes/nuclio/function.py,sha256=JgqMf_nG19O-XRzy3QkvaVHvbPRXiuoS8FUJvOQmqrs,54720
|
|
297
296
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
298
|
-
mlrun/runtimes/nuclio/serving.py,sha256=
|
|
297
|
+
mlrun/runtimes/nuclio/serving.py,sha256=8q3ClEqshYqZw6vdwxRfLJ2nchTY63nbLjcu_xmtsAU,32903
|
|
299
298
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
300
299
|
mlrun/runtimes/nuclio/application/application.py,sha256=VPX-ruYQJ7-7yd5c2sWdF4U5JCGSS3kYjUfOgev6l_Y,29186
|
|
301
300
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
|
|
302
301
|
mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
|
|
303
302
|
mlrun/runtimes/sparkjob/spark3job.py,sha256=nhV9K12cO2NNvgBsiZk0K9fQKSuDY4njrgSl57O7eic,41022
|
|
304
|
-
mlrun/serving/__init__.py,sha256=
|
|
303
|
+
mlrun/serving/__init__.py,sha256=ujpKHIsHXJz5TELwEIsjMbijxONRg7kZ6ZcVONcRjcs,1324
|
|
305
304
|
mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
|
|
306
305
|
mlrun/serving/remote.py,sha256=Igha2FipK3-6rV_PZ1K464kTbiTu8rhc6SMm-HiEJ6o,18817
|
|
307
306
|
mlrun/serving/routers.py,sha256=SY6AsaiSnh8ssXq8hQE2z9MYapOxFOFJBx9QomiZMO8,53915
|
|
308
|
-
mlrun/serving/server.py,sha256=
|
|
307
|
+
mlrun/serving/server.py,sha256=ZjrNvrp87IMJFM0EZwzRKl42nR4RoP3U6frqKJ6FqcI,24847
|
|
309
308
|
mlrun/serving/serving_wrapper.py,sha256=UL9hhWCfMPcTJO_XrkvNaFvck1U1E7oS8trTZyak0cA,835
|
|
310
|
-
mlrun/serving/states.py,sha256=
|
|
309
|
+
mlrun/serving/states.py,sha256=z9SO1ezBWXLSukQkFkOfoyvAREaqtxzGbdLhc9FC75M,80744
|
|
311
310
|
mlrun/serving/utils.py,sha256=Zbfqm8TKNcTE8zRBezVBzpvR2WKeKeIRN7otNIaiYEc,4170
|
|
312
311
|
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
313
312
|
mlrun/serving/v2_serving.py,sha256=b3C5Utv2_AOPrH_hPi3NarjNbAK3kRoeIfqMU4qNuUo,25362
|
|
@@ -322,7 +321,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
322
321
|
mlrun/utils/clones.py,sha256=qbAGyEbSvlewn3Tw_DpQZP9z6MGzFhSaZfI1CblX8Fg,7515
|
|
323
322
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
324
323
|
mlrun/utils/db.py,sha256=UIYDPHvPxim8tpjeD4S2QbfTx9Bhe-VqUQjqYTRHFuo,2185
|
|
325
|
-
mlrun/utils/helpers.py,sha256=
|
|
324
|
+
mlrun/utils/helpers.py,sha256=uAILCRa54zxb-X4gSPEeJ8Sq0fVHoLyGreaYqwFyyiE,77062
|
|
326
325
|
mlrun/utils/http.py,sha256=5ZU2VpokaUM_DT3HBSqTm8xjUqTPjZN5fKkSIvKlTl0,8704
|
|
327
326
|
mlrun/utils/logger.py,sha256=RG0m1rx6gfkJ-2C1r_p41MMpPiaDYqaYM2lYHDlNZEU,14767
|
|
328
327
|
mlrun/utils/regex.py,sha256=FcRwWD8x9X3HLhCCU2F0AVKTFah784Pr7ZAe3a02jw8,5199
|
|
@@ -341,11 +340,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
|
|
|
341
340
|
mlrun/utils/notifications/notification/slack.py,sha256=eQvmctTh6wIG5xVOesLLV9S1-UUCu5UEQ9JIJOor3ts,7183
|
|
342
341
|
mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
|
|
343
342
|
mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
|
|
344
|
-
mlrun/utils/version/version.json,sha256=
|
|
343
|
+
mlrun/utils/version/version.json,sha256=2ffb-5sPr5njfiAZ6rWEgAlBTEe2ICSZG4AOOhpEA7w,89
|
|
345
344
|
mlrun/utils/version/version.py,sha256=M2hVhRrgkN3SxacZHs3ZqaOsqAA7B6a22ne324IQ1HE,1877
|
|
346
|
-
mlrun-1.10.
|
|
347
|
-
mlrun-1.10.
|
|
348
|
-
mlrun-1.10.
|
|
349
|
-
mlrun-1.10.
|
|
350
|
-
mlrun-1.10.
|
|
351
|
-
mlrun-1.10.
|
|
345
|
+
mlrun-1.10.0rc3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
346
|
+
mlrun-1.10.0rc3.dist-info/METADATA,sha256=pRD7thtYFnX7qAIcJku2WRi8M37MSTWo0_Psipw0FFs,25777
|
|
347
|
+
mlrun-1.10.0rc3.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
348
|
+
mlrun-1.10.0rc3.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
349
|
+
mlrun-1.10.0rc3.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
350
|
+
mlrun-1.10.0rc3.dist-info/RECORD,,
|