mlrun 1.7.0rc39__py3-none-any.whl → 1.7.0rc41__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/common/constants.py +3 -0
- mlrun/common/helpers.py +0 -1
- mlrun/common/schemas/model_monitoring/model_endpoints.py +0 -1
- mlrun/config.py +1 -1
- mlrun/data_types/to_pandas.py +9 -9
- mlrun/datastore/alibaba_oss.py +1 -0
- mlrun/datastore/azure_blob.py +1 -6
- mlrun/datastore/base.py +12 -0
- mlrun/datastore/dbfs_store.py +1 -5
- mlrun/datastore/filestore.py +1 -3
- mlrun/datastore/google_cloud_storage.py +1 -9
- mlrun/datastore/redis.py +1 -0
- mlrun/datastore/s3.py +1 -0
- mlrun/datastore/storeytargets.py +147 -0
- mlrun/datastore/targets.py +67 -69
- mlrun/datastore/v3io.py +1 -0
- mlrun/model_monitoring/api.py +1 -2
- mlrun/model_monitoring/applications/_application_steps.py +25 -43
- mlrun/model_monitoring/applications/context.py +206 -70
- mlrun/model_monitoring/controller.py +0 -1
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py +17 -8
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +14 -4
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +11 -3
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +35 -23
- mlrun/model_monitoring/helpers.py +38 -1
- mlrun/model_monitoring/stream_processing.py +8 -26
- mlrun/projects/project.py +17 -16
- mlrun/runtimes/nuclio/api_gateway.py +9 -0
- mlrun/runtimes/nuclio/application/application.py +131 -55
- mlrun/runtimes/nuclio/function.py +4 -10
- mlrun/runtimes/nuclio/serving.py +2 -2
- mlrun/runtimes/utils.py +16 -0
- mlrun/serving/routers.py +1 -1
- mlrun/serving/server.py +19 -5
- mlrun/serving/states.py +8 -0
- mlrun/serving/v2_serving.py +34 -26
- mlrun/utils/helpers.py +12 -2
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.0rc39.dist-info → mlrun-1.7.0rc41.dist-info}/METADATA +2 -2
- {mlrun-1.7.0rc39.dist-info → mlrun-1.7.0rc41.dist-info}/RECORD +44 -43
- {mlrun-1.7.0rc39.dist-info → mlrun-1.7.0rc41.dist-info}/WHEEL +1 -1
- {mlrun-1.7.0rc39.dist-info → mlrun-1.7.0rc41.dist-info}/LICENSE +0 -0
- {mlrun-1.7.0rc39.dist-info → mlrun-1.7.0rc41.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.0rc39.dist-info → mlrun-1.7.0rc41.dist-info}/top_level.txt +0 -0
|
@@ -418,14 +418,8 @@ class RemoteRuntime(KubeResource):
|
|
|
418
418
|
raise ValueError(
|
|
419
419
|
"gateway timeout must be greater than the worker timeout"
|
|
420
420
|
)
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
)
|
|
424
|
-
annotations["nginx.ingress.kubernetes.io/proxy-read-timeout"] = (
|
|
425
|
-
f"{gateway_timeout}"
|
|
426
|
-
)
|
|
427
|
-
annotations["nginx.ingress.kubernetes.io/proxy-send-timeout"] = (
|
|
428
|
-
f"{gateway_timeout}"
|
|
421
|
+
mlrun.runtimes.utils.enrich_gateway_timeout_annotations(
|
|
422
|
+
annotations, gateway_timeout
|
|
429
423
|
)
|
|
430
424
|
|
|
431
425
|
trigger = nuclio.HttpTrigger(
|
|
@@ -753,7 +747,7 @@ class RemoteRuntime(KubeResource):
|
|
|
753
747
|
return state, text, last_log_timestamp
|
|
754
748
|
|
|
755
749
|
try:
|
|
756
|
-
text, last_log_timestamp = self._get_db().
|
|
750
|
+
text, last_log_timestamp = self._get_db().get_nuclio_deploy_status(
|
|
757
751
|
self, last_log_timestamp=last_log_timestamp, verbose=verbose
|
|
758
752
|
)
|
|
759
753
|
except mlrun.db.RunDBError:
|
|
@@ -1004,7 +998,7 @@ class RemoteRuntime(KubeResource):
|
|
|
1004
998
|
if command and not command.startswith("http"):
|
|
1005
999
|
sidecar["command"] = mlrun.utils.helpers.as_list(command)
|
|
1006
1000
|
|
|
1007
|
-
if args and sidecar
|
|
1001
|
+
if args and sidecar.get("command"):
|
|
1008
1002
|
sidecar["args"] = mlrun.utils.helpers.as_list(args)
|
|
1009
1003
|
|
|
1010
1004
|
# populate the sidecar resources from the function spec
|
mlrun/runtimes/nuclio/serving.py
CHANGED
|
@@ -676,7 +676,6 @@ class ServingRuntime(RemoteRuntime):
|
|
|
676
676
|
"""create mock server object for local testing/emulation
|
|
677
677
|
|
|
678
678
|
:param namespace: one or list of namespaces/modules to search the steps classes/functions in
|
|
679
|
-
:param log_level: log level (error | info | debug)
|
|
680
679
|
:param current_function: specify if you want to simulate a child function, * for all functions
|
|
681
680
|
:param track_models: allow model tracking (disabled by default in the mock server)
|
|
682
681
|
:param workdir: working directory to locate the source code (if not the current one)
|
|
@@ -704,7 +703,7 @@ class ServingRuntime(RemoteRuntime):
|
|
|
704
703
|
verbose=self.verbose,
|
|
705
704
|
current_function=current_function,
|
|
706
705
|
graph_initializer=self.spec.graph_initializer,
|
|
707
|
-
track_models=
|
|
706
|
+
track_models=self.spec.track_models,
|
|
708
707
|
function_uri=self._function_uri(),
|
|
709
708
|
secret_sources=self.spec.secret_sources,
|
|
710
709
|
default_content_type=self.spec.default_content_type,
|
|
@@ -715,6 +714,7 @@ class ServingRuntime(RemoteRuntime):
|
|
|
715
714
|
namespace=namespace,
|
|
716
715
|
logger=logger,
|
|
717
716
|
is_mock=True,
|
|
717
|
+
monitoring_mock=track_models,
|
|
718
718
|
)
|
|
719
719
|
|
|
720
720
|
if workdir:
|
mlrun/runtimes/utils.py
CHANGED
|
@@ -463,3 +463,19 @@ def resolve_node_selectors(
|
|
|
463
463
|
instance_node_selector,
|
|
464
464
|
)
|
|
465
465
|
return instance_node_selector
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
def enrich_gateway_timeout_annotations(annotations: dict, gateway_timeout: int):
|
|
469
|
+
"""
|
|
470
|
+
Set gateway proxy connect/read/send timeout annotations
|
|
471
|
+
:param annotations: The annotations to enrich
|
|
472
|
+
:param gateway_timeout: The timeout to set
|
|
473
|
+
"""
|
|
474
|
+
if not gateway_timeout:
|
|
475
|
+
return
|
|
476
|
+
gateway_timeout_str = str(gateway_timeout)
|
|
477
|
+
annotations["nginx.ingress.kubernetes.io/proxy-connect-timeout"] = (
|
|
478
|
+
gateway_timeout_str
|
|
479
|
+
)
|
|
480
|
+
annotations["nginx.ingress.kubernetes.io/proxy-read-timeout"] = gateway_timeout_str
|
|
481
|
+
annotations["nginx.ingress.kubernetes.io/proxy-send-timeout"] = gateway_timeout_str
|
mlrun/serving/routers.py
CHANGED
|
@@ -615,7 +615,7 @@ class VotingEnsemble(ParallelRun):
|
|
|
615
615
|
logger.warn("GraphServer not initialized for VotingEnsemble instance")
|
|
616
616
|
return
|
|
617
617
|
|
|
618
|
-
if not self.context.is_mock or self.context.
|
|
618
|
+
if not self.context.is_mock or self.context.monitoring_mock:
|
|
619
619
|
self.model_endpoint_uid = _init_endpoint_record(server, self)
|
|
620
620
|
|
|
621
621
|
self._update_weights(self.weights)
|
mlrun/serving/server.py
CHANGED
|
@@ -22,10 +22,14 @@ import traceback
|
|
|
22
22
|
import uuid
|
|
23
23
|
from typing import Optional, Union
|
|
24
24
|
|
|
25
|
+
from nuclio import Context as NuclioContext
|
|
26
|
+
from nuclio.request import Logger as NuclioLogger
|
|
27
|
+
|
|
25
28
|
import mlrun
|
|
26
29
|
import mlrun.common.constants
|
|
27
30
|
import mlrun.common.helpers
|
|
28
31
|
import mlrun.model_monitoring
|
|
32
|
+
import mlrun.utils
|
|
29
33
|
from mlrun.config import config
|
|
30
34
|
from mlrun.errors import err_to_str
|
|
31
35
|
from mlrun.secrets import SecretsStore
|
|
@@ -150,6 +154,7 @@ class GraphServer(ModelObj):
|
|
|
150
154
|
resource_cache: ResourceCache = None,
|
|
151
155
|
logger=None,
|
|
152
156
|
is_mock=False,
|
|
157
|
+
monitoring_mock=False,
|
|
153
158
|
):
|
|
154
159
|
"""for internal use, initialize all steps (recursively)"""
|
|
155
160
|
|
|
@@ -162,6 +167,7 @@ class GraphServer(ModelObj):
|
|
|
162
167
|
|
|
163
168
|
context = GraphContext(server=self, nuclio_context=context, logger=logger)
|
|
164
169
|
context.is_mock = is_mock
|
|
170
|
+
context.monitoring_mock = monitoring_mock
|
|
165
171
|
context.root = self.graph
|
|
166
172
|
|
|
167
173
|
context.stream = _StreamContext(
|
|
@@ -387,7 +393,9 @@ def v2_serving_handler(context, event, get_body=False):
|
|
|
387
393
|
|
|
388
394
|
# original path is saved in stream_path so it can be used by explicit ack, but path is reset to / as a
|
|
389
395
|
# workaround for NUC-178
|
|
390
|
-
|
|
396
|
+
# nuclio 1.12.12 added the topic attribute, and we must use it as part of the fix for NUC-233
|
|
397
|
+
# TODO: Remove fallback on event.path once support for nuclio<1.12.12 is dropped
|
|
398
|
+
event.stream_path = getattr(event, "topic", event.path)
|
|
391
399
|
if hasattr(event, "trigger") and event.trigger.kind in (
|
|
392
400
|
"kafka",
|
|
393
401
|
"kafka-cluster",
|
|
@@ -483,7 +491,13 @@ class Response:
|
|
|
483
491
|
class GraphContext:
|
|
484
492
|
"""Graph context object"""
|
|
485
493
|
|
|
486
|
-
def __init__(
|
|
494
|
+
def __init__(
|
|
495
|
+
self,
|
|
496
|
+
level="info", # Unused argument
|
|
497
|
+
logger=None,
|
|
498
|
+
server=None,
|
|
499
|
+
nuclio_context: Optional[NuclioContext] = None,
|
|
500
|
+
) -> None:
|
|
487
501
|
self.state = None
|
|
488
502
|
self.logger = logger
|
|
489
503
|
self.worker_id = 0
|
|
@@ -493,7 +507,7 @@ class GraphContext:
|
|
|
493
507
|
self.root = None
|
|
494
508
|
|
|
495
509
|
if nuclio_context:
|
|
496
|
-
self.logger = nuclio_context.logger
|
|
510
|
+
self.logger: NuclioLogger = nuclio_context.logger
|
|
497
511
|
self.Response = nuclio_context.Response
|
|
498
512
|
if hasattr(nuclio_context, "trigger") and hasattr(
|
|
499
513
|
nuclio_context.trigger, "kind"
|
|
@@ -503,7 +517,7 @@ class GraphContext:
|
|
|
503
517
|
if hasattr(nuclio_context, "platform"):
|
|
504
518
|
self.platform = nuclio_context.platform
|
|
505
519
|
elif not logger:
|
|
506
|
-
self.logger = mlrun.utils.
|
|
520
|
+
self.logger: mlrun.utils.Logger = mlrun.utils.logger
|
|
507
521
|
|
|
508
522
|
self._server = server
|
|
509
523
|
self.current_function = None
|
|
@@ -516,7 +530,7 @@ class GraphContext:
|
|
|
516
530
|
return self._server
|
|
517
531
|
|
|
518
532
|
@property
|
|
519
|
-
def project(self):
|
|
533
|
+
def project(self) -> str:
|
|
520
534
|
"""current project name (for the current function)"""
|
|
521
535
|
project, _, _, _ = mlrun.common.helpers.parse_versioned_object_uri(
|
|
522
536
|
self._server.function_uri
|
mlrun/serving/states.py
CHANGED
|
@@ -84,6 +84,9 @@ _task_step_fields = [
|
|
|
84
84
|
]
|
|
85
85
|
|
|
86
86
|
|
|
87
|
+
MAX_ALLOWED_STEPS = 4500
|
|
88
|
+
|
|
89
|
+
|
|
87
90
|
def new_model_endpoint(class_name, model_path, handler=None, **class_args):
|
|
88
91
|
class_args = deepcopy(class_args)
|
|
89
92
|
class_args["model_path"] = model_path
|
|
@@ -733,6 +736,11 @@ class RouterStep(TaskStep):
|
|
|
733
736
|
if not route:
|
|
734
737
|
route = TaskStep(class_name, class_args, handler=handler)
|
|
735
738
|
route.function = function or route.function
|
|
739
|
+
|
|
740
|
+
if len(self._routes) >= MAX_ALLOWED_STEPS:
|
|
741
|
+
raise mlrun.errors.MLRunInvalidArgumentError(
|
|
742
|
+
f"Cannot create the serving graph: the maximum number of steps is {MAX_ALLOWED_STEPS}"
|
|
743
|
+
)
|
|
736
744
|
route = self._routes.update(key, route)
|
|
737
745
|
route.set_parent(self)
|
|
738
746
|
return route
|
mlrun/serving/v2_serving.py
CHANGED
|
@@ -18,8 +18,9 @@ import traceback
|
|
|
18
18
|
from typing import Optional, Union
|
|
19
19
|
|
|
20
20
|
import mlrun.artifacts
|
|
21
|
-
import mlrun.common.model_monitoring
|
|
21
|
+
import mlrun.common.model_monitoring.helpers
|
|
22
22
|
import mlrun.common.schemas.model_monitoring
|
|
23
|
+
import mlrun.model_monitoring
|
|
23
24
|
from mlrun.errors import err_to_str
|
|
24
25
|
from mlrun.utils import logger, now_date
|
|
25
26
|
|
|
@@ -147,7 +148,7 @@ class V2ModelServer(StepToDict):
|
|
|
147
148
|
logger.warn("GraphServer not initialized for VotingEnsemble instance")
|
|
148
149
|
return
|
|
149
150
|
|
|
150
|
-
if not self.context.is_mock or self.context.
|
|
151
|
+
if not self.context.is_mock or self.context.monitoring_mock:
|
|
151
152
|
self.model_endpoint_uid = _init_endpoint_record(
|
|
152
153
|
graph_server=server, model=self
|
|
153
154
|
)
|
|
@@ -554,13 +555,13 @@ def _init_endpoint_record(
|
|
|
554
555
|
except mlrun.errors.MLRunNotFoundError:
|
|
555
556
|
model_ep = None
|
|
556
557
|
except mlrun.errors.MLRunBadRequestError as err:
|
|
557
|
-
logger.
|
|
558
|
-
|
|
558
|
+
logger.info(
|
|
559
|
+
"Cannot get the model endpoints store", err=mlrun.errors.err_to_str(err)
|
|
559
560
|
)
|
|
560
561
|
return
|
|
561
562
|
|
|
562
563
|
if model.context.server.track_models and not model_ep:
|
|
563
|
-
logger.
|
|
564
|
+
logger.info("Creating a new model endpoint record", endpoint_id=uid)
|
|
564
565
|
model_endpoint = mlrun.common.schemas.ModelEndpoint(
|
|
565
566
|
metadata=mlrun.common.schemas.ModelEndpointMetadata(
|
|
566
567
|
project=project, labels=model.labels, uid=uid
|
|
@@ -586,28 +587,35 @@ def _init_endpoint_record(
|
|
|
586
587
|
model_endpoint=model_endpoint.dict(),
|
|
587
588
|
)
|
|
588
589
|
|
|
589
|
-
elif
|
|
590
|
-
|
|
591
|
-
|
|
590
|
+
elif model_ep:
|
|
591
|
+
attributes = {}
|
|
592
|
+
old_model_uri = model_ep.spec.model_uri
|
|
593
|
+
mlrun.model_monitoring.helpers.enrich_model_endpoint_with_model_uri(
|
|
594
|
+
model_endpoint=model_ep,
|
|
595
|
+
model_obj=model.model_spec,
|
|
596
|
+
)
|
|
597
|
+
if model_ep.spec.model_uri != old_model_uri:
|
|
598
|
+
attributes["model_uri"] = model_ep.spec.model_uri
|
|
599
|
+
if (
|
|
592
600
|
model_ep.spec.monitoring_mode
|
|
593
601
|
== mlrun.common.schemas.model_monitoring.ModelMonitoringMode.enabled
|
|
594
|
-
)
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
602
|
+
) != model.context.server.track_models:
|
|
603
|
+
attributes["monitoring_mode"] = (
|
|
604
|
+
mlrun.common.schemas.model_monitoring.ModelMonitoringMode.enabled
|
|
605
|
+
if model.context.server.track_models
|
|
606
|
+
else mlrun.common.schemas.model_monitoring.ModelMonitoringMode.disabled
|
|
607
|
+
)
|
|
608
|
+
if attributes:
|
|
609
|
+
db = mlrun.get_run_db()
|
|
610
|
+
db.patch_model_endpoint(
|
|
611
|
+
project=project,
|
|
612
|
+
endpoint_id=uid,
|
|
613
|
+
attributes=attributes,
|
|
614
|
+
)
|
|
615
|
+
logger.info(
|
|
616
|
+
"Updating model endpoint attributes",
|
|
617
|
+
attributes=attributes,
|
|
618
|
+
endpoint_id=uid,
|
|
619
|
+
)
|
|
612
620
|
|
|
613
621
|
return uid
|
mlrun/utils/helpers.py
CHANGED
|
@@ -1701,11 +1701,21 @@ def validate_component_version_compatibility(
|
|
|
1701
1701
|
)
|
|
1702
1702
|
return True
|
|
1703
1703
|
|
|
1704
|
+
# Feature might have been back-ported e.g. nuclio node selection is supported from
|
|
1705
|
+
# 1.5.20 and 1.6.10 but not in 1.6.9 - therefore we reverse sort to validate against 1.6.x 1st and
|
|
1706
|
+
# then against 1.5.x
|
|
1704
1707
|
parsed_min_versions.sort(reverse=True)
|
|
1705
1708
|
for parsed_min_version in parsed_min_versions:
|
|
1706
|
-
if
|
|
1709
|
+
if (
|
|
1710
|
+
parsed_current_version.major == parsed_min_version.major
|
|
1711
|
+
and parsed_current_version.minor == parsed_min_version.minor
|
|
1712
|
+
and parsed_current_version.patch < parsed_min_version.patch
|
|
1713
|
+
):
|
|
1707
1714
|
return False
|
|
1708
|
-
|
|
1715
|
+
|
|
1716
|
+
if parsed_current_version >= parsed_min_version:
|
|
1717
|
+
return True
|
|
1718
|
+
return False
|
|
1709
1719
|
|
|
1710
1720
|
|
|
1711
1721
|
def format_alert_summary(
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.0rc41
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -43,7 +43,7 @@ Requires-Dist: semver ~=3.0
|
|
|
43
43
|
Requires-Dist: dependency-injector ~=4.41
|
|
44
44
|
Requires-Dist: fsspec <2024.4,>=2023.9.2
|
|
45
45
|
Requires-Dist: v3iofs ~=0.1.17
|
|
46
|
-
Requires-Dist: storey ~=1.7.
|
|
46
|
+
Requires-Dist: storey ~=1.7.24
|
|
47
47
|
Requires-Dist: inflection ~=0.5.0
|
|
48
48
|
Requires-Dist: python-dotenv ~=0.17.0
|
|
49
49
|
Requires-Dist: setuptools ~=71.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=y08M1JcKXy5-9_5WaI9fn5aV5BxIQ5QkbduJK0OxWbA,7470
|
|
2
2
|
mlrun/__main__.py,sha256=iAifncsrQQx6ozXXmz7GH1OiNl8PA7KS3TnwlxnHGeo,45890
|
|
3
|
-
mlrun/config.py,sha256=
|
|
3
|
+
mlrun/config.py,sha256=5JqxZh9rbxdBV3yRyRbAzYkDVjwgvMOenaXHAlQZejY,66137
|
|
4
4
|
mlrun/errors.py,sha256=i75KY-Wza1B3XpdD0xspxOI02TZMoarkQbJPZF5DB1U,7713
|
|
5
5
|
mlrun/execution.py,sha256=o64-PAdOnLnT_CAHwyxpj7uJJVn7fh8tR5dpy1OnqBg,42188
|
|
6
6
|
mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
|
|
@@ -20,8 +20,8 @@ mlrun/artifacts/manager.py,sha256=I_1mgQ0M8j9JgryFJsB2yN3Pv47oQM6Jfg1fotTPDX0,15
|
|
|
20
20
|
mlrun/artifacts/model.py,sha256=ObUkqFMejYOtq0CDFdpYwzwhQ5bsHv0dHTysuVPJnbs,21102
|
|
21
21
|
mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
|
|
22
22
|
mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
23
|
-
mlrun/common/constants.py,sha256=
|
|
24
|
-
mlrun/common/helpers.py,sha256=
|
|
23
|
+
mlrun/common/constants.py,sha256=riSRWtJUywnVJA6nPKHPEOEyFO5ZofA1IudeRmzs7p8,3209
|
|
24
|
+
mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
|
|
25
25
|
mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
|
|
26
26
|
mlrun/common/types.py,sha256=APVFvumnHpCG-yXlt6OSioMfkyT-DADPiW3dGG3dUFQ,1057
|
|
27
27
|
mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
@@ -70,33 +70,34 @@ mlrun/common/schemas/workflow.py,sha256=eRoaOBFiWbvP0iwZ6Aof5JmheV81A0-0PGi8L4vu
|
|
|
70
70
|
mlrun/common/schemas/model_monitoring/__init__.py,sha256=uCnHhhVZkWbbtsawIjOa3ub9ShDJK2md-s2fbx46crg,1792
|
|
71
71
|
mlrun/common/schemas/model_monitoring/constants.py,sha256=YaKwvMHhJVIwFJDsLg2Iu6zCv2YgxdiiJ1owvb5IGGk,9568
|
|
72
72
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=SG13MFUUz_tk6-mWeSx17qcdEW4ekicxqNtnMSwRTCY,1559
|
|
73
|
-
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=
|
|
73
|
+
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=FdKbO8Lb_SDrEXtEHn19GEiAWUWLd_fS6bk0ytanhmo,13762
|
|
74
74
|
mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
|
|
75
75
|
mlrun/data_types/data_types.py,sha256=hWiL5TPOj9EK7_nd1yttLBUhXTmBYLDZzmG-hWzzhHE,4751
|
|
76
76
|
mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
|
|
77
77
|
mlrun/data_types/spark.py,sha256=xfcr6lcaLcHepnrHavx_vacMJK7BC8FWsUKjwrjjn6w,9509
|
|
78
|
-
mlrun/data_types/to_pandas.py,sha256=
|
|
78
|
+
mlrun/data_types/to_pandas.py,sha256=acCY2qYlCLC9Hy5S-9kwbyDHPM7zy4j8kzn4Fw9fTFM,11212
|
|
79
79
|
mlrun/datastore/__init__.py,sha256=8WvgHF245fvU9u98ctRqosvEmQ9iAKKIIS_dSgj_fmU,4153
|
|
80
|
-
mlrun/datastore/alibaba_oss.py,sha256
|
|
81
|
-
mlrun/datastore/azure_blob.py,sha256=
|
|
82
|
-
mlrun/datastore/base.py,sha256=
|
|
80
|
+
mlrun/datastore/alibaba_oss.py,sha256=-RMA4vCE4rar-D57Niy3tY_6bXKHLFpMp28z5YR7-jI,4888
|
|
81
|
+
mlrun/datastore/azure_blob.py,sha256=9qkgrEMXGiuYYcc6b6HkuHlRHDbl0p7tIzeWxAAcEVs,12724
|
|
82
|
+
mlrun/datastore/base.py,sha256=v4Ah80lg26stKhZ8-i60tj72N5Ap_tFJlgGwHOxcph0,26345
|
|
83
83
|
mlrun/datastore/datastore.py,sha256=F2i8XI2hkQwf51OjqdFZ8179oHvDfQtaT5pvfkvMV9U,9389
|
|
84
84
|
mlrun/datastore/datastore_profile.py,sha256=ZCU-brdRNXNE8EnknzFljtWjciEJ9sGZnoahFxbdEt4,18940
|
|
85
|
-
mlrun/datastore/dbfs_store.py,sha256=
|
|
86
|
-
mlrun/datastore/filestore.py,sha256=
|
|
87
|
-
mlrun/datastore/google_cloud_storage.py,sha256=
|
|
85
|
+
mlrun/datastore/dbfs_store.py,sha256=mylyl-evK3CVe5fx6rwawITxPIc2YVbw5WHGbL24jtM,6516
|
|
86
|
+
mlrun/datastore/filestore.py,sha256=K4mylRzXlA2MSbhaIo8yXpu8gfhOHT0ECGK2AfvaRVg,3721
|
|
87
|
+
mlrun/datastore/google_cloud_storage.py,sha256=Lkr3jud2REXAf-ohI3Or7bbTKbb_MCKOWESR-E7wjUg,8664
|
|
88
88
|
mlrun/datastore/hdfs.py,sha256=TfL1zUWVRxEHF9kswZtOzrMdDmhSfiSVIAjz7fxWyVw,1876
|
|
89
89
|
mlrun/datastore/inmem.py,sha256=d2dIvHlOQylhc-i4B5Kk9e9ayXnF7DICc5yUlHcNwqs,2873
|
|
90
|
-
mlrun/datastore/redis.py,sha256=
|
|
91
|
-
mlrun/datastore/s3.py,sha256=
|
|
90
|
+
mlrun/datastore/redis.py,sha256=vTjqtn8l6AvVXqjN0DroumnYFxlMhzVnqsW96p15c-0,5630
|
|
91
|
+
mlrun/datastore/s3.py,sha256=I7C-2jU59U1XPTAAMe63MjClzLCQq6BfY3nQ_6vV3vk,8747
|
|
92
92
|
mlrun/datastore/snowflake_utils.py,sha256=Wohvnlmq8j1d98RCaknll-iWdZZpSlCrKhUOEy0_-CA,1483
|
|
93
93
|
mlrun/datastore/sources.py,sha256=op90ksx95wqaBtoiORpHnqEgw4iGEDPsJ3_lI8ftS-E,48801
|
|
94
94
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
95
95
|
mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
|
|
96
96
|
mlrun/datastore/store_resources.py,sha256=rcLoG506AMmR8qPJU_gE-G5d34VJVV_vNlZ3VHqho6c,6869
|
|
97
|
-
mlrun/datastore/
|
|
97
|
+
mlrun/datastore/storeytargets.py,sha256=W26CoeM5q6GjJbUBH4h-Q3T9Lu7xFNxev2ZZpvEOQQE,4965
|
|
98
|
+
mlrun/datastore/targets.py,sha256=SuTMhXLGKgeDf1oRCoG6H6Ej1yMxiQS-CKKk4TznTfI,79964
|
|
98
99
|
mlrun/datastore/utils.py,sha256=l9dLZb_VCbHs_htqMFRv4qiestZ8z8K-4eY1MxHS8wE,7720
|
|
99
|
-
mlrun/datastore/v3io.py,sha256=
|
|
100
|
+
mlrun/datastore/v3io.py,sha256=HxP6mygiYM6leDAbQ9KdTxObLCt9yGMro0YhfdU6KUo,8157
|
|
100
101
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
101
102
|
mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
|
|
102
103
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
@@ -210,20 +211,20 @@ mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,233
|
|
|
210
211
|
mlrun/launcher/local.py,sha256=pP9-ZrNL8OnNDEiXTAKAZQnmLpS_mCc2v-mJw329eks,11269
|
|
211
212
|
mlrun/launcher/remote.py,sha256=tGICSfWtvUHeR31mbzy6gqHejmDxjPUgjtxXTWhRubg,7699
|
|
212
213
|
mlrun/model_monitoring/__init__.py,sha256=dm5_j0_pwqrdzFwTaEtGnKfv2nVpNaM56nBI-oqLbNU,879
|
|
213
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
214
|
+
mlrun/model_monitoring/api.py,sha256=L5f4mum-zv-4kMTqJDHWWzNnVcoGYDxf3zvpS-U4rQc,28596
|
|
214
215
|
mlrun/model_monitoring/application.py,sha256=RJ8HeAPfGO3P2A_dEZYNg60c1wKTADh2YSv8BQ5embg,745
|
|
215
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
216
|
+
mlrun/model_monitoring/controller.py,sha256=HFyVNNikoxEd3X5aL3y88rLktH_gZtbCOqPs7qdUsCg,27969
|
|
216
217
|
mlrun/model_monitoring/evidently_application.py,sha256=iOc42IVjj8m6PDBmVcKIMWm46Bu0EdO9SDcH40Eqhyo,769
|
|
217
218
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
218
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
219
|
+
mlrun/model_monitoring/helpers.py,sha256=GBir6pkaA3i6OTcOD-SOUIbRR-tCk6wPajKPMXqcMF4,13122
|
|
219
220
|
mlrun/model_monitoring/model_endpoint.py,sha256=7VX0cBATqLsA4sSinDzouf41ndxqh2mf5bO9BW0G5Z4,4017
|
|
220
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
221
|
+
mlrun/model_monitoring/stream_processing.py,sha256=0eu1Gq1Obq87LFno6eIZ55poXoFaeloqYTLiQgyfd0k,38687
|
|
221
222
|
mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
|
|
222
223
|
mlrun/model_monitoring/writer.py,sha256=FsSmzF9fjb2mk-pmByOB1SZJ_NMBjCw4tGGXhkF3OJU,9954
|
|
223
224
|
mlrun/model_monitoring/applications/__init__.py,sha256=i793GqYee01mRh_KD6GShvX7UbPBgdJDO4qf9Z3BXEQ,970
|
|
224
|
-
mlrun/model_monitoring/applications/_application_steps.py,sha256=
|
|
225
|
+
mlrun/model_monitoring/applications/_application_steps.py,sha256=fvZbtat7eXe5mo927_jyhq4BqWCapKZn7OVjptepIAI,7055
|
|
225
226
|
mlrun/model_monitoring/applications/base.py,sha256=snr3xYdqv6Po19yS0Z1VktyoLrbl88lljSFQyjnKjR0,11616
|
|
226
|
-
mlrun/model_monitoring/applications/context.py,sha256=
|
|
227
|
+
mlrun/model_monitoring/applications/context.py,sha256=jTZaRdPZBc2m8-rcC3gKFkSsaQByWn6ZCQuqCOOWdWo,12747
|
|
227
228
|
mlrun/model_monitoring/applications/evidently_base.py,sha256=6hzfO6s0jEVHj4R_pujcn_p6LvdkKUDb9S4B6j2XEUY,8024
|
|
228
229
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=OOPojE-KIP9rAPZ6va6uJOjqJOb3c8K_VAmITXZd918,13341
|
|
229
230
|
mlrun/model_monitoring/applications/results.py,sha256=VVlu9Si7Tj2LNJzPQrp4_Qeyh9mxOVMu1Jwb5K2LfvY,3577
|
|
@@ -232,23 +233,23 @@ mlrun/model_monitoring/db/stores/__init__.py,sha256=ZScmxeZZ3yZ84MocdDGRtvVIixSo
|
|
|
232
233
|
mlrun/model_monitoring/db/stores/base/__init__.py,sha256=JufJETW3BXzPhFwbRa8dMf7BFGGZKceIWIMgr5x9n9c,599
|
|
233
234
|
mlrun/model_monitoring/db/stores/base/store.py,sha256=xaiaUwXDYYV1z6e17Ny9IiE3a7pSiEFg8nffdWHSq0A,7517
|
|
234
235
|
mlrun/model_monitoring/db/stores/sqldb/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
235
|
-
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=
|
|
236
|
+
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=B8VZXX1DcMyzL9N9vV0Lrp4x7Bj01b2PCu_w_hCnLQI,25619
|
|
236
237
|
mlrun/model_monitoring/db/stores/sqldb/models/__init__.py,sha256=lCiGw9WKPtHAIgrtNS2jyvM5OZvZvogBh76iurNYblg,2453
|
|
237
238
|
mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=V2B5WdQM0KHKq0FNDq61q7tkNJ9fNRbxfnxrholKgjk,5352
|
|
238
239
|
mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=4SfjS0Rz6hSvZwU4s_weQ1jk5IPvaCU1HLum459U5ig,3192
|
|
239
240
|
mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=yJJZppbKj3PsOANS_DXAQFFHKX4cQcm6Pz2DoxRiXMk,1104
|
|
240
241
|
mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
241
|
-
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=
|
|
242
|
+
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=zmN7MtxJnZUtBLGFNFVhQejZjLfxziymjUi7OHxS9H0,26819
|
|
242
243
|
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=_Mfa4gguX86OS1fQCxnt_QSaNh603-zPYAK8NjYk7t8,4040
|
|
243
244
|
mlrun/model_monitoring/db/tsdb/base.py,sha256=X89X763sDrShfRXE1N-p8k97E8NBs7O1QJFiO-CffLM,18583
|
|
244
245
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
245
246
|
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
246
247
|
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=dlb4DHtA6_5ZWKjRh9N-sFZZu8VCsg8LjKPRLm19woY,10506
|
|
247
248
|
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Hb0vcCBP-o0ET78mU4P32fnhUL65QZv-pMuv2lnCby4,1586
|
|
248
|
-
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=
|
|
249
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=fS3aZvFU177IKa-fhc_WLrFl1NOuHvl3yYvPMh9xvYw,18490
|
|
249
250
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
250
251
|
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=mbmhN4f_F58ptVjhwoMF6ifZSdnZWhK7x8eNsWS39IA,6217
|
|
251
|
-
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=
|
|
252
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=1H-IBXPNJPRAaxDMGWpUU25QqfR87LpZbJ03vaJkICs,32858
|
|
252
253
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
253
254
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
254
255
|
mlrun/package/__init__.py,sha256=uWILzN42bcq5vFRk6ptxEmn1I5uBWAnhaJr7e4H834w,7082
|
|
@@ -273,7 +274,7 @@ mlrun/platforms/iguazio.py,sha256=1h5BpdAEQJBg2vIt7ySjUADU0ip5OkaMYr0_VREi9ys,13
|
|
|
273
274
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
274
275
|
mlrun/projects/operations.py,sha256=UEpiW4bDscth4pwWcLWF1xz-IU7bnZfckPR7sXp3O-g,19441
|
|
275
276
|
mlrun/projects/pipelines.py,sha256=iFa0iy4iYk3yUH4Nx-sq7VVJhXW8LlR3Hsbjx_KLL5Y,40019
|
|
276
|
-
mlrun/projects/project.py,sha256=
|
|
277
|
+
mlrun/projects/project.py,sha256=prN4TlZnuQlsEy4z6FxCtcSSwWZH3T5ASFu-79lPkKo,185527
|
|
277
278
|
mlrun/runtimes/__init__.py,sha256=egLM94cDMUyQ1GVABdFGXUQcDhU70lP3k7qSnM_UnHY,9008
|
|
278
279
|
mlrun/runtimes/base.py,sha256=JXWmTIcm3b0klGUOHDlyFNa3bUgsNzQIgWhUQpSZoE0,37692
|
|
279
280
|
mlrun/runtimes/daskjob.py,sha256=JfK8rSPY-0SYnLJdtp_ts3oKyad0pA98th-2VntYzK0,19387
|
|
@@ -284,7 +285,7 @@ mlrun/runtimes/kubejob.py,sha256=ptBnMTIjukbEznkdixmbGvBqzujXrRzqNfP7ze6M76M,866
|
|
|
284
285
|
mlrun/runtimes/local.py,sha256=h_w0tzCfF1_tZZEjw-FJHqYmoxK-AhN2skpK7cdU1JI,22611
|
|
285
286
|
mlrun/runtimes/pod.py,sha256=GtLrxQE28MWlbnOJPiT3oYqBy-wzDHCCmbhm5zms6pQ,63208
|
|
286
287
|
mlrun/runtimes/remotesparkjob.py,sha256=3ggRVNod67TRnsM2-Ilr9Sw5OWqkRwHWaiBkGvmWU2c,7357
|
|
287
|
-
mlrun/runtimes/utils.py,sha256=
|
|
288
|
+
mlrun/runtimes/utils.py,sha256=9RnfpZxZEuE2bFVLSaUxBxi2IWsnKoaWF-eljP2FpbA,15637
|
|
288
289
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
289
290
|
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=sIqIg5DQAf4j0wCPA-G0GoxY6vacRddxCy5KDUZszek,2245
|
|
290
291
|
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=p80j2_jHzlH20dHT-avjfcbaDBTY2re1WjlJjbg5uSQ,12794
|
|
@@ -293,25 +294,25 @@ mlrun/runtimes/mpijob/__init__.py,sha256=V_1gQD1VHa0Qvjqgyv8RLouH27Sy9YTwj2ZG62o
|
|
|
293
294
|
mlrun/runtimes/mpijob/abstract.py,sha256=kDWo-IY1FKLZhI30j38Xx9HMhlUvHezfd1DT2ShoxZY,9161
|
|
294
295
|
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
295
296
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
296
|
-
mlrun/runtimes/nuclio/api_gateway.py,sha256=
|
|
297
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
297
|
+
mlrun/runtimes/nuclio/api_gateway.py,sha256=ZMCImXsdz7ZzrsdNmjBpe6gF0ZYR1_ZE8labxx6nupQ,26478
|
|
298
|
+
mlrun/runtimes/nuclio/function.py,sha256=tK7INPTtYFOJRCzKLUELd0mE_U9w-wt5nCA0HaeY1rM,50509
|
|
298
299
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
299
|
-
mlrun/runtimes/nuclio/serving.py,sha256=
|
|
300
|
+
mlrun/runtimes/nuclio/serving.py,sha256=X0fYJnidH0S5xrupoTC74OhZz7Tym34iw6hFSzahMCk,29720
|
|
300
301
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
301
|
-
mlrun/runtimes/nuclio/application/application.py,sha256=
|
|
302
|
+
mlrun/runtimes/nuclio/application/application.py,sha256=TbS3l8dZcIp4JouO0_g4tBbyw7oDpUql_cTLhBsBOWc,28975
|
|
302
303
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=JIIYae6bXzCLf3jXuu49KWPQYoXr_FDQ2Rbo1OWKAd0,3150
|
|
303
304
|
mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
|
|
304
305
|
mlrun/runtimes/sparkjob/spark3job.py,sha256=fj3iiqScXNR7wvnHXvgtvgvHkGNCKAvLBX9XF17dNeI,41027
|
|
305
306
|
mlrun/serving/__init__.py,sha256=-SMRV3q_5cGVPDxRslXPU0zGYZIygs0cSj7WKlOJJUc,1163
|
|
306
307
|
mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
|
|
307
308
|
mlrun/serving/remote.py,sha256=MrFByphQWmIsKXqw-MOwl2Q1hbtWReYVRKvlcKj9pfw,17980
|
|
308
|
-
mlrun/serving/routers.py,sha256=
|
|
309
|
-
mlrun/serving/server.py,sha256=
|
|
309
|
+
mlrun/serving/routers.py,sha256=el3-pfh7jXdnobt229jbMagD4WA-elp_ejX54VZQg6k,55347
|
|
310
|
+
mlrun/serving/server.py,sha256=vdlkCpyvQLkILqql7NXcgx9udJ6gZtVLo0Lcq7HeH1M,22051
|
|
310
311
|
mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
|
|
311
|
-
mlrun/serving/states.py,sha256=
|
|
312
|
+
mlrun/serving/states.py,sha256=e4QGSAnNq_eLPDoojxkMkw7fLgUST5ea_BQTO7jWsTA,60228
|
|
312
313
|
mlrun/serving/utils.py,sha256=lej7XcUPX1MmHkEOi_0KZRGSpfbmpnE0GK_Sn4zLkHY,4025
|
|
313
314
|
mlrun/serving/v1_serving.py,sha256=by4myxlnwyZ0ijQ5fURilGCK1sUpdQL2Il1VR3Xqpxg,11805
|
|
314
|
-
mlrun/serving/v2_serving.py,sha256
|
|
315
|
+
mlrun/serving/v2_serving.py,sha256=-hs6OpW2tLiGcYydI0dREqsQM0mzr9UKR9P4Zf5yA3Q,25055
|
|
315
316
|
mlrun/track/__init__.py,sha256=LWRUHJt8JyFW17FyNPOVyWd-NXTf1iptzsK9KFj5fuY,765
|
|
316
317
|
mlrun/track/tracker.py,sha256=hSi9sMxB7hhZalt6Q8GXDnK4UoCbXHzKTrpUPC9hZv4,3555
|
|
317
318
|
mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
|
|
@@ -323,7 +324,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
323
324
|
mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
|
|
324
325
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
325
326
|
mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
|
|
326
|
-
mlrun/utils/helpers.py,sha256=
|
|
327
|
+
mlrun/utils/helpers.py,sha256=WUD4fd2B18CAoCx-8CebHVwJOPzzL1i0HoOdGrMBvnQ,58984
|
|
327
328
|
mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
|
|
328
329
|
mlrun/utils/logger.py,sha256=cag2J30-jynIHmHZ2J8RYmVMNhYBGgAoimc5sbk-A1U,10016
|
|
329
330
|
mlrun/utils/regex.py,sha256=b0AUa2THS-ELzJj0grl5b8Stq609F2XomTZkD9SB1fQ,4900
|
|
@@ -341,11 +342,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT
|
|
|
341
342
|
mlrun/utils/notifications/notification/slack.py,sha256=wqpFGr5BTvFO5KuUSzFfxsgmyU1Ohq7fbrGeNe9TXOk,7006
|
|
342
343
|
mlrun/utils/notifications/notification/webhook.py,sha256=cb9w1Mc8ENfJBdgan7iiVHK9eVls4-R3tUxmXM-P-8I,4746
|
|
343
344
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
344
|
-
mlrun/utils/version/version.json,sha256=
|
|
345
|
+
mlrun/utils/version/version.json,sha256=vLx7yzlSxbxnUd6v7i0-lWVkOBkIeL8MjtTgVNk6EYM,89
|
|
345
346
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
346
|
-
mlrun-1.7.
|
|
347
|
-
mlrun-1.7.
|
|
348
|
-
mlrun-1.7.
|
|
349
|
-
mlrun-1.7.
|
|
350
|
-
mlrun-1.7.
|
|
351
|
-
mlrun-1.7.
|
|
347
|
+
mlrun-1.7.0rc41.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
348
|
+
mlrun-1.7.0rc41.dist-info/METADATA,sha256=rmTCEoIA6C8Ytj0UmiQaWsnnOR063AWycC0PxQ_To_U,19939
|
|
349
|
+
mlrun-1.7.0rc41.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
350
|
+
mlrun-1.7.0rc41.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
351
|
+
mlrun-1.7.0rc41.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
352
|
+
mlrun-1.7.0rc41.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|