mlrun 1.10.0rc4__py3-none-any.whl → 1.10.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/model.py +3 -3
- mlrun/common/schemas/model_monitoring/__init__.py +1 -0
- mlrun/common/schemas/model_monitoring/constants.py +14 -2
- mlrun/common/schemas/model_monitoring/functions.py +66 -0
- mlrun/common/schemas/project.py +3 -0
- mlrun/config.py +7 -4
- mlrun/db/base.py +13 -0
- mlrun/db/httpdb.py +47 -0
- mlrun/db/nopdb.py +12 -0
- mlrun/launcher/client.py +23 -0
- mlrun/model_monitoring/applications/base.py +9 -5
- mlrun/model_monitoring/db/tsdb/base.py +30 -0
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py +118 -50
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +117 -24
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +106 -15
- mlrun/projects/project.py +40 -1
- mlrun/runtimes/base.py +0 -27
- mlrun/runtimes/daskjob.py +12 -5
- mlrun/runtimes/databricks_job/databricks_runtime.py +0 -2
- mlrun/runtimes/mpijob/abstract.py +0 -2
- mlrun/runtimes/mpijob/v1.py +0 -2
- mlrun/runtimes/nuclio/application/application.py +0 -5
- mlrun/runtimes/nuclio/function.py +0 -11
- mlrun/runtimes/nuclio/serving.py +0 -6
- mlrun/runtimes/pod.py +1 -3
- mlrun/runtimes/remotesparkjob.py +0 -2
- mlrun/runtimes/sparkjob/spark3job.py +0 -2
- mlrun/serving/states.py +16 -18
- mlrun/utils/helpers.py +17 -1
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.10.0rc4.dist-info → mlrun-1.10.0rc6.dist-info}/METADATA +2 -1
- {mlrun-1.10.0rc4.dist-info → mlrun-1.10.0rc6.dist-info}/RECORD +36 -35
- {mlrun-1.10.0rc4.dist-info → mlrun-1.10.0rc6.dist-info}/WHEEL +0 -0
- {mlrun-1.10.0rc4.dist-info → mlrun-1.10.0rc6.dist-info}/entry_points.txt +0 -0
- {mlrun-1.10.0rc4.dist-info → mlrun-1.10.0rc6.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.10.0rc4.dist-info → mlrun-1.10.0rc6.dist-info}/top_level.txt +0 -0
|
@@ -16,7 +16,6 @@ import asyncio
|
|
|
16
16
|
import copy
|
|
17
17
|
import json
|
|
18
18
|
import typing
|
|
19
|
-
import warnings
|
|
20
19
|
from datetime import datetime
|
|
21
20
|
from time import sleep
|
|
22
21
|
|
|
@@ -153,7 +152,6 @@ class NuclioSpec(KubeResourceSpec):
|
|
|
153
152
|
security_context=None,
|
|
154
153
|
service_type=None,
|
|
155
154
|
add_templated_ingress_host_mode=None,
|
|
156
|
-
clone_target_dir=None,
|
|
157
155
|
state_thresholds=None,
|
|
158
156
|
disable_default_http_trigger=None,
|
|
159
157
|
):
|
|
@@ -184,7 +182,6 @@ class NuclioSpec(KubeResourceSpec):
|
|
|
184
182
|
tolerations=tolerations,
|
|
185
183
|
preemption_mode=preemption_mode,
|
|
186
184
|
security_context=security_context,
|
|
187
|
-
clone_target_dir=clone_target_dir,
|
|
188
185
|
state_thresholds=state_thresholds,
|
|
189
186
|
)
|
|
190
187
|
|
|
@@ -609,7 +606,6 @@ class RemoteRuntime(KubeResource):
|
|
|
609
606
|
project="",
|
|
610
607
|
tag="",
|
|
611
608
|
verbose=False,
|
|
612
|
-
auth_info: AuthInfo = None,
|
|
613
609
|
builder_env: typing.Optional[dict] = None,
|
|
614
610
|
force_build: bool = False,
|
|
615
611
|
):
|
|
@@ -618,16 +614,9 @@ class RemoteRuntime(KubeResource):
|
|
|
618
614
|
:param project: project name
|
|
619
615
|
:param tag: function tag
|
|
620
616
|
:param verbose: set True for verbose logging
|
|
621
|
-
:param auth_info: service AuthInfo (deprecated and ignored)
|
|
622
617
|
:param builder_env: env vars dict for source archive config/credentials e.g. builder_env={"GIT_TOKEN": token}
|
|
623
618
|
:param force_build: set True for force building the image
|
|
624
619
|
"""
|
|
625
|
-
if auth_info:
|
|
626
|
-
# TODO: remove in 1.10.0
|
|
627
|
-
warnings.warn(
|
|
628
|
-
"'auth_info' is deprecated for nuclio runtimes in 1.7.0 and will be removed in 1.10.0",
|
|
629
|
-
FutureWarning,
|
|
630
|
-
)
|
|
631
620
|
|
|
632
621
|
old_http_session = getattr(self, "_http_session", None)
|
|
633
622
|
if old_http_session:
|
mlrun/runtimes/nuclio/serving.py
CHANGED
|
@@ -147,7 +147,6 @@ class ServingSpec(NuclioSpec):
|
|
|
147
147
|
security_context=None,
|
|
148
148
|
service_type=None,
|
|
149
149
|
add_templated_ingress_host_mode=None,
|
|
150
|
-
clone_target_dir=None,
|
|
151
150
|
state_thresholds=None,
|
|
152
151
|
disable_default_http_trigger=None,
|
|
153
152
|
model_endpoint_creation_task_name=None,
|
|
@@ -190,7 +189,6 @@ class ServingSpec(NuclioSpec):
|
|
|
190
189
|
security_context=security_context,
|
|
191
190
|
service_type=service_type,
|
|
192
191
|
add_templated_ingress_host_mode=add_templated_ingress_host_mode,
|
|
193
|
-
clone_target_dir=clone_target_dir,
|
|
194
192
|
disable_default_http_trigger=disable_default_http_trigger,
|
|
195
193
|
)
|
|
196
194
|
|
|
@@ -631,7 +629,6 @@ class ServingRuntime(RemoteRuntime):
|
|
|
631
629
|
project="",
|
|
632
630
|
tag="",
|
|
633
631
|
verbose=False,
|
|
634
|
-
auth_info: schemas.AuthInfo = None,
|
|
635
632
|
builder_env: Optional[dict] = None,
|
|
636
633
|
force_build: bool = False,
|
|
637
634
|
):
|
|
@@ -640,8 +637,6 @@ class ServingRuntime(RemoteRuntime):
|
|
|
640
637
|
:param project: optional, override function specified project name
|
|
641
638
|
:param tag: specify unique function tag (a different function service is created for every tag)
|
|
642
639
|
:param verbose: verbose logging
|
|
643
|
-
:param auth_info: The auth info to use to communicate with the Nuclio dashboard, required only when providing
|
|
644
|
-
dashboard
|
|
645
640
|
:param builder_env: env vars dict for source archive config/credentials e.g. builder_env={"GIT_TOKEN": token}
|
|
646
641
|
:param force_build: set True for force building the image
|
|
647
642
|
"""
|
|
@@ -686,7 +681,6 @@ class ServingRuntime(RemoteRuntime):
|
|
|
686
681
|
project,
|
|
687
682
|
tag,
|
|
688
683
|
verbose,
|
|
689
|
-
auth_info,
|
|
690
684
|
builder_env=builder_env,
|
|
691
685
|
force_build=force_build,
|
|
692
686
|
)
|
mlrun/runtimes/pod.py
CHANGED
|
@@ -177,7 +177,6 @@ class KubeResourceSpec(FunctionSpec):
|
|
|
177
177
|
tolerations=None,
|
|
178
178
|
preemption_mode=None,
|
|
179
179
|
security_context=None,
|
|
180
|
-
clone_target_dir=None,
|
|
181
180
|
state_thresholds=None,
|
|
182
181
|
):
|
|
183
182
|
super().__init__(
|
|
@@ -192,7 +191,6 @@ class KubeResourceSpec(FunctionSpec):
|
|
|
192
191
|
default_handler=default_handler,
|
|
193
192
|
pythonpath=pythonpath,
|
|
194
193
|
disable_auto_mount=disable_auto_mount,
|
|
195
|
-
clone_target_dir=clone_target_dir,
|
|
196
194
|
)
|
|
197
195
|
self._volumes = {}
|
|
198
196
|
self._volume_mounts = {}
|
|
@@ -1116,7 +1114,7 @@ class KubeResource(BaseRuntime):
|
|
|
1116
1114
|
# Get the source target dir in case it was enriched due to loading source
|
|
1117
1115
|
self.spec.build.source_code_target_dir = mlrun.utils.get_in(
|
|
1118
1116
|
data, "data.spec.build.source_code_target_dir"
|
|
1119
|
-
)
|
|
1117
|
+
)
|
|
1120
1118
|
ready = data.get("ready", False)
|
|
1121
1119
|
if not ready:
|
|
1122
1120
|
logger.info(
|
mlrun/runtimes/remotesparkjob.py
CHANGED
|
@@ -57,7 +57,6 @@ class RemoteSparkSpec(KubeResourceSpec):
|
|
|
57
57
|
tolerations=None,
|
|
58
58
|
preemption_mode=None,
|
|
59
59
|
security_context=None,
|
|
60
|
-
clone_target_dir=None,
|
|
61
60
|
state_thresholds=None,
|
|
62
61
|
):
|
|
63
62
|
super().__init__(
|
|
@@ -87,7 +86,6 @@ class RemoteSparkSpec(KubeResourceSpec):
|
|
|
87
86
|
tolerations=tolerations,
|
|
88
87
|
preemption_mode=preemption_mode,
|
|
89
88
|
security_context=security_context,
|
|
90
|
-
clone_target_dir=clone_target_dir,
|
|
91
89
|
state_thresholds=state_thresholds,
|
|
92
90
|
)
|
|
93
91
|
self.provider = provider
|
|
@@ -167,7 +167,6 @@ class Spark3JobSpec(KubeResourceSpec):
|
|
|
167
167
|
driver_cores=None,
|
|
168
168
|
executor_cores=None,
|
|
169
169
|
security_context=None,
|
|
170
|
-
clone_target_dir=None,
|
|
171
170
|
state_thresholds=None,
|
|
172
171
|
):
|
|
173
172
|
super().__init__(
|
|
@@ -197,7 +196,6 @@ class Spark3JobSpec(KubeResourceSpec):
|
|
|
197
196
|
tolerations=tolerations,
|
|
198
197
|
preemption_mode=preemption_mode,
|
|
199
198
|
security_context=security_context,
|
|
200
|
-
clone_target_dir=clone_target_dir,
|
|
201
199
|
state_thresholds=state_thresholds,
|
|
202
200
|
)
|
|
203
201
|
|
mlrun/serving/states.py
CHANGED
|
@@ -966,7 +966,7 @@ class Model(storey.ParallelExecutionRunnable):
|
|
|
966
966
|
):
|
|
967
967
|
super().__init__(name=name, raise_exception=raise_exception, **kwargs)
|
|
968
968
|
if artifact_uri is not None and not isinstance(artifact_uri, str):
|
|
969
|
-
raise MLRunInvalidArgumentError("artifact_uri argument must be a string")
|
|
969
|
+
raise MLRunInvalidArgumentError("'artifact_uri' argument must be a string")
|
|
970
970
|
self.artifact_uri = artifact_uri
|
|
971
971
|
|
|
972
972
|
def load(self) -> None:
|
|
@@ -979,7 +979,7 @@ class Model(storey.ParallelExecutionRunnable):
|
|
|
979
979
|
return get_store_resource(self.artifact_uri)
|
|
980
980
|
else:
|
|
981
981
|
raise ValueError(
|
|
982
|
-
"Could not get artifact, artifact_uri must be a valid artifact store URI"
|
|
982
|
+
"Could not get artifact, 'artifact_uri' must be a valid artifact store URI"
|
|
983
983
|
)
|
|
984
984
|
else:
|
|
985
985
|
return None
|
|
@@ -1002,29 +1002,27 @@ class Model(storey.ParallelExecutionRunnable):
|
|
|
1002
1002
|
return self.predict(body)
|
|
1003
1003
|
|
|
1004
1004
|
def get_local_model_path(self, suffix="") -> (str, dict):
|
|
1005
|
-
"""
|
|
1006
|
-
|
|
1005
|
+
"""
|
|
1006
|
+
Get local model file(s) and extra data items by using artifact.
|
|
1007
|
+
|
|
1008
|
+
If the model file is stored in remote cloud storage, this method downloads
|
|
1009
|
+
it to the local file system.
|
|
1010
|
+
|
|
1011
|
+
:param suffix: Optional; model file suffix (used when the model path is a directory).
|
|
1012
|
+
:type suffix: str
|
|
1013
|
+
|
|
1014
|
+
:return: A tuple containing:
|
|
1015
|
+
- str: Local model file path.
|
|
1016
|
+
- dict: Dictionary of extra data items.
|
|
1017
|
+
:rtype: tuple
|
|
1007
1018
|
|
|
1008
|
-
|
|
1009
|
-
--------
|
|
1010
|
-
::
|
|
1019
|
+
:example:
|
|
1011
1020
|
|
|
1012
1021
|
def load(self):
|
|
1013
1022
|
model_file, extra_data = self.get_local_model_path(suffix=".pkl")
|
|
1014
1023
|
self.model = load(open(model_file, "rb"))
|
|
1015
1024
|
categories = extra_data["categories"].as_df()
|
|
1016
1025
|
|
|
1017
|
-
Parameters
|
|
1018
|
-
----------
|
|
1019
|
-
suffix : str
|
|
1020
|
-
optional, model file suffix (when the model_path is a directory)
|
|
1021
|
-
|
|
1022
|
-
Returns
|
|
1023
|
-
-------
|
|
1024
|
-
str
|
|
1025
|
-
(local) model file
|
|
1026
|
-
dict
|
|
1027
|
-
extra dataitems dictionary
|
|
1028
1026
|
"""
|
|
1029
1027
|
artifact = self._get_artifact_object()
|
|
1030
1028
|
if artifact:
|
mlrun/utils/helpers.py
CHANGED
|
@@ -893,7 +893,8 @@ def enrich_image_url(
|
|
|
893
893
|
|
|
894
894
|
# Add python version tag if needed
|
|
895
895
|
if image_url == "python" and client_python_version:
|
|
896
|
-
|
|
896
|
+
image_tag = ".".join(client_python_version.split(".")[:2])
|
|
897
|
+
image_url = f"python:{image_tag}"
|
|
897
898
|
|
|
898
899
|
client_version = _convert_python_package_version_to_image_tag(client_version)
|
|
899
900
|
server_version = _convert_python_package_version_to_image_tag(
|
|
@@ -911,6 +912,21 @@ def enrich_image_url(
|
|
|
911
912
|
# it's an mlrun image if the repository is mlrun
|
|
912
913
|
is_mlrun_image = image_url.startswith("mlrun/") or "/mlrun/" in image_url
|
|
913
914
|
|
|
915
|
+
if is_mlrun_image and "mlrun/ml-base" in image_url:
|
|
916
|
+
if tag:
|
|
917
|
+
if mlrun.utils.helpers.validate_component_version_compatibility(
|
|
918
|
+
"mlrun-client", "1.10.0", mlrun_client_version=tag
|
|
919
|
+
):
|
|
920
|
+
warnings.warn(
|
|
921
|
+
"'mlrun/ml-base' image is deprecated in 1.10.0 and will be removed in 1.12.0, "
|
|
922
|
+
"use 'mlrun/mlrun' instead.",
|
|
923
|
+
# TODO: Remove this in 1.12.0
|
|
924
|
+
FutureWarning,
|
|
925
|
+
)
|
|
926
|
+
image_url = image_url.replace("mlrun/ml-base", "mlrun/mlrun")
|
|
927
|
+
else:
|
|
928
|
+
image_url = "mlrun/mlrun"
|
|
929
|
+
|
|
914
930
|
if is_mlrun_image and tag and ":" not in image_url:
|
|
915
931
|
image_url = f"{image_url}:{tag}"
|
|
916
932
|
|
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.0rc6
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -15,6 +15,7 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
15
15
|
Classifier: Operating System :: MacOS
|
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
19
|
Classifier: Programming Language :: Python
|
|
19
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
21
|
Classifier: Topic :: Software Development :: Libraries
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=uhNeFUVaV2spRa94u9tNZjMdLBixdu-9iY-uzORjsKQ,7448
|
|
2
2
|
mlrun/__main__.py,sha256=6Mihuy3M7l80rJKM-MeKJdzwMbidfgVw-i7CxqToNnY,46351
|
|
3
|
-
mlrun/config.py,sha256=
|
|
3
|
+
mlrun/config.py,sha256=oe8n5N4r0s6mss99f2R1n0eQkHidXVtNIcTecVlCNkY,71986
|
|
4
4
|
mlrun/errors.py,sha256=bAk0t_qmCxQSPNK0TugOAfA5R6f0G6OYvEvXUWSJ_5U,9062
|
|
5
5
|
mlrun/execution.py,sha256=Yo1_UX9ARZ8IDYX6B5FPngnIy8hBhuzwL2-bIeXlMg8,54581
|
|
6
6
|
mlrun/features.py,sha256=jMEXo6NB36A6iaxNEJWzdtYwUmglYD90OIKTIEeWhE8,15841
|
|
@@ -20,7 +20,7 @@ mlrun/artifacts/document.py,sha256=p5HsWdmIIJ0NahS7y3EEQN2tfHtUrUmUG-8BEEyi_Jc,1
|
|
|
20
20
|
mlrun/artifacts/helpers.py,sha256=ejTEC9vkI2w5FHn5Gopw3VEIxuni0bazWUnR6BBWZfU,1662
|
|
21
21
|
mlrun/artifacts/llm_prompt.py,sha256=19ubV9owECwqb73wDnS8lED_siWYoJCRsrK_Td0DXdo,5428
|
|
22
22
|
mlrun/artifacts/manager.py,sha256=ylCmwTSDxPWYTBBW7v90XLYy7CYS7xVydj-D-kWY7bU,16827
|
|
23
|
-
mlrun/artifacts/model.py,sha256=
|
|
23
|
+
mlrun/artifacts/model.py,sha256=uYhTw1BZ-WO1iMnJk2FjIjSktincVcA_Sv3dCeuOhO8,25902
|
|
24
24
|
mlrun/artifacts/plots.py,sha256=TxOHBaGbj7fEKNTHVIM_uxQjqPLpU3Rh1pqGh2_inuo,4833
|
|
25
25
|
mlrun/common/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
26
26
|
mlrun/common/constants.py,sha256=Yj5YHANbpKHDKxZ1y5bV1wifvV3UQZ2QuvECUuYhrpM,3594
|
|
@@ -65,7 +65,7 @@ mlrun/common/schemas/object.py,sha256=9g2bK3KUXmzhaGavbmpVf6rxDhquYogp8bb12dzP4X
|
|
|
65
65
|
mlrun/common/schemas/pagination.py,sha256=8NEmiIkCXw5_sv-lE0MWgWz-WpxhSSn-vBtbPDBOGXc,899
|
|
66
66
|
mlrun/common/schemas/partition.py,sha256=crl61DzS-9i5rCyHUbjtpTCk03lluxfb2dS0o1gdLH4,5920
|
|
67
67
|
mlrun/common/schemas/pipeline.py,sha256=lzaNHudyOiSMpNsoKoNMZhJJa2R4wdA4TR8A98L_yIo,996
|
|
68
|
-
mlrun/common/schemas/project.py,sha256=
|
|
68
|
+
mlrun/common/schemas/project.py,sha256=_u8yvu9oZDlVllrxVKVvaAJs6RI5Cvb4wq4Axeo4VQc,5959
|
|
69
69
|
mlrun/common/schemas/regex.py,sha256=r-phg_9ge1lFraPCQd_wpnYGQ1oOCj3xChycJxZtIQY,775
|
|
70
70
|
mlrun/common/schemas/runs.py,sha256=yKY29ByTS4SruWQyPpDNFGulMrcT9Ms-3lnwBUDp3us,751
|
|
71
71
|
mlrun/common/schemas/runtime_resource.py,sha256=TybJmCHJXmm1z3s5J1dd89TeFE6lG5t7vjcrf1R9YfE,1568
|
|
@@ -74,8 +74,9 @@ mlrun/common/schemas/secret.py,sha256=Td2UAeWHSAdA4nIP3rQv_PIVKVqcBnCnK6xjr528tS
|
|
|
74
74
|
mlrun/common/schemas/serving.py,sha256=wQYco1DvUp8rhltLWsHwrk-sAVcIlw5PjcMvbAMnIi8,1135
|
|
75
75
|
mlrun/common/schemas/tag.py,sha256=1wqEiAujsElojWb3qmuyfcaLFjXSNAAQdafkDx7fkn0,891
|
|
76
76
|
mlrun/common/schemas/workflow.py,sha256=iZySnpro7UatEePH6S542c7xy9H2v1h6mx5n-gz9Oeg,2107
|
|
77
|
-
mlrun/common/schemas/model_monitoring/__init__.py,sha256=
|
|
78
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
77
|
+
mlrun/common/schemas/model_monitoring/__init__.py,sha256=wxrE4ACgNtXm5uui8a0ljOuwIoIkVl7e1atSizYVqhE,1763
|
|
78
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=eSXyWG7rzgCVSxjPPlLC8f0ClC4I09zsCiwBxnkFLlA,12831
|
|
79
|
+
mlrun/common/schemas/model_monitoring/functions.py,sha256=OKBt029ap6dD-1pFTN4z1u7IkRpiH0HCjbrJoAWUFnE,2123
|
|
79
80
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=THQlLfPBevBksta8p5OaIsBaJtsNSXexLvHrDxOaVns,2095
|
|
80
81
|
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=YYFai89qBTnKM8dSUncVD25uwz8QdcTLrEb7vMefyTc,12391
|
|
81
82
|
mlrun/data_types/__init__.py,sha256=wdxGS1PTnaKXiNZ7PYGxxo86OifHH7NYoArIjDJksLA,1054
|
|
@@ -110,10 +111,10 @@ mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev
|
|
|
110
111
|
mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
|
|
111
112
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
112
113
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
113
|
-
mlrun/db/base.py,sha256=
|
|
114
|
+
mlrun/db/base.py,sha256=OmDJnvrHRpea9dgeUhJu_7EBKFUqwtXG59dmhmeoMqY,31350
|
|
114
115
|
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
115
|
-
mlrun/db/httpdb.py,sha256=
|
|
116
|
-
mlrun/db/nopdb.py,sha256=
|
|
116
|
+
mlrun/db/httpdb.py,sha256=EAUA2ZU1W7dwaPVrRbPbeiNcuODeeEIHMqbgkVokZ8M,235044
|
|
117
|
+
mlrun/db/nopdb.py,sha256=Dk4LXsN6992T9jhhspTt0tNA6dMhF4la-LcOU8cLfJY,27703
|
|
117
118
|
mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
|
|
118
119
|
mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
|
|
119
120
|
mlrun/feature_store/common.py,sha256=JlQA7XWkg9fLuw7cXFmWpUneQqM3NBhwv7DU_xlenWI,12819
|
|
@@ -215,7 +216,7 @@ mlrun/frameworks/xgboost/model_handler.py,sha256=bJq4D1VK3rzhALovqIV5mS0LvGiTlsg
|
|
|
215
216
|
mlrun/frameworks/xgboost/utils.py,sha256=4rShiFChzDbWJ4HoTo4qV_lj-Z89pHBAp6Z1yHmU8wA,1068
|
|
216
217
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
217
218
|
mlrun/launcher/base.py,sha256=VUjXoYcCopdJgSTkGDPOJWcZavKDoqmExv7GjqyRiws,16481
|
|
218
|
-
mlrun/launcher/client.py,sha256=
|
|
219
|
+
mlrun/launcher/client.py,sha256=EEsdRh3nb3pguR0HjaLPewPJ0ei2LcbSaM-l11oB9XY,7238
|
|
219
220
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
220
221
|
mlrun/launcher/local.py,sha256=9XEkWSRYokXbtL1d_XEH3yTNU2fQXX7JcUwfC_8NG_4,11457
|
|
221
222
|
mlrun/launcher/remote.py,sha256=GYXsxVIwcUZ1V-cv2R3Yk4nSoUeAtRurEawrUN3AkEE,7715
|
|
@@ -228,7 +229,7 @@ mlrun/model_monitoring/stream_processing.py,sha256=Gu3TQzYoNjbreZYI73-F49QpYrod9
|
|
|
228
229
|
mlrun/model_monitoring/writer.py,sha256=rGRFzSOkqZWvD3Y6sVk2H1Gepfnkzkp9ce00PsApTLo,8288
|
|
229
230
|
mlrun/model_monitoring/applications/__init__.py,sha256=MaH_n4GiqqQvSkntM5yQ7_FCANtM_IfgK-IJTdo4G_E,757
|
|
230
231
|
mlrun/model_monitoring/applications/_application_steps.py,sha256=mjuBVqa7KY_Ymoo8DzddthUpBZyfio2e4O5ce-d-2eY,8444
|
|
231
|
-
mlrun/model_monitoring/applications/base.py,sha256=
|
|
232
|
+
mlrun/model_monitoring/applications/base.py,sha256=7x7qOnJZ5yoab1EWdG_5PNh5AOGM9mQkUJ_2hznUG3A,25425
|
|
232
233
|
mlrun/model_monitoring/applications/context.py,sha256=VfyPCIdO4z73uqFcJs87jzSI4PatX5N5Xicg8Ye1Bag,16968
|
|
233
234
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
|
|
234
235
|
mlrun/model_monitoring/applications/results.py,sha256=_qmj6TWT0SR2bi7gUyRKBU418eGgGoLW2_hTJ7S-ock,5782
|
|
@@ -238,16 +239,16 @@ mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJC
|
|
|
238
239
|
mlrun/model_monitoring/db/_schedules.py,sha256=RWn4wtKsIXg668gMLpxO9I8GlkxvPSaA5y7w-wFDcgE,9048
|
|
239
240
|
mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
|
|
240
241
|
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=4S86V_Ot_skE16SLkw0WwsaAUB0ECH6SoJdp-TIu6s8,4645
|
|
241
|
-
mlrun/model_monitoring/db/tsdb/base.py,sha256=
|
|
242
|
+
mlrun/model_monitoring/db/tsdb/base.py,sha256=IyuxnQOzJEV6EQYtZhCoSOacLYfwNeerfgzrf7r3-K0,28526
|
|
242
243
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
243
244
|
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
244
245
|
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=EslhaR65jfeNdD5Ibk-3Hb4e5r5qYPfHb9rTChX3sG0,12689
|
|
245
246
|
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Uadj0UvAmln2MxDWod-kAzau1uNlqZh981rPhbUH_5M,2857
|
|
246
|
-
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py,sha256=
|
|
247
|
-
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=
|
|
247
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py,sha256=dtkaHaWKWERPXylEWMECeetwrz3rWl0P43AADcTjlls,9330
|
|
248
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=BFLrM96YGUwde31ZfClkN-gg4Ph6GB3bwtsYKr1Ldho,41633
|
|
248
249
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
249
250
|
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
|
|
250
|
-
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=
|
|
251
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=Tmwi5fuuDYqyf7MTdQSksOxatgBIiEx3PSrK46BpBjU,50353
|
|
251
252
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
252
253
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
253
254
|
mlrun/package/__init__.py,sha256=v7VDyK9kDOOuDvFo4oiGV2fx-vM1KL7fdN9pGLakhUQ,7008
|
|
@@ -272,43 +273,43 @@ mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13
|
|
|
272
273
|
mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
|
|
273
274
|
mlrun/projects/operations.py,sha256=dbCWb-KNlIIJeZH9lp4Y2PxkYMkZI2pJPYbMSbiDWe4,20840
|
|
274
275
|
mlrun/projects/pipelines.py,sha256=wud7ezeEmhIJvfYE_wzQbA4ygEfGXHtbOtoOpan6poY,48556
|
|
275
|
-
mlrun/projects/project.py,sha256=
|
|
276
|
+
mlrun/projects/project.py,sha256=S_xkfHGuJv9n6ZiP4b6YsXDaz_66316ajUOj6skw-4s,252038
|
|
276
277
|
mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
|
|
277
|
-
mlrun/runtimes/base.py,sha256=
|
|
278
|
-
mlrun/runtimes/daskjob.py,sha256=
|
|
278
|
+
mlrun/runtimes/base.py,sha256=FmjyXA5MhOUOe8TxNpC3p8nc_IwGGaC2ZPrgTylzFXk,37325
|
|
279
|
+
mlrun/runtimes/daskjob.py,sha256=RQNX0TJn77mT32CKNoNg2hE0Rk758QVTGpJdxk3xW_k,19776
|
|
279
280
|
mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
|
|
280
281
|
mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
|
|
281
282
|
mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
|
|
282
283
|
mlrun/runtimes/kubejob.py,sha256=xt6NyPiIiPYmGDFtTe4RHF-zhrFdgwcnRr2NQEBB5NI,8799
|
|
283
284
|
mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
|
|
284
285
|
mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
|
|
285
|
-
mlrun/runtimes/pod.py,sha256=
|
|
286
|
-
mlrun/runtimes/remotesparkjob.py,sha256=
|
|
286
|
+
mlrun/runtimes/pod.py,sha256=_jfzCIJ5Gi6AWT-5nYFYfpX3zodQLVU79Rqa2vFAECY,51619
|
|
287
|
+
mlrun/runtimes/remotesparkjob.py,sha256=s3iknqndUMSDvZNZ7w_uO9mO-gmasexN5x9KALeCHfw,7627
|
|
287
288
|
mlrun/runtimes/utils.py,sha256=VFKA7dWuILAcJGia_7Pw_zBBG00wZlat7o2N6u5EItw,16284
|
|
288
289
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
289
290
|
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=ufjcLKA5E6FSDF5CXm5l8uP_mUSFppwr5krLHln1kAU,2243
|
|
290
|
-
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=
|
|
291
|
+
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=YOJdyIEeKbn9jKxSciciZE9RBsH7Hbk7n-3T_8NLz_w,12810
|
|
291
292
|
mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=jD1T36pRmSFRGgJVGRzccYJxwYH8eVze_FJrF2aSS-g,8682
|
|
292
293
|
mlrun/runtimes/mpijob/__init__.py,sha256=6sUPQRFwigi4mqjDVZmRE-qgaLw2ILY5NbneVUuMKto,947
|
|
293
|
-
mlrun/runtimes/mpijob/abstract.py,sha256=
|
|
294
|
-
mlrun/runtimes/mpijob/v1.py,sha256=
|
|
294
|
+
mlrun/runtimes/mpijob/abstract.py,sha256=a07c6AvNLQ51dVkiCyeeQUruST1UQNuWi3sIvPMESPo,9171
|
|
295
|
+
mlrun/runtimes/mpijob/v1.py,sha256=Rf8tvntkOv7RLN0TEk5XOY4QCdWMHu_sSmVgBViGcfU,3135
|
|
295
296
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
296
297
|
mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
|
|
297
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
298
|
+
mlrun/runtimes/nuclio/function.py,sha256=K8M9zFR0j28Tfqu6xrwd6MWb2Sh1IZZVoaNYZectG8g,54286
|
|
298
299
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
299
|
-
mlrun/runtimes/nuclio/serving.py,sha256=
|
|
300
|
+
mlrun/runtimes/nuclio/serving.py,sha256=KAAavywR3YR8sRcnGubcMmEy_2-P-gqV6vxmcyBjVbA,32604
|
|
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=3WeVCeVUb6U5wJDVJSuTDzJ-Pcr3ifg08E4gKIEIkmo,28945
|
|
302
303
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
|
|
303
304
|
mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
|
|
304
|
-
mlrun/runtimes/sparkjob/spark3job.py,sha256=
|
|
305
|
+
mlrun/runtimes/sparkjob/spark3job.py,sha256=FmrfR1lTVeH_F3YOx8vj16QsvN3b7veUS00_3d3PslI,41221
|
|
305
306
|
mlrun/serving/__init__.py,sha256=ujpKHIsHXJz5TELwEIsjMbijxONRg7kZ6ZcVONcRjcs,1324
|
|
306
307
|
mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
|
|
307
308
|
mlrun/serving/remote.py,sha256=Igha2FipK3-6rV_PZ1K464kTbiTu8rhc6SMm-HiEJ6o,18817
|
|
308
309
|
mlrun/serving/routers.py,sha256=SY6AsaiSnh8ssXq8hQE2z9MYapOxFOFJBx9QomiZMO8,53915
|
|
309
310
|
mlrun/serving/server.py,sha256=ZjrNvrp87IMJFM0EZwzRKl42nR4RoP3U6frqKJ6FqcI,24847
|
|
310
311
|
mlrun/serving/serving_wrapper.py,sha256=UL9hhWCfMPcTJO_XrkvNaFvck1U1E7oS8trTZyak0cA,835
|
|
311
|
-
mlrun/serving/states.py,sha256=
|
|
312
|
+
mlrun/serving/states.py,sha256=shsZYuR9hbzCywt5ClEbXEH8SsbWduWzhfeUlj0dJJk,82988
|
|
312
313
|
mlrun/serving/utils.py,sha256=Zbfqm8TKNcTE8zRBezVBzpvR2WKeKeIRN7otNIaiYEc,4170
|
|
313
314
|
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
314
315
|
mlrun/serving/v2_serving.py,sha256=p194GSVm5YU0_FEgtchMf0RkBCMyDaRZlrl8pceseHA,25377
|
|
@@ -323,7 +324,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
323
324
|
mlrun/utils/clones.py,sha256=qbAGyEbSvlewn3Tw_DpQZP9z6MGzFhSaZfI1CblX8Fg,7515
|
|
324
325
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
325
326
|
mlrun/utils/db.py,sha256=UIYDPHvPxim8tpjeD4S2QbfTx9Bhe-VqUQjqYTRHFuo,2185
|
|
326
|
-
mlrun/utils/helpers.py,sha256=
|
|
327
|
+
mlrun/utils/helpers.py,sha256=TZMikyv6HOX1TnWSCdMVp32S1x19yKehJaOf4sr9crM,79858
|
|
327
328
|
mlrun/utils/http.py,sha256=5ZU2VpokaUM_DT3HBSqTm8xjUqTPjZN5fKkSIvKlTl0,8704
|
|
328
329
|
mlrun/utils/logger.py,sha256=RG0m1rx6gfkJ-2C1r_p41MMpPiaDYqaYM2lYHDlNZEU,14767
|
|
329
330
|
mlrun/utils/regex.py,sha256=FcRwWD8x9X3HLhCCU2F0AVKTFah784Pr7ZAe3a02jw8,5199
|
|
@@ -342,11 +343,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
|
|
|
342
343
|
mlrun/utils/notifications/notification/slack.py,sha256=kfhogR5keR7Zjh0VCjJNK3NR5_yXT7Cv-x9GdOUW4Z8,7294
|
|
343
344
|
mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
|
|
344
345
|
mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
|
|
345
|
-
mlrun/utils/version/version.json,sha256=
|
|
346
|
+
mlrun/utils/version/version.json,sha256=pQcX0quIZrTOVHx4RNVy0hG7lnyWp8XXPThBnztSl28,89
|
|
346
347
|
mlrun/utils/version/version.py,sha256=M2hVhRrgkN3SxacZHs3ZqaOsqAA7B6a22ne324IQ1HE,1877
|
|
347
|
-
mlrun-1.10.
|
|
348
|
-
mlrun-1.10.
|
|
349
|
-
mlrun-1.10.
|
|
350
|
-
mlrun-1.10.
|
|
351
|
-
mlrun-1.10.
|
|
352
|
-
mlrun-1.10.
|
|
348
|
+
mlrun-1.10.0rc6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
349
|
+
mlrun-1.10.0rc6.dist-info/METADATA,sha256=SqXLwFQrd2ZmFDuhUWy_YNiHcUpawPwEeKFv57VxuKI,25828
|
|
350
|
+
mlrun-1.10.0rc6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
351
|
+
mlrun-1.10.0rc6.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
352
|
+
mlrun-1.10.0rc6.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
353
|
+
mlrun-1.10.0rc6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|