mlrun 1.6.4rc2__py3-none-any.whl → 1.7.0rc20__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/__init__.py +11 -1
- mlrun/__main__.py +26 -112
- mlrun/alerts/__init__.py +15 -0
- mlrun/alerts/alert.py +144 -0
- mlrun/api/schemas/__init__.py +5 -4
- mlrun/artifacts/__init__.py +8 -3
- mlrun/artifacts/base.py +46 -257
- mlrun/artifacts/dataset.py +11 -192
- mlrun/artifacts/manager.py +47 -48
- mlrun/artifacts/model.py +31 -159
- mlrun/artifacts/plots.py +23 -380
- mlrun/common/constants.py +69 -0
- mlrun/common/db/sql_session.py +2 -3
- mlrun/common/formatters/__init__.py +19 -0
- mlrun/common/formatters/artifact.py +21 -0
- mlrun/common/formatters/base.py +78 -0
- mlrun/common/formatters/function.py +41 -0
- mlrun/common/formatters/pipeline.py +53 -0
- mlrun/common/formatters/project.py +51 -0
- mlrun/common/helpers.py +1 -2
- mlrun/common/model_monitoring/helpers.py +9 -5
- mlrun/{runtimes → common/runtimes}/constants.py +37 -9
- mlrun/common/schemas/__init__.py +24 -4
- mlrun/common/schemas/alert.py +203 -0
- mlrun/common/schemas/api_gateway.py +148 -0
- mlrun/common/schemas/artifact.py +18 -8
- mlrun/common/schemas/auth.py +11 -5
- mlrun/common/schemas/background_task.py +1 -1
- mlrun/common/schemas/client_spec.py +4 -1
- mlrun/common/schemas/feature_store.py +16 -16
- mlrun/common/schemas/frontend_spec.py +8 -7
- mlrun/common/schemas/function.py +5 -1
- mlrun/common/schemas/hub.py +11 -18
- mlrun/common/schemas/memory_reports.py +2 -2
- mlrun/common/schemas/model_monitoring/__init__.py +18 -3
- mlrun/common/schemas/model_monitoring/constants.py +83 -26
- mlrun/common/schemas/model_monitoring/grafana.py +13 -9
- mlrun/common/schemas/model_monitoring/model_endpoints.py +99 -16
- mlrun/common/schemas/notification.py +4 -4
- mlrun/common/schemas/object.py +2 -2
- mlrun/{runtimes/mpijob/v1alpha1.py → common/schemas/pagination.py} +10 -13
- mlrun/common/schemas/pipeline.py +1 -10
- mlrun/common/schemas/project.py +24 -23
- mlrun/common/schemas/runtime_resource.py +8 -12
- mlrun/common/schemas/schedule.py +3 -3
- mlrun/common/schemas/tag.py +1 -2
- mlrun/common/schemas/workflow.py +2 -2
- mlrun/common/types.py +7 -1
- mlrun/config.py +54 -17
- mlrun/data_types/to_pandas.py +10 -12
- mlrun/datastore/__init__.py +5 -8
- mlrun/datastore/alibaba_oss.py +130 -0
- mlrun/datastore/azure_blob.py +17 -5
- mlrun/datastore/base.py +62 -39
- mlrun/datastore/datastore.py +28 -9
- mlrun/datastore/datastore_profile.py +146 -20
- mlrun/datastore/filestore.py +0 -1
- mlrun/datastore/google_cloud_storage.py +6 -2
- mlrun/datastore/hdfs.py +56 -0
- mlrun/datastore/inmem.py +2 -2
- mlrun/datastore/redis.py +6 -2
- mlrun/datastore/s3.py +9 -0
- mlrun/datastore/snowflake_utils.py +43 -0
- mlrun/datastore/sources.py +201 -96
- mlrun/datastore/spark_utils.py +1 -2
- mlrun/datastore/store_resources.py +7 -7
- mlrun/datastore/targets.py +358 -104
- mlrun/datastore/utils.py +72 -58
- mlrun/datastore/v3io.py +5 -1
- mlrun/db/base.py +185 -35
- mlrun/db/factory.py +1 -1
- mlrun/db/httpdb.py +614 -179
- mlrun/db/nopdb.py +210 -26
- mlrun/errors.py +12 -1
- mlrun/execution.py +41 -24
- mlrun/feature_store/__init__.py +0 -2
- mlrun/feature_store/api.py +40 -72
- mlrun/feature_store/common.py +1 -1
- mlrun/feature_store/feature_set.py +76 -55
- mlrun/feature_store/feature_vector.py +28 -30
- mlrun/feature_store/ingestion.py +7 -6
- mlrun/feature_store/retrieval/base.py +16 -11
- mlrun/feature_store/retrieval/conversion.py +11 -13
- mlrun/feature_store/retrieval/dask_merger.py +2 -0
- mlrun/feature_store/retrieval/job.py +9 -3
- mlrun/feature_store/retrieval/local_merger.py +2 -0
- mlrun/feature_store/retrieval/spark_merger.py +34 -24
- mlrun/feature_store/steps.py +37 -34
- mlrun/features.py +9 -20
- mlrun/frameworks/_common/artifacts_library.py +9 -9
- mlrun/frameworks/_common/mlrun_interface.py +5 -5
- mlrun/frameworks/_common/model_handler.py +48 -48
- mlrun/frameworks/_common/plan.py +2 -3
- mlrun/frameworks/_common/producer.py +3 -4
- mlrun/frameworks/_common/utils.py +5 -5
- mlrun/frameworks/_dl_common/loggers/logger.py +6 -7
- mlrun/frameworks/_dl_common/loggers/mlrun_logger.py +9 -9
- mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py +23 -47
- mlrun/frameworks/_ml_common/artifacts_library.py +1 -2
- mlrun/frameworks/_ml_common/loggers/logger.py +3 -4
- mlrun/frameworks/_ml_common/loggers/mlrun_logger.py +4 -5
- mlrun/frameworks/_ml_common/model_handler.py +24 -24
- mlrun/frameworks/_ml_common/pkl_model_server.py +2 -2
- mlrun/frameworks/_ml_common/plan.py +1 -1
- mlrun/frameworks/_ml_common/plans/calibration_curve_plan.py +2 -3
- mlrun/frameworks/_ml_common/plans/confusion_matrix_plan.py +2 -3
- mlrun/frameworks/_ml_common/plans/dataset_plan.py +3 -3
- mlrun/frameworks/_ml_common/plans/feature_importance_plan.py +3 -3
- mlrun/frameworks/_ml_common/plans/roc_curve_plan.py +4 -4
- mlrun/frameworks/_ml_common/utils.py +4 -4
- mlrun/frameworks/auto_mlrun/auto_mlrun.py +9 -9
- mlrun/frameworks/huggingface/model_server.py +4 -4
- mlrun/frameworks/lgbm/__init__.py +33 -33
- mlrun/frameworks/lgbm/callbacks/callback.py +2 -4
- mlrun/frameworks/lgbm/callbacks/logging_callback.py +4 -5
- mlrun/frameworks/lgbm/callbacks/mlrun_logging_callback.py +4 -5
- mlrun/frameworks/lgbm/mlrun_interfaces/booster_mlrun_interface.py +1 -3
- mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py +6 -6
- mlrun/frameworks/lgbm/model_handler.py +10 -10
- mlrun/frameworks/lgbm/model_server.py +6 -6
- mlrun/frameworks/lgbm/utils.py +5 -5
- mlrun/frameworks/onnx/dataset.py +8 -8
- mlrun/frameworks/onnx/mlrun_interface.py +3 -3
- mlrun/frameworks/onnx/model_handler.py +6 -6
- mlrun/frameworks/onnx/model_server.py +7 -7
- mlrun/frameworks/parallel_coordinates.py +4 -3
- mlrun/frameworks/pytorch/__init__.py +18 -18
- mlrun/frameworks/pytorch/callbacks/callback.py +4 -5
- mlrun/frameworks/pytorch/callbacks/logging_callback.py +17 -17
- mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py +11 -11
- mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py +23 -29
- mlrun/frameworks/pytorch/callbacks_handler.py +38 -38
- mlrun/frameworks/pytorch/mlrun_interface.py +20 -20
- mlrun/frameworks/pytorch/model_handler.py +17 -17
- mlrun/frameworks/pytorch/model_server.py +7 -7
- mlrun/frameworks/sklearn/__init__.py +13 -13
- mlrun/frameworks/sklearn/estimator.py +4 -4
- mlrun/frameworks/sklearn/metrics_library.py +14 -14
- mlrun/frameworks/sklearn/mlrun_interface.py +3 -6
- mlrun/frameworks/sklearn/model_handler.py +2 -2
- mlrun/frameworks/tf_keras/__init__.py +10 -7
- mlrun/frameworks/tf_keras/callbacks/logging_callback.py +15 -15
- mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py +11 -11
- mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py +19 -23
- mlrun/frameworks/tf_keras/mlrun_interface.py +9 -11
- mlrun/frameworks/tf_keras/model_handler.py +14 -14
- mlrun/frameworks/tf_keras/model_server.py +6 -6
- mlrun/frameworks/xgboost/__init__.py +13 -13
- mlrun/frameworks/xgboost/model_handler.py +6 -6
- mlrun/k8s_utils.py +14 -16
- mlrun/launcher/__init__.py +1 -1
- mlrun/launcher/base.py +16 -15
- mlrun/launcher/client.py +8 -6
- mlrun/launcher/factory.py +1 -1
- mlrun/launcher/local.py +17 -11
- mlrun/launcher/remote.py +16 -10
- mlrun/lists.py +7 -6
- mlrun/model.py +238 -73
- mlrun/model_monitoring/__init__.py +1 -1
- mlrun/model_monitoring/api.py +138 -315
- mlrun/model_monitoring/application.py +5 -296
- mlrun/model_monitoring/applications/__init__.py +24 -0
- mlrun/model_monitoring/applications/_application_steps.py +157 -0
- mlrun/model_monitoring/applications/base.py +282 -0
- mlrun/model_monitoring/applications/context.py +214 -0
- mlrun/model_monitoring/applications/evidently_base.py +211 -0
- mlrun/model_monitoring/applications/histogram_data_drift.py +349 -0
- mlrun/model_monitoring/applications/results.py +99 -0
- mlrun/model_monitoring/controller.py +104 -84
- mlrun/model_monitoring/controller_handler.py +13 -5
- mlrun/model_monitoring/db/__init__.py +18 -0
- mlrun/model_monitoring/{stores → db/stores}/__init__.py +43 -36
- mlrun/model_monitoring/db/stores/base/__init__.py +15 -0
- mlrun/model_monitoring/{stores/model_endpoint_store.py → db/stores/base/store.py} +64 -40
- mlrun/model_monitoring/db/stores/sqldb/__init__.py +13 -0
- mlrun/model_monitoring/db/stores/sqldb/models/__init__.py +71 -0
- mlrun/model_monitoring/{stores → db/stores/sqldb}/models/base.py +109 -5
- mlrun/model_monitoring/db/stores/sqldb/models/mysql.py +88 -0
- mlrun/model_monitoring/{stores/models/mysql.py → db/stores/sqldb/models/sqlite.py} +19 -13
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py +684 -0
- mlrun/model_monitoring/db/stores/v3io_kv/__init__.py +13 -0
- mlrun/model_monitoring/{stores/kv_model_endpoint_store.py → db/stores/v3io_kv/kv_store.py} +310 -165
- mlrun/model_monitoring/db/tsdb/__init__.py +100 -0
- mlrun/model_monitoring/db/tsdb/base.py +329 -0
- mlrun/model_monitoring/db/tsdb/helpers.py +30 -0
- mlrun/model_monitoring/db/tsdb/tdengine/__init__.py +15 -0
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +240 -0
- mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py +45 -0
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +397 -0
- mlrun/model_monitoring/db/tsdb/v3io/__init__.py +15 -0
- mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +117 -0
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +630 -0
- mlrun/model_monitoring/evidently_application.py +6 -118
- mlrun/model_monitoring/features_drift_table.py +134 -106
- mlrun/model_monitoring/helpers.py +127 -28
- mlrun/model_monitoring/metrics/__init__.py +13 -0
- mlrun/model_monitoring/metrics/histogram_distance.py +127 -0
- mlrun/model_monitoring/model_endpoint.py +3 -2
- mlrun/model_monitoring/prometheus.py +1 -4
- mlrun/model_monitoring/stream_processing.py +62 -231
- mlrun/model_monitoring/tracking_policy.py +9 -2
- mlrun/model_monitoring/writer.py +152 -124
- mlrun/package/__init__.py +6 -6
- mlrun/package/context_handler.py +5 -5
- mlrun/package/packager.py +7 -7
- mlrun/package/packagers/default_packager.py +6 -6
- mlrun/package/packagers/numpy_packagers.py +15 -15
- mlrun/package/packagers/pandas_packagers.py +5 -5
- mlrun/package/packagers/python_standard_library_packagers.py +10 -10
- mlrun/package/packagers_manager.py +19 -23
- mlrun/package/utils/_formatter.py +6 -6
- mlrun/package/utils/_pickler.py +2 -2
- mlrun/package/utils/_supported_format.py +4 -4
- mlrun/package/utils/log_hint_utils.py +2 -2
- mlrun/package/utils/type_hint_utils.py +4 -9
- mlrun/platforms/__init__.py +11 -10
- mlrun/platforms/iguazio.py +24 -203
- mlrun/projects/operations.py +35 -21
- mlrun/projects/pipelines.py +68 -99
- mlrun/projects/project.py +830 -266
- mlrun/render.py +3 -11
- mlrun/run.py +162 -166
- mlrun/runtimes/__init__.py +62 -7
- mlrun/runtimes/base.py +39 -32
- mlrun/runtimes/daskjob.py +8 -8
- mlrun/runtimes/databricks_job/databricks_cancel_task.py +1 -1
- mlrun/runtimes/databricks_job/databricks_runtime.py +7 -7
- mlrun/runtimes/databricks_job/databricks_wrapper.py +1 -1
- mlrun/runtimes/funcdoc.py +0 -28
- mlrun/runtimes/function_reference.py +1 -1
- mlrun/runtimes/kubejob.py +28 -122
- mlrun/runtimes/local.py +6 -3
- mlrun/runtimes/mpijob/__init__.py +0 -20
- mlrun/runtimes/mpijob/abstract.py +9 -10
- mlrun/runtimes/mpijob/v1.py +1 -1
- mlrun/{model_monitoring/stores/models/sqlite.py → runtimes/nuclio/__init__.py} +7 -9
- mlrun/runtimes/nuclio/api_gateway.py +709 -0
- mlrun/runtimes/nuclio/application/__init__.py +15 -0
- mlrun/runtimes/nuclio/application/application.py +523 -0
- mlrun/runtimes/nuclio/application/reverse_proxy.go +95 -0
- mlrun/runtimes/{function.py → nuclio/function.py} +112 -73
- mlrun/runtimes/{nuclio.py → nuclio/nuclio.py} +6 -6
- mlrun/runtimes/{serving.py → nuclio/serving.py} +45 -51
- mlrun/runtimes/pod.py +286 -88
- mlrun/runtimes/remotesparkjob.py +2 -2
- mlrun/runtimes/sparkjob/spark3job.py +51 -34
- mlrun/runtimes/utils.py +7 -75
- mlrun/secrets.py +9 -5
- mlrun/serving/remote.py +2 -7
- mlrun/serving/routers.py +13 -10
- mlrun/serving/server.py +22 -26
- mlrun/serving/states.py +99 -25
- mlrun/serving/utils.py +3 -3
- mlrun/serving/v1_serving.py +6 -7
- mlrun/serving/v2_serving.py +59 -20
- mlrun/track/tracker.py +2 -1
- mlrun/track/tracker_manager.py +3 -3
- mlrun/track/trackers/mlflow_tracker.py +1 -2
- mlrun/utils/async_http.py +5 -7
- mlrun/utils/azure_vault.py +1 -1
- mlrun/utils/clones.py +1 -2
- mlrun/utils/condition_evaluator.py +3 -3
- mlrun/utils/db.py +3 -3
- mlrun/utils/helpers.py +183 -197
- mlrun/utils/http.py +2 -5
- mlrun/utils/logger.py +76 -14
- mlrun/utils/notifications/notification/__init__.py +17 -12
- mlrun/utils/notifications/notification/base.py +14 -2
- mlrun/utils/notifications/notification/console.py +2 -0
- mlrun/utils/notifications/notification/git.py +3 -1
- mlrun/utils/notifications/notification/ipython.py +3 -1
- mlrun/utils/notifications/notification/slack.py +101 -21
- mlrun/utils/notifications/notification/webhook.py +11 -1
- mlrun/utils/notifications/notification_pusher.py +155 -30
- mlrun/utils/retryer.py +208 -0
- mlrun/utils/singleton.py +1 -1
- mlrun/utils/v3io_clients.py +2 -4
- mlrun/utils/version/version.json +2 -2
- mlrun/utils/version/version.py +2 -6
- {mlrun-1.6.4rc2.dist-info → mlrun-1.7.0rc20.dist-info}/METADATA +31 -19
- mlrun-1.7.0rc20.dist-info/RECORD +353 -0
- mlrun/kfpops.py +0 -868
- mlrun/model_monitoring/batch.py +0 -1095
- mlrun/model_monitoring/stores/models/__init__.py +0 -27
- mlrun/model_monitoring/stores/sql_model_endpoint_store.py +0 -384
- mlrun/platforms/other.py +0 -306
- mlrun-1.6.4rc2.dist-info/RECORD +0 -314
- {mlrun-1.6.4rc2.dist-info → mlrun-1.7.0rc20.dist-info}/LICENSE +0 -0
- {mlrun-1.6.4rc2.dist-info → mlrun-1.7.0rc20.dist-info}/WHEEL +0 -0
- {mlrun-1.6.4rc2.dist-info → mlrun-1.7.0rc20.dist-info}/entry_points.txt +0 -0
- {mlrun-1.6.4rc2.dist-info → mlrun-1.7.0rc20.dist-info}/top_level.txt +0 -0
mlrun/platforms/other.py
DELETED
|
@@ -1,306 +0,0 @@
|
|
|
1
|
-
# Copyright 2023 Iguazio
|
|
2
|
-
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
# you may not use this file except in compliance with the License.
|
|
5
|
-
# You may obtain a copy of the License at
|
|
6
|
-
#
|
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
#
|
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
# See the License for the specific language governing permissions and
|
|
13
|
-
# limitations under the License.
|
|
14
|
-
#
|
|
15
|
-
# this file is based on the code from kubeflow pipelines git
|
|
16
|
-
import os
|
|
17
|
-
from typing import Dict
|
|
18
|
-
|
|
19
|
-
import kfp.dsl
|
|
20
|
-
|
|
21
|
-
import mlrun
|
|
22
|
-
from mlrun.config import config
|
|
23
|
-
from mlrun.errors import MLRunInvalidArgumentError
|
|
24
|
-
from mlrun.utils.helpers import logger
|
|
25
|
-
|
|
26
|
-
from .iguazio import mount_v3io
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
def mount_pvc(pvc_name=None, volume_name="pipeline", volume_mount_path="/mnt/pipeline"):
|
|
30
|
-
"""
|
|
31
|
-
Modifier function to apply to a Container Op to simplify volume, volume mount addition and
|
|
32
|
-
enable better reuse of volumes, volume claims across container ops.
|
|
33
|
-
|
|
34
|
-
Usage::
|
|
35
|
-
|
|
36
|
-
train = train_op(...)
|
|
37
|
-
train.apply(mount_pvc('claim-name', 'pipeline', '/mnt/pipeline'))
|
|
38
|
-
"""
|
|
39
|
-
if "MLRUN_PVC_MOUNT" in os.environ:
|
|
40
|
-
mount = os.environ.get("MLRUN_PVC_MOUNT")
|
|
41
|
-
items = mount.split(":")
|
|
42
|
-
if len(items) != 2:
|
|
43
|
-
raise MLRunInvalidArgumentError(
|
|
44
|
-
"MLRUN_PVC_MOUNT should include <pvc-name>:<mount-path>"
|
|
45
|
-
)
|
|
46
|
-
pvc_name = items[0]
|
|
47
|
-
volume_mount_path = items[1]
|
|
48
|
-
|
|
49
|
-
if not pvc_name:
|
|
50
|
-
raise MLRunInvalidArgumentError(
|
|
51
|
-
"No PVC name: use the pvc_name parameter or configure the MLRUN_PVC_MOUNT environment variable"
|
|
52
|
-
)
|
|
53
|
-
|
|
54
|
-
def _mount_pvc(task):
|
|
55
|
-
from kubernetes import client as k8s_client
|
|
56
|
-
|
|
57
|
-
local_pvc = k8s_client.V1PersistentVolumeClaimVolumeSource(claim_name=pvc_name)
|
|
58
|
-
return task.add_volume(
|
|
59
|
-
k8s_client.V1Volume(name=volume_name, persistent_volume_claim=local_pvc)
|
|
60
|
-
).add_volume_mount(
|
|
61
|
-
k8s_client.V1VolumeMount(mount_path=volume_mount_path, name=volume_name)
|
|
62
|
-
)
|
|
63
|
-
|
|
64
|
-
return _mount_pvc
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
def auto_mount(pvc_name="", volume_mount_path="", volume_name=None):
|
|
68
|
-
"""choose the mount based on env variables and params
|
|
69
|
-
|
|
70
|
-
volume will be selected by the following order:
|
|
71
|
-
- k8s PVC volume when both pvc_name and volume_mount_path are set
|
|
72
|
-
- k8s PVC volume when env var is set: MLRUN_PVC_MOUNT=<pvc-name>:<mount-path>
|
|
73
|
-
- k8s PVC volume if it's configured as the auto mount type
|
|
74
|
-
- iguazio v3io volume when V3IO_ACCESS_KEY and V3IO_USERNAME env vars are set
|
|
75
|
-
"""
|
|
76
|
-
if pvc_name and volume_mount_path:
|
|
77
|
-
return mount_pvc(
|
|
78
|
-
pvc_name=pvc_name,
|
|
79
|
-
volume_mount_path=volume_mount_path,
|
|
80
|
-
volume_name=volume_name or "shared-persistency",
|
|
81
|
-
)
|
|
82
|
-
if "MLRUN_PVC_MOUNT" in os.environ:
|
|
83
|
-
return mount_pvc(
|
|
84
|
-
volume_name=volume_name or "shared-persistency",
|
|
85
|
-
)
|
|
86
|
-
# In the case of MLRun-kit when working remotely, no env variables will be defined but auto-mount
|
|
87
|
-
# parameters may still be declared - use them in that case.
|
|
88
|
-
if config.storage.auto_mount_type == "pvc":
|
|
89
|
-
return mount_pvc(**config.get_storage_auto_mount_params())
|
|
90
|
-
if "V3IO_ACCESS_KEY" in os.environ:
|
|
91
|
-
return mount_v3io(name=volume_name or "v3io")
|
|
92
|
-
|
|
93
|
-
raise ValueError("failed to auto mount, need to set env vars")
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
def mount_secret(secret_name, mount_path, volume_name="secret", items=None):
|
|
97
|
-
"""Modifier function to mount kubernetes secret as files(s)
|
|
98
|
-
|
|
99
|
-
:param secret_name: k8s secret name
|
|
100
|
-
:param mount_path: path to mount inside the container
|
|
101
|
-
:param volume_name: unique volume name
|
|
102
|
-
:param items: If unspecified, each key-value pair in the Data field
|
|
103
|
-
of the referenced Secret will be projected into the
|
|
104
|
-
volume as a file whose name is the key and content is
|
|
105
|
-
the value.
|
|
106
|
-
If specified, the listed keys will be projected into
|
|
107
|
-
the specified paths, and unlisted keys will not be
|
|
108
|
-
present.
|
|
109
|
-
"""
|
|
110
|
-
|
|
111
|
-
def _mount_secret(task):
|
|
112
|
-
from kubernetes import client as k8s_client
|
|
113
|
-
|
|
114
|
-
vol = k8s_client.V1SecretVolumeSource(secret_name=secret_name, items=items)
|
|
115
|
-
return task.add_volume(
|
|
116
|
-
k8s_client.V1Volume(name=volume_name, secret=vol)
|
|
117
|
-
).add_volume_mount(
|
|
118
|
-
k8s_client.V1VolumeMount(mount_path=mount_path, name=volume_name)
|
|
119
|
-
)
|
|
120
|
-
|
|
121
|
-
return _mount_secret
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
def mount_configmap(configmap_name, mount_path, volume_name="configmap", items=None):
|
|
125
|
-
"""Modifier function to mount kubernetes configmap as files(s)
|
|
126
|
-
|
|
127
|
-
:param configmap_name: k8s configmap name
|
|
128
|
-
:param mount_path: path to mount inside the container
|
|
129
|
-
:param volume_name: unique volume name
|
|
130
|
-
:param items: If unspecified, each key-value pair in the Data field
|
|
131
|
-
of the referenced Configmap will be projected into the
|
|
132
|
-
volume as a file whose name is the key and content is
|
|
133
|
-
the value.
|
|
134
|
-
If specified, the listed keys will be projected into
|
|
135
|
-
the specified paths, and unlisted keys will not be
|
|
136
|
-
present.
|
|
137
|
-
"""
|
|
138
|
-
|
|
139
|
-
def _mount_configmap(task):
|
|
140
|
-
from kubernetes import client as k8s_client
|
|
141
|
-
|
|
142
|
-
vol = k8s_client.V1ConfigMapVolumeSource(name=configmap_name, items=items)
|
|
143
|
-
return task.add_volume(
|
|
144
|
-
k8s_client.V1Volume(name=volume_name, config_map=vol)
|
|
145
|
-
).add_volume_mount(
|
|
146
|
-
k8s_client.V1VolumeMount(mount_path=mount_path, name=volume_name)
|
|
147
|
-
)
|
|
148
|
-
|
|
149
|
-
return _mount_configmap
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
def mount_hostpath(host_path, mount_path, volume_name="hostpath"):
|
|
153
|
-
"""Modifier function to mount kubernetes configmap as files(s)
|
|
154
|
-
|
|
155
|
-
:param host_path: host path
|
|
156
|
-
:param mount_path: path to mount inside the container
|
|
157
|
-
:param volume_name: unique volume name
|
|
158
|
-
"""
|
|
159
|
-
|
|
160
|
-
def _mount_hostpath(task):
|
|
161
|
-
from kubernetes import client as k8s_client
|
|
162
|
-
|
|
163
|
-
return task.add_volume(
|
|
164
|
-
k8s_client.V1Volume(
|
|
165
|
-
name=volume_name,
|
|
166
|
-
host_path=k8s_client.V1HostPathVolumeSource(path=host_path, type=""),
|
|
167
|
-
)
|
|
168
|
-
).add_volume_mount(
|
|
169
|
-
k8s_client.V1VolumeMount(mount_path=mount_path, name=volume_name)
|
|
170
|
-
)
|
|
171
|
-
|
|
172
|
-
return _mount_hostpath
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
def mount_s3(
|
|
176
|
-
secret_name=None,
|
|
177
|
-
aws_access_key="",
|
|
178
|
-
aws_secret_key="",
|
|
179
|
-
endpoint_url=None,
|
|
180
|
-
prefix="",
|
|
181
|
-
aws_region=None,
|
|
182
|
-
non_anonymous=False,
|
|
183
|
-
):
|
|
184
|
-
"""Modifier function to add s3 env vars or secrets to container
|
|
185
|
-
|
|
186
|
-
**Warning:**
|
|
187
|
-
Using this function to configure AWS credentials will expose these credentials in the pod spec of the runtime
|
|
188
|
-
created. It is recommended to use the `secret_name` parameter, or set the credentials as project-secrets and avoid
|
|
189
|
-
using this function.
|
|
190
|
-
|
|
191
|
-
:param secret_name: kubernetes secret name (storing the access/secret keys)
|
|
192
|
-
:param aws_access_key: AWS_ACCESS_KEY_ID value. If this parameter is not specified and AWS_ACCESS_KEY_ID env.
|
|
193
|
-
variable is defined, the value will be taken from the env. variable
|
|
194
|
-
:param aws_secret_key: AWS_SECRET_ACCESS_KEY value. If this parameter is not specified and AWS_SECRET_ACCESS_KEY
|
|
195
|
-
env. variable is defined, the value will be taken from the env. variable
|
|
196
|
-
:param endpoint_url: s3 endpoint address (for non AWS s3)
|
|
197
|
-
:param prefix: string prefix to add before the env var name (for working with multiple s3 data stores)
|
|
198
|
-
:param aws_region: amazon region
|
|
199
|
-
:param non_anonymous: force the S3 API to use non-anonymous connection, even if no credentials are provided
|
|
200
|
-
(for authenticating externally, such as through IAM instance-roles)
|
|
201
|
-
"""
|
|
202
|
-
|
|
203
|
-
if secret_name and (aws_access_key or aws_secret_key):
|
|
204
|
-
raise mlrun.errors.MLRunInvalidArgumentError(
|
|
205
|
-
"can use k8s_secret for credentials or specify them (aws_access_key, aws_secret_key) not both"
|
|
206
|
-
)
|
|
207
|
-
|
|
208
|
-
if not secret_name and (
|
|
209
|
-
aws_access_key
|
|
210
|
-
or os.environ.get(prefix + "AWS_ACCESS_KEY_ID")
|
|
211
|
-
or aws_secret_key
|
|
212
|
-
or os.environ.get(prefix + "AWS_SECRET_ACCESS_KEY")
|
|
213
|
-
):
|
|
214
|
-
logger.warning(
|
|
215
|
-
"it is recommended to use k8s secret (specify secret_name), "
|
|
216
|
-
"specifying the aws_access_key/aws_secret_key directly is unsafe"
|
|
217
|
-
)
|
|
218
|
-
|
|
219
|
-
def _use_s3_cred(container_op):
|
|
220
|
-
from os import environ
|
|
221
|
-
|
|
222
|
-
from kubernetes import client as k8s_client
|
|
223
|
-
|
|
224
|
-
_access_key = aws_access_key or environ.get(prefix + "AWS_ACCESS_KEY_ID")
|
|
225
|
-
_secret_key = aws_secret_key or environ.get(prefix + "AWS_SECRET_ACCESS_KEY")
|
|
226
|
-
_endpoint_url = endpoint_url or environ.get(prefix + "S3_ENDPOINT_URL")
|
|
227
|
-
|
|
228
|
-
container = container_op.container
|
|
229
|
-
if _endpoint_url:
|
|
230
|
-
container.add_env_variable(
|
|
231
|
-
k8s_client.V1EnvVar(name=prefix + "S3_ENDPOINT_URL", value=endpoint_url)
|
|
232
|
-
)
|
|
233
|
-
if aws_region:
|
|
234
|
-
container.add_env_variable(
|
|
235
|
-
k8s_client.V1EnvVar(name=prefix + "AWS_REGION", value=aws_region)
|
|
236
|
-
)
|
|
237
|
-
if non_anonymous:
|
|
238
|
-
container.add_env_variable(
|
|
239
|
-
k8s_client.V1EnvVar(name=prefix + "S3_NON_ANONYMOUS", value="true")
|
|
240
|
-
)
|
|
241
|
-
|
|
242
|
-
if secret_name:
|
|
243
|
-
container.add_env_variable(
|
|
244
|
-
k8s_client.V1EnvVar(
|
|
245
|
-
name=prefix + "AWS_ACCESS_KEY_ID",
|
|
246
|
-
value_from=k8s_client.V1EnvVarSource(
|
|
247
|
-
secret_key_ref=k8s_client.V1SecretKeySelector(
|
|
248
|
-
name=secret_name, key="AWS_ACCESS_KEY_ID"
|
|
249
|
-
)
|
|
250
|
-
),
|
|
251
|
-
)
|
|
252
|
-
).add_env_variable(
|
|
253
|
-
k8s_client.V1EnvVar(
|
|
254
|
-
name=prefix + "AWS_SECRET_ACCESS_KEY",
|
|
255
|
-
value_from=k8s_client.V1EnvVarSource(
|
|
256
|
-
secret_key_ref=k8s_client.V1SecretKeySelector(
|
|
257
|
-
name=secret_name, key="AWS_SECRET_ACCESS_KEY"
|
|
258
|
-
)
|
|
259
|
-
),
|
|
260
|
-
)
|
|
261
|
-
)
|
|
262
|
-
|
|
263
|
-
else:
|
|
264
|
-
return container_op.add_env_variable(
|
|
265
|
-
k8s_client.V1EnvVar(
|
|
266
|
-
name=prefix + "AWS_ACCESS_KEY_ID", value=_access_key
|
|
267
|
-
)
|
|
268
|
-
).add_env_variable(
|
|
269
|
-
k8s_client.V1EnvVar(
|
|
270
|
-
name=prefix + "AWS_SECRET_ACCESS_KEY", value=_secret_key
|
|
271
|
-
)
|
|
272
|
-
)
|
|
273
|
-
|
|
274
|
-
return _use_s3_cred
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
def set_env_variables(env_vars_dict: Dict[str, str] = None, **kwargs):
|
|
278
|
-
"""
|
|
279
|
-
Modifier function to apply a set of environment variables to a runtime. Variables may be passed
|
|
280
|
-
as either a dictionary of name-value pairs, or as arguments to the function.
|
|
281
|
-
See `KubeResource.apply` for more information on modifiers.
|
|
282
|
-
|
|
283
|
-
Usage::
|
|
284
|
-
|
|
285
|
-
function.apply(set_env_variables({"ENV1": "value1", "ENV2": "value2"}))
|
|
286
|
-
or
|
|
287
|
-
function.apply(set_env_variables(ENV1=value1, ENV2=value2))
|
|
288
|
-
|
|
289
|
-
:param env_vars_dict: dictionary of env. variables
|
|
290
|
-
:param kwargs: environment variables passed as args
|
|
291
|
-
"""
|
|
292
|
-
|
|
293
|
-
env_data = env_vars_dict.copy() if env_vars_dict else {}
|
|
294
|
-
for key, value in kwargs.items():
|
|
295
|
-
env_data[key] = value
|
|
296
|
-
|
|
297
|
-
def _set_env_variables(container_op: kfp.dsl.ContainerOp):
|
|
298
|
-
from kubernetes import client as k8s_client
|
|
299
|
-
|
|
300
|
-
for _key, _value in env_data.items():
|
|
301
|
-
container_op.container.add_env_variable(
|
|
302
|
-
k8s_client.V1EnvVar(name=_key, value=_value)
|
|
303
|
-
)
|
|
304
|
-
return container_op
|
|
305
|
-
|
|
306
|
-
return _set_env_variables
|
mlrun-1.6.4rc2.dist-info/RECORD
DELETED
|
@@ -1,314 +0,0 @@
|
|
|
1
|
-
mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
|
|
2
|
-
mlrun/__main__.py,sha256=zd-o0SkFH69HhIWKhqXnNURsrtpIcOJYYq50JfAxW7k,49234
|
|
3
|
-
mlrun/config.py,sha256=4scerZD_BdeDIOXJw9xrXCmpSBHxEvuc7R9QZpAb5EA,63789
|
|
4
|
-
mlrun/errors.py,sha256=YdUtkN3qJ6yrseNygmKxmSWOfQ_RdKBhRxwwyMlTQCM,7106
|
|
5
|
-
mlrun/execution.py,sha256=tgp6PcujZvGhDDVzPNs32YH_JNzaxfSd25yeuLwmjzg,40880
|
|
6
|
-
mlrun/features.py,sha256=UQQ2uh5Xh9XsMGiYBqh3bKgDhOHANjv1gQgWyId9qQE,15624
|
|
7
|
-
mlrun/k8s_utils.py,sha256=-6egUEZNPhzOxJ2gFytubvQvCYU9nPPg5Yn0zsTK-NQ,7065
|
|
8
|
-
mlrun/kfpops.py,sha256=VgvS_4DappCPHzV7057SbraBTbF2mn7zZ7iPAaks3KU,30493
|
|
9
|
-
mlrun/lists.py,sha256=sEEfl_mw_oVUD1dfkvQZIkJ8q7LJKJPDrb5B_Dg85nY,8388
|
|
10
|
-
mlrun/model.py,sha256=EbSxpwtNFkqodTwM_StcmDG5MFSG50ZuDMhqzIyzLmM,64896
|
|
11
|
-
mlrun/render.py,sha256=pfAky9fTHRbINs93_Km_hEdVxmra9RA8BwqMepPbiuE,13451
|
|
12
|
-
mlrun/run.py,sha256=gyxYJqVCBsZxp0_HWAG5_lwi2_KPqcxy6un5ZLw_-2Q,42456
|
|
13
|
-
mlrun/secrets.py,sha256=m7jM8fdjGLR-j9Vx-08eNmtOmlxFx9mTUBqBWtMSVQo,7782
|
|
14
|
-
mlrun/api/schemas/__init__.py,sha256=ggWbnqhp7By5HNYYfRsZ4D4EdVvjLuz4qfNfR3Kq6M4,14219
|
|
15
|
-
mlrun/artifacts/__init__.py,sha256=LxEWcMYPawJYvNOl6H2_UvrxdLTNYfKeZcMEKFZnGgA,1187
|
|
16
|
-
mlrun/artifacts/base.py,sha256=rwewC3JqAQqUnu5WTfd7BdJHcG_LtsOs_c6Tj3OATFo,34749
|
|
17
|
-
mlrun/artifacts/dataset.py,sha256=ThiZVWcXiRO-AuLfNbjB-JyoBlD3ukwiIO3Dge9SODM,22367
|
|
18
|
-
mlrun/artifacts/manager.py,sha256=f6AOD5-zbzrh5krTkiOgbouSntv0Zvm5w936J79BpYE,14311
|
|
19
|
-
mlrun/artifacts/model.py,sha256=ipLBAkg0DZHjucYO7SV_u0jFZu4Cf1A1a8OMGMx_lDQ,25249
|
|
20
|
-
mlrun/artifacts/plots.py,sha256=dda9_LL6_szzXbP_vpuN-pSL0Dc1q3JbvUlUBrlQ1dw,15717
|
|
21
|
-
mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
22
|
-
mlrun/common/constants.py,sha256=NpBgZV-ReSvPeMKPFp3DKzNWgiVebjGZrZ19pG_ZfRE,660
|
|
23
|
-
mlrun/common/helpers.py,sha256=FqlMfRiZeGS6HZCOHaAJae2wDL1aRoijFBS5aZoPiIM,1108
|
|
24
|
-
mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
|
|
25
|
-
mlrun/common/types.py,sha256=V_jCEFCJZcycFVsPzEToCRQja5bqW0zRAAVaGN_QYxQ,790
|
|
26
|
-
mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
27
|
-
mlrun/common/db/sql_session.py,sha256=yS5KnE3FbOr3samz9tegSga4nd0JSv6azN0RIN9DGjk,2687
|
|
28
|
-
mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
|
|
29
|
-
mlrun/common/model_monitoring/helpers.py,sha256=War8806vyMwdrQs2JkmPQ1DTPPUZ0DJ1B3jABiyRUe8,4249
|
|
30
|
-
mlrun/common/schemas/__init__.py,sha256=-L8-j6zTevHDglT83i0wyMTxTgeKFMmJalkkLoy51Zg,4742
|
|
31
|
-
mlrun/common/schemas/artifact.py,sha256=DaJYX54tq74nu2nBiAzRmGBkBYgtZiT-IKjQI11i8F4,2824
|
|
32
|
-
mlrun/common/schemas/auth.py,sha256=7fNsGhDi1DV4WGuTNtEKXfq56SeCHjpRTed8YUj8m20,5978
|
|
33
|
-
mlrun/common/schemas/background_task.py,sha256=TBFiqkEY8ffKcgIZ1eHtqWcqdD0dFr1YYWl-nOff2Jc,1714
|
|
34
|
-
mlrun/common/schemas/client_spec.py,sha256=Vf8wgtQJUaNeaoIQ30ltR7bhXp1angxcJGgZKbzlci4,2809
|
|
35
|
-
mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
|
|
36
|
-
mlrun/common/schemas/common.py,sha256=00upzVLPN7O511Q87yt-fvRcDQFbXra4j0_lqMGg6rs,1557
|
|
37
|
-
mlrun/common/schemas/constants.py,sha256=UnnhyLeF-SSjy8KaV5a-TBw4Ws675gueYGiP1fr5NfU,6476
|
|
38
|
-
mlrun/common/schemas/datastore_profile.py,sha256=hJ8q54A8VZKsnOvSIjcllj4MZ1bBhb_EmBgsqpwSF_Y,750
|
|
39
|
-
mlrun/common/schemas/events.py,sha256=ROHJLo_fqYjc96pek7yhAUPpPRIuAR76lwxvNz8LIr8,1026
|
|
40
|
-
mlrun/common/schemas/feature_store.py,sha256=LrJJ55TxpCF4RkmorB-i1IUTbixlP-jwLhdn19LLF-Q,3723
|
|
41
|
-
mlrun/common/schemas/frontend_spec.py,sha256=_Yl7-MH5s3zBSuqFTIjGd60MWAK9BA-j1vt7aL7hfG4,2467
|
|
42
|
-
mlrun/common/schemas/function.py,sha256=tLPyKVu802ZLAiU6GT0Uu37KpAzx_TcNDoNNo-qgbzE,4584
|
|
43
|
-
mlrun/common/schemas/http.py,sha256=1PtYFhF6sqLSBRcuPMtYcUGmroBhaleqLmYidSdL9LM,705
|
|
44
|
-
mlrun/common/schemas/hub.py,sha256=jHVfxsO17NokSjC1Xcpcm1gDC72oh5DNBYzPv_73ROM,4362
|
|
45
|
-
mlrun/common/schemas/k8s.py,sha256=nmMnhgjVMLem5jyumoG2eQKioGK9eUVhQnOSb3hG7yw,1395
|
|
46
|
-
mlrun/common/schemas/memory_reports.py,sha256=O5ajjqSimTPl9nzlZg2ewRbddDXWgqUr-zoadv_slZc,920
|
|
47
|
-
mlrun/common/schemas/notification.py,sha256=nDKeLvJEl3hqekrLBBbbZ6v4WWe057Pyqws-1r6nBrU,1796
|
|
48
|
-
mlrun/common/schemas/object.py,sha256=W735Gmu5D_x6LxNp1qsHMkhldjY5b_1H9QvAiiITRRc,1986
|
|
49
|
-
mlrun/common/schemas/pipeline.py,sha256=tvpSHmXDR20uxWIHQ5KXf1zGKi1jaT5pDUIS26zJhLI,1184
|
|
50
|
-
mlrun/common/schemas/project.py,sha256=E4kIlKdPNveYoZ87Cfv3QCsn0JdIgbZv26OrgNVKJNI,4305
|
|
51
|
-
mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
|
|
52
|
-
mlrun/common/schemas/runs.py,sha256=H9QhaN83cFUN42eE9TLgi1gs6Xdq11oQSZ96ESM94mI,745
|
|
53
|
-
mlrun/common/schemas/runtime_resource.py,sha256=GyeqRwbBoLMq-0zWCkocvKl2nz9a62dAfguaPdqUzYw,1636
|
|
54
|
-
mlrun/common/schemas/schedule.py,sha256=dFaPWY3CtuW1KKGcs-br1Gsm5vPjiTgcBZGfcbAAeug,4293
|
|
55
|
-
mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
|
|
56
|
-
mlrun/common/schemas/tag.py,sha256=2sm2Z5qM0jyakHuT_lxb-EQ2M5Unpodz4lj6MNkDEzo,905
|
|
57
|
-
mlrun/common/schemas/workflow.py,sha256=6ScEXBHxmnIve9vrFpCHWRHBeR_iSCfdKi6VPsMkLQQ,1837
|
|
58
|
-
mlrun/common/schemas/model_monitoring/__init__.py,sha256=bU-3prg1s378sy2bec5wgXUtZd6RarlSDR0XpUjzoDs,1439
|
|
59
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=IXc5pEf5pczIQSYTxmZxaFRWD5sUtoWSVODbVrbL5pc,8113
|
|
60
|
-
mlrun/common/schemas/model_monitoring/grafana.py,sha256=W6TcNc7mqPj040lfQrEadEQ37csdxLDgdU3QRLlELMQ,1444
|
|
61
|
-
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=l4vPygfamwB4bj-2UliWqcU0uluTtOpZubWGLywgoIE,12054
|
|
62
|
-
mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
|
|
63
|
-
mlrun/data_types/data_types.py,sha256=hWiL5TPOj9EK7_nd1yttLBUhXTmBYLDZzmG-hWzzhHE,4751
|
|
64
|
-
mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
|
|
65
|
-
mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,9457
|
|
66
|
-
mlrun/data_types/to_pandas.py,sha256=uq7y1svEzaDaPg92YP3p3k3BDI48XWZ2bDdH6aJSvso,9991
|
|
67
|
-
mlrun/datastore/__init__.py,sha256=bsRzu39UOocQAAl_nOKCbhxrZhWUEXrAc8WV3zs0VyI,4118
|
|
68
|
-
mlrun/datastore/azure_blob.py,sha256=pnl7XITAxz7MMp7owgKWIM0nTMUlMCMvlqZW2fpKkus,8734
|
|
69
|
-
mlrun/datastore/base.py,sha256=ldisbMJ-Cy6EbayrXwcakRjx1ETpA4TIYlLTFx59arI,24996
|
|
70
|
-
mlrun/datastore/datastore.py,sha256=xnK-zKrDwTkiZQgzLpcz8d629avpjYtU9UN3WZpdjww,8810
|
|
71
|
-
mlrun/datastore/datastore_profile.py,sha256=vBpkAcnGiYUO09ihg_jPgPdpo2GVBrOOSHYWWttqBag,14899
|
|
72
|
-
mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
|
|
73
|
-
mlrun/datastore/filestore.py,sha256=cI_YvQqY5J3kEvdyPelfWofxKfBitoNHJvABBkpCGRc,3788
|
|
74
|
-
mlrun/datastore/google_cloud_storage.py,sha256=zQlrZnYOFfwQNBw5J2ufoyCDMlbZKA9c9no7NvnylZ4,6038
|
|
75
|
-
mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
|
|
76
|
-
mlrun/datastore/redis.py,sha256=DDA1FsixfnzNwjVUU9MgVCKFo3X3tYvPDcREKyy9zS4,5517
|
|
77
|
-
mlrun/datastore/s3.py,sha256=BCyVDznEsmU1M1HtRROdLo4HkLOy4fjEmgpNrTpsoW0,8030
|
|
78
|
-
mlrun/datastore/sources.py,sha256=z_15dMW22JM4XjCszqfN3HFhwzy7mxx0He6nrHpFsaw,40837
|
|
79
|
-
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
80
|
-
mlrun/datastore/spark_utils.py,sha256=54rF64aC19ojUFCcwzsoBLQ-5Nmzs_KTQl9iEkK2hYo,1635
|
|
81
|
-
mlrun/datastore/store_resources.py,sha256=dfMdFy2urilECtlwLJr5CSG12MA645b-NPYDnbr5s1A,6839
|
|
82
|
-
mlrun/datastore/targets.py,sha256=EaeNzwHQHkMo7WRezgMeWWjTL1NmYwMx8F0RG1swb48,70159
|
|
83
|
-
mlrun/datastore/utils.py,sha256=x4pm0gvpcNWSjxo99MOmwcd9I5HCwuzCh6IA4uiXlZs,7077
|
|
84
|
-
mlrun/datastore/v3io.py,sha256=3UI22DQ1A4yQEpbMWAbopIzjqlL2k5bhmhg0Cjs3tEk,8039
|
|
85
|
-
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
86
|
-
mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
|
|
87
|
-
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
88
|
-
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
89
|
-
mlrun/db/base.py,sha256=Rg2TrcwvzN28vmoyhq8sSxNjiBS1EA6BAHr24fhcmNU,18221
|
|
90
|
-
mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
|
|
91
|
-
mlrun/db/httpdb.py,sha256=FHrAwU7c4AQPCoXDIdkEkFfr8ViUS7XLJYIGrXrv_rs,157292
|
|
92
|
-
mlrun/db/nopdb.py,sha256=rpZy5cpW-8--4OvMzlVoKNYjbhWJ3cn_z-JFwfuPqnI,14520
|
|
93
|
-
mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
|
|
94
|
-
mlrun/feature_store/api.py,sha256=ehEwKlmE07pq1FUwh-ehA8Jm9LTkQofl5MQpEiMwVqM,49520
|
|
95
|
-
mlrun/feature_store/common.py,sha256=jA7Flrv7iJx2Ug1-4BsOxPCQpVKeaPDcJPupBhu8MgI,12860
|
|
96
|
-
mlrun/feature_store/feature_set.py,sha256=qe8lAOr-519Jw7e8mGJocpvoXhhlHeeRAOqMcmaGAOs,55469
|
|
97
|
-
mlrun/feature_store/feature_vector.py,sha256=2OmXYjdV8_ZcEpxy4yI_EaT__tnXwnCkNGlKFupPM5w,43634
|
|
98
|
-
mlrun/feature_store/ingestion.py,sha256=GZkrke5_JJfA_PGOFc6ekbHKujHgMgqr6t4vop5n_bg,11210
|
|
99
|
-
mlrun/feature_store/steps.py,sha256=aSLOt71dMLzBdsQExyN8T8NkhWPd6q1N7DmHT6L_4vc,29155
|
|
100
|
-
mlrun/feature_store/retrieval/__init__.py,sha256=bwA4copPpLQi8fyoUAYtOyrlw0-6f3-Knct8GbJSvRg,1282
|
|
101
|
-
mlrun/feature_store/retrieval/base.py,sha256=5f5EWnXlwLVVyULL3WRz0vfGMG27Aj-R5b0MCKptEeM,30053
|
|
102
|
-
mlrun/feature_store/retrieval/conversion.py,sha256=CF76093RTFxJPJpX1Ukk2YAvQWvOvMe7RmLj7rMHAdg,11716
|
|
103
|
-
mlrun/feature_store/retrieval/dask_merger.py,sha256=_AiEu0iRPi9nKt97EhlXqXCYfq4LgHsdpG7ZzpycReM,5491
|
|
104
|
-
mlrun/feature_store/retrieval/job.py,sha256=NJ1tx1YdTGGe5AAmsHIBSIwJVnOe_qD5WQcKUHz5HsI,8261
|
|
105
|
-
mlrun/feature_store/retrieval/local_merger.py,sha256=jkzTml_umIU-d6isKFNPtmLZ5K9upqbJLWUde2DdiL8,4429
|
|
106
|
-
mlrun/feature_store/retrieval/spark_merger.py,sha256=cp_tm52VARBjmrH6yDrzj53MiTqCPy73i6MIT9jW8Zs,11165
|
|
107
|
-
mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
|
|
108
|
-
mlrun/frameworks/__init__.py,sha256=qRHe_nUfxpoLaSASAkIxcW6IyunMtxq5LXhjzZMO_1E,743
|
|
109
|
-
mlrun/frameworks/parallel_coordinates.py,sha256=vCIRlcP4zT7RYtekChBf2E0vibPda6PRCq-aFrlmtKQ,11493
|
|
110
|
-
mlrun/frameworks/_common/__init__.py,sha256=7afutDCDVp999gyWSWQZMJRKGuW3VP3MFil8cobRsyg,962
|
|
111
|
-
mlrun/frameworks/_common/artifacts_library.py,sha256=se6gpxwidTIjPo3lY2LmmX16AUg3qUPnTYOkllnqPxQ,8515
|
|
112
|
-
mlrun/frameworks/_common/mlrun_interface.py,sha256=_5nUwKid4I6WrzgncoIL0U38uaKDIrI59JPYQ1Abh-g,21018
|
|
113
|
-
mlrun/frameworks/_common/model_handler.py,sha256=djGj91peyJqvgr0UM4SuymoDFWR2M1JylgF7_ryTLuk,55340
|
|
114
|
-
mlrun/frameworks/_common/plan.py,sha256=NxRlH6bNCtK_qOu75c6fNsFrRP5GlFxOwbLC_focuyk,3469
|
|
115
|
-
mlrun/frameworks/_common/producer.py,sha256=nwTSIEn5VyO-glr3OeeKWbAzkXGABhz187y5F2W_OcQ,5757
|
|
116
|
-
mlrun/frameworks/_common/utils.py,sha256=zToAzdectwxT4HD5BfbBn8sK0PI1ArFYXu4LE1C3Ruc,9150
|
|
117
|
-
mlrun/frameworks/_dl_common/__init__.py,sha256=t4GWqonje9xSOPKTxFBjiOaK57l06ALmIXi4EJsG9LM,750
|
|
118
|
-
mlrun/frameworks/_dl_common/model_handler.py,sha256=GUAcDklhAxxH9e9xZPnqjjUGQGeXIHvSdw_SH-r9ACs,1151
|
|
119
|
-
mlrun/frameworks/_dl_common/utils.py,sha256=eVjqSHJh2OSKq7s1BMyCVrZ9VIrkAKaD1Y0wcTA-QXU,996
|
|
120
|
-
mlrun/frameworks/_dl_common/loggers/__init__.py,sha256=0mh4CZKKjlwsE4Boaldb0TfSyaUltwQshGLBNpwQsYA,787
|
|
121
|
-
mlrun/frameworks/_dl_common/loggers/logger.py,sha256=wooZVx124-PBxUmaMO_R_tSc1KKptXyyMxeyzfzdlMQ,11507
|
|
122
|
-
mlrun/frameworks/_dl_common/loggers/mlrun_logger.py,sha256=POzNufOnji0-LPASM7aZ_zaRtJ4OPD1yb0KXNOO4xcU,14777
|
|
123
|
-
mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py,sha256=dbrR8lwqAbtYIp7tPUOgYC55HAG42Xa20TQbWnPMj0A,28384
|
|
124
|
-
mlrun/frameworks/_ml_common/__init__.py,sha256=0Tf6dl15IuJ41aokIpDmcGbV_aczHniZ1m3VVXJFcjY,956
|
|
125
|
-
mlrun/frameworks/_ml_common/artifacts_library.py,sha256=0z73w0ju3EcmjAy_t3z7_DZNfmgpSNvCKhiWjgL6Ua8,3169
|
|
126
|
-
mlrun/frameworks/_ml_common/model_handler.py,sha256=RJ3po14IaCvQeEVQ98_VlbHUp0X0nIwxvHtFMj4p5IQ,16957
|
|
127
|
-
mlrun/frameworks/_ml_common/pkl_model_server.py,sha256=GMByhOTUM2sUg2XB8BjRJSQXlhfkWkU1gG2PVX8IsFU,2723
|
|
128
|
-
mlrun/frameworks/_ml_common/plan.py,sha256=cJXPkVqzb-mWr11tiWdkMDNVHu98Z23OS8sFhoyNJIw,4881
|
|
129
|
-
mlrun/frameworks/_ml_common/producer.py,sha256=5sCFmr38zg_ZTZUvukVti0-z2VP6d-vBhQbIOEPwJf0,4061
|
|
130
|
-
mlrun/frameworks/_ml_common/utils.py,sha256=c6-r0RhJGHa4sCmFjeX7Xp254Mqxr2yolw0cydTJ6nM,10490
|
|
131
|
-
mlrun/frameworks/_ml_common/loggers/__init__.py,sha256=AWw6H8xG4237XGzqNKIhO-wbzBRREHaY_AXF-NRLBNo,737
|
|
132
|
-
mlrun/frameworks/_ml_common/loggers/logger.py,sha256=PNXtA_xW9QGpFBph_NIA-bETLm7BCY7ZTFfMk7sl6Sg,5660
|
|
133
|
-
mlrun/frameworks/_ml_common/loggers/mlrun_logger.py,sha256=4bjEnkhGqH7pyv_2Rwv_szIwkfV-t6BItrwXwy0CsPU,6453
|
|
134
|
-
mlrun/frameworks/_ml_common/plans/__init__.py,sha256=v1RhdMoa2iEIKpnnFzysR3yqOVWZOTv8q8AmwpqAbUQ,922
|
|
135
|
-
mlrun/frameworks/_ml_common/plans/calibration_curve_plan.py,sha256=T2ScsxHJQQnycNvO4fkn2Inl-4QsYGGRR19zXjSduQ4,4944
|
|
136
|
-
mlrun/frameworks/_ml_common/plans/confusion_matrix_plan.py,sha256=J1HhvotSt8zdKqBU4UkxGy6iiSJ0V6DbLYYgQn9CzPk,6079
|
|
137
|
-
mlrun/frameworks/_ml_common/plans/dataset_plan.py,sha256=s4ymnC0ok9c9DRBIcDuo73CmIZDkyxxIytD_Gwl1VQI,6634
|
|
138
|
-
mlrun/frameworks/_ml_common/plans/feature_importance_plan.py,sha256=KoRt88iJ1DPuVdgdHBfhsfEioPMfY0d7xJKYh7TbGD4,5318
|
|
139
|
-
mlrun/frameworks/_ml_common/plans/roc_curve_plan.py,sha256=5lDagE5D6ICOTmeaR37WtgqPbL7Z8tY9qN_8Whekwt0,6993
|
|
140
|
-
mlrun/frameworks/auto_mlrun/__init__.py,sha256=vvaF4qWRVcpeb2zlo0qZFAZ9Ddji4SNRx78auLwnPnI,706
|
|
141
|
-
mlrun/frameworks/auto_mlrun/auto_mlrun.py,sha256=Ed-XVCWwwUJtxrjJKFXHoUOIrMh6eccJB9Fzabp1tZ4,24099
|
|
142
|
-
mlrun/frameworks/huggingface/__init__.py,sha256=hXgVSsCXYPuAi7zHIY9I7VqgnPevkf9lf4zi2jHZ_f0,721
|
|
143
|
-
mlrun/frameworks/huggingface/model_server.py,sha256=sCc7BZ6slDWSBFXsheJOUq_U2FnF-Gx_p4ku086FS64,6083
|
|
144
|
-
mlrun/frameworks/lgbm/__init__.py,sha256=Oz8dD-6ZGqTH0y8gshrZeilEyRrFCqXYtro9Gv-Jn9g,15885
|
|
145
|
-
mlrun/frameworks/lgbm/model_handler.py,sha256=TSdvOKRc6KYPV7il_ZgGyp2PRPHCoDbPFoOJR88wEHs,13891
|
|
146
|
-
mlrun/frameworks/lgbm/model_server.py,sha256=p1DNzmMzRFkTYGS-s1P48XUmdjotRPMACgAK_DW2eZ8,9189
|
|
147
|
-
mlrun/frameworks/lgbm/utils.py,sha256=NouPIxVQLxsl5zDYQXfriSCjV0o0oxvmbGA4uXYB_UY,8278
|
|
148
|
-
mlrun/frameworks/lgbm/callbacks/__init__.py,sha256=yFVBxi96SBgdBngSDsapzYo89yn_2seDJjEXO_0qfmM,857
|
|
149
|
-
mlrun/frameworks/lgbm/callbacks/callback.py,sha256=BWwpTug8p8s0kYF4v1NxZthTrLioat_cwGkU2In0JbE,4081
|
|
150
|
-
mlrun/frameworks/lgbm/callbacks/logging_callback.py,sha256=zjhpC8-HeYcxPQI7c-MbV4-_UW4p5GRyLraVYVxy39c,5156
|
|
151
|
-
mlrun/frameworks/lgbm/callbacks/mlrun_logging_callback.py,sha256=4DWjCqyZlqsCGrmfPm0_XGaKGs3VmQIu2UVU86LWJZk,4137
|
|
152
|
-
mlrun/frameworks/lgbm/mlrun_interfaces/__init__.py,sha256=5xZZJnYaRAQi53WzKnvYZgs8UgNbBvCnIkx7a2_dCi4,842
|
|
153
|
-
mlrun/frameworks/lgbm/mlrun_interfaces/booster_mlrun_interface.py,sha256=GCU7FIHDqbiqpiLR9oquBlb47mP9682LCMjn4beT0Vg,1583
|
|
154
|
-
mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py,sha256=VAaXvt_BWz8h7RuffLlGiTt-T0NAWrYhCiLXmCa-Ugw,14257
|
|
155
|
-
mlrun/frameworks/lgbm/mlrun_interfaces/model_mlrun_interface.py,sha256=xZbzQSgHZ6GhlpgaW543wE3c-GAw0BAinrfXa106AVo,1333
|
|
156
|
-
mlrun/frameworks/onnx/__init__.py,sha256=BouzKRGKM4UJYTmDEJkPtEn1EslusX8Q2DMkjcbDmuc,791
|
|
157
|
-
mlrun/frameworks/onnx/dataset.py,sha256=9KeEluZJA8nLYeT9NyOiBRxCi803BGI6k6ejYZ9PUZI,6098
|
|
158
|
-
mlrun/frameworks/onnx/mlrun_interface.py,sha256=orKulF-8t6WE_yG05vlySP-eG98ELa9KqbWz0f-70YQ,2405
|
|
159
|
-
mlrun/frameworks/onnx/model_handler.py,sha256=sGTDVtv5CdFY8Z3bBb3Dvde3Zl6nw9TUp1p9ecZV4-I,6203
|
|
160
|
-
mlrun/frameworks/onnx/model_server.py,sha256=7GlHyzLTAkPNnCNW4YXQR1Ias0N6eoLYJdyZ8JgYrJI,7061
|
|
161
|
-
mlrun/frameworks/pytorch/__init__.py,sha256=3bQNCzl1Ql7i2BUsHF2n1-Ic6mX5FDfEZeDHr7Z6_OM,22056
|
|
162
|
-
mlrun/frameworks/pytorch/callbacks_handler.py,sha256=7p9nt8xE-3G61epxpSemO7VBHHVChvkAh7eYyr9QCTs,27904
|
|
163
|
-
mlrun/frameworks/pytorch/mlrun_interface.py,sha256=QMUHJPI7huf98Y-WYIdvA9rYgezPge96JAMewjy9CLs,44640
|
|
164
|
-
mlrun/frameworks/pytorch/model_handler.py,sha256=vJnHRfy5wu2Pam99t-rgRpQs27dRGZYQiHQ4r9HCRXU,22465
|
|
165
|
-
mlrun/frameworks/pytorch/model_server.py,sha256=ApAl1u733-ns-YaveXieNXvwQw3uyVy6zvcVg5-ZKDk,10136
|
|
166
|
-
mlrun/frameworks/pytorch/utils.py,sha256=kjkLNgzX9lLyEnZlUiBFfoKy_E1_OWj0g-sVYJT_kPQ,4515
|
|
167
|
-
mlrun/frameworks/pytorch/callbacks/__init__.py,sha256=HcQaboA3T62ngrexy78Erc9q5AM0xJztj4Y_qgiqjpw,896
|
|
168
|
-
mlrun/frameworks/pytorch/callbacks/callback.py,sha256=2kNQHtWzoBC9EeoU3IWrKRNcfeiJmIIe192WQYiSv1Y,11524
|
|
169
|
-
mlrun/frameworks/pytorch/callbacks/logging_callback.py,sha256=knZMbNTRCrYEQ-K-e36UCdBF1HYyE_l3Eu8aXy-o3Mg,23166
|
|
170
|
-
mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py,sha256=M2ZTVLuSKQfxFALKyQuUsehVTFnr6G6PdBH4HCliX-M,9310
|
|
171
|
-
mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py,sha256=w0ivtQoylNebnZLzAh_tSxhjMt4dKAxf7UyDkjNsSrk,26671
|
|
172
|
-
mlrun/frameworks/sklearn/__init__.py,sha256=u3KcQR84QkVttnWO-yQlA749QOu78WCREVLb3a0cw3E,10892
|
|
173
|
-
mlrun/frameworks/sklearn/estimator.py,sha256=wLsGshFTOLdaGDziyiL03JdaVCoI8DKZ64UdXJskV5o,5852
|
|
174
|
-
mlrun/frameworks/sklearn/metric.py,sha256=57UVkkKgUz9xDGWILWfLkBqrLk8WvhsKMgwEflYrM0s,7089
|
|
175
|
-
mlrun/frameworks/sklearn/metrics_library.py,sha256=rbxt37AaAfUXmcP1fx_0VrTrU_CiX7UOjUtGNbgW8UM,12215
|
|
176
|
-
mlrun/frameworks/sklearn/mlrun_interface.py,sha256=2NSV8gUYL9eNmwR3q8gLZKAsOza2JPoWxRQmrOHFzQ4,14126
|
|
177
|
-
mlrun/frameworks/sklearn/model_handler.py,sha256=uV-SaCU15PW_S79syfrGxlpT9ZPjoKccPNax53sG4O0,4745
|
|
178
|
-
mlrun/frameworks/sklearn/utils.py,sha256=Cg_pSxUMvKe8vBSLQor6JM8u9_ccKJg4Rk5EPDzTsVo,1209
|
|
179
|
-
mlrun/frameworks/tf_keras/__init__.py,sha256=OQ5AQHJQAvz2hgansHV_B-yk3bJStWhqSoHlH4Qggqk,10459
|
|
180
|
-
mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=s4qUGdjEU8qpwPSj6H2Y5cB1b147vbbfpeF40q3iwKY,16671
|
|
181
|
-
mlrun/frameworks/tf_keras/model_handler.py,sha256=lgYRBGIMg156XZ4-mqfvJU8MZVLrPzBn5b62WJ0_DDc,28269
|
|
182
|
-
mlrun/frameworks/tf_keras/model_server.py,sha256=JTOq5W1-g32VTAmAYTcJ_7nocReVI7pcU9PmFrTHD8A,9565
|
|
183
|
-
mlrun/frameworks/tf_keras/utils.py,sha256=_QWk1YmdRybbUB54vsQFE2_WMuAK0g7eR1ozVbMk0Go,4284
|
|
184
|
-
mlrun/frameworks/tf_keras/callbacks/__init__.py,sha256=ufH33gxHF4erP9RCiM8O2YaXLG6btLIU98gCS_MGFjI,844
|
|
185
|
-
mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=W2kKnLO_Unn-yiNCRFz2359b6DzggSrfVpsUFyVt07k,21888
|
|
186
|
-
mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py,sha256=_9tF4KrSA2LKqE_uqwWMSHiRvNXPERwi8ABS96XqzNU,8791
|
|
187
|
-
mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py,sha256=xxba28TyWyD8-Tr2Wcu8PzA8ZRNWKM_TbFxS2uF6g1E,28730
|
|
188
|
-
mlrun/frameworks/xgboost/__init__.py,sha256=A3NTOcvEBX1DsWpzK6J-cS6KgV2vKrenf-DHMCuU26Q,10288
|
|
189
|
-
mlrun/frameworks/xgboost/mlrun_interface.py,sha256=QcP_mTKBjxvRyWcNnju0BlvXBDOqNH9B1XBoxvEojAk,878
|
|
190
|
-
mlrun/frameworks/xgboost/model_handler.py,sha256=XV8xndGhQsPkOX9djqiNVYFB0xiZPujhC0m4DUOU2zI,11617
|
|
191
|
-
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
192
|
-
mlrun/launcher/__init__.py,sha256=pZgS6ZN126aJme4z5spCX-RmdchShxMnQeCPya8AsQI,577
|
|
193
|
-
mlrun/launcher/base.py,sha256=VG5hm3c1z32BH_ywVo9lBlKm7Yjchn1EWCykIrcpChE,16450
|
|
194
|
-
mlrun/launcher/client.py,sha256=pnHqTSGl3FnwzOh7FicrGl0JOWZ3naKjay3MOkbIzLI,6054
|
|
195
|
-
mlrun/launcher/factory.py,sha256=tk6foFWox7f_xaeTgkWTx9ht_5fv0XzLDR8ucdb8oTE,2344
|
|
196
|
-
mlrun/launcher/local.py,sha256=H0tN2Ex_mGCUtCyCSdk57mdXtFvl9eWDTVDwldv2SXQ,10927
|
|
197
|
-
mlrun/launcher/remote.py,sha256=lcVV9nH_SMDsdb2XNg01EVnzZSxAMqxFGZJWxaezXeU,7487
|
|
198
|
-
mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
|
|
199
|
-
mlrun/model_monitoring/api.py,sha256=uKT733p3vUsIgX-vdvhbroeN15bmdkZT5S3gsfwbNhk,36829
|
|
200
|
-
mlrun/model_monitoring/application.py,sha256=ilslJNkq3CCivPqvsDOPmu0UClWXwH9IWr58gdxM9iU,12292
|
|
201
|
-
mlrun/model_monitoring/batch.py,sha256=UDtcafDFOqWtARY6lbSdXgMFIO-VYWdKbGUwY_fqfRo,44379
|
|
202
|
-
mlrun/model_monitoring/controller.py,sha256=Zh7XnGevQyJCU8uMT8MC6kD7cP55vUJaIjqbBvSyuvA,27608
|
|
203
|
-
mlrun/model_monitoring/controller_handler.py,sha256=kG3sTjhKdsd9QcHkUlYcvw08yPsVQs9FyFdcKP9iaCo,977
|
|
204
|
-
mlrun/model_monitoring/evidently_application.py,sha256=o9PsDsjyRfcbuC1X1gb2ww5nzWCsR_KheabtpxKZ5yY,4824
|
|
205
|
-
mlrun/model_monitoring/features_drift_table.py,sha256=OEDb_YZm3cyzszzC4SDqi7ufwOS8Kl5tDY1ZG4XIdZ4,24436
|
|
206
|
-
mlrun/model_monitoring/helpers.py,sha256=l8RCxOGBoScZSL4M-x4fIfpsfH7wjSQpqA_t-HVk0BI,7087
|
|
207
|
-
mlrun/model_monitoring/model_endpoint.py,sha256=BBtxdY5ciormI_al4zshmIp0GN7hGhOCn-hLgpCXek0,3938
|
|
208
|
-
mlrun/model_monitoring/prometheus.py,sha256=Z0UWmhQ-dpGGH31gCiGdfmhfj-RFRf1Tu1bYVe-k4jk,7605
|
|
209
|
-
mlrun/model_monitoring/stream_processing.py,sha256=n1UpOsxOW8bUQnEAHgRm2wOOihx8VWrFYiE1FWz_zgs,49231
|
|
210
|
-
mlrun/model_monitoring/tracking_policy.py,sha256=Q6_p4y1ZcRHqs24c_1_4m9E1gYnaOm6pLCNGT22dWKM,5221
|
|
211
|
-
mlrun/model_monitoring/writer.py,sha256=IWPzPenoAkfIxlvn0IdcdB19Nxqmg4mjbo3-RnYWw9A,8669
|
|
212
|
-
mlrun/model_monitoring/stores/__init__.py,sha256=adU_G07jkD3JUT8__d0jAxs9nNomL7igKmd6uVM9L50,4525
|
|
213
|
-
mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=R3Y8KmDHEFxJ2sHPUY2yMMC_mKOftFFIyQlIDduycv0,22338
|
|
214
|
-
mlrun/model_monitoring/stores/model_endpoint_store.py,sha256=zqGVidq9Clym1l15ZltIZMCTdFuZ1QUwXxEAma9-4Hs,5695
|
|
215
|
-
mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=3xsGAJfrpoS7nlkUk3xZrSkVmi_xhtq1D_PP5b3K1VY,16258
|
|
216
|
-
mlrun/model_monitoring/stores/models/__init__.py,sha256=usKJhg-jD0YBmaE1advYiOn4QGUNkXK0jjJHXpA1L8U,1117
|
|
217
|
-
mlrun/model_monitoring/stores/models/base.py,sha256=yC2_u8wTNoP9JHHewYQgWgarP400OgzlqYWpS-N1V4s,2801
|
|
218
|
-
mlrun/model_monitoring/stores/models/mysql.py,sha256=9UYG5FuoVJQoAXP_xrCnbwmTVAm8ba6Bu54R9yg5BJs,1131
|
|
219
|
-
mlrun/model_monitoring/stores/models/sqlite.py,sha256=9c5Tw4YuuRiD4GBoQdWGPUzm_6rC-u6zCg962g99lO0,765
|
|
220
|
-
mlrun/package/__init__.py,sha256=Kdod03kvEOYA_Rk9cyWUjUttQa4IxhoWOYXAmhG6hKE,7100
|
|
221
|
-
mlrun/package/context_handler.py,sha256=p_Odz3mEKKR7iqeU0a8qgYYfNyhAjg5vQzJsoYIe5Q8,14601
|
|
222
|
-
mlrun/package/errors.py,sha256=LKF8SSaRIdbkB7JQz6b9U4mZV42Ebnf6ZHu4wKuWqK4,1204
|
|
223
|
-
mlrun/package/packager.py,sha256=cAjzU1vmnbwys6nhKw50nCfQaC_PWPAfhO_MlqTcBoQ,15083
|
|
224
|
-
mlrun/package/packagers_manager.py,sha256=Ps34YUUPpYu0ZFFlWVrKCPk9YJzuMvMMiqxdaue0REY,37399
|
|
225
|
-
mlrun/package/packagers/__init__.py,sha256=rpxpuATMoxCMgHDaVamm0uwocy71e0CSXm85Q5X9tkU,769
|
|
226
|
-
mlrun/package/packagers/default_packager.py,sha256=ecUaodnSfhKY3prigqALI61bj5WyyCM1xfhRNUHw5vc,26644
|
|
227
|
-
mlrun/package/packagers/numpy_packagers.py,sha256=xLN7gaQG44J4NCnZ071F8uCO5U6bWSP5aALdL3KgqcQ,25621
|
|
228
|
-
mlrun/package/packagers/pandas_packagers.py,sha256=YGVFVv6oR78M4GMhdLSnIyBXE5cDdqQAtmJYUxSDO88,35774
|
|
229
|
-
mlrun/package/packagers/python_standard_library_packagers.py,sha256=BxVb4u3N_gAIky8SyW__OMqlZJb7WkQ-49Ag54nj7OQ,22335
|
|
230
|
-
mlrun/package/utils/__init__.py,sha256=RXkhPH-zFLFFvOjMRJUVgVT33rusK5J4eTVLJ7bjN6k,1722
|
|
231
|
-
mlrun/package/utils/_archiver.py,sha256=EK47v44yZOx2XeM4YGidgszsnrryz2J35f9M2A47bms,7951
|
|
232
|
-
mlrun/package/utils/_formatter.py,sha256=EgdSMrJMgt-35myGuwfIOOKAe4jBi6QU7ssw1G0cacY,6393
|
|
233
|
-
mlrun/package/utils/_pickler.py,sha256=cqqcSo2V0Ky086s-wLrJw0moD0XEU-DNOYefdRUHbPY,10354
|
|
234
|
-
mlrun/package/utils/_supported_format.py,sha256=Svmfcqc4X7Kq-7pmyzGyI6PgDBaJ3zTT-au0beLZYS8,2375
|
|
235
|
-
mlrun/package/utils/log_hint_utils.py,sha256=40B9WiMhpdL-FxunCvX1eQUk5EYTSU59o109RsAE4JQ,3710
|
|
236
|
-
mlrun/package/utils/type_hint_utils.py,sha256=izsNrOrTnn_omK4BQPyBGWPtdTqFAdbS5cCJIDbHy0s,14857
|
|
237
|
-
mlrun/platforms/__init__.py,sha256=ArWn_iZiEE6qz7hvY_1RqMkFnHGuKjP3k5xYKnfKA58,2352
|
|
238
|
-
mlrun/platforms/iguazio.py,sha256=eOO8CbeSD0ooUKp-hbXbRfzWo5OTP7QaBo6zh0BXTKc,19379
|
|
239
|
-
mlrun/platforms/other.py,sha256=z4pWqxXkVVuMLk-MbNb0Y_ZR5pmIsUm0R8vHnqpEnew,11852
|
|
240
|
-
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
241
|
-
mlrun/projects/operations.py,sha256=CJRGKEFhqKXlg0VOKhcfjOUVAmWHA9WwAFNiXtUqBhg,18550
|
|
242
|
-
mlrun/projects/pipelines.py,sha256=FcKNsFtRUP1sOuSEp5Hk0_Qv4ZIKT9gWpatg6bSUCsI,41165
|
|
243
|
-
mlrun/projects/project.py,sha256=U98H5DF0q17qZcQB4VqqPoEETFgh_VvV51DTHXQhsbA,153280
|
|
244
|
-
mlrun/runtimes/__init__.py,sha256=f5cdEg4raKNXQawJE-AuWzK6AqIsLfDODREeMnI2Ies,7062
|
|
245
|
-
mlrun/runtimes/base.py,sha256=GTVqCR3sBqbyAlEBnDClThOf0EZUoAMzlEIFqjfoyLQ,36604
|
|
246
|
-
mlrun/runtimes/constants.py,sha256=tB7nIlHob3yF0K9Uf9BUZ8yxjZNSzlzrd3K32K_vV7w,9550
|
|
247
|
-
mlrun/runtimes/daskjob.py,sha256=B74NfaO8MPczrEYtOd9TsvKMAReGYc1Q691u629DwVI,19161
|
|
248
|
-
mlrun/runtimes/funcdoc.py,sha256=FHwnLfFzoD6yGlsAJXAl_3VTtudgg4fTrsw_XqLOkC0,10508
|
|
249
|
-
mlrun/runtimes/function.py,sha256=zYIAW2BaihRA5GJdXwx48vdnGfqOzEHSuE28KAhZkG4,47368
|
|
250
|
-
mlrun/runtimes/function_reference.py,sha256=SJ0J-4ww0FQdijmdnUwGUKhMb-h5wtzqCPItTWKIL40,4911
|
|
251
|
-
mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
|
|
252
|
-
mlrun/runtimes/kubejob.py,sha256=UfSm7hiPLAtM0TfIE5nbBdSvrbsKWCZfvKP-SZhGyAk,12500
|
|
253
|
-
mlrun/runtimes/local.py,sha256=depdJkbyas7V7SMXB1T6Y_jPXxTLEB1TL5HYzDxlcXI,21791
|
|
254
|
-
mlrun/runtimes/nuclio.py,sha256=hwk4dUaZefI-Qbb4s289vQpt1h0nAucxf6eINzVI-d8,2908
|
|
255
|
-
mlrun/runtimes/pod.py,sha256=loo1ysAbGslrHRhcRaFrw-ATNhuOBayEb0MCPi2EduY,56865
|
|
256
|
-
mlrun/runtimes/remotesparkjob.py,sha256=W7WqlPbyqE6FjOZ2EFeOzlL1jLGWAWe61jOH0Umy3F4,7334
|
|
257
|
-
mlrun/runtimes/serving.py,sha256=bV4Io-8K30IZs69pdZTSICR3HkUAAc1kSKuBJOx_jc0,30331
|
|
258
|
-
mlrun/runtimes/utils.py,sha256=mNVu3ejmfEV3d7-fCAiSaF5K-Jyz2ladc5HzqhsY0Cs,16025
|
|
259
|
-
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
260
|
-
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=Qr1tbLuGI9BhNXytfB0IbKuLLC0V_mtqrdwgvdQX36I,2250
|
|
261
|
-
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=aKEnzhYu6fDw5oZVte0oxS-oj0qXfKDpJ0rLSc8h7go,12761
|
|
262
|
-
mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=-kzz5b3YBit6sGWojjREW_aHHRTx72zzTbxWGxvUplE,8679
|
|
263
|
-
mlrun/runtimes/mpijob/__init__.py,sha256=jZf2uPBv6IB18Jj-dGSQ9NU5_xxni7XS4dnDZGwESFE,1583
|
|
264
|
-
mlrun/runtimes/mpijob/abstract.py,sha256=BjPq4x5JMmzhZ0wx6rYYEHYk_OQUDkb2r4OnWSR10YU,9182
|
|
265
|
-
mlrun/runtimes/mpijob/v1.py,sha256=_RUlFo_3NcFf7x-QpUNVm8f7qNbRDIdUmPf_ijrv54U,3206
|
|
266
|
-
mlrun/runtimes/mpijob/v1alpha1.py,sha256=w_971wwL03hW_ksgHJXdjTdjhxCs9KJ0zNqHSQ9whIM,1034
|
|
267
|
-
mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
|
|
268
|
-
mlrun/runtimes/sparkjob/spark3job.py,sha256=7dGrv3KWX7P4kmCCNHDYAPRAP0lZ9ndFbpuXuUR9JLI,40294
|
|
269
|
-
mlrun/serving/__init__.py,sha256=_6HRAOuS2Ehjo3vwx5h1aI_-JppxEAsl4VfEERAbGFE,1078
|
|
270
|
-
mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
|
|
271
|
-
mlrun/serving/remote.py,sha256=od2kNSSS4AXVqJ8xCQUwylwrH6Ksk0OeGrbLCc9UztI,18114
|
|
272
|
-
mlrun/serving/routers.py,sha256=VEeDhcQUeAeyREfaUN-ws7ZkxRw2wf9CKNWj-RUVemY,54988
|
|
273
|
-
mlrun/serving/server.py,sha256=8iLMgRm-W61-_mTueQ0q2vt6blpnpl5-aTQa6dQ6zEA,21357
|
|
274
|
-
mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
|
|
275
|
-
mlrun/serving/states.py,sha256=LORqEyNR6Rxq-rH0VfVvJ_aff3ws_KoT83UqXNccjyY,54821
|
|
276
|
-
mlrun/serving/utils.py,sha256=PbXvmkqUAAE0jAfnsUwTOHEQsnhMpmuREv_yB21hvv4,3784
|
|
277
|
-
mlrun/serving/v1_serving.py,sha256=5BVvsvjG4zsq3LMnYp0ZE8qFs-qcfQSD3SOSziEYQqQ,11813
|
|
278
|
-
mlrun/serving/v2_serving.py,sha256=kZO5b-3MXD-ejwH47Kq0klvWn0INqC4vUsHgZyUBqbU,22055
|
|
279
|
-
mlrun/track/__init__.py,sha256=LWRUHJt8JyFW17FyNPOVyWd-NXTf1iptzsK9KFj5fuY,765
|
|
280
|
-
mlrun/track/tracker.py,sha256=y-UdhC2nzM6r-yHCwvrfiHRr93xsr4JRsZTxDrTTRJo,3541
|
|
281
|
-
mlrun/track/tracker_manager.py,sha256=ZZzXtgQ-t4ah64XeAHNCbZ2VMOK_0E0RHv0pIowynjA,5732
|
|
282
|
-
mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
|
|
283
|
-
mlrun/track/trackers/mlflow_tracker.py,sha256=zqqnECpxk_CHDKzEIdjwL9QUjXfueOw7xlZU7buguKY,23282
|
|
284
|
-
mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
|
|
285
|
-
mlrun/utils/async_http.py,sha256=J3z4dzU1zk96k1sLDiGUIciBu3pdgivqh-GExFv-Fn8,11773
|
|
286
|
-
mlrun/utils/azure_vault.py,sha256=IbPAZh-7mp0j4PcCy1L079LuEA6ENrkWhKZvkD4lcTY,3455
|
|
287
|
-
mlrun/utils/clones.py,sha256=QG2ka65-ysfrOaoziudEjJqGgAxJvFKZOXkiD9WZGN4,7386
|
|
288
|
-
mlrun/utils/condition_evaluator.py,sha256=KFZC-apM7RU5TIlRszAzMFc0NqPj3W1rgP0Zv17Ud-A,1918
|
|
289
|
-
mlrun/utils/db.py,sha256=fp9p2_z7XW3DhsceJEObWKh-e5zKjPiCM55kSGNkZD8,1658
|
|
290
|
-
mlrun/utils/helpers.py,sha256=MRfvRQlxh9IITpYX68Sc8Lnej-SB5sWzIAy_7NhB44o,53692
|
|
291
|
-
mlrun/utils/http.py,sha256=BLkPfCmXwFrpPrPXzipmDr9IhY3q5css7hovncXYs9g,8735
|
|
292
|
-
mlrun/utils/logger.py,sha256=KZFzojroEshCu1kvtCsavJpdIY8vNA-QZxiBjehP9f4,7260
|
|
293
|
-
mlrun/utils/regex.py,sha256=Nd7xnDHU9PEOsse6rFwLNVgU4AaYCyuwMmQ9qgx2-Vw,4581
|
|
294
|
-
mlrun/utils/singleton.py,sha256=UUTQiBTXyzmjeYzsvTUsSxqyLJHOtesqif9GNfZO9rc,883
|
|
295
|
-
mlrun/utils/v3io_clients.py,sha256=HL7Hma-pxaQBXMKcEnWqGLCpFgykwnszlabzeOHC9-E,1319
|
|
296
|
-
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
297
|
-
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
298
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=HFk47IogAzrWuAS_h9hnF5barRKhmkNap1kOqlKmHJY,21810
|
|
299
|
-
mlrun/utils/notifications/notification/__init__.py,sha256=v2ULfsoGLlgBKS90ezou9wooBX7fo0NJgDsNdr51YEk,2113
|
|
300
|
-
mlrun/utils/notifications/notification/base.py,sha256=t1sxExL2i2tJr3UuiQ9NTDONrpXcGBsrnxtAdemog2s,2293
|
|
301
|
-
mlrun/utils/notifications/notification/console.py,sha256=leZrjwu3fFA1sCYsTxDXEGZ02SWTUk4GNzp7tT2uaCc,2532
|
|
302
|
-
mlrun/utils/notifications/notification/git.py,sha256=5pJs3LFzuz2h3JO9vAGo3BL00-WZFdUcCaO2XaZh-1I,5221
|
|
303
|
-
mlrun/utils/notifications/notification/ipython.py,sha256=qrBmtECiRG6sZpCIVMg7RZcWi5WqbgWl9Ktgg-oi2EY,1962
|
|
304
|
-
mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
|
|
305
|
-
mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
|
|
306
|
-
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
307
|
-
mlrun/utils/version/version.json,sha256=Q1XKNRUFqvGup80Doax-QDFnhlW1SBqds8YVSMUdpWQ,88
|
|
308
|
-
mlrun/utils/version/version.py,sha256=HMwseV8xjTQ__6T6yUWojx_z6yUj7Io7O4NcCCH_sz8,1970
|
|
309
|
-
mlrun-1.6.4rc2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
310
|
-
mlrun-1.6.4rc2.dist-info/METADATA,sha256=49UkCKVL5gmj1VoHLfNuutZvtOyeO0OwVNfSYYgYJDc,18403
|
|
311
|
-
mlrun-1.6.4rc2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
312
|
-
mlrun-1.6.4rc2.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
313
|
-
mlrun-1.6.4rc2.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
314
|
-
mlrun-1.6.4rc2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|