mlrun 1.9.0rc4__py3-none-any.whl → 1.9.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/__main__.py +13 -3
- mlrun/artifacts/base.py +5 -5
- mlrun/artifacts/dataset.py +1 -1
- mlrun/artifacts/model.py +1 -1
- mlrun/artifacts/plots.py +2 -2
- mlrun/common/constants.py +7 -0
- mlrun/common/runtimes/constants.py +1 -1
- 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 +7 -7
- mlrun/datastore/datastore.py +1 -1
- mlrun/datastore/datastore_profile.py +5 -5
- mlrun/datastore/sources.py +3 -3
- mlrun/datastore/targets.py +4 -4
- mlrun/datastore/utils.py +2 -2
- mlrun/db/base.py +7 -7
- mlrun/db/httpdb.py +19 -15
- mlrun/db/nopdb.py +1 -1
- mlrun/execution.py +1 -1
- mlrun/frameworks/_common/model_handler.py +2 -2
- mlrun/launcher/client.py +1 -1
- mlrun/model_monitoring/api.py +4 -4
- mlrun/model_monitoring/applications/_application_steps.py +3 -1
- mlrun/model_monitoring/applications/evidently/base.py +57 -107
- mlrun/model_monitoring/controller.py +26 -13
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +13 -5
- mlrun/model_monitoring/tracking_policy.py +1 -1
- mlrun/model_monitoring/writer.py +1 -1
- mlrun/projects/operations.py +3 -3
- mlrun/projects/project.py +68 -51
- mlrun/render.py +5 -9
- mlrun/run.py +2 -2
- mlrun/runtimes/base.py +5 -5
- mlrun/runtimes/kubejob.py +2 -2
- mlrun/runtimes/mounts.py +2 -0
- mlrun/runtimes/nuclio/function.py +2 -2
- mlrun/runtimes/nuclio/serving.py +4 -4
- mlrun/runtimes/utils.py +25 -8
- mlrun/utils/helpers.py +10 -4
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.9.0rc4.dist-info → mlrun-1.9.0rc6.dist-info}/METADATA +10 -10
- {mlrun-1.9.0rc4.dist-info → mlrun-1.9.0rc6.dist-info}/RECORD +48 -48
- {mlrun-1.9.0rc4.dist-info → mlrun-1.9.0rc6.dist-info}/WHEEL +1 -1
- {mlrun-1.9.0rc4.dist-info → mlrun-1.9.0rc6.dist-info}/entry_points.txt +0 -0
- {mlrun-1.9.0rc4.dist-info → mlrun-1.9.0rc6.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.9.0rc4.dist-info → mlrun-1.9.0rc6.dist-info}/top_level.txt +0 -0
mlrun/render.py
CHANGED
|
@@ -361,9 +361,6 @@ def get_tblframe(df, display, classes=None):
|
|
|
361
361
|
return ipython_display(html, display)
|
|
362
362
|
|
|
363
363
|
|
|
364
|
-
uid_template = '<div title="{}"><a href="{}/{}/{}/jobs/monitor/{}/overview" target="_blank" >...{}</a></div>'
|
|
365
|
-
|
|
366
|
-
|
|
367
364
|
def runs_to_html(
|
|
368
365
|
df: pd.DataFrame,
|
|
369
366
|
display: bool = True,
|
|
@@ -379,15 +376,14 @@ def runs_to_html(
|
|
|
379
376
|
df["results"] = df["results"].apply(dict_html)
|
|
380
377
|
df["start"] = df["start"].apply(time_str)
|
|
381
378
|
df["parameters"] = df["parameters"].apply(dict_html)
|
|
379
|
+
uid_template = '<div title="{}"><a href="{}" target="_blank" >...{}</a></div>'
|
|
380
|
+
|
|
382
381
|
if config.resolve_ui_url():
|
|
383
382
|
df["uid"] = df.apply(
|
|
384
383
|
lambda x: uid_template.format(
|
|
385
|
-
x
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
x.project,
|
|
389
|
-
x.uid,
|
|
390
|
-
x.uid[-8:],
|
|
384
|
+
x["uid"],
|
|
385
|
+
mlrun.utils.get_run_url(x["project"], x["uid"], x["name"]),
|
|
386
|
+
x["uid"][-8:],
|
|
391
387
|
),
|
|
392
388
|
axis=1,
|
|
393
389
|
)
|
mlrun/run.py
CHANGED
|
@@ -261,7 +261,7 @@ def get_or_create_ctx(
|
|
|
261
261
|
"""
|
|
262
262
|
if labels:
|
|
263
263
|
warnings.warn(
|
|
264
|
-
"The `labels` argument is deprecated and will be removed in 1.
|
|
264
|
+
"The `labels` argument is deprecated in 1.7.0 and will be removed in 1.10.0. "
|
|
265
265
|
"Please use `spec` instead, e.g.:\n"
|
|
266
266
|
"spec={'metadata': {'labels': {'key': 'value'}}}",
|
|
267
267
|
FutureWarning,
|
|
@@ -637,7 +637,7 @@ def code_to_function(
|
|
|
637
637
|
- databricks: run code on Databricks cluster (python scripts, Spark etc.)
|
|
638
638
|
- application: run a long living application (e.g. a web server, UI, etc.)
|
|
639
639
|
|
|
640
|
-
Learn more about
|
|
640
|
+
Learn more about :doc:`../../concepts/functions-overview`
|
|
641
641
|
|
|
642
642
|
:param name: function name, typically best to use hyphen-case
|
|
643
643
|
:param project: project used to namespace the function, defaults to 'default'
|
mlrun/runtimes/base.py
CHANGED
|
@@ -148,10 +148,10 @@ class FunctionSpec(ModelObj):
|
|
|
148
148
|
|
|
149
149
|
@property
|
|
150
150
|
def clone_target_dir(self):
|
|
151
|
-
# TODO: remove this property in 1.
|
|
151
|
+
# TODO: remove this property in 1.10.0
|
|
152
152
|
if self.build.source_code_target_dir:
|
|
153
153
|
warnings.warn(
|
|
154
|
-
"The clone_target_dir attribute is deprecated in 1.6.2 and will be removed in 1.
|
|
154
|
+
"The clone_target_dir attribute is deprecated in 1.6.2 and will be removed in 1.10.0. "
|
|
155
155
|
"Use spec.build.source_code_target_dir instead.",
|
|
156
156
|
FutureWarning,
|
|
157
157
|
)
|
|
@@ -159,10 +159,10 @@ class FunctionSpec(ModelObj):
|
|
|
159
159
|
|
|
160
160
|
@clone_target_dir.setter
|
|
161
161
|
def clone_target_dir(self, clone_target_dir):
|
|
162
|
-
# TODO: remove this property in 1.
|
|
162
|
+
# TODO: remove this property in 1.10.0
|
|
163
163
|
if clone_target_dir:
|
|
164
164
|
warnings.warn(
|
|
165
|
-
"The clone_target_dir attribute is deprecated in 1.6.2 and will be removed in 1.
|
|
165
|
+
"The clone_target_dir attribute is deprecated in 1.6.2 and will be removed in 1.10.0. "
|
|
166
166
|
"Use spec.build.source_code_target_dir instead.",
|
|
167
167
|
FutureWarning,
|
|
168
168
|
)
|
|
@@ -489,7 +489,7 @@ class BaseRuntime(ModelObj):
|
|
|
489
489
|
def _store_function(self, runspec, meta, db):
|
|
490
490
|
meta.labels["kind"] = self.kind
|
|
491
491
|
mlrun.runtimes.utils.enrich_run_labels(
|
|
492
|
-
meta.labels, [
|
|
492
|
+
meta.labels, [mlrun_constants.MLRunInternalLabels.owner]
|
|
493
493
|
)
|
|
494
494
|
if runspec.spec.output_path:
|
|
495
495
|
runspec.spec.output_path = runspec.spec.output_path.replace(
|
mlrun/runtimes/kubejob.py
CHANGED
|
@@ -114,9 +114,9 @@ class KubejobRuntime(KubeResource):
|
|
|
114
114
|
e.g. builder_env={"GIT_TOKEN": token}
|
|
115
115
|
"""
|
|
116
116
|
if not overwrite:
|
|
117
|
-
# TODO: change overwrite default to True in 1.
|
|
117
|
+
# TODO: change overwrite default to True in 1.10.0
|
|
118
118
|
warnings.warn(
|
|
119
|
-
"The `overwrite` parameter default will change from 'False' to 'True' in 1.
|
|
119
|
+
"The `overwrite` parameter default will change from 'False' to 'True' in 1.10.0.",
|
|
120
120
|
mlrun.utils.OverwriteBuildParamsWarning,
|
|
121
121
|
)
|
|
122
122
|
image = mlrun.utils.helpers.remove_image_protocol_prefix(image)
|
mlrun/runtimes/mounts.py
CHANGED
|
@@ -352,10 +352,12 @@ def auto_mount(
|
|
|
352
352
|
"""Choose the mount based on env variables and params
|
|
353
353
|
|
|
354
354
|
Volume will be selected by the following order:
|
|
355
|
+
|
|
355
356
|
- k8s PVC volume when both pvc_name and volume_mount_path are set
|
|
356
357
|
- k8s PVC volume when env var is set: MLRUN_PVC_MOUNT=<pvc-name>:<mount-path>
|
|
357
358
|
- k8s PVC volume if it's configured as the auto mount type
|
|
358
359
|
- iguazio v3io volume when V3IO_ACCESS_KEY and V3IO_USERNAME env vars are set
|
|
360
|
+
|
|
359
361
|
"""
|
|
360
362
|
if pvc_name and volume_mount_path:
|
|
361
363
|
return mount_pvc(
|
|
@@ -623,9 +623,9 @@ class RemoteRuntime(KubeResource):
|
|
|
623
623
|
:param force_build: set True for force building the image
|
|
624
624
|
"""
|
|
625
625
|
if auth_info:
|
|
626
|
-
# TODO: remove in 1.
|
|
626
|
+
# TODO: remove in 1.10.0
|
|
627
627
|
warnings.warn(
|
|
628
|
-
"'auth_info' is deprecated for nuclio runtimes in 1.7.0 and will be removed in 1.
|
|
628
|
+
"'auth_info' is deprecated for nuclio runtimes in 1.7.0 and will be removed in 1.10.0",
|
|
629
629
|
FutureWarning,
|
|
630
630
|
)
|
|
631
631
|
|
mlrun/runtimes/nuclio/serving.py
CHANGED
|
@@ -44,7 +44,7 @@ from .function import NuclioSpec, RemoteRuntime, min_nuclio_versions
|
|
|
44
44
|
serving_subkind = "serving_v2"
|
|
45
45
|
|
|
46
46
|
if TYPE_CHECKING:
|
|
47
|
-
# remove this block in 1.
|
|
47
|
+
# remove this block in 1.10.0
|
|
48
48
|
from mlrun.model_monitoring import TrackingPolicy
|
|
49
49
|
|
|
50
50
|
|
|
@@ -361,8 +361,8 @@ class ServingRuntime(RemoteRuntime):
|
|
|
361
361
|
if batch:
|
|
362
362
|
warnings.warn(
|
|
363
363
|
"The `batch` size parameter was deprecated in version 1.8.0 and is no longer used. "
|
|
364
|
-
"It will be removed in 1.
|
|
365
|
-
# TODO: Remove this in 1.
|
|
364
|
+
"It will be removed in 1.11.",
|
|
365
|
+
# TODO: Remove this in 1.11
|
|
366
366
|
FutureWarning,
|
|
367
367
|
)
|
|
368
368
|
if stream_args:
|
|
@@ -370,7 +370,7 @@ class ServingRuntime(RemoteRuntime):
|
|
|
370
370
|
if tracking_policy is not None:
|
|
371
371
|
warnings.warn(
|
|
372
372
|
"The `tracking_policy` argument is deprecated from version 1.7.0 "
|
|
373
|
-
"and has no effect. It will be removed in 1.
|
|
373
|
+
"and has no effect. It will be removed in 1.10.0.\n"
|
|
374
374
|
"To set the desired model monitoring time window and schedule, use "
|
|
375
375
|
"the `base_period` argument in `project.enable_model_monitoring()`.",
|
|
376
376
|
FutureWarning,
|
mlrun/runtimes/utils.py
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
|
+
import enum
|
|
14
15
|
import getpass
|
|
15
16
|
import hashlib
|
|
16
17
|
import json
|
|
@@ -28,7 +29,6 @@ import mlrun.common.constants as mlrun_constants
|
|
|
28
29
|
import mlrun.common.schemas
|
|
29
30
|
import mlrun.utils.regex
|
|
30
31
|
from mlrun.artifacts import TableArtifact
|
|
31
|
-
from mlrun.common.runtimes.constants import RunLabels
|
|
32
32
|
from mlrun.config import config
|
|
33
33
|
from mlrun.errors import err_to_str
|
|
34
34
|
from mlrun.frameworks.parallel_coordinates import gen_pcp_plot
|
|
@@ -433,18 +433,35 @@ def enrich_function_from_dict(function, function_dict):
|
|
|
433
433
|
|
|
434
434
|
def enrich_run_labels(
|
|
435
435
|
labels: dict,
|
|
436
|
-
labels_to_enrich: Optional[list[
|
|
436
|
+
labels_to_enrich: Optional[list[mlrun_constants.MLRunInternalLabels]] = None,
|
|
437
437
|
):
|
|
438
|
+
"""
|
|
439
|
+
Enrich the run labels with the internal labels and the labels enrichment extension
|
|
440
|
+
:param labels: The run labels dict
|
|
441
|
+
:param labels_to_enrich: The label keys to enrich from MLRunInternalLabels.default_run_labels_to_enrich
|
|
442
|
+
:return: The enriched labels dict
|
|
443
|
+
"""
|
|
444
|
+
# Merge the labels with the labels enrichment extension
|
|
438
445
|
labels_enrichment = {
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
446
|
+
mlrun_constants.MLRunInternalLabels.owner: os.environ.get("V3IO_USERNAME")
|
|
447
|
+
or getpass.getuser(),
|
|
448
|
+
# TODO: remove this in 1.10.0
|
|
449
|
+
mlrun_constants.MLRunInternalLabels.v3io_user: os.environ.get("V3IO_USERNAME"),
|
|
442
450
|
}
|
|
443
|
-
|
|
451
|
+
|
|
452
|
+
# Resolve which label keys to enrich
|
|
453
|
+
if labels_to_enrich is None:
|
|
454
|
+
labels_to_enrich = (
|
|
455
|
+
mlrun_constants.MLRunInternalLabels.default_run_labels_to_enrich()
|
|
456
|
+
)
|
|
457
|
+
|
|
458
|
+
# Enrich labels
|
|
444
459
|
for label in labels_to_enrich:
|
|
460
|
+
if isinstance(label, enum.Enum):
|
|
461
|
+
label = label.value
|
|
445
462
|
enrichment = labels_enrichment.get(label)
|
|
446
|
-
if label
|
|
447
|
-
labels[label
|
|
463
|
+
if label not in labels and enrichment:
|
|
464
|
+
labels[label] = enrichment
|
|
448
465
|
return labels
|
|
449
466
|
|
|
450
467
|
|
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:
|
|
@@ -2224,8 +2229,9 @@ class Workflow:
|
|
|
2224
2229
|
namespace=mlrun.mlconf.namespace,
|
|
2225
2230
|
)
|
|
2226
2231
|
|
|
2227
|
-
# arbitrary timeout of
|
|
2228
|
-
|
|
2232
|
+
# arbitrary timeout of 60 seconds, the workflow should be done by now, however sometimes kfp takes a few
|
|
2233
|
+
# seconds to update the workflow status
|
|
2234
|
+
kfp_run = kfp_client.wait_for_run_completion(workflow_id, 60)
|
|
2229
2235
|
if not kfp_run:
|
|
2230
2236
|
return None
|
|
2231
2237
|
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.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
|
|
@@ -35,7 +35,7 @@ Requires-Dist: pyarrow<17,>=10.0
|
|
|
35
35
|
Requires-Dist: pyyaml<7,>=6.0.2
|
|
36
36
|
Requires-Dist: requests~=2.32
|
|
37
37
|
Requires-Dist: tabulate~=0.8.6
|
|
38
|
-
Requires-Dist: v3io~=0.
|
|
38
|
+
Requires-Dist: v3io~=0.7.0
|
|
39
39
|
Requires-Dist: pydantic>=1.10.15
|
|
40
40
|
Requires-Dist: mergedeep~=1.3
|
|
41
41
|
Requires-Dist: v3io-frames~=0.10.14; python_version < "3.11"
|
|
@@ -51,8 +51,8 @@ Requires-Dist: setuptools>=75.2
|
|
|
51
51
|
Requires-Dist: deprecated~=1.2
|
|
52
52
|
Requires-Dist: jinja2>=3.1.3,~=3.1
|
|
53
53
|
Requires-Dist: orjson<4,>=3.9.15
|
|
54
|
-
Requires-Dist: mlrun-pipelines-kfp-common~=0.4.
|
|
55
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.4.
|
|
54
|
+
Requires-Dist: mlrun-pipelines-kfp-common~=0.4.3
|
|
55
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.4.3
|
|
56
56
|
Requires-Dist: docstring_parser~=0.16
|
|
57
57
|
Requires-Dist: aiosmtplib~=3.0
|
|
58
58
|
Provides-Extra: s3
|
|
@@ -79,7 +79,7 @@ Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "google-cloud"
|
|
|
79
79
|
Requires-Dist: google-cloud==0.34; extra == "google-cloud"
|
|
80
80
|
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "google-cloud"
|
|
81
81
|
Provides-Extra: kafka
|
|
82
|
-
Requires-Dist: kafka-python~=2.0; extra == "kafka"
|
|
82
|
+
Requires-Dist: kafka-python~=2.1.0; extra == "kafka"
|
|
83
83
|
Requires-Dist: avro~=1.11; extra == "kafka"
|
|
84
84
|
Provides-Extra: redis
|
|
85
85
|
Requires-Dist: redis~=4.3; extra == "redis"
|
|
@@ -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.4.
|
|
121
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.4.3; 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"
|
|
@@ -139,7 +139,7 @@ Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "all"
|
|
|
139
139
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "all"
|
|
140
140
|
Requires-Dist: google-cloud==0.34; extra == "all"
|
|
141
141
|
Requires-Dist: graphviz~=0.20.0; extra == "all"
|
|
142
|
-
Requires-Dist: kafka-python~=2.0; extra == "all"
|
|
142
|
+
Requires-Dist: kafka-python~=2.1.0; extra == "all"
|
|
143
143
|
Requires-Dist: mlflow~=2.16; extra == "all"
|
|
144
144
|
Requires-Dist: msrest~=0.6.21; extra == "all"
|
|
145
145
|
Requires-Dist: oss2==2.18.1; extra == "all"
|
|
@@ -170,7 +170,7 @@ Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "comple
|
|
|
170
170
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "complete"
|
|
171
171
|
Requires-Dist: google-cloud==0.34; extra == "complete"
|
|
172
172
|
Requires-Dist: graphviz~=0.20.0; extra == "complete"
|
|
173
|
-
Requires-Dist: kafka-python~=2.0; extra == "complete"
|
|
173
|
+
Requires-Dist: kafka-python~=2.1.0; extra == "complete"
|
|
174
174
|
Requires-Dist: mlflow~=2.16; extra == "complete"
|
|
175
175
|
Requires-Dist: msrest~=0.6.21; extra == "complete"
|
|
176
176
|
Requires-Dist: oss2==2.18.1; extra == "complete"
|
|
@@ -209,10 +209,10 @@ Requires-Dist: graphviz~=0.20.0; extra == "complete-api"
|
|
|
209
209
|
Requires-Dist: grpcio~=1.70.0; extra == "complete-api"
|
|
210
210
|
Requires-Dist: humanfriendly~=10.0; extra == "complete-api"
|
|
211
211
|
Requires-Dist: igz-mgmt~=0.4.1; extra == "complete-api"
|
|
212
|
-
Requires-Dist: kafka-python~=2.0; extra == "complete-api"
|
|
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.4.
|
|
215
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.4.3; 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"
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=Cqm9U9eCEdLpMejhU2BEhubu0mHL71igJJIwYa738EA,7450
|
|
2
|
-
mlrun/__main__.py,sha256=
|
|
3
|
-
mlrun/config.py,sha256=
|
|
2
|
+
mlrun/__main__.py,sha256=ktsoMxLmW65ABu5oG7TbUJvusyAYy_PRollQOGj4cGY,46352
|
|
3
|
+
mlrun/config.py,sha256=z4lQ_2rDthIHY368AMrbrMWIosAepIdfHfoER8Wf3bE,71933
|
|
4
4
|
mlrun/errors.py,sha256=LkcbXTLANGdsgo2CRX2pdbyNmt--lMsjGv0XZMgP-Nc,8222
|
|
5
|
-
mlrun/execution.py,sha256=
|
|
5
|
+
mlrun/execution.py,sha256=rss4zA5M9tOCnSaXrK_-_BQ5F5DfF9OzesgQliq7jvQ,50008
|
|
6
6
|
mlrun/features.py,sha256=ReBaNGsBYXqcbgI012n-SO_j6oHIbk_Vpv0CGPXbUmo,15842
|
|
7
7
|
mlrun/k8s_utils.py,sha256=-RmKAlSBo_qVeJa1bIiwi6TUyuEpb4AhF7wIQ_H5ZJ0,8909
|
|
8
8
|
mlrun/lists.py,sha256=-nbmqScRia0v2IdSHt6Pd0fLRLSEtdB9bSxyD92BWvs,8562
|
|
9
9
|
mlrun/model.py,sha256=5YedJfY9La867fhW8sZJdWb4FwyXPR1r1C5SqYyB4_w,85864
|
|
10
|
-
mlrun/render.py,sha256=
|
|
11
|
-
mlrun/run.py,sha256=
|
|
10
|
+
mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
|
|
11
|
+
mlrun/run.py,sha256=vEgESyKS6mwl6L4qtU71HtoaVQSzbxQguJESGdndyEc,45122
|
|
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=tVAnpexDkfI0JWMJNlPSnVOzoV4xqIjWGSln9UkPS4I,13921
|
|
16
16
|
mlrun/artifacts/__init__.py,sha256=ofC2extBCOC1wg1YtdTzWzH3eeG_f-sFBUkHjYtZJpk,1175
|
|
17
|
-
mlrun/artifacts/base.py,sha256=
|
|
18
|
-
mlrun/artifacts/dataset.py,sha256=
|
|
17
|
+
mlrun/artifacts/base.py,sha256=mQnDToP65cgXzhWUBNOT3ObkO_FqltHNVDEn7nFgDRQ,29982
|
|
18
|
+
mlrun/artifacts/dataset.py,sha256=p8Rk0yrBUszh4pe7VLfcUK9piD-J_UX_X6gU5fYCyQg,16665
|
|
19
19
|
mlrun/artifacts/document.py,sha256=3X1i27NYSd-cOcX-lEvaNTUvwS2UKWXW2EnlfWokrVk,17374
|
|
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=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
24
|
-
mlrun/common/constants.py,sha256=
|
|
24
|
+
mlrun/common/constants.py,sha256=Yj5YHANbpKHDKxZ1y5bV1wifvV3UQZ2QuvECUuYhrpM,3594
|
|
25
25
|
mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
|
|
26
26
|
mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
|
|
27
27
|
mlrun/common/types.py,sha256=1gxThbmC0Vd0U1ffIkEwz4T4S7JOgHt70rvw8TCO21c,1073
|
|
@@ -38,11 +38,11 @@ mlrun/common/formatters/project.py,sha256=0G4lhcTAsxQCxd40dKC4894cMH8nKt03BcGyp9
|
|
|
38
38
|
mlrun/common/formatters/run.py,sha256=Gcf9lVDqxPMNfWcPX0RJasjTC_N_U0yTBkQ02jOPJ7A,1062
|
|
39
39
|
mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
40
40
|
mlrun/common/model_monitoring/helpers.py,sha256=AkuHz4u318MEP4ebxmNWlNXh6HiNLrI5oF7QvJiJkYc,2707
|
|
41
|
-
mlrun/common/runtimes/constants.py,sha256=
|
|
41
|
+
mlrun/common/runtimes/constants.py,sha256=FU9VdepuakXCt6zk9MLobelQjsFWtnuqZ5pQMSpphuk,12325
|
|
42
42
|
mlrun/common/schemas/__init__.py,sha256=tNeYsylPAgG-3YI_Foka80alqm0JoCpXtuS_nDZzuaU,5324
|
|
43
43
|
mlrun/common/schemas/alert.py,sha256=tRsjHEQTjCb-83GS0mprsu5junvqL4aQjWN2Rt_yAaM,10183
|
|
44
44
|
mlrun/common/schemas/api_gateway.py,sha256=3a0QxECLmoDkD5IiOKtXJL-uiWB26Hg55WMA3nULYuI,7127
|
|
45
|
-
mlrun/common/schemas/artifact.py,sha256=
|
|
45
|
+
mlrun/common/schemas/artifact.py,sha256=RRnURzGiBYDZKc4gB-giyywDhkp3ttnsObgJNy-QqEE,4250
|
|
46
46
|
mlrun/common/schemas/auth.py,sha256=qYOCDbK-k7GTjwLseqGoxwcR-rdIbG2k7ct29M0sPUI,6880
|
|
47
47
|
mlrun/common/schemas/background_task.py,sha256=ofWRAQGGEkXEu79Dbw7tT_5GPolR09Lc3Ebg2r0fT24,1728
|
|
48
48
|
mlrun/common/schemas/client_spec.py,sha256=iQpxwPoWkrHaxta5qKY78loxmMNsbjCz9Y1O9BTeeZQ,2875
|
|
@@ -62,10 +62,10 @@ mlrun/common/schemas/notification.py,sha256=WDdGhFII--zII5XebfkTdse8reMgKeVCYXlg
|
|
|
62
62
|
mlrun/common/schemas/object.py,sha256=0vftHJcicAm87Hfgi_SdyQEqokoZRE4IEHHRPx34hNQ,1983
|
|
63
63
|
mlrun/common/schemas/pagination.py,sha256=8NEmiIkCXw5_sv-lE0MWgWz-WpxhSSn-vBtbPDBOGXc,899
|
|
64
64
|
mlrun/common/schemas/partition.py,sha256=MI8f7EbJ42RyVBLYVIjL6cjkWoL6Wgjdi-XbaUqQM3M,5921
|
|
65
|
-
mlrun/common/schemas/pipeline.py,sha256=
|
|
66
|
-
mlrun/common/schemas/project.py,sha256=
|
|
65
|
+
mlrun/common/schemas/pipeline.py,sha256=Z5nDr5WTzIgfBqnij_jvHkN_ep7xmOWNldCP60zv9qA,1436
|
|
66
|
+
mlrun/common/schemas/project.py,sha256=HHfaGbbRVVJuJPupHAEfW8jaxhcTDof3NiV61UC3MiU,6511
|
|
67
67
|
mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
|
|
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=74EGmk1iODg-wV0cn2ew44ZX20nqJMowgj-gNsh0vyU,1569
|
|
70
70
|
mlrun/common/schemas/schedule.py,sha256=LTWdZ4FvKDGkmmfyqKoBQ36VFqnnyIYLnq1I6qrTPyo,4292
|
|
71
71
|
mlrun/common/schemas/secret.py,sha256=CCxFYiPwJtDxwg2VVJH9nUG9cAZ2a34IjeuaWv-BYlc,1487
|
|
@@ -85,8 +85,8 @@ mlrun/datastore/__init__.py,sha256=81ulmQnRk1ENvwYOdetxqsLnr2gYVtW-KsvF-tY1Jxk,5
|
|
|
85
85
|
mlrun/datastore/alibaba_oss.py,sha256=k-OHVe08HjMewlkpsT657CbOiVFAfSq9_EqhCE-k86s,4940
|
|
86
86
|
mlrun/datastore/azure_blob.py,sha256=SzAcHYSXkm8Zpopz2Ea-rWVClH0URocUazcNK04S9W0,12776
|
|
87
87
|
mlrun/datastore/base.py,sha256=9R3lwB_L4hv5WW2q24WS62_KTh-wO4UG6pwzISZU6bM,26231
|
|
88
|
-
mlrun/datastore/datastore.py,sha256=
|
|
89
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
88
|
+
mlrun/datastore/datastore.py,sha256=AXXPgHpSG8Ig1RtTDGfdCJu4UT-AQPC43FGBOptIVOg,9484
|
|
89
|
+
mlrun/datastore/datastore_profile.py,sha256=ywIFYRzMWgb510GuRBDhsJvUbkPENl2qUDQbIBifuWE,23865
|
|
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,23 +95,23 @@ 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=Wohvnlmq8j1d98RCaknll-iWdZZpSlCrKhUOEy0_-CA,1483
|
|
98
|
-
mlrun/datastore/sources.py,sha256=
|
|
98
|
+
mlrun/datastore/sources.py,sha256=KTIsddAHNnpZoMv5i_6Rz2WjuKt6mFvhEFU899SgT20,48978
|
|
99
99
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
100
100
|
mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
|
|
101
101
|
mlrun/datastore/store_resources.py,sha256=PFOMrZ6KH6hBOb0PiO-cHx_kv0UpHu5P2t8_mrR-lS4,6842
|
|
102
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=w_UGKiOaonXUKbbxG-9XryWcdTezbzhHB2UjfgE76dM,81213
|
|
104
|
+
mlrun/datastore/utils.py,sha256=akkc-d9DJOUXCGJGhUyWilQ1an-Pz7W6aDCEzXv3_bA,10614
|
|
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=
|
|
114
|
-
mlrun/db/nopdb.py,sha256=
|
|
113
|
+
mlrun/db/httpdb.py,sha256=AxfZuJQJl8yGv9rt2pPOPMrDik3bZ73gbdyEfeEZvyM,232833
|
|
114
|
+
mlrun/db/nopdb.py,sha256=ttC1pe95rZdMgiLG9kzrjZFYB1gWj3SEqeqK5c0q0w4,27197
|
|
115
115
|
mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
|
|
116
116
|
mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
|
|
117
117
|
mlrun/feature_store/common.py,sha256=Z7USI-d1fo0iwBMsqMBtJflJfyuiV3BLoDXQPSAoBAs,12826
|
|
@@ -132,7 +132,7 @@ mlrun/frameworks/parallel_coordinates.py,sha256=UuZ0b0ACsaaH0rDya_0YMOWwaH6zhEyD
|
|
|
132
132
|
mlrun/frameworks/_common/__init__.py,sha256=1ovfHxNW8V9ERVVZx8lPFVGBtsXHaHli7pZPR-Ixn8g,860
|
|
133
133
|
mlrun/frameworks/_common/artifacts_library.py,sha256=O0z74o3Z6k5NruTqXMLDugZ6midOmSFqNlt7WhYIRP8,8517
|
|
134
134
|
mlrun/frameworks/_common/mlrun_interface.py,sha256=gjNV_siKyJ7xZdwoH8uvRmPuuQrc8WjnhoXr3GUCkAc,21093
|
|
135
|
-
mlrun/frameworks/_common/model_handler.py,sha256=
|
|
135
|
+
mlrun/frameworks/_common/model_handler.py,sha256=NpYyGpYUJLJCH3-kOntyzo1WO1baTLdwVeXHI_BagV4,55530
|
|
136
136
|
mlrun/frameworks/_common/plan.py,sha256=Yr98b5lkCV0K0u_krnU8gZJiXj14xfrFjJ6xD6QJdn0,3444
|
|
137
137
|
mlrun/frameworks/_common/producer.py,sha256=R67XRbiz1bk0XNvuW7ybbA4v6o6Q5qzD0h3AkC-tM1A,5766
|
|
138
138
|
mlrun/frameworks/_common/utils.py,sha256=NqoKbgj6UGPMBNhpK6mkKK4GOt5ko1lDqExFhQm9oEc,9131
|
|
@@ -213,26 +213,26 @@ mlrun/frameworks/xgboost/model_handler.py,sha256=e3VLKMmaC9OFoclUPx9buUXYLDe1Ab3
|
|
|
213
213
|
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
214
214
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
215
215
|
mlrun/launcher/base.py,sha256=uZaUpwjy9_Z137aQ4b1JsuYqD01ZVRxytAxZSFKSu6U,16480
|
|
216
|
-
mlrun/launcher/client.py,sha256=
|
|
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=775HY-8S9LFUX5ubGXrLO0N1lVh8bn-DHFmNYuNqQPA,11451
|
|
219
219
|
mlrun/launcher/remote.py,sha256=rLJW4UAnUT5iUb4BsGBOAV3K4R29a0X4lFtRkVKlyYU,7709
|
|
220
220
|
mlrun/model_monitoring/__init__.py,sha256=ELy7njEtZnz09Dc6PGZSFFEGtnwI15bJNWM3Pj4_YIs,753
|
|
221
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
222
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
221
|
+
mlrun/model_monitoring/api.py,sha256=qGQripjfaaSactOs-0TK7-DIocXQNhy_znqR2eYT8Ug,28321
|
|
222
|
+
mlrun/model_monitoring/controller.py,sha256=p4UphE9y-YN_ndZQykvPvJow2sAhnYj3nkuJmyIzvf4,37661
|
|
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/tracking_policy.py,sha256=
|
|
227
|
-
mlrun/model_monitoring/writer.py,sha256=
|
|
226
|
+
mlrun/model_monitoring/tracking_policy.py,sha256=LldBBEUS9uxyC09wo4Ff1z692FzAbSy93gJYGQHXGIw,5596
|
|
227
|
+
mlrun/model_monitoring/writer.py,sha256=rgoD1iwlqJiRdiuKY5yrSvs_wV5RD_2Ie4R4BLqZOWw,8429
|
|
228
228
|
mlrun/model_monitoring/applications/__init__.py,sha256=xDBxkBjl-whHSG_4t1mLkxiypLH-fzn8TmAW9Mjo2uI,759
|
|
229
|
-
mlrun/model_monitoring/applications/_application_steps.py,sha256=
|
|
229
|
+
mlrun/model_monitoring/applications/_application_steps.py,sha256=mjuBVqa7KY_Ymoo8DzddthUpBZyfio2e4O5ce-d-2eY,8444
|
|
230
230
|
mlrun/model_monitoring/applications/base.py,sha256=f73LycKUG85invl6l7V4MRiRd1bx8jmepayrpwpr3c0,25131
|
|
231
231
|
mlrun/model_monitoring/applications/context.py,sha256=VfyPCIdO4z73uqFcJs87jzSI4PatX5N5Xicg8Ye1Bag,16968
|
|
232
232
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
|
|
233
233
|
mlrun/model_monitoring/applications/results.py,sha256=_qmj6TWT0SR2bi7gUyRKBU418eGgGoLW2_hTJ7S-ock,5782
|
|
234
234
|
mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
|
|
235
|
-
mlrun/model_monitoring/applications/evidently/base.py,sha256=
|
|
235
|
+
mlrun/model_monitoring/applications/evidently/base.py,sha256=shH9YwuFrGNWy1IDAbv622l-GE4o1z_u1bqhqTyTHDA,5661
|
|
236
236
|
mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
|
|
237
237
|
mlrun/model_monitoring/db/_schedules.py,sha256=RWn4wtKsIXg668gMLpxO9I8GlkxvPSaA5y7w-wFDcgE,9048
|
|
238
238
|
mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
|
|
@@ -246,7 +246,7 @@ mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py,sha256=8xo2O_yQrJ
|
|
|
246
246
|
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=h0ZrNgOwTlBRd_DaYDc6eeVM9f_8CLJMUPEAIrZpbyU,37803
|
|
247
247
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
248
248
|
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
|
|
249
|
-
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=
|
|
249
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=aDdyHWJLOG-3EgPTJgbEzOOQf5NetpFQk_HdQbs5_zI,47160
|
|
250
250
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
251
251
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
252
252
|
mlrun/package/__init__.py,sha256=v7VDyK9kDOOuDvFo4oiGV2fx-vM1KL7fdN9pGLakhUQ,7008
|
|
@@ -269,21 +269,21 @@ mlrun/package/utils/type_hint_utils.py,sha256=JYrek6vuN3z7e6MGUD3qBLDfQ03C4puZXN
|
|
|
269
269
|
mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3551
|
|
270
270
|
mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
|
|
271
271
|
mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
|
|
272
|
-
mlrun/projects/operations.py,sha256=
|
|
272
|
+
mlrun/projects/operations.py,sha256=9ntpM8WnnyRk1iCY0NDKW-3aR4j2QZPSJM0SdMnsQKs,20032
|
|
273
273
|
mlrun/projects/pipelines.py,sha256=wud7ezeEmhIJvfYE_wzQbA4ygEfGXHtbOtoOpan6poY,48556
|
|
274
|
-
mlrun/projects/project.py,sha256=
|
|
274
|
+
mlrun/projects/project.py,sha256=O3oeg5ZZLvsvftN_T6syB1xQJ7e1eFg37mrlIaL4VCY,237075
|
|
275
275
|
mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
|
|
276
|
-
mlrun/runtimes/base.py,sha256=
|
|
276
|
+
mlrun/runtimes/base.py,sha256=K-38p2HYSpaPcenJgEzQqLlLVFxfwLu2Bwe9oXGWCTM,37853
|
|
277
277
|
mlrun/runtimes/daskjob.py,sha256=JwuGvOiPsxEDHHMMUS4Oie4hLlYYIZwihAl6DjroTY0,19521
|
|
278
278
|
mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
|
|
279
279
|
mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
|
|
280
280
|
mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
|
|
281
|
-
mlrun/runtimes/kubejob.py,sha256=
|
|
281
|
+
mlrun/runtimes/kubejob.py,sha256=xt6NyPiIiPYmGDFtTe4RHF-zhrFdgwcnRr2NQEBB5NI,8799
|
|
282
282
|
mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
|
|
283
|
-
mlrun/runtimes/mounts.py,sha256=
|
|
283
|
+
mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
|
|
284
284
|
mlrun/runtimes/pod.py,sha256=kjnDKOQKqfmprzA3tbXhaB58Dp6So4cOApcjYZ3kVko,67691
|
|
285
285
|
mlrun/runtimes/remotesparkjob.py,sha256=dod99nqz3GdRfmnBoQKfwFCXTetfuCScd2pKH3HJyoY,7394
|
|
286
|
-
mlrun/runtimes/utils.py,sha256=
|
|
286
|
+
mlrun/runtimes/utils.py,sha256=VFKA7dWuILAcJGia_7Pw_zBBG00wZlat7o2N6u5EItw,16284
|
|
287
287
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
288
288
|
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=sIqIg5DQAf4j0wCPA-G0GoxY6vacRddxCy5KDUZszek,2245
|
|
289
289
|
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=WBq8Q0RIYwLkyshU7btYrB59wotzK_6xixHqZ-oz0PY,12851
|
|
@@ -293,9 +293,9 @@ mlrun/runtimes/mpijob/abstract.py,sha256=JGMjcJ4dvpJbctF6psU9UvYyNCutMxTMgBQeTlz
|
|
|
293
293
|
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
294
294
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
295
295
|
mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
|
|
296
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
296
|
+
mlrun/runtimes/nuclio/function.py,sha256=_PJ5ubHb3JfLjOj5sXaxnmTnBLI2YogI33D4OY1u55k,54543
|
|
297
297
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
298
|
-
mlrun/runtimes/nuclio/serving.py,sha256=
|
|
298
|
+
mlrun/runtimes/nuclio/serving.py,sha256=Pqca0oG_B76RlgBsMYH8yR5M3LBp-ARONP0mP4aFTls,33436
|
|
299
299
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
300
300
|
mlrun/runtimes/nuclio/application/application.py,sha256=VPX-ruYQJ7-7yd5c2sWdF4U5JCGSS3kYjUfOgev6l_Y,29186
|
|
301
301
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
|
|
@@ -322,7 +322,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
322
322
|
mlrun/utils/clones.py,sha256=yXOeuLtgIiKZdmjeKK0Z_vIrH19ds5JuoJaCeDjhwOo,7516
|
|
323
323
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
324
324
|
mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
|
|
325
|
-
mlrun/utils/helpers.py,sha256=
|
|
325
|
+
mlrun/utils/helpers.py,sha256=w1dRGvgVuv8KX9aFhduWIOULv1yRZOMxFCLwN_LBQmk,77024
|
|
326
326
|
mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
|
|
327
327
|
mlrun/utils/logger.py,sha256=RG0m1rx6gfkJ-2C1r_p41MMpPiaDYqaYM2lYHDlNZEU,14767
|
|
328
328
|
mlrun/utils/regex.py,sha256=jbR7IiOp6OO0mg9Fl_cVZCpWb9fL9nTPONCUxCDNWXg,5201
|
|
@@ -341,11 +341,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
|
|
|
341
341
|
mlrun/utils/notifications/notification/slack.py,sha256=eQvmctTh6wIG5xVOesLLV9S1-UUCu5UEQ9JIJOor3ts,7183
|
|
342
342
|
mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
|
|
343
343
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
344
|
-
mlrun/utils/version/version.json,sha256=
|
|
344
|
+
mlrun/utils/version/version.json,sha256=LKT4ldQefqC3t14kvaT3JzTQYEXo11UmMlAxApIfid4,88
|
|
345
345
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
346
|
-
mlrun-1.9.
|
|
347
|
-
mlrun-1.9.
|
|
348
|
-
mlrun-1.9.
|
|
349
|
-
mlrun-1.9.
|
|
350
|
-
mlrun-1.9.
|
|
351
|
-
mlrun-1.9.
|
|
346
|
+
mlrun-1.9.0rc6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
347
|
+
mlrun-1.9.0rc6.dist-info/METADATA,sha256=TNNIE4xOpafcCHH1kRgORVUmANiLhs0toZ71XjnHYP0,25708
|
|
348
|
+
mlrun-1.9.0rc6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
349
|
+
mlrun-1.9.0rc6.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
350
|
+
mlrun-1.9.0rc6.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
351
|
+
mlrun-1.9.0rc6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|