mlrun 1.7.0rc43__py3-none-any.whl → 1.7.0rc44__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 +4 -2
- mlrun/artifacts/base.py +1 -1
- mlrun/artifacts/manager.py +9 -3
- mlrun/common/schemas/alert.py +11 -11
- mlrun/common/schemas/client_spec.py +0 -1
- mlrun/common/schemas/workflow.py +1 -0
- mlrun/config.py +27 -20
- mlrun/data_types/data_types.py +5 -0
- mlrun/datastore/base.py +4 -4
- mlrun/datastore/storeytargets.py +2 -2
- mlrun/db/httpdb.py +2 -12
- mlrun/db/nopdb.py +21 -4
- mlrun/execution.py +3 -1
- mlrun/feature_store/api.py +1 -0
- mlrun/feature_store/retrieval/spark_merger.py +7 -3
- mlrun/frameworks/_common/plan.py +3 -3
- mlrun/frameworks/_ml_common/plan.py +1 -1
- mlrun/frameworks/parallel_coordinates.py +2 -3
- mlrun/launcher/client.py +6 -6
- mlrun/model_monitoring/controller.py +1 -1
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py +15 -1
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +12 -0
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +2 -2
- mlrun/model_monitoring/helpers.py +7 -8
- mlrun/model_monitoring/writer.py +3 -1
- mlrun/projects/pipelines.py +2 -0
- mlrun/projects/project.py +21 -10
- mlrun/render.py +3 -3
- mlrun/runtimes/kubejob.py +6 -6
- mlrun/runtimes/nuclio/api_gateway.py +6 -0
- mlrun/runtimes/pod.py +14 -8
- mlrun/utils/helpers.py +39 -22
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc44.dist-info}/METADATA +18 -18
- {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc44.dist-info}/RECORD +39 -39
- {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc44.dist-info}/WHEEL +1 -1
- {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc44.dist-info}/LICENSE +0 -0
- {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc44.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc44.dist-info}/top_level.txt +0 -0
mlrun/projects/project.py
CHANGED
|
@@ -67,13 +67,7 @@ from ..features import Feature
|
|
|
67
67
|
from ..model import EntrypointParam, ImageBuilder, ModelObj
|
|
68
68
|
from ..run import code_to_function, get_object, import_function, new_function
|
|
69
69
|
from ..secrets import SecretsStore
|
|
70
|
-
from ..utils import
|
|
71
|
-
is_ipython,
|
|
72
|
-
is_relative_path,
|
|
73
|
-
is_yaml_path,
|
|
74
|
-
logger,
|
|
75
|
-
update_in,
|
|
76
|
-
)
|
|
70
|
+
from ..utils import is_jupyter, is_relative_path, is_yaml_path, logger, update_in
|
|
77
71
|
from ..utils.clones import (
|
|
78
72
|
add_credentials_git_remote_url,
|
|
79
73
|
clone_git,
|
|
@@ -1599,7 +1593,9 @@ class MlrunProject(ModelObj):
|
|
|
1599
1593
|
:param format: artifact file format: csv, png, ..
|
|
1600
1594
|
:param tag: version tag
|
|
1601
1595
|
:param target_path: absolute target path (instead of using artifact_path + local_path)
|
|
1602
|
-
:param upload: upload to datastore
|
|
1596
|
+
:param upload: Whether to upload the artifact to the datastore. If not provided, and the `local_path`
|
|
1597
|
+
is not a directory, upload occurs by default. Directories are uploaded only when this
|
|
1598
|
+
flag is explicitly set to `True`.
|
|
1603
1599
|
:param labels: a set of key/value labels to tag the artifact with
|
|
1604
1600
|
|
|
1605
1601
|
:returns: artifact object
|
|
@@ -2439,7 +2435,7 @@ class MlrunProject(ModelObj):
|
|
|
2439
2435
|
):
|
|
2440
2436
|
# if function path is not provided and it is not a module (no ".")
|
|
2441
2437
|
# use the current notebook as default
|
|
2442
|
-
if
|
|
2438
|
+
if is_jupyter:
|
|
2443
2439
|
from IPython import get_ipython
|
|
2444
2440
|
|
|
2445
2441
|
kernel = get_ipython()
|
|
@@ -3060,6 +3056,7 @@ class MlrunProject(ModelObj):
|
|
|
3060
3056
|
source: str = None,
|
|
3061
3057
|
cleanup_ttl: int = None,
|
|
3062
3058
|
notifications: list[mlrun.model.Notification] = None,
|
|
3059
|
+
workflow_runner_node_selector: typing.Optional[dict[str, str]] = None,
|
|
3063
3060
|
) -> _PipelineRunStatus:
|
|
3064
3061
|
"""Run a workflow using kubeflow pipelines
|
|
3065
3062
|
|
|
@@ -3096,7 +3093,11 @@ class MlrunProject(ModelObj):
|
|
|
3096
3093
|
workflow and all its resources are deleted)
|
|
3097
3094
|
:param notifications:
|
|
3098
3095
|
List of notifications to send for workflow completion
|
|
3099
|
-
|
|
3096
|
+
:param workflow_runner_node_selector:
|
|
3097
|
+
Defines the node selector for the workflow runner pod when using a remote engine.
|
|
3098
|
+
This allows you to control and specify where the workflow runner pod will be scheduled.
|
|
3099
|
+
This setting is only relevant when the engine is set to 'remote' or for scheduled workflows,
|
|
3100
|
+
and it will be ignored if the workflow is not run on a remote engine.
|
|
3100
3101
|
:returns: ~py:class:`~mlrun.projects.pipelines._PipelineRunStatus` instance
|
|
3101
3102
|
"""
|
|
3102
3103
|
|
|
@@ -3162,6 +3163,16 @@ class MlrunProject(ModelObj):
|
|
|
3162
3163
|
)
|
|
3163
3164
|
inner_engine = get_workflow_engine(engine_kind, local).engine
|
|
3164
3165
|
workflow_spec.engine = inner_engine or workflow_engine.engine
|
|
3166
|
+
if workflow_runner_node_selector:
|
|
3167
|
+
if workflow_engine.engine == "remote":
|
|
3168
|
+
workflow_spec.workflow_runner_node_selector = (
|
|
3169
|
+
workflow_runner_node_selector
|
|
3170
|
+
)
|
|
3171
|
+
else:
|
|
3172
|
+
logger.warn(
|
|
3173
|
+
"'workflow_runner_node_selector' applies only to remote engines"
|
|
3174
|
+
" and is ignored for non-remote runs."
|
|
3175
|
+
)
|
|
3165
3176
|
|
|
3166
3177
|
run = workflow_engine.run(
|
|
3167
3178
|
self,
|
mlrun/render.py
CHANGED
|
@@ -22,7 +22,7 @@ import mlrun.utils
|
|
|
22
22
|
|
|
23
23
|
from .config import config
|
|
24
24
|
from .datastore import uri_to_ipython
|
|
25
|
-
from .utils import dict_to_list, get_in,
|
|
25
|
+
from .utils import dict_to_list, get_in, is_jupyter
|
|
26
26
|
|
|
27
27
|
JUPYTER_SERVER_ROOT = environ.get("HOME", "/User")
|
|
28
28
|
supported_viewers = [
|
|
@@ -181,8 +181,8 @@ def run_to_html(results, display=True):
|
|
|
181
181
|
|
|
182
182
|
|
|
183
183
|
def ipython_display(html, display=True, alt_text=None):
|
|
184
|
-
if display and html and
|
|
185
|
-
import IPython
|
|
184
|
+
if display and html and is_jupyter:
|
|
185
|
+
import IPython.display
|
|
186
186
|
|
|
187
187
|
IPython.display.display(IPython.display.HTML(html))
|
|
188
188
|
elif alt_text:
|
mlrun/runtimes/kubejob.py
CHANGED
|
@@ -11,7 +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
|
-
|
|
14
|
+
import typing
|
|
15
15
|
import warnings
|
|
16
16
|
|
|
17
17
|
from mlrun_pipelines.common.ops import build_op
|
|
@@ -143,11 +143,11 @@ class KubejobRuntime(KubeResource):
|
|
|
143
143
|
|
|
144
144
|
def deploy(
|
|
145
145
|
self,
|
|
146
|
-
watch=True,
|
|
147
|
-
with_mlrun=None,
|
|
148
|
-
skip_deployed=False,
|
|
149
|
-
is_kfp=False,
|
|
150
|
-
mlrun_version_specifier=None,
|
|
146
|
+
watch: bool = True,
|
|
147
|
+
with_mlrun: typing.Optional[bool] = None,
|
|
148
|
+
skip_deployed: bool = False,
|
|
149
|
+
is_kfp: bool = False,
|
|
150
|
+
mlrun_version_specifier: typing.Optional[bool] = None,
|
|
151
151
|
builder_env: dict = None,
|
|
152
152
|
show_on_failure: bool = False,
|
|
153
153
|
force_build: bool = False,
|
|
@@ -587,6 +587,12 @@ class APIGateway(ModelObj):
|
|
|
587
587
|
self.metadata.annotations, gateway_timeout
|
|
588
588
|
)
|
|
589
589
|
|
|
590
|
+
def with_annotations(self, annotations: dict):
|
|
591
|
+
"""set a key/value annotations in the metadata of the api gateway"""
|
|
592
|
+
for key, value in annotations.items():
|
|
593
|
+
self.metadata.annotations[key] = str(value)
|
|
594
|
+
return self
|
|
595
|
+
|
|
590
596
|
@classmethod
|
|
591
597
|
def from_scheme(cls, api_gateway: schemas.APIGateway):
|
|
592
598
|
project = api_gateway.metadata.labels.get(
|
mlrun/runtimes/pod.py
CHANGED
|
@@ -1347,20 +1347,26 @@ class KubeResource(BaseRuntime, KfpAdapterMixin):
|
|
|
1347
1347
|
|
|
1348
1348
|
def _build_image(
|
|
1349
1349
|
self,
|
|
1350
|
-
builder_env,
|
|
1351
|
-
force_build,
|
|
1352
|
-
mlrun_version_specifier,
|
|
1353
|
-
show_on_failure,
|
|
1354
|
-
skip_deployed,
|
|
1355
|
-
watch,
|
|
1356
|
-
is_kfp,
|
|
1357
|
-
with_mlrun,
|
|
1350
|
+
builder_env: dict,
|
|
1351
|
+
force_build: bool,
|
|
1352
|
+
mlrun_version_specifier: typing.Optional[bool],
|
|
1353
|
+
show_on_failure: bool,
|
|
1354
|
+
skip_deployed: bool,
|
|
1355
|
+
watch: bool,
|
|
1356
|
+
is_kfp: bool,
|
|
1357
|
+
with_mlrun: typing.Optional[bool],
|
|
1358
1358
|
):
|
|
1359
1359
|
# When we're in pipelines context we must watch otherwise the pipelines pod will exit before the operation
|
|
1360
1360
|
# is actually done. (when a pipelines pod exits, the pipeline step marked as done)
|
|
1361
1361
|
if is_kfp:
|
|
1362
1362
|
watch = True
|
|
1363
1363
|
|
|
1364
|
+
if skip_deployed and self.requires_build() and not self.is_deployed():
|
|
1365
|
+
logger.warning(
|
|
1366
|
+
f"Even though {skip_deployed=}, the build might be triggered due to the function's configuration. "
|
|
1367
|
+
"See requires_build() and is_deployed() for reasoning."
|
|
1368
|
+
)
|
|
1369
|
+
|
|
1364
1370
|
db = self._get_db()
|
|
1365
1371
|
data = db.remote_builder(
|
|
1366
1372
|
self,
|
mlrun/utils/helpers.py
CHANGED
|
@@ -41,7 +41,7 @@ import semver
|
|
|
41
41
|
import yaml
|
|
42
42
|
from dateutil import parser
|
|
43
43
|
from mlrun_pipelines.models import PipelineRun
|
|
44
|
-
from pandas
|
|
44
|
+
from pandas import Timedelta, Timestamp
|
|
45
45
|
from yaml.representer import RepresenterError
|
|
46
46
|
|
|
47
47
|
import mlrun
|
|
@@ -133,18 +133,25 @@ def is_legacy_artifact(artifact):
|
|
|
133
133
|
logger = create_logger(config.log_level, config.log_formatter, "mlrun", sys.stdout)
|
|
134
134
|
missing = object()
|
|
135
135
|
|
|
136
|
-
is_ipython = False
|
|
136
|
+
is_ipython = False # is IPython terminal, including Jupyter
|
|
137
|
+
is_jupyter = False # is Jupyter notebook/lab terminal
|
|
137
138
|
try:
|
|
138
|
-
import IPython
|
|
139
|
+
import IPython.core.getipython
|
|
139
140
|
|
|
140
|
-
ipy = IPython.get_ipython()
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
141
|
+
ipy = IPython.core.getipython.get_ipython()
|
|
142
|
+
|
|
143
|
+
is_ipython = ipy is not None
|
|
144
|
+
is_jupyter = (
|
|
145
|
+
is_ipython
|
|
146
|
+
# not IPython
|
|
147
|
+
and "Terminal" not in str(type(ipy))
|
|
148
|
+
)
|
|
149
|
+
|
|
150
|
+
del ipy
|
|
151
|
+
except ModuleNotFoundError:
|
|
145
152
|
pass
|
|
146
153
|
|
|
147
|
-
if
|
|
154
|
+
if is_jupyter and config.nest_asyncio_enabled in ["1", "True"]:
|
|
148
155
|
# bypass Jupyter asyncio bug
|
|
149
156
|
import nest_asyncio
|
|
150
157
|
|
|
@@ -267,15 +274,29 @@ def validate_artifact_key_name(
|
|
|
267
274
|
)
|
|
268
275
|
|
|
269
276
|
|
|
270
|
-
def
|
|
277
|
+
def validate_artifact_body_size(
|
|
278
|
+
body: typing.Union[str, bytes, None], is_inline: bool
|
|
279
|
+
) -> None:
|
|
280
|
+
"""
|
|
281
|
+
Validates the size of the artifact body.
|
|
282
|
+
|
|
283
|
+
:param body: The artifact body, which can be a string, bytes, or None.
|
|
284
|
+
:param is_inline: A flag indicating whether the artifact body is inline.
|
|
285
|
+
|
|
286
|
+
:raises mlrun.errors.MLRunBadRequestError: If the body exceeds the maximum allowed size.
|
|
287
|
+
"""
|
|
271
288
|
if body and len(body) > MYSQL_MEDIUMBLOB_SIZE_BYTES:
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
289
|
+
error_message = "The body of the artifact exceeds the maximum allowed size. "
|
|
290
|
+
if is_inline:
|
|
291
|
+
error_message += (
|
|
292
|
+
"Avoid embedding the artifact body. This increases the size of the project yaml file and could "
|
|
293
|
+
"affect the project during loading and saving. "
|
|
294
|
+
)
|
|
295
|
+
else:
|
|
296
|
+
error_message += (
|
|
297
|
+
"For larger artifacts, consider logging them through files instead."
|
|
298
|
+
)
|
|
299
|
+
raise mlrun.errors.MLRunBadRequestError(error_message)
|
|
279
300
|
|
|
280
301
|
|
|
281
302
|
def validate_v3io_stream_consumer_group(
|
|
@@ -1421,11 +1442,7 @@ def is_running_in_jupyter_notebook() -> bool:
|
|
|
1421
1442
|
Check if the code is running inside a Jupyter Notebook.
|
|
1422
1443
|
:return: True if running inside a Jupyter Notebook, False otherwise.
|
|
1423
1444
|
"""
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
ipy = IPython.get_ipython()
|
|
1427
|
-
# if its IPython terminal, it isn't a Jupyter ipython
|
|
1428
|
-
return ipy and "Terminal" not in str(type(ipy))
|
|
1445
|
+
return is_jupyter
|
|
1429
1446
|
|
|
1430
1447
|
|
|
1431
1448
|
def create_ipython_display():
|
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.0rc44
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -33,7 +33,7 @@ Requires-Dist: numpy <1.27.0,>=1.16.5
|
|
|
33
33
|
Requires-Dist: pandas <2.2,>=1.2
|
|
34
34
|
Requires-Dist: pyarrow <15,>=10.0
|
|
35
35
|
Requires-Dist: pyyaml <7,>=5.4.1
|
|
36
|
-
Requires-Dist: requests ~=2.
|
|
36
|
+
Requires-Dist: requests ~=2.32
|
|
37
37
|
Requires-Dist: tabulate ~=0.8.6
|
|
38
38
|
Requires-Dist: v3io ~=0.6.9
|
|
39
39
|
Requires-Dist: pydantic <1.10.15,>=1.10.8
|
|
@@ -57,16 +57,16 @@ Requires-Dist: ossfs ==2023.12.0 ; extra == 'alibaba-oss'
|
|
|
57
57
|
Requires-Dist: oss2 ==2.18.1 ; extra == 'alibaba-oss'
|
|
58
58
|
Provides-Extra: all
|
|
59
59
|
Requires-Dist: adlfs ==2023.9.0 ; extra == 'all'
|
|
60
|
-
Requires-Dist: aiobotocore <2.
|
|
60
|
+
Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 'all'
|
|
61
61
|
Requires-Dist: avro ~=1.11 ; extra == 'all'
|
|
62
62
|
Requires-Dist: azure-core ~=1.24 ; extra == 'all'
|
|
63
63
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'all'
|
|
64
64
|
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'all'
|
|
65
65
|
Requires-Dist: bokeh >=2.4.2,~=2.4 ; extra == 'all'
|
|
66
|
-
Requires-Dist: boto3 <1.
|
|
67
|
-
Requires-Dist: dask ~=2023.
|
|
66
|
+
Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 'all'
|
|
67
|
+
Requires-Dist: dask ~=2023.12.1 ; extra == 'all'
|
|
68
68
|
Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'all'
|
|
69
|
-
Requires-Dist: distributed ~=2023.
|
|
69
|
+
Requires-Dist: distributed ~=2023.12.1 ; extra == 'all'
|
|
70
70
|
Requires-Dist: gcsfs <2024.7,>=2023.9.2 ; extra == 'all'
|
|
71
71
|
Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'all'
|
|
72
72
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'all'
|
|
@@ -111,15 +111,15 @@ Provides-Extra: bokeh
|
|
|
111
111
|
Requires-Dist: bokeh >=2.4.2,~=2.4 ; extra == 'bokeh'
|
|
112
112
|
Provides-Extra: complete
|
|
113
113
|
Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete'
|
|
114
|
-
Requires-Dist: aiobotocore <2.
|
|
114
|
+
Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 'complete'
|
|
115
115
|
Requires-Dist: avro ~=1.11 ; extra == 'complete'
|
|
116
116
|
Requires-Dist: azure-core ~=1.24 ; extra == 'complete'
|
|
117
117
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'complete'
|
|
118
118
|
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete'
|
|
119
|
-
Requires-Dist: boto3 <1.
|
|
120
|
-
Requires-Dist: dask ~=2023.
|
|
119
|
+
Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 'complete'
|
|
120
|
+
Requires-Dist: dask ~=2023.12.1 ; extra == 'complete'
|
|
121
121
|
Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete'
|
|
122
|
-
Requires-Dist: distributed ~=2023.
|
|
122
|
+
Requires-Dist: distributed ~=2023.12.1 ; extra == 'complete'
|
|
123
123
|
Requires-Dist: gcsfs <2024.7,>=2023.9.2 ; extra == 'complete'
|
|
124
124
|
Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'complete'
|
|
125
125
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete'
|
|
@@ -140,18 +140,18 @@ Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete'
|
|
|
140
140
|
Requires-Dist: taos-ws-py ~=0.3.2 ; extra == 'complete'
|
|
141
141
|
Provides-Extra: complete-api
|
|
142
142
|
Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete-api'
|
|
143
|
-
Requires-Dist: aiobotocore <2.
|
|
143
|
+
Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 'complete-api'
|
|
144
144
|
Requires-Dist: alembic ~=1.9 ; extra == 'complete-api'
|
|
145
145
|
Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'complete-api'
|
|
146
146
|
Requires-Dist: avro ~=1.11 ; extra == 'complete-api'
|
|
147
147
|
Requires-Dist: azure-core ~=1.24 ; extra == 'complete-api'
|
|
148
148
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'complete-api'
|
|
149
149
|
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete-api'
|
|
150
|
-
Requires-Dist: boto3 <1.
|
|
150
|
+
Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 'complete-api'
|
|
151
151
|
Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'complete-api'
|
|
152
|
-
Requires-Dist: dask ~=2023.
|
|
152
|
+
Requires-Dist: dask ~=2023.12.1 ; extra == 'complete-api'
|
|
153
153
|
Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete-api'
|
|
154
|
-
Requires-Dist: distributed ~=2023.
|
|
154
|
+
Requires-Dist: distributed ~=2023.12.1 ; extra == 'complete-api'
|
|
155
155
|
Requires-Dist: fastapi ~=0.110.0 ; extra == 'complete-api'
|
|
156
156
|
Requires-Dist: gcsfs <2024.7,>=2023.9.2 ; extra == 'complete-api'
|
|
157
157
|
Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'complete-api'
|
|
@@ -179,8 +179,8 @@ Requires-Dist: timelength ~=1.1 ; extra == 'complete-api'
|
|
|
179
179
|
Requires-Dist: uvicorn ~=0.27.1 ; extra == 'complete-api'
|
|
180
180
|
Requires-Dist: memray ~=1.12 ; (sys_platform != "win32") and extra == 'complete-api'
|
|
181
181
|
Provides-Extra: dask
|
|
182
|
-
Requires-Dist: dask ~=2023.
|
|
183
|
-
Requires-Dist: distributed ~=2023.
|
|
182
|
+
Requires-Dist: dask ~=2023.12.1 ; extra == 'dask'
|
|
183
|
+
Requires-Dist: distributed ~=2023.12.1 ; extra == 'dask'
|
|
184
184
|
Provides-Extra: databricks-sdk
|
|
185
185
|
Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'databricks-sdk'
|
|
186
186
|
Provides-Extra: google-cloud
|
|
@@ -201,8 +201,8 @@ Requires-Dist: plotly ~=5.23 ; extra == 'plotly'
|
|
|
201
201
|
Provides-Extra: redis
|
|
202
202
|
Requires-Dist: redis ~=4.3 ; extra == 'redis'
|
|
203
203
|
Provides-Extra: s3
|
|
204
|
-
Requires-Dist: boto3 <1.
|
|
205
|
-
Requires-Dist: aiobotocore <2.
|
|
204
|
+
Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 's3'
|
|
205
|
+
Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 's3'
|
|
206
206
|
Requires-Dist: s3fs <2024.7,>=2023.9.2 ; extra == 's3'
|
|
207
207
|
Provides-Extra: snowflake
|
|
208
208
|
Requires-Dist: snowflake-connector-python ~=3.7 ; extra == 'snowflake'
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=y08M1JcKXy5-9_5WaI9fn5aV5BxIQ5QkbduJK0OxWbA,7470
|
|
2
|
-
mlrun/__main__.py,sha256=
|
|
3
|
-
mlrun/config.py,sha256=
|
|
2
|
+
mlrun/__main__.py,sha256=mC_Izs4kuHUHQi88QJFLN22n1kbygGM0wAirjNt7uj4,45938
|
|
3
|
+
mlrun/config.py,sha256=yzud8SZLKRCAjPGVTH-BVTubJ_FIACRn1gekoKutzy0,67307
|
|
4
4
|
mlrun/errors.py,sha256=nY23dns_kTzbOrelJf0FyxLw5mglv7jo4Sx3efKS9Fs,7798
|
|
5
|
-
mlrun/execution.py,sha256=
|
|
5
|
+
mlrun/execution.py,sha256=EGsEeSqOFnSxYFL4_YVKv8DEx2YsmJ9aA1gXBAV5W5A,42563
|
|
6
6
|
mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
|
|
7
7
|
mlrun/k8s_utils.py,sha256=mRQMs6NzPq36vx1n5_2BfFapXysc8wv3NcrZ77_2ANA,8949
|
|
8
8
|
mlrun/lists.py,sha256=3PqBdcajdwhTe1XuFsAaHTuFVM2kjwepf31qqE82apg,8384
|
|
9
9
|
mlrun/model.py,sha256=WcRg13FSww_4YLpL-WDRnfoBnfiEHXRFTMLEMJIeICk,80694
|
|
10
|
-
mlrun/render.py,sha256=
|
|
10
|
+
mlrun/render.py,sha256=940H9fBBFeghH4dlifbURvtjlvw4GlWdAXezN6ky4rI,13275
|
|
11
11
|
mlrun/run.py,sha256=hNxV-TnixbH8MCos2jqz8jdTDlK7dBSvJMil_QoGKQI,43616
|
|
12
12
|
mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
|
|
13
13
|
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
14
|
mlrun/alerts/alert.py,sha256=aLyKitNaFnl86ADwy1k7XkGOpf9vIkrL8626wVGKGxU,10444
|
|
15
15
|
mlrun/api/schemas/__init__.py,sha256=fEWH4I8hr5AdRJ7yoW44RlFB6NHkYDxyomP5J6ct1z4,14248
|
|
16
16
|
mlrun/artifacts/__init__.py,sha256=daGrLqltI1nE3ES30nm-tanUnxReRzfyxyaxNRx2zbc,1168
|
|
17
|
-
mlrun/artifacts/base.py,sha256=
|
|
17
|
+
mlrun/artifacts/base.py,sha256=_GX7tmWvnFU2ERQbi3Ck-g7H3l9rX3tpXaPp19i0izM,29156
|
|
18
18
|
mlrun/artifacts/dataset.py,sha256=O_2g2RFHYEAXIBX86mgyc0wBNOhWLT7NlYvxFeLNTuw,16505
|
|
19
|
-
mlrun/artifacts/manager.py,sha256=
|
|
19
|
+
mlrun/artifacts/manager.py,sha256=6-fAklr3sjVcdcq3W4AuyASJ62WrbbtY4D2Wm4qhDUw,15754
|
|
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
|
|
@@ -37,12 +37,12 @@ mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ
|
|
|
37
37
|
mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
|
|
38
38
|
mlrun/common/runtimes/constants.py,sha256=Rl0Sd8n_L7Imo-uF1LL9CJ5Szi0W1gUm36yrF8PXfSc,10989
|
|
39
39
|
mlrun/common/schemas/__init__.py,sha256=xCRh98GdHfB6Tzb7_lrOhgoO9UnkUfTcsjStLZll8tc,5247
|
|
40
|
-
mlrun/common/schemas/alert.py,sha256=
|
|
40
|
+
mlrun/common/schemas/alert.py,sha256=qWYCISNYMdkgAARVQNxshVr9d-s8LGscfLKpczkTBms,6749
|
|
41
41
|
mlrun/common/schemas/api_gateway.py,sha256=9ilorgLOiWxFZbv89-dbPNfVdaChlGOIdC4SLTxQwNI,7118
|
|
42
42
|
mlrun/common/schemas/artifact.py,sha256=V3ngobnzI1v2eoOroWBEedjAZu0ntCSIQ-LzsOK1Z9k,3570
|
|
43
43
|
mlrun/common/schemas/auth.py,sha256=5c4WSn3KdX1v04ttSQblkF_gyjdjuJSHG7BTCx4_LWM,6336
|
|
44
44
|
mlrun/common/schemas/background_task.py,sha256=2qZxib2qrF_nPZj0ncitCG-2jxz2hg1qj0hFc8eswWQ,1707
|
|
45
|
-
mlrun/common/schemas/client_spec.py,sha256=
|
|
45
|
+
mlrun/common/schemas/client_spec.py,sha256=wqzQ5R4Zc7FL-8lV_BRN6nLrD0jK1kon05-JQ3fy2KY,2892
|
|
46
46
|
mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
|
|
47
47
|
mlrun/common/schemas/common.py,sha256=73KxUHF6gvTdI29qLWecmOWqpOxDpMbD8ypsK03GtEE,1654
|
|
48
48
|
mlrun/common/schemas/constants.py,sha256=sTNCimttd7ytSZ3jxbftItw_HDGxPwY96Ub86OvcT9w,6660
|
|
@@ -66,20 +66,20 @@ mlrun/common/schemas/runtime_resource.py,sha256=2rSuYL-9JkESSomlnU91mYDbfV-IkqZe
|
|
|
66
66
|
mlrun/common/schemas/schedule.py,sha256=nD9kxH2KjXkbGZPNfzVNlNSxbyFZmZUlwtT04_z2xCw,4289
|
|
67
67
|
mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
|
|
68
68
|
mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
|
|
69
|
-
mlrun/common/schemas/workflow.py,sha256=
|
|
69
|
+
mlrun/common/schemas/workflow.py,sha256=WxmlwtwrzwL4lfHYjQTOp03uv6PWYMpZ4cNBMOA6N6E,1897
|
|
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
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
|
-
mlrun/data_types/data_types.py,sha256=
|
|
75
|
+
mlrun/data_types/data_types.py,sha256=3dmmIxJ2_uKzf-dbbgOwbYJx8cvUYrPiQan40vcSqJo,4948
|
|
76
76
|
mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
|
|
77
77
|
mlrun/data_types/spark.py,sha256=xfcr6lcaLcHepnrHavx_vacMJK7BC8FWsUKjwrjjn6w,9509
|
|
78
78
|
mlrun/data_types/to_pandas.py,sha256=-ZbJBg00x4xxyqqqu3AVbEh-HaO2--DrChyPuedRhHA,11215
|
|
79
79
|
mlrun/datastore/__init__.py,sha256=8WvgHF245fvU9u98ctRqosvEmQ9iAKKIIS_dSgj_fmU,4153
|
|
80
80
|
mlrun/datastore/alibaba_oss.py,sha256=-RMA4vCE4rar-D57Niy3tY_6bXKHLFpMp28z5YR7-jI,4888
|
|
81
81
|
mlrun/datastore/azure_blob.py,sha256=9qkgrEMXGiuYYcc6b6HkuHlRHDbl0p7tIzeWxAAcEVs,12724
|
|
82
|
-
mlrun/datastore/base.py,sha256=
|
|
82
|
+
mlrun/datastore/base.py,sha256=2tGtl1S59SVkk3ZaIZ_Fm2UgAdHtByXUWu3cR36aAYk,26231
|
|
83
83
|
mlrun/datastore/datastore.py,sha256=F2i8XI2hkQwf51OjqdFZ8179oHvDfQtaT5pvfkvMV9U,9389
|
|
84
84
|
mlrun/datastore/datastore_profile.py,sha256=ZCU-brdRNXNE8EnknzFljtWjciEJ9sGZnoahFxbdEt4,18940
|
|
85
85
|
mlrun/datastore/dbfs_store.py,sha256=mylyl-evK3CVe5fx6rwawITxPIc2YVbw5WHGbL24jtM,6516
|
|
@@ -94,7 +94,7 @@ mlrun/datastore/sources.py,sha256=op90ksx95wqaBtoiORpHnqEgw4iGEDPsJ3_lI8ftS-E,48
|
|
|
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/storeytargets.py,sha256=
|
|
97
|
+
mlrun/datastore/storeytargets.py,sha256=t1TCqeXr2GZ-w_tgKhPyubOtlFRcYAnvXXR3peR0T-8,5015
|
|
98
98
|
mlrun/datastore/targets.py,sha256=TkG2HG4h7SaQ3qG2sKAHAuJJyj_gnE-eChaIsyjlq1o,80450
|
|
99
99
|
mlrun/datastore/utils.py,sha256=l9dLZb_VCbHs_htqMFRv4qiestZ8z8K-4eY1MxHS8wE,7720
|
|
100
100
|
mlrun/datastore/v3io.py,sha256=HxP6mygiYM6leDAbQ9KdTxObLCt9yGMro0YhfdU6KUo,8157
|
|
@@ -104,10 +104,10 @@ mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
|
104
104
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
105
105
|
mlrun/db/base.py,sha256=VztBik6tUYFKGRVXIsXZE7HrALx0hO_sgpCcE2O0cLU,24156
|
|
106
106
|
mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
|
|
107
|
-
mlrun/db/httpdb.py,sha256=
|
|
108
|
-
mlrun/db/nopdb.py,sha256=
|
|
107
|
+
mlrun/db/httpdb.py,sha256=QNKbZwWOI_p_IhHhzniPoOU74dmKlz9jd26orVvPx_U,183816
|
|
108
|
+
mlrun/db/nopdb.py,sha256=Juj4Wq9r6IRBdsktFL7TT7T3ueuEouKOHlLAvRvp9n0,21479
|
|
109
109
|
mlrun/feature_store/__init__.py,sha256=FhHRc8NdqL_HWpCs7A8dKruxJS5wEm55Gs3dcgBiRUg,1522
|
|
110
|
-
mlrun/feature_store/api.py,sha256=
|
|
110
|
+
mlrun/feature_store/api.py,sha256=SWBbFD4KU2U4TUaAbD2hRLSquFWxX46mZGCToI0GfFQ,49994
|
|
111
111
|
mlrun/feature_store/common.py,sha256=mSlfEj_LIbtM-pNiIWUGIdX0Z0y5ZoH5nKow7KMc5VQ,12673
|
|
112
112
|
mlrun/feature_store/feature_set.py,sha256=qD8RqkeoJFbJMMK5-zjs-27DC4UXQiQSokkt4pdMzkw,56027
|
|
113
113
|
mlrun/feature_store/feature_vector.py,sha256=HAhAX9peGdTBT_rbWRJyAnMM836OImMI3q7RbU7urjE,44169
|
|
@@ -118,15 +118,15 @@ mlrun/feature_store/retrieval/base.py,sha256=zgDsRsYQz8eqReKBEeTP0O4UoLoVYjWpO1o
|
|
|
118
118
|
mlrun/feature_store/retrieval/dask_merger.py,sha256=t60xciYp6StUQLEyFyI4JK5NpWkdBy2MGCs6beimaWU,5575
|
|
119
119
|
mlrun/feature_store/retrieval/job.py,sha256=xNIe3fAZ-wQ_sVLG2iTMLrnWSRIJ3EbDR10mnUUiSKE,8593
|
|
120
120
|
mlrun/feature_store/retrieval/local_merger.py,sha256=jM-8ta44PeNUc1cKMPs-TxrO9t8pXbwu_Tw8MZrLxUY,4513
|
|
121
|
-
mlrun/feature_store/retrieval/spark_merger.py,sha256=
|
|
121
|
+
mlrun/feature_store/retrieval/spark_merger.py,sha256=PM7BXSfhAngcMGN8Vjhbnw6TSes63nGPg2IlNaBlC_A,10662
|
|
122
122
|
mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
|
|
123
123
|
mlrun/frameworks/__init__.py,sha256=qRHe_nUfxpoLaSASAkIxcW6IyunMtxq5LXhjzZMO_1E,743
|
|
124
|
-
mlrun/frameworks/parallel_coordinates.py,sha256=
|
|
124
|
+
mlrun/frameworks/parallel_coordinates.py,sha256=XY2C1Q29VWxcWIsIhcluUivpEHglr8PcZHCMs2MH4GM,11485
|
|
125
125
|
mlrun/frameworks/_common/__init__.py,sha256=7afutDCDVp999gyWSWQZMJRKGuW3VP3MFil8cobRsyg,962
|
|
126
126
|
mlrun/frameworks/_common/artifacts_library.py,sha256=f0rtDRQI3BYT2ZvXR4drSXZPYPJG19Sbej-_ru-i0II,8497
|
|
127
127
|
mlrun/frameworks/_common/mlrun_interface.py,sha256=HbnE1jtApNjMog3fhd40Ayq6mos_vFUx5ICGEgFzNEA,20999
|
|
128
128
|
mlrun/frameworks/_common/model_handler.py,sha256=OkC4CZP2F7XME58bO6a0mMvCf1qb8j95JM5Su4YXeeo,55312
|
|
129
|
-
mlrun/frameworks/_common/plan.py,sha256=
|
|
129
|
+
mlrun/frameworks/_common/plan.py,sha256=Yr98b5lkCV0K0u_krnU8gZJiXj14xfrFjJ6xD6QJdn0,3444
|
|
130
130
|
mlrun/frameworks/_common/producer.py,sha256=OMRrV-auRIzdUbxp612QE7zTwkik1nBRvP4gBS7kvLo,5727
|
|
131
131
|
mlrun/frameworks/_common/utils.py,sha256=NqoKbgj6UGPMBNhpK6mkKK4GOt5ko1lDqExFhQm9oEc,9131
|
|
132
132
|
mlrun/frameworks/_dl_common/__init__.py,sha256=t4GWqonje9xSOPKTxFBjiOaK57l06ALmIXi4EJsG9LM,750
|
|
@@ -140,7 +140,7 @@ mlrun/frameworks/_ml_common/__init__.py,sha256=0Tf6dl15IuJ41aokIpDmcGbV_aczHniZ1
|
|
|
140
140
|
mlrun/frameworks/_ml_common/artifacts_library.py,sha256=eHCrc43NjLYSOcixiW31SQ-SoxAvBBNf2W5Xb-4W48U,3145
|
|
141
141
|
mlrun/frameworks/_ml_common/model_handler.py,sha256=3iDzjCooqKJutXAa4B2sgaUArV_f1KzWPJDn7k4l7Zs,16885
|
|
142
142
|
mlrun/frameworks/_ml_common/pkl_model_server.py,sha256=NbaEveUcpNXsiJIlc7kdeYfjcVPsTs9blsygxtAXB0k,2717
|
|
143
|
-
mlrun/frameworks/_ml_common/plan.py,sha256=
|
|
143
|
+
mlrun/frameworks/_ml_common/plan.py,sha256=B1jiFpGAZeYDLEXlY5dne_GCoF4os4E0TtnfELsFNsc,4864
|
|
144
144
|
mlrun/frameworks/_ml_common/producer.py,sha256=5sCFmr38zg_ZTZUvukVti0-z2VP6d-vBhQbIOEPwJf0,4061
|
|
145
145
|
mlrun/frameworks/_ml_common/utils.py,sha256=_PGPTG4uqk4tYjtu-X-0qInMgYEiN_UxYDG4GsPplYo,10477
|
|
146
146
|
mlrun/frameworks/_ml_common/loggers/__init__.py,sha256=AWw6H8xG4237XGzqNKIhO-wbzBRREHaY_AXF-NRLBNo,737
|
|
@@ -206,21 +206,21 @@ mlrun/frameworks/xgboost/model_handler.py,sha256=e7IwdrmAaQ5Yy_fqOirN7oi-xEJgg_G
|
|
|
206
206
|
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
207
207
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
208
208
|
mlrun/launcher/base.py,sha256=ud1qc2v66-84haAVBuQ2e0IsOzvd_bleSVVImwNWhwE,16461
|
|
209
|
-
mlrun/launcher/client.py,sha256=
|
|
209
|
+
mlrun/launcher/client.py,sha256=FXzQQqrSVE9oapLjjUYvx5qhZPG1r4ynUjUUFZVPekE,6228
|
|
210
210
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
211
211
|
mlrun/launcher/local.py,sha256=pP9-ZrNL8OnNDEiXTAKAZQnmLpS_mCc2v-mJw329eks,11269
|
|
212
212
|
mlrun/launcher/remote.py,sha256=tGICSfWtvUHeR31mbzy6gqHejmDxjPUgjtxXTWhRubg,7699
|
|
213
213
|
mlrun/model_monitoring/__init__.py,sha256=dm5_j0_pwqrdzFwTaEtGnKfv2nVpNaM56nBI-oqLbNU,879
|
|
214
214
|
mlrun/model_monitoring/api.py,sha256=L5f4mum-zv-4kMTqJDHWWzNnVcoGYDxf3zvpS-U4rQc,28596
|
|
215
215
|
mlrun/model_monitoring/application.py,sha256=RJ8HeAPfGO3P2A_dEZYNg60c1wKTADh2YSv8BQ5embg,745
|
|
216
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
216
|
+
mlrun/model_monitoring/controller.py,sha256=ZKp3mWMhj6irCuREs-OH1MYYh5DzqNEDe04kVPVrZzw,27971
|
|
217
217
|
mlrun/model_monitoring/evidently_application.py,sha256=iOc42IVjj8m6PDBmVcKIMWm46Bu0EdO9SDcH40Eqhyo,769
|
|
218
218
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
219
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
219
|
+
mlrun/model_monitoring/helpers.py,sha256=zoUfwo0IMOBa71p-DQgxS2lnpX3STcCv-XgClnBqWOU,12770
|
|
220
220
|
mlrun/model_monitoring/model_endpoint.py,sha256=7VX0cBATqLsA4sSinDzouf41ndxqh2mf5bO9BW0G5Z4,4017
|
|
221
221
|
mlrun/model_monitoring/stream_processing.py,sha256=0eu1Gq1Obq87LFno6eIZ55poXoFaeloqYTLiQgyfd0k,38687
|
|
222
222
|
mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
|
|
223
|
-
mlrun/model_monitoring/writer.py,sha256=
|
|
223
|
+
mlrun/model_monitoring/writer.py,sha256=TrBwngRmdwr67De71UCcCFsJOfcqQe8jDp0vkBvGf0o,10177
|
|
224
224
|
mlrun/model_monitoring/applications/__init__.py,sha256=i793GqYee01mRh_KD6GShvX7UbPBgdJDO4qf9Z3BXEQ,970
|
|
225
225
|
mlrun/model_monitoring/applications/_application_steps.py,sha256=fvZbtat7eXe5mo927_jyhq4BqWCapKZn7OVjptepIAI,7055
|
|
226
226
|
mlrun/model_monitoring/applications/base.py,sha256=snr3xYdqv6Po19yS0Z1VktyoLrbl88lljSFQyjnKjR0,11616
|
|
@@ -233,18 +233,18 @@ mlrun/model_monitoring/db/stores/__init__.py,sha256=m6Z6rPQyaufq5oXF3HVUYGDN34bi
|
|
|
233
233
|
mlrun/model_monitoring/db/stores/base/__init__.py,sha256=JufJETW3BXzPhFwbRa8dMf7BFGGZKceIWIMgr5x9n9c,599
|
|
234
234
|
mlrun/model_monitoring/db/stores/base/store.py,sha256=xaiaUwXDYYV1z6e17Ny9IiE3a7pSiEFg8nffdWHSq0A,7517
|
|
235
235
|
mlrun/model_monitoring/db/stores/sqldb/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
236
|
-
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=
|
|
236
|
+
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=9YjYqLue1GV1K4G2VRLVFObySEaIDnGqivvvXDM29to,26154
|
|
237
237
|
mlrun/model_monitoring/db/stores/sqldb/models/__init__.py,sha256=lCiGw9WKPtHAIgrtNS2jyvM5OZvZvogBh76iurNYblg,2453
|
|
238
238
|
mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=V2B5WdQM0KHKq0FNDq61q7tkNJ9fNRbxfnxrholKgjk,5352
|
|
239
239
|
mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=4SfjS0Rz6hSvZwU4s_weQ1jk5IPvaCU1HLum459U5ig,3192
|
|
240
240
|
mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=yJJZppbKj3PsOANS_DXAQFFHKX4cQcm6Pz2DoxRiXMk,1104
|
|
241
241
|
mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
242
|
-
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=
|
|
242
|
+
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=LWVXKTVWAnDHNlbAw7lSQ-J0uq2bclzhmfVOvbGXYUo,27169
|
|
243
243
|
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=Zqh_27I2YAEHk9nl0Z6lUxP7VEfrgrpnwhmHsbi4jnA,4055
|
|
244
244
|
mlrun/model_monitoring/db/tsdb/base.py,sha256=X89X763sDrShfRXE1N-p8k97E8NBs7O1QJFiO-CffLM,18583
|
|
245
245
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
246
246
|
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
247
|
-
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=
|
|
247
|
+
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=1I47m4gbplXYiYgV_RP3mKF7WbfG6cyFJPABXHDMrfs,10524
|
|
248
248
|
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Hb0vcCBP-o0ET78mU4P32fnhUL65QZv-pMuv2lnCby4,1586
|
|
249
249
|
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=CaBTBi-skQzM9kvLjYWNc_I3yrAtvsaN3dAOefanh04,18489
|
|
250
250
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
@@ -273,17 +273,17 @@ mlrun/platforms/__init__.py,sha256=ggSGF7inITs6S-vj9u4S9X_5psgbA0G3GVqf7zu8qYc,2
|
|
|
273
273
|
mlrun/platforms/iguazio.py,sha256=1h5BpdAEQJBg2vIt7ySjUADU0ip5OkaMYr0_VREi9ys,13084
|
|
274
274
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
275
275
|
mlrun/projects/operations.py,sha256=UEpiW4bDscth4pwWcLWF1xz-IU7bnZfckPR7sXp3O-g,19441
|
|
276
|
-
mlrun/projects/pipelines.py,sha256=
|
|
277
|
-
mlrun/projects/project.py,sha256=
|
|
276
|
+
mlrun/projects/pipelines.py,sha256=tFqmE_diKiGURwZPCHVPZmwEKza_gyfpr7F8bLS3plA,40173
|
|
277
|
+
mlrun/projects/project.py,sha256=q28U-RquF9BrNRIXGycGWFPKSF0wghYvHCHvOYYZ28g,190266
|
|
278
278
|
mlrun/runtimes/__init__.py,sha256=egLM94cDMUyQ1GVABdFGXUQcDhU70lP3k7qSnM_UnHY,9008
|
|
279
279
|
mlrun/runtimes/base.py,sha256=JXWmTIcm3b0klGUOHDlyFNa3bUgsNzQIgWhUQpSZoE0,37692
|
|
280
280
|
mlrun/runtimes/daskjob.py,sha256=JfK8rSPY-0SYnLJdtp_ts3oKyad0pA98th-2VntYzK0,19387
|
|
281
281
|
mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
|
|
282
282
|
mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51PFr8Q4mg,4918
|
|
283
283
|
mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
|
|
284
|
-
mlrun/runtimes/kubejob.py,sha256=
|
|
284
|
+
mlrun/runtimes/kubejob.py,sha256=ZhOCfykKI6Z4p5uBDCGTVilgBrLDfo91ySEylNPCQz8,8747
|
|
285
285
|
mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
|
|
286
|
-
mlrun/runtimes/pod.py,sha256=
|
|
286
|
+
mlrun/runtimes/pod.py,sha256=1P0EM-9DwjA9hAf1k3WBEFlesrOL24-mbJRwwtHMD3s,63717
|
|
287
287
|
mlrun/runtimes/remotesparkjob.py,sha256=3ggRVNod67TRnsM2-Ilr9Sw5OWqkRwHWaiBkGvmWU2c,7357
|
|
288
288
|
mlrun/runtimes/utils.py,sha256=9RnfpZxZEuE2bFVLSaUxBxi2IWsnKoaWF-eljP2FpbA,15637
|
|
289
289
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
@@ -294,7 +294,7 @@ mlrun/runtimes/mpijob/__init__.py,sha256=V_1gQD1VHa0Qvjqgyv8RLouH27Sy9YTwj2ZG62o
|
|
|
294
294
|
mlrun/runtimes/mpijob/abstract.py,sha256=kDWo-IY1FKLZhI30j38Xx9HMhlUvHezfd1DT2ShoxZY,9161
|
|
295
295
|
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
296
296
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
297
|
-
mlrun/runtimes/nuclio/api_gateway.py,sha256=
|
|
297
|
+
mlrun/runtimes/nuclio/api_gateway.py,sha256=2sHtkVHSS3L1DuV2KNWatJJRxvoGSBOjB6tnqv6SA5w,26730
|
|
298
298
|
mlrun/runtimes/nuclio/function.py,sha256=tK7INPTtYFOJRCzKLUELd0mE_U9w-wt5nCA0HaeY1rM,50509
|
|
299
299
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
300
300
|
mlrun/runtimes/nuclio/serving.py,sha256=X0fYJnidH0S5xrupoTC74OhZz7Tym34iw6hFSzahMCk,29720
|
|
@@ -324,7 +324,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
324
324
|
mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
|
|
325
325
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
326
326
|
mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
|
|
327
|
-
mlrun/utils/helpers.py,sha256=
|
|
327
|
+
mlrun/utils/helpers.py,sha256=jitfIruWXVCMfJHnCnVd7ILScO4jMB-d5_2iYY2ZJbI,60041
|
|
328
328
|
mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
|
|
329
329
|
mlrun/utils/logger.py,sha256=cag2J30-jynIHmHZ2J8RYmVMNhYBGgAoimc5sbk-A1U,10016
|
|
330
330
|
mlrun/utils/regex.py,sha256=b0AUa2THS-ELzJj0grl5b8Stq609F2XomTZkD9SB1fQ,4900
|
|
@@ -342,11 +342,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT
|
|
|
342
342
|
mlrun/utils/notifications/notification/slack.py,sha256=wqpFGr5BTvFO5KuUSzFfxsgmyU1Ohq7fbrGeNe9TXOk,7006
|
|
343
343
|
mlrun/utils/notifications/notification/webhook.py,sha256=cb9w1Mc8ENfJBdgan7iiVHK9eVls4-R3tUxmXM-P-8I,4746
|
|
344
344
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
345
|
-
mlrun/utils/version/version.json,sha256=
|
|
345
|
+
mlrun/utils/version/version.json,sha256=QqQizDsZ99dJYiwwnIRS4SrM3-G3CqpR3jUTEFlmMLQ,89
|
|
346
346
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
347
|
-
mlrun-1.7.
|
|
348
|
-
mlrun-1.7.
|
|
349
|
-
mlrun-1.7.
|
|
350
|
-
mlrun-1.7.
|
|
351
|
-
mlrun-1.7.
|
|
352
|
-
mlrun-1.7.
|
|
347
|
+
mlrun-1.7.0rc44.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
348
|
+
mlrun-1.7.0rc44.dist-info/METADATA,sha256=Xw32N_LcWs3PJXtI3Cb38rrX2H-_KwNEkA1LAiAwV5A,19943
|
|
349
|
+
mlrun-1.7.0rc44.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
350
|
+
mlrun-1.7.0rc44.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
351
|
+
mlrun-1.7.0rc44.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
352
|
+
mlrun-1.7.0rc44.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|