mlrun 1.8.0rc59__py3-none-any.whl → 1.8.0rc60__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/base.py +2 -2
- mlrun/artifacts/dataset.py +1 -1
- mlrun/artifacts/model.py +1 -1
- mlrun/artifacts/plots.py +2 -2
- mlrun/model_monitoring/applications/evidently/base.py +3 -41
- mlrun/model_monitoring/controller.py +3 -1
- mlrun/projects/project.py +46 -30
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.8.0rc59.dist-info → mlrun-1.8.0rc60.dist-info}/METADATA +2 -2
- {mlrun-1.8.0rc59.dist-info → mlrun-1.8.0rc60.dist-info}/RECORD +14 -14
- {mlrun-1.8.0rc59.dist-info → mlrun-1.8.0rc60.dist-info}/WHEEL +1 -1
- {mlrun-1.8.0rc59.dist-info → mlrun-1.8.0rc60.dist-info}/entry_points.txt +0 -0
- {mlrun-1.8.0rc59.dist-info → mlrun-1.8.0rc60.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.8.0rc59.dist-info → mlrun-1.8.0rc60.dist-info}/top_level.txt +0 -0
mlrun/artifacts/base.py
CHANGED
|
@@ -237,7 +237,7 @@ class Artifact(ModelObj):
|
|
|
237
237
|
warnings.warn(
|
|
238
238
|
"Artifact constructor parameters are deprecated in 1.7.0 and will be removed in 1.10.0. "
|
|
239
239
|
"Use the metadata and spec parameters instead.",
|
|
240
|
-
|
|
240
|
+
DeprecationWarning,
|
|
241
241
|
)
|
|
242
242
|
|
|
243
243
|
self._metadata = None
|
|
@@ -766,7 +766,7 @@ class LinkArtifact(Artifact):
|
|
|
766
766
|
warnings.warn(
|
|
767
767
|
"Artifact constructor parameters are deprecated in 1.7.0 and will be removed in 1.10.0. "
|
|
768
768
|
"Use the metadata and spec parameters instead.",
|
|
769
|
-
|
|
769
|
+
DeprecationWarning,
|
|
770
770
|
)
|
|
771
771
|
super().__init__(
|
|
772
772
|
key, target_path=target_path, project=project, metadata=metadata, spec=spec
|
mlrun/artifacts/dataset.py
CHANGED
|
@@ -165,7 +165,7 @@ class DatasetArtifact(Artifact):
|
|
|
165
165
|
warnings.warn(
|
|
166
166
|
"Artifact constructor parameters are deprecated in 1.7.0 and will be removed in 1.10.0. "
|
|
167
167
|
"Use the metadata and spec parameters instead.",
|
|
168
|
-
|
|
168
|
+
DeprecationWarning,
|
|
169
169
|
)
|
|
170
170
|
|
|
171
171
|
format = (format or "").lower()
|
mlrun/artifacts/model.py
CHANGED
|
@@ -154,7 +154,7 @@ class ModelArtifact(Artifact):
|
|
|
154
154
|
warnings.warn(
|
|
155
155
|
"Artifact constructor parameters are deprecated in 1.7.0 and will be removed in 1.10.0. "
|
|
156
156
|
"Use the metadata and spec parameters instead.",
|
|
157
|
-
|
|
157
|
+
DeprecationWarning,
|
|
158
158
|
)
|
|
159
159
|
super().__init__(key, body, format=format, target_path=target_path, **kwargs)
|
|
160
160
|
model_file = str(model_file or "")
|
mlrun/artifacts/plots.py
CHANGED
|
@@ -39,7 +39,7 @@ class PlotArtifact(Artifact):
|
|
|
39
39
|
warnings.warn(
|
|
40
40
|
"Artifact constructor parameters are deprecated in 1.7.0 and will be removed in 1.10.0. "
|
|
41
41
|
"Use the metadata and spec parameters instead.",
|
|
42
|
-
|
|
42
|
+
DeprecationWarning,
|
|
43
43
|
)
|
|
44
44
|
super().__init__(key, body, format="html", target_path=target_path)
|
|
45
45
|
self.metadata.description = title
|
|
@@ -98,7 +98,7 @@ class PlotlyArtifact(Artifact):
|
|
|
98
98
|
warnings.warn(
|
|
99
99
|
"Artifact constructor parameters are deprecated in 1.7.0 and will be removed in 1.10.0. "
|
|
100
100
|
"Use the metadata and spec parameters instead.",
|
|
101
|
-
|
|
101
|
+
DeprecationWarning,
|
|
102
102
|
)
|
|
103
103
|
# Validate the plotly package:
|
|
104
104
|
try:
|
|
@@ -12,8 +12,6 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
-
import json
|
|
16
|
-
import posixpath
|
|
17
15
|
import warnings
|
|
18
16
|
from abc import ABC
|
|
19
17
|
from tempfile import NamedTemporaryFile
|
|
@@ -60,7 +58,6 @@ except ModuleNotFoundError:
|
|
|
60
58
|
|
|
61
59
|
if _HAS_EVIDENTLY:
|
|
62
60
|
from evidently.core.report import Snapshot
|
|
63
|
-
from evidently.legacy.ui.storage.local.base import METADATA_PATH, FSLocation
|
|
64
61
|
from evidently.ui.workspace import (
|
|
65
62
|
STR_UUID,
|
|
66
63
|
CloudWorkspace,
|
|
@@ -100,14 +97,13 @@ class EvidentlyModelMonitoringApplicationBase(
|
|
|
100
97
|
self.evidently_project_id = evidently_project_id
|
|
101
98
|
self.evidently_project = self.load_project()
|
|
102
99
|
|
|
103
|
-
def load_project(self) -> Project:
|
|
100
|
+
def load_project(self) -> "Project":
|
|
104
101
|
"""Load the Evidently project."""
|
|
105
102
|
return self.evidently_workspace.get_project(self.evidently_project_id)
|
|
106
103
|
|
|
107
|
-
def get_workspace(self) -> WorkspaceBase:
|
|
104
|
+
def get_workspace(self) -> "WorkspaceBase":
|
|
108
105
|
"""Get the Evidently workspace. Override this method for customize access to the workspace."""
|
|
109
106
|
if self.evidently_workspace_path:
|
|
110
|
-
self._log_location(self.evidently_workspace_path)
|
|
111
107
|
return Workspace.create(self.evidently_workspace_path)
|
|
112
108
|
else:
|
|
113
109
|
raise MLRunValueError(
|
|
@@ -116,44 +112,10 @@ class EvidentlyModelMonitoringApplicationBase(
|
|
|
116
112
|
"`EVIDENTLY_API_KEY` environment variable. In other cases, override this method."
|
|
117
113
|
)
|
|
118
114
|
|
|
119
|
-
def get_cloud_workspace(self) -> CloudWorkspace:
|
|
115
|
+
def get_cloud_workspace(self) -> "CloudWorkspace":
|
|
120
116
|
"""Load the Evidently cloud workspace according to the `EVIDENTLY_API_KEY` environment variable."""
|
|
121
117
|
return CloudWorkspace()
|
|
122
118
|
|
|
123
|
-
@staticmethod
|
|
124
|
-
def _log_location(evidently_workspace_path):
|
|
125
|
-
# TODO remove function + usage after solving issue ML-9530
|
|
126
|
-
location = FSLocation(base_path=evidently_workspace_path)
|
|
127
|
-
location.invalidate_cache("")
|
|
128
|
-
paths = [p for p in location.listdir("") if location.isdir(p)]
|
|
129
|
-
|
|
130
|
-
for path in paths:
|
|
131
|
-
metadata_path = posixpath.join(path, METADATA_PATH)
|
|
132
|
-
full_path = posixpath.join(location.path, metadata_path)
|
|
133
|
-
print(f"evidently json issue, working on path: {full_path}")
|
|
134
|
-
try:
|
|
135
|
-
with location.open(metadata_path) as f:
|
|
136
|
-
content = json.load(f)
|
|
137
|
-
print(
|
|
138
|
-
f"evidently json issue, successful load path: {full_path}, content: {content}"
|
|
139
|
-
)
|
|
140
|
-
except FileNotFoundError:
|
|
141
|
-
print(f"evidently json issue, path not found: {full_path}")
|
|
142
|
-
continue
|
|
143
|
-
except json.decoder.JSONDecodeError as json_error:
|
|
144
|
-
print(
|
|
145
|
-
f"evidently json issue, path got json error, path:{full_path}, error: {json_error}"
|
|
146
|
-
)
|
|
147
|
-
print("evidently json issue, file content:")
|
|
148
|
-
with location.open(metadata_path) as f:
|
|
149
|
-
print(f.read())
|
|
150
|
-
continue
|
|
151
|
-
except Exception as error:
|
|
152
|
-
print(
|
|
153
|
-
f"evidently json issue, path got general error, path:{full_path}, error: {error}"
|
|
154
|
-
)
|
|
155
|
-
continue
|
|
156
|
-
|
|
157
119
|
@staticmethod
|
|
158
120
|
def log_evidently_object(
|
|
159
121
|
monitoring_context: mm_context.MonitoringApplicationContext,
|
|
@@ -732,7 +732,9 @@ class MonitoringApplicationController:
|
|
|
732
732
|
last_request = last_request_dict.get(endpoint.metadata.uid, None)
|
|
733
733
|
if isinstance(last_request, float):
|
|
734
734
|
last_request = pd.to_datetime(last_request, unit="s", utc=True)
|
|
735
|
-
endpoint.status.last_request =
|
|
735
|
+
endpoint.status.last_request = (
|
|
736
|
+
last_request or endpoint.status.last_request
|
|
737
|
+
)
|
|
736
738
|
futures = {
|
|
737
739
|
pool.submit(
|
|
738
740
|
self.endpoint_to_regular_event,
|
mlrun/projects/project.py
CHANGED
|
@@ -4003,8 +4003,10 @@ class MlrunProject(ModelObj):
|
|
|
4003
4003
|
e.g. builder_env={"GIT_TOKEN": token}, does not work yet in KFP
|
|
4004
4004
|
:param overwrite_build_params: Overwrite existing build configuration (currently applies to
|
|
4005
4005
|
requirements and commands)
|
|
4006
|
+
|
|
4006
4007
|
* False: The new params are merged with the existing
|
|
4007
4008
|
* True: The existing params are replaced by the new ones
|
|
4009
|
+
|
|
4008
4010
|
:param extra_args: A string containing additional builder arguments in the format of command-line options,
|
|
4009
4011
|
e.g. extra_args="--skip-tls-verify --build-arg A=val"
|
|
4010
4012
|
:param force_build: force building the image, even when no changes were made
|
|
@@ -4055,8 +4057,10 @@ class MlrunProject(ModelObj):
|
|
|
4055
4057
|
:param requirements_file: requirements file to install on the built image
|
|
4056
4058
|
:param overwrite_build_params: Overwrite existing build configuration (currently applies to
|
|
4057
4059
|
requirements and commands)
|
|
4060
|
+
|
|
4058
4061
|
* False: The new params are merged with the existing
|
|
4059
4062
|
* True: The existing params are replaced by the new ones
|
|
4063
|
+
|
|
4060
4064
|
:param builder_env: Kaniko builder pod env vars dict (for config/credentials)
|
|
4061
4065
|
e.g. builder_env={"GIT_TOKEN": token}, does not work yet in KFP
|
|
4062
4066
|
:param extra_args: A string containing additional builder arguments in the format of command-line options,
|
|
@@ -4128,8 +4132,10 @@ class MlrunProject(ModelObj):
|
|
|
4128
4132
|
e.g. builder_env={"GIT_TOKEN": token}, does not work yet in KFP
|
|
4129
4133
|
:param overwrite_build_params: Overwrite existing build configuration (currently applies to
|
|
4130
4134
|
requirements and commands)
|
|
4135
|
+
|
|
4131
4136
|
* False: The new params are merged with the existing
|
|
4132
4137
|
* True: The existing params are replaced by the new ones
|
|
4138
|
+
|
|
4133
4139
|
:param extra_args: A string containing additional builder arguments in the format of command-line options,
|
|
4134
4140
|
e.g. extra_args="--skip-tls-verify --build-arg A=val"
|
|
4135
4141
|
:param target_dir: Path on the image where source code would be extracted (by default `/home/mlrun_code`)
|
|
@@ -4307,12 +4313,14 @@ class MlrunProject(ModelObj):
|
|
|
4307
4313
|
``my_Name_1`` or ``surname``.
|
|
4308
4314
|
:param tag: Return artifacts assigned this tag.
|
|
4309
4315
|
:param labels: Filter artifacts by label key-value pairs or key existence. This can be provided as:
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
|
|
4316
|
+
|
|
4317
|
+
- A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
|
|
4318
|
+
or `{"label": None}` to check for key existence.
|
|
4319
|
+
- A list of strings formatted as `"label=value"` to match specific label key-value pairs,
|
|
4320
|
+
or just `"label"` for key existence.
|
|
4321
|
+
- A comma-separated string formatted as `"label1=value1,label2"` to match entities with
|
|
4322
|
+
the specified key-value pairs or key existence.
|
|
4323
|
+
|
|
4316
4324
|
:param since: Not in use in :py:class:`HTTPRunDB`.
|
|
4317
4325
|
:param until: Not in use in :py:class:`HTTPRunDB`.
|
|
4318
4326
|
:param iter: Return artifacts from a specific iteration (where ``iter=0`` means the root iteration). If
|
|
@@ -4454,12 +4462,14 @@ class MlrunProject(ModelObj):
|
|
|
4454
4462
|
``my_Name_1`` or ``surname``.
|
|
4455
4463
|
:param tag: Return artifacts assigned this tag.
|
|
4456
4464
|
:param labels: Filter model artifacts by label key-value pairs or key existence. This can be provided as:
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4465
|
+
|
|
4466
|
+
- A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
|
|
4467
|
+
or `{"label": None}` to check for key existence.
|
|
4468
|
+
- A list of strings formatted as `"label=value"` to match specific label key-value pairs,
|
|
4469
|
+
or just `"label"` for key existence.
|
|
4470
|
+
- A comma-separated string formatted as `"label1=value1,label2"` to match entities with
|
|
4471
|
+
the specified key-value pairs or key existence.
|
|
4472
|
+
|
|
4463
4473
|
:param since: Not in use in :py:class:`HTTPRunDB`.
|
|
4464
4474
|
:param until: Not in use in :py:class:`HTTPRunDB`.
|
|
4465
4475
|
:param iter: Return artifacts from a specific iteration (where ``iter=0`` means the root iteration). If
|
|
@@ -4565,12 +4575,14 @@ class MlrunProject(ModelObj):
|
|
|
4565
4575
|
:param name: Return only functions with a specific name.
|
|
4566
4576
|
:param tag: Return function versions with specific tags. To return only tagged functions, set tag to ``"*"``.
|
|
4567
4577
|
:param labels: Filter functions by label key-value pairs or key existence. This can be provided as:
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4578
|
+
|
|
4579
|
+
- A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
|
|
4580
|
+
or `{"label": None}` to check for key existence.
|
|
4581
|
+
- A list of strings formatted as `"label=value"` to match specific label key-value pairs,
|
|
4582
|
+
or just `"label"` for key existence.
|
|
4583
|
+
- A comma-separated string formatted as `"label1=value1,label2"` to match entities with
|
|
4584
|
+
the specified key-value pairs or key existence.
|
|
4585
|
+
|
|
4574
4586
|
:param kind: Return functions of the specified kind. If not provided, all function kinds will be returned.
|
|
4575
4587
|
:param format_: The format in which to return the functions. Default is 'full'.
|
|
4576
4588
|
:returns: List of function objects.
|
|
@@ -4664,12 +4676,14 @@ class MlrunProject(ModelObj):
|
|
|
4664
4676
|
:param name: Return only functions with a specific name.
|
|
4665
4677
|
:param tag: Return function versions with specific tags.
|
|
4666
4678
|
:param labels: Filter functions by label key-value pairs or key existence. This can be provided as:
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4679
|
+
|
|
4680
|
+
- A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
|
|
4681
|
+
or `{"label": None}` to check for key existence.
|
|
4682
|
+
- A list of strings formatted as `"label=value"` to match specific label key-value pairs,
|
|
4683
|
+
or just `"label"` for key existence.
|
|
4684
|
+
- A comma-separated string formatted as `"label1=value1,label2"` to match entities with
|
|
4685
|
+
the specified key-value pairs or key existence.
|
|
4686
|
+
|
|
4673
4687
|
:returns: List of function objects.
|
|
4674
4688
|
"""
|
|
4675
4689
|
|
|
@@ -4725,12 +4739,14 @@ class MlrunProject(ModelObj):
|
|
|
4725
4739
|
:param name: Name of the run to retrieve.
|
|
4726
4740
|
:param uid: Unique ID of the run.
|
|
4727
4741
|
:param labels: Filter runs by label key-value pairs or key existence. This can be provided as:
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4742
|
+
|
|
4743
|
+
- A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
|
|
4744
|
+
or `{"label": None}` to check for key existence.
|
|
4745
|
+
- A list of strings formatted as `"label=value"` to match specific label key-value pairs,
|
|
4746
|
+
or just `"label"` for key existence.
|
|
4747
|
+
- A comma-separated string formatted as `"label1=value1,label2"` to match entities with
|
|
4748
|
+
the specified key-value pairs or key existence.
|
|
4749
|
+
|
|
4734
4750
|
:param state: Deprecated - List only runs whose state is specified.
|
|
4735
4751
|
:param states: List only runs whose state is one of the provided states.
|
|
4736
4752
|
:param sort: Whether to sort the result according to their start time. Otherwise, results will be
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.0rc60
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -51,7 +51,7 @@ 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.3.
|
|
54
|
+
Requires-Dist: mlrun-pipelines-kfp-common~=0.3.15
|
|
55
55
|
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.3.10; python_version < "3.11"
|
|
56
56
|
Requires-Dist: docstring_parser~=0.16
|
|
57
57
|
Requires-Dist: aiosmtplib~=3.0
|
|
@@ -14,12 +14,12 @@ 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
24
|
mlrun/common/constants.py,sha256=14xMUX9C5BB-LxsTlMTJQf_Xz2DyRjaK9yeR5dadcDU,3426
|
|
25
25
|
mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
|
|
@@ -219,7 +219,7 @@ 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
221
|
mlrun/model_monitoring/api.py,sha256=qGQripjfaaSactOs-0TK7-DIocXQNhy_znqR2eYT8Ug,28321
|
|
222
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
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
|
|
@@ -232,7 +232,7 @@ mlrun/model_monitoring/applications/context.py,sha256=VfyPCIdO4z73uqFcJs87jzSI4P
|
|
|
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
|
|
@@ -271,7 +271,7 @@ mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13
|
|
|
271
271
|
mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
|
|
272
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
276
|
mlrun/runtimes/base.py,sha256=m347abcZRdI8654wBJea9D2GBRlkv_prz9UrA5ihlkA,37859
|
|
277
277
|
mlrun/runtimes/daskjob.py,sha256=JwuGvOiPsxEDHHMMUS4Oie4hLlYYIZwihAl6DjroTY0,19521
|
|
@@ -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=tlxMI5s2cr2-2tUYisOgCDkCyNrQFnanBejymToIrp8,89
|
|
345
345
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
346
|
-
mlrun-1.8.
|
|
347
|
-
mlrun-1.8.
|
|
348
|
-
mlrun-1.8.
|
|
349
|
-
mlrun-1.8.
|
|
350
|
-
mlrun-1.8.
|
|
351
|
-
mlrun-1.8.
|
|
346
|
+
mlrun-1.8.0rc60.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
347
|
+
mlrun-1.8.0rc60.dist-info/METADATA,sha256=Fu8wkc50FfLRkQDo6eoHYt_GmSnTEp6GDK7gtbD_U60,25805
|
|
348
|
+
mlrun-1.8.0rc60.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
349
|
+
mlrun-1.8.0rc60.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
350
|
+
mlrun-1.8.0rc60.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
351
|
+
mlrun-1.8.0rc60.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|