mlrun 1.7.1rc10__py3-none-any.whl → 1.8.0rc11__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 +23 -21
- mlrun/__main__.py +3 -3
- mlrun/alerts/alert.py +148 -14
- mlrun/artifacts/__init__.py +2 -3
- mlrun/artifacts/base.py +55 -12
- mlrun/artifacts/dataset.py +16 -16
- mlrun/artifacts/document.py +378 -0
- mlrun/artifacts/manager.py +26 -17
- mlrun/artifacts/model.py +66 -53
- mlrun/common/constants.py +8 -0
- mlrun/common/formatters/__init__.py +1 -0
- mlrun/common/formatters/feature_set.py +1 -0
- mlrun/common/formatters/function.py +1 -0
- mlrun/{model_monitoring/db/stores/base/__init__.py → common/formatters/model_endpoint.py} +16 -1
- mlrun/common/formatters/pipeline.py +1 -2
- mlrun/common/formatters/project.py +9 -0
- mlrun/common/model_monitoring/__init__.py +0 -5
- mlrun/common/model_monitoring/helpers.py +1 -29
- mlrun/common/runtimes/constants.py +1 -2
- mlrun/common/schemas/__init__.py +6 -2
- mlrun/common/schemas/alert.py +111 -19
- mlrun/common/schemas/api_gateway.py +3 -3
- mlrun/common/schemas/artifact.py +11 -7
- mlrun/common/schemas/auth.py +6 -4
- mlrun/common/schemas/background_task.py +7 -7
- mlrun/common/schemas/client_spec.py +2 -3
- mlrun/common/schemas/clusterization_spec.py +2 -2
- mlrun/common/schemas/common.py +53 -3
- mlrun/common/schemas/constants.py +15 -0
- mlrun/common/schemas/datastore_profile.py +1 -1
- mlrun/common/schemas/feature_store.py +9 -9
- mlrun/common/schemas/frontend_spec.py +4 -4
- mlrun/common/schemas/function.py +10 -10
- mlrun/common/schemas/hub.py +1 -1
- mlrun/common/schemas/k8s.py +3 -3
- mlrun/common/schemas/memory_reports.py +3 -3
- mlrun/common/schemas/model_monitoring/__init__.py +2 -1
- mlrun/common/schemas/model_monitoring/constants.py +67 -14
- mlrun/common/schemas/model_monitoring/grafana.py +1 -1
- mlrun/common/schemas/model_monitoring/model_endpoints.py +92 -147
- mlrun/common/schemas/notification.py +24 -3
- mlrun/common/schemas/object.py +1 -1
- mlrun/common/schemas/pagination.py +4 -4
- mlrun/common/schemas/partition.py +137 -0
- mlrun/common/schemas/pipeline.py +2 -2
- mlrun/common/schemas/project.py +25 -17
- mlrun/common/schemas/runs.py +2 -2
- mlrun/common/schemas/runtime_resource.py +5 -5
- mlrun/common/schemas/schedule.py +1 -1
- mlrun/common/schemas/secret.py +1 -1
- mlrun/common/schemas/tag.py +3 -3
- mlrun/common/schemas/workflow.py +5 -5
- mlrun/config.py +68 -10
- mlrun/data_types/__init__.py +0 -2
- mlrun/data_types/data_types.py +1 -0
- mlrun/data_types/infer.py +3 -1
- mlrun/data_types/spark.py +5 -3
- mlrun/data_types/to_pandas.py +11 -2
- mlrun/datastore/__init__.py +2 -2
- mlrun/datastore/alibaba_oss.py +4 -1
- mlrun/datastore/azure_blob.py +4 -1
- mlrun/datastore/base.py +12 -4
- mlrun/datastore/datastore.py +9 -3
- mlrun/datastore/datastore_profile.py +79 -20
- mlrun/datastore/dbfs_store.py +4 -1
- mlrun/datastore/filestore.py +4 -1
- mlrun/datastore/google_cloud_storage.py +4 -1
- mlrun/datastore/hdfs.py +4 -1
- mlrun/datastore/inmem.py +4 -1
- mlrun/datastore/redis.py +4 -1
- mlrun/datastore/s3.py +4 -1
- mlrun/datastore/sources.py +52 -51
- mlrun/datastore/store_resources.py +7 -4
- mlrun/datastore/targets.py +23 -22
- mlrun/datastore/utils.py +2 -2
- mlrun/datastore/v3io.py +4 -1
- mlrun/datastore/vectorstore.py +229 -0
- mlrun/datastore/wasbfs/fs.py +13 -12
- mlrun/db/base.py +213 -83
- mlrun/db/factory.py +0 -3
- mlrun/db/httpdb.py +1265 -387
- mlrun/db/nopdb.py +205 -74
- mlrun/errors.py +2 -2
- mlrun/execution.py +136 -50
- mlrun/feature_store/__init__.py +0 -2
- mlrun/feature_store/api.py +41 -40
- mlrun/feature_store/common.py +9 -9
- mlrun/feature_store/feature_set.py +20 -18
- mlrun/feature_store/feature_vector.py +27 -24
- mlrun/feature_store/retrieval/base.py +14 -9
- mlrun/feature_store/retrieval/job.py +2 -1
- mlrun/feature_store/steps.py +2 -2
- mlrun/features.py +30 -13
- mlrun/frameworks/__init__.py +1 -2
- mlrun/frameworks/_common/__init__.py +1 -2
- mlrun/frameworks/_common/artifacts_library.py +2 -2
- mlrun/frameworks/_common/mlrun_interface.py +10 -6
- mlrun/frameworks/_common/model_handler.py +29 -27
- mlrun/frameworks/_common/producer.py +3 -1
- mlrun/frameworks/_dl_common/__init__.py +1 -2
- mlrun/frameworks/_dl_common/loggers/__init__.py +1 -2
- mlrun/frameworks/_dl_common/loggers/mlrun_logger.py +4 -4
- mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py +3 -3
- mlrun/frameworks/_ml_common/__init__.py +1 -2
- mlrun/frameworks/_ml_common/loggers/__init__.py +1 -2
- mlrun/frameworks/_ml_common/model_handler.py +21 -21
- mlrun/frameworks/_ml_common/plans/__init__.py +1 -2
- mlrun/frameworks/_ml_common/plans/confusion_matrix_plan.py +3 -1
- mlrun/frameworks/_ml_common/plans/dataset_plan.py +3 -3
- mlrun/frameworks/_ml_common/plans/roc_curve_plan.py +4 -4
- mlrun/frameworks/auto_mlrun/__init__.py +1 -2
- mlrun/frameworks/auto_mlrun/auto_mlrun.py +22 -15
- mlrun/frameworks/huggingface/__init__.py +1 -2
- mlrun/frameworks/huggingface/model_server.py +9 -9
- mlrun/frameworks/lgbm/__init__.py +47 -44
- mlrun/frameworks/lgbm/callbacks/__init__.py +1 -2
- mlrun/frameworks/lgbm/callbacks/logging_callback.py +4 -2
- mlrun/frameworks/lgbm/callbacks/mlrun_logging_callback.py +4 -2
- mlrun/frameworks/lgbm/mlrun_interfaces/__init__.py +1 -2
- mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py +5 -5
- mlrun/frameworks/lgbm/model_handler.py +15 -11
- mlrun/frameworks/lgbm/model_server.py +11 -7
- mlrun/frameworks/lgbm/utils.py +2 -2
- mlrun/frameworks/onnx/__init__.py +1 -2
- mlrun/frameworks/onnx/dataset.py +3 -3
- mlrun/frameworks/onnx/mlrun_interface.py +2 -2
- mlrun/frameworks/onnx/model_handler.py +7 -5
- mlrun/frameworks/onnx/model_server.py +8 -6
- mlrun/frameworks/parallel_coordinates.py +11 -11
- mlrun/frameworks/pytorch/__init__.py +22 -23
- mlrun/frameworks/pytorch/callbacks/__init__.py +1 -2
- mlrun/frameworks/pytorch/callbacks/callback.py +2 -1
- mlrun/frameworks/pytorch/callbacks/logging_callback.py +15 -8
- mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py +19 -12
- mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py +22 -15
- mlrun/frameworks/pytorch/callbacks_handler.py +36 -30
- mlrun/frameworks/pytorch/mlrun_interface.py +17 -17
- mlrun/frameworks/pytorch/model_handler.py +21 -17
- mlrun/frameworks/pytorch/model_server.py +13 -9
- mlrun/frameworks/sklearn/__init__.py +19 -18
- mlrun/frameworks/sklearn/estimator.py +2 -2
- mlrun/frameworks/sklearn/metric.py +3 -3
- mlrun/frameworks/sklearn/metrics_library.py +8 -6
- mlrun/frameworks/sklearn/mlrun_interface.py +3 -2
- mlrun/frameworks/sklearn/model_handler.py +4 -3
- mlrun/frameworks/tf_keras/__init__.py +11 -12
- mlrun/frameworks/tf_keras/callbacks/__init__.py +1 -2
- mlrun/frameworks/tf_keras/callbacks/logging_callback.py +17 -14
- mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py +15 -12
- mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py +21 -18
- mlrun/frameworks/tf_keras/model_handler.py +17 -13
- mlrun/frameworks/tf_keras/model_server.py +12 -8
- mlrun/frameworks/xgboost/__init__.py +19 -18
- mlrun/frameworks/xgboost/model_handler.py +13 -9
- mlrun/launcher/base.py +3 -4
- mlrun/launcher/local.py +1 -1
- mlrun/launcher/remote.py +1 -1
- mlrun/lists.py +4 -3
- mlrun/model.py +117 -46
- mlrun/model_monitoring/__init__.py +4 -4
- mlrun/model_monitoring/api.py +72 -59
- mlrun/model_monitoring/applications/_application_steps.py +17 -17
- mlrun/model_monitoring/applications/base.py +165 -6
- mlrun/model_monitoring/applications/context.py +88 -37
- mlrun/model_monitoring/applications/evidently_base.py +0 -1
- mlrun/model_monitoring/applications/histogram_data_drift.py +43 -21
- mlrun/model_monitoring/applications/results.py +55 -3
- mlrun/model_monitoring/controller.py +207 -239
- mlrun/model_monitoring/db/__init__.py +0 -2
- mlrun/model_monitoring/db/_schedules.py +156 -0
- mlrun/model_monitoring/db/_stats.py +189 -0
- mlrun/model_monitoring/db/tsdb/base.py +78 -25
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +61 -6
- mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py +33 -0
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +255 -29
- mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +1 -0
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +78 -17
- mlrun/model_monitoring/helpers.py +151 -49
- mlrun/model_monitoring/stream_processing.py +99 -283
- mlrun/model_monitoring/tracking_policy.py +10 -3
- mlrun/model_monitoring/writer.py +48 -36
- mlrun/package/__init__.py +3 -6
- mlrun/package/context_handler.py +1 -1
- mlrun/package/packager.py +12 -9
- mlrun/package/packagers/__init__.py +0 -2
- mlrun/package/packagers/default_packager.py +14 -11
- mlrun/package/packagers/numpy_packagers.py +16 -7
- mlrun/package/packagers/pandas_packagers.py +18 -18
- mlrun/package/packagers/python_standard_library_packagers.py +25 -11
- mlrun/package/packagers_manager.py +31 -14
- mlrun/package/utils/__init__.py +0 -3
- mlrun/package/utils/_pickler.py +6 -6
- mlrun/platforms/__init__.py +47 -16
- mlrun/platforms/iguazio.py +4 -1
- mlrun/projects/operations.py +27 -27
- mlrun/projects/pipelines.py +71 -36
- mlrun/projects/project.py +890 -220
- mlrun/run.py +53 -10
- mlrun/runtimes/__init__.py +1 -3
- mlrun/runtimes/base.py +15 -11
- mlrun/runtimes/daskjob.py +9 -9
- mlrun/runtimes/generators.py +2 -1
- mlrun/runtimes/kubejob.py +4 -5
- mlrun/runtimes/mounts.py +572 -0
- mlrun/runtimes/mpijob/__init__.py +0 -2
- mlrun/runtimes/mpijob/abstract.py +7 -6
- mlrun/runtimes/nuclio/api_gateway.py +7 -7
- mlrun/runtimes/nuclio/application/application.py +11 -11
- mlrun/runtimes/nuclio/function.py +19 -17
- mlrun/runtimes/nuclio/serving.py +18 -13
- mlrun/runtimes/pod.py +154 -45
- mlrun/runtimes/remotesparkjob.py +3 -2
- mlrun/runtimes/sparkjob/__init__.py +0 -2
- mlrun/runtimes/sparkjob/spark3job.py +21 -11
- mlrun/runtimes/utils.py +6 -5
- mlrun/serving/merger.py +6 -4
- mlrun/serving/remote.py +18 -17
- mlrun/serving/routers.py +185 -172
- mlrun/serving/server.py +7 -1
- mlrun/serving/states.py +97 -78
- mlrun/serving/utils.py +13 -2
- mlrun/serving/v1_serving.py +3 -2
- mlrun/serving/v2_serving.py +105 -72
- mlrun/track/__init__.py +1 -1
- mlrun/track/tracker.py +2 -2
- mlrun/track/trackers/mlflow_tracker.py +6 -5
- mlrun/utils/async_http.py +1 -1
- mlrun/utils/clones.py +1 -1
- mlrun/utils/helpers.py +63 -19
- mlrun/utils/logger.py +106 -4
- mlrun/utils/notifications/notification/__init__.py +22 -19
- mlrun/utils/notifications/notification/base.py +33 -14
- mlrun/utils/notifications/notification/console.py +6 -6
- mlrun/utils/notifications/notification/git.py +11 -11
- mlrun/utils/notifications/notification/ipython.py +10 -9
- mlrun/utils/notifications/notification/mail.py +176 -0
- mlrun/utils/notifications/notification/slack.py +6 -6
- mlrun/utils/notifications/notification/webhook.py +6 -6
- mlrun/utils/notifications/notification_pusher.py +86 -44
- mlrun/utils/regex.py +11 -2
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.1rc10.dist-info → mlrun-1.8.0rc11.dist-info}/METADATA +29 -24
- mlrun-1.8.0rc11.dist-info/RECORD +347 -0
- mlrun/model_monitoring/db/stores/__init__.py +0 -136
- mlrun/model_monitoring/db/stores/base/store.py +0 -213
- mlrun/model_monitoring/db/stores/sqldb/__init__.py +0 -13
- mlrun/model_monitoring/db/stores/sqldb/models/__init__.py +0 -71
- mlrun/model_monitoring/db/stores/sqldb/models/base.py +0 -190
- mlrun/model_monitoring/db/stores/sqldb/models/mysql.py +0 -103
- mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py +0 -40
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py +0 -659
- mlrun/model_monitoring/db/stores/v3io_kv/__init__.py +0 -13
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +0 -726
- mlrun/model_monitoring/model_endpoint.py +0 -118
- mlrun-1.7.1rc10.dist-info/RECORD +0 -351
- {mlrun-1.7.1rc10.dist-info → mlrun-1.8.0rc11.dist-info}/LICENSE +0 -0
- {mlrun-1.7.1rc10.dist-info → mlrun-1.8.0rc11.dist-info}/WHEEL +0 -0
- {mlrun-1.7.1rc10.dist-info → mlrun-1.8.0rc11.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.1rc10.dist-info → mlrun-1.8.0rc11.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.8.0rc11
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -23,35 +23,38 @@ Description-Content-Type: text/markdown
|
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
Requires-Dist: urllib3<1.27,>=1.26.9
|
|
25
25
|
Requires-Dist: GitPython>=3.1.41,~=3.1
|
|
26
|
-
Requires-Dist: aiohttp
|
|
26
|
+
Requires-Dist: aiohttp~=3.10.0
|
|
27
27
|
Requires-Dist: aiohttp-retry~=2.8.0
|
|
28
28
|
Requires-Dist: click~=8.1
|
|
29
29
|
Requires-Dist: nest-asyncio~=1.0
|
|
30
30
|
Requires-Dist: ipython~=8.10
|
|
31
|
-
Requires-Dist: nuclio-jupyter~=0.
|
|
32
|
-
Requires-Dist: numpy<1.27.0,>=1.
|
|
31
|
+
Requires-Dist: nuclio-jupyter~=0.11.1
|
|
32
|
+
Requires-Dist: numpy<1.27.0,>=1.26.4
|
|
33
33
|
Requires-Dist: pandas<2.2,>=1.2
|
|
34
34
|
Requires-Dist: pyarrow<18,>=10.0
|
|
35
|
-
Requires-Dist: pyyaml<7,>=
|
|
35
|
+
Requires-Dist: pyyaml<7,>=6.0.2
|
|
36
36
|
Requires-Dist: requests~=2.32
|
|
37
37
|
Requires-Dist: tabulate~=0.8.6
|
|
38
38
|
Requires-Dist: v3io~=0.6.9
|
|
39
|
-
Requires-Dist: pydantic
|
|
39
|
+
Requires-Dist: pydantic>=1.10.15
|
|
40
40
|
Requires-Dist: mergedeep~=1.3
|
|
41
|
-
Requires-Dist: v3io-frames~=0.10.14
|
|
41
|
+
Requires-Dist: v3io-frames~=0.10.14; python_version < "3.11"
|
|
42
|
+
Requires-Dist: v3io-frames!=0.11.*,!=0.12.*,>=0.10.14; python_version >= "3.11"
|
|
42
43
|
Requires-Dist: semver~=3.0
|
|
43
44
|
Requires-Dist: dependency-injector~=4.41
|
|
44
45
|
Requires-Dist: fsspec<2024.7,>=2023.9.2
|
|
45
46
|
Requires-Dist: v3iofs~=0.1.17
|
|
46
|
-
Requires-Dist: storey~=1.
|
|
47
|
+
Requires-Dist: storey~=1.8.0
|
|
47
48
|
Requires-Dist: inflection~=0.5.0
|
|
48
|
-
Requires-Dist: python-dotenv~=
|
|
49
|
-
Requires-Dist: setuptools
|
|
49
|
+
Requires-Dist: python-dotenv~=1.0
|
|
50
|
+
Requires-Dist: setuptools>=75.2
|
|
50
51
|
Requires-Dist: deprecated~=1.2
|
|
51
52
|
Requires-Dist: jinja2>=3.1.3,~=3.1
|
|
52
53
|
Requires-Dist: orjson<4,>=3.9.15
|
|
53
|
-
Requires-Dist: mlrun-pipelines-kfp-common~=0.
|
|
54
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.
|
|
54
|
+
Requires-Dist: mlrun-pipelines-kfp-common~=0.2.3
|
|
55
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.2.3; python_version < "3.11"
|
|
56
|
+
Requires-Dist: docstring_parser~=0.16
|
|
57
|
+
Requires-Dist: aiosmtplib~=3.0
|
|
55
58
|
Provides-Extra: s3
|
|
56
59
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "s3"
|
|
57
60
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "s3"
|
|
@@ -100,18 +103,19 @@ Requires-Dist: taoswswrap~=0.2.0; extra == "tdengine"
|
|
|
100
103
|
Provides-Extra: snowflake
|
|
101
104
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "snowflake"
|
|
102
105
|
Provides-Extra: api
|
|
103
|
-
Requires-Dist: uvicorn~=0.
|
|
106
|
+
Requires-Dist: uvicorn~=0.32.1; extra == "api"
|
|
104
107
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "api"
|
|
105
|
-
Requires-Dist: apscheduler
|
|
108
|
+
Requires-Dist: apscheduler<4,>=3.11; extra == "api"
|
|
106
109
|
Requires-Dist: objgraph~=3.6; extra == "api"
|
|
107
|
-
Requires-Dist: igz-mgmt~=0.
|
|
110
|
+
Requires-Dist: igz-mgmt~=0.4.1; extra == "api"
|
|
108
111
|
Requires-Dist: humanfriendly~=10.0; extra == "api"
|
|
109
|
-
Requires-Dist: fastapi~=0.
|
|
112
|
+
Requires-Dist: fastapi~=0.115.6; extra == "api"
|
|
110
113
|
Requires-Dist: sqlalchemy~=1.4; extra == "api"
|
|
111
|
-
Requires-Dist: pymysql~=1.
|
|
112
|
-
Requires-Dist: alembic~=1.
|
|
114
|
+
Requires-Dist: pymysql~=1.1; extra == "api"
|
|
115
|
+
Requires-Dist: alembic~=1.14; extra == "api"
|
|
113
116
|
Requires-Dist: timelength~=1.1; extra == "api"
|
|
114
117
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "api"
|
|
118
|
+
Requires-Dist: aiosmtplib~=3.0; extra == "api"
|
|
115
119
|
Provides-Extra: all
|
|
116
120
|
Requires-Dist: adlfs==2023.9.0; extra == "all"
|
|
117
121
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "all"
|
|
@@ -176,8 +180,9 @@ Requires-Dist: taoswswrap~=0.2.0; extra == "complete"
|
|
|
176
180
|
Provides-Extra: complete-api
|
|
177
181
|
Requires-Dist: adlfs==2023.9.0; extra == "complete-api"
|
|
178
182
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete-api"
|
|
179
|
-
Requires-Dist:
|
|
180
|
-
Requires-Dist:
|
|
183
|
+
Requires-Dist: aiosmtplib~=3.0; extra == "complete-api"
|
|
184
|
+
Requires-Dist: alembic~=1.14; extra == "complete-api"
|
|
185
|
+
Requires-Dist: apscheduler<4,>=3.11; extra == "complete-api"
|
|
181
186
|
Requires-Dist: avro~=1.11; extra == "complete-api"
|
|
182
187
|
Requires-Dist: azure-core~=1.24; extra == "complete-api"
|
|
183
188
|
Requires-Dist: azure-identity~=1.5; extra == "complete-api"
|
|
@@ -187,7 +192,7 @@ Requires-Dist: dask-kubernetes~=0.11.0; extra == "complete-api"
|
|
|
187
192
|
Requires-Dist: dask~=2023.12.1; extra == "complete-api"
|
|
188
193
|
Requires-Dist: databricks-sdk~=0.13.0; extra == "complete-api"
|
|
189
194
|
Requires-Dist: distributed~=2023.12.1; extra == "complete-api"
|
|
190
|
-
Requires-Dist: fastapi~=0.
|
|
195
|
+
Requires-Dist: fastapi~=0.115.6; extra == "complete-api"
|
|
191
196
|
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete-api"
|
|
192
197
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete-api"
|
|
193
198
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete-api"
|
|
@@ -195,7 +200,7 @@ Requires-Dist: google-cloud-storage==2.14.0; extra == "complete-api"
|
|
|
195
200
|
Requires-Dist: google-cloud==0.34; extra == "complete-api"
|
|
196
201
|
Requires-Dist: graphviz~=0.20.0; extra == "complete-api"
|
|
197
202
|
Requires-Dist: humanfriendly~=10.0; extra == "complete-api"
|
|
198
|
-
Requires-Dist: igz-mgmt~=0.
|
|
203
|
+
Requires-Dist: igz-mgmt~=0.4.1; extra == "complete-api"
|
|
199
204
|
Requires-Dist: kafka-python~=2.0; extra == "complete-api"
|
|
200
205
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "complete-api"
|
|
201
206
|
Requires-Dist: mlflow~=2.8; extra == "complete-api"
|
|
@@ -204,7 +209,7 @@ Requires-Dist: objgraph~=3.6; extra == "complete-api"
|
|
|
204
209
|
Requires-Dist: oss2==2.18.1; extra == "complete-api"
|
|
205
210
|
Requires-Dist: ossfs==2023.12.0; extra == "complete-api"
|
|
206
211
|
Requires-Dist: plotly~=5.23; extra == "complete-api"
|
|
207
|
-
Requires-Dist: pymysql~=1.
|
|
212
|
+
Requires-Dist: pymysql~=1.1; extra == "complete-api"
|
|
208
213
|
Requires-Dist: pyopenssl>=23; extra == "complete-api"
|
|
209
214
|
Requires-Dist: redis~=4.3; extra == "complete-api"
|
|
210
215
|
Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "complete-api"
|
|
@@ -213,7 +218,7 @@ Requires-Dist: sqlalchemy~=1.4; extra == "complete-api"
|
|
|
213
218
|
Requires-Dist: taos-ws-py==0.3.2; extra == "complete-api"
|
|
214
219
|
Requires-Dist: taoswswrap~=0.2.0; extra == "complete-api"
|
|
215
220
|
Requires-Dist: timelength~=1.1; extra == "complete-api"
|
|
216
|
-
Requires-Dist: uvicorn~=0.
|
|
221
|
+
Requires-Dist: uvicorn~=0.32.1; extra == "complete-api"
|
|
217
222
|
|
|
218
223
|
<a id="top"></a>
|
|
219
224
|
[](https://github.com/mlrun/mlrun/actions/workflows/build.yaml?query=branch%3Adevelopment)
|
|
@@ -0,0 +1,347 @@
|
|
|
1
|
+
mlrun/__init__.py,sha256=7vuMpUiigXXDrghLRq680LKWy1faC0kQyGCZb_7cwyE,7473
|
|
2
|
+
mlrun/__main__.py,sha256=o65gXHhmFA9GV_n2mqmAO80nW3MAwo_s7j80IKgCzRE,45949
|
|
3
|
+
mlrun/config.py,sha256=HFQv1Qx3swxEW-QDITkakMrx6IcEEwApmkd1o38PDAI,70992
|
|
4
|
+
mlrun/errors.py,sha256=5raKb1PXQpTcIvWQ4sr1qn2IS7P_GT_FydBJ0dXkVuc,8097
|
|
5
|
+
mlrun/execution.py,sha256=GDHVdltjcSOtqPlhoAuXQAhvYhc8PhEbsnCIxONSCjg,47435
|
|
6
|
+
mlrun/features.py,sha256=ReBaNGsBYXqcbgI012n-SO_j6oHIbk_Vpv0CGPXbUmo,15842
|
|
7
|
+
mlrun/k8s_utils.py,sha256=mRQMs6NzPq36vx1n5_2BfFapXysc8wv3NcrZ77_2ANA,8949
|
|
8
|
+
mlrun/lists.py,sha256=1hFv3Iyu5DVX1kdBGJmwUoY0CqrzauhKdSq9g3piHb4,8442
|
|
9
|
+
mlrun/model.py,sha256=Qmj0UH5H0GKd6ZwxugxCvoqSP3O5q0LV0wSlHIzkyIM,85312
|
|
10
|
+
mlrun/render.py,sha256=940H9fBBFeghH4dlifbURvtjlvw4GlWdAXezN6ky4rI,13275
|
|
11
|
+
mlrun/run.py,sha256=ht5tg-Sge_IYHILd55ym_HJTSmimu6sjBvSc5JzVqJc,45151
|
|
12
|
+
mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
|
|
13
|
+
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
|
+
mlrun/alerts/alert.py,sha256=mTROlDXzQw5gyWBFaUnykai3wpvjmgRmo28p0ytbzIU,15930
|
|
15
|
+
mlrun/api/schemas/__init__.py,sha256=fEWH4I8hr5AdRJ7yoW44RlFB6NHkYDxyomP5J6ct1z4,14248
|
|
16
|
+
mlrun/artifacts/__init__.py,sha256=ofC2extBCOC1wg1YtdTzWzH3eeG_f-sFBUkHjYtZJpk,1175
|
|
17
|
+
mlrun/artifacts/base.py,sha256=nz2ZqC74JGfWN0M6_hOXXQj3bXSTxNp4eUgvWHVcdvY,29979
|
|
18
|
+
mlrun/artifacts/dataset.py,sha256=QTot5vCgLHatlIWwNnKbWdZ8HHTxaZ7wk4gWQDoqQ2k,16655
|
|
19
|
+
mlrun/artifacts/document.py,sha256=yfJB3GHx2bD9efmAYYI5e6xbHAEO8xdiP1Xm6W1NRi8,13988
|
|
20
|
+
mlrun/artifacts/manager.py,sha256=bXb70mKF6wIGs7syCiFfGnjalqx4g9bO_J5DaVzUUKw,16163
|
|
21
|
+
mlrun/artifacts/model.py,sha256=jeOjUq_iZSHoNqlPyGgOz6acwje1Yqpg1yZwF9GbyG8,21615
|
|
22
|
+
mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
|
|
23
|
+
mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
24
|
+
mlrun/common/constants.py,sha256=14xMUX9C5BB-LxsTlMTJQf_Xz2DyRjaK9yeR5dadcDU,3426
|
|
25
|
+
mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
|
|
26
|
+
mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
|
|
27
|
+
mlrun/common/types.py,sha256=APVFvumnHpCG-yXlt6OSioMfkyT-DADPiW3dGG3dUFQ,1057
|
|
28
|
+
mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
29
|
+
mlrun/common/db/sql_session.py,sha256=J6b-0xrnFb-8n_xdksPXeA8kArSMfAiSDN4n7iOhtus,2708
|
|
30
|
+
mlrun/common/formatters/__init__.py,sha256=lHcGFKKXx4vcCgJ0n2KHYD5sY5p5MvPz3DO9RbUoEOM,891
|
|
31
|
+
mlrun/common/formatters/artifact.py,sha256=_XIBWSpglDXRVflyH_xO3NSi4JvMzoy0lOC207xhvqk,1419
|
|
32
|
+
mlrun/common/formatters/base.py,sha256=LHwWWnQJCmvlnOCCmG8YtJ_xzs0xBI8PujYDL5Ky9H4,4101
|
|
33
|
+
mlrun/common/formatters/feature_set.py,sha256=1RdIkPRYTi8wGHNcAGTa3aCcj8cNV-GKk8IeMzvc0jE,1496
|
|
34
|
+
mlrun/common/formatters/function.py,sha256=-DnfHThAcoizqJhTELeAltjsmlKRLnCaa1uKbWI0Eaw,1495
|
|
35
|
+
mlrun/common/formatters/model_endpoint.py,sha256=MQPNpj6lQbitvsT9tIm-XZbH18HDv0X4OR3SAG5MPDI,906
|
|
36
|
+
mlrun/common/formatters/pipeline.py,sha256=oATD3znsuq3s7LipPnZivDPelTX0hJ0MFeeXOQmwwLw,1762
|
|
37
|
+
mlrun/common/formatters/project.py,sha256=0G4lhcTAsxQCxd40dKC4894cMH8nKt03BcGyp9wQO14,2102
|
|
38
|
+
mlrun/common/formatters/run.py,sha256=Gcf9lVDqxPMNfWcPX0RJasjTC_N_U0yTBkQ02jOPJ7A,1062
|
|
39
|
+
mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
40
|
+
mlrun/common/model_monitoring/helpers.py,sha256=fg56lF3ZP8d5v_vA5OFLAleFw83w35dWrkURYhOng00,3676
|
|
41
|
+
mlrun/common/runtimes/constants.py,sha256=Mok3m9Rv182TTMp7uYNfWalm9Xcz86yva-4fTxfMOPI,10988
|
|
42
|
+
mlrun/common/schemas/__init__.py,sha256=P7PbmDMHHLuppBThm1oH_9LznHaO76R_GlOx9pe72Zk,5326
|
|
43
|
+
mlrun/common/schemas/alert.py,sha256=G9lFTXFYDor-RVLpJxMorIPlLWr_-GYCFKRN9DkKwXs,10124
|
|
44
|
+
mlrun/common/schemas/api_gateway.py,sha256=3a0QxECLmoDkD5IiOKtXJL-uiWB26Hg55WMA3nULYuI,7127
|
|
45
|
+
mlrun/common/schemas/artifact.py,sha256=i29BeZ4MoOLMST3WlApX1Nli0vy-M7Zj_oTm8jySlw4,3805
|
|
46
|
+
mlrun/common/schemas/auth.py,sha256=AGbBNvQq_vcvhX_NLqbT-QPHL4BAJMB3xwBXW7cFvpo,6761
|
|
47
|
+
mlrun/common/schemas/background_task.py,sha256=ofWRAQGGEkXEu79Dbw7tT_5GPolR09Lc3Ebg2r0fT24,1728
|
|
48
|
+
mlrun/common/schemas/client_spec.py,sha256=j75fSEOm2bg4XYMKMzKpFVCcNBSv2ndY2J08jfMHerM,2820
|
|
49
|
+
mlrun/common/schemas/clusterization_spec.py,sha256=LAWOL6V3E5hAt8tKmnP3DOJcKG1FQqp8Z-x8szPkf1I,894
|
|
50
|
+
mlrun/common/schemas/common.py,sha256=3GcfkT7yOWmrieCSrjOJ_4aXkiUWwLd_kxqMDP1-_hw,3540
|
|
51
|
+
mlrun/common/schemas/constants.py,sha256=LfoSq8d2n7TMrM0IvxGylOtVEJGvvDVlK2-Yau-Tt30,7245
|
|
52
|
+
mlrun/common/schemas/datastore_profile.py,sha256=THiStw9D69JZbI3cRCGQvDCHPlUPQ8-Awq8M93LztmM,753
|
|
53
|
+
mlrun/common/schemas/events.py,sha256=ROHJLo_fqYjc96pek7yhAUPpPRIuAR76lwxvNz8LIr8,1026
|
|
54
|
+
mlrun/common/schemas/feature_store.py,sha256=MedWA6ZpiDdgruxl2rDS-KdPRHnl1fSWL5QqZRVFguo,4803
|
|
55
|
+
mlrun/common/schemas/frontend_spec.py,sha256=fVfaDHARxZv1ow5f91NXI-W8tdxHQzE2m_D5-cU-KI0,2623
|
|
56
|
+
mlrun/common/schemas/function.py,sha256=yzPGzpSMmoSwfl1Q3n_rPKdVZi_4bxtySrNsFUMioOs,4850
|
|
57
|
+
mlrun/common/schemas/http.py,sha256=1PtYFhF6sqLSBRcuPMtYcUGmroBhaleqLmYidSdL9LM,705
|
|
58
|
+
mlrun/common/schemas/hub.py,sha256=L0MJp8Kg7NmcWXygnHiDZ8WpTHxEO06M7AtBuKEO0rg,4119
|
|
59
|
+
mlrun/common/schemas/k8s.py,sha256=Co4znGaCa1uX-2dsWSrZhy_OEYWoBCGWaDd1HXkz-8g,1404
|
|
60
|
+
mlrun/common/schemas/memory_reports.py,sha256=boLyk8RRhfRLv0JCYYWxcTxobKzqRzdtSY2zajhF6_c,901
|
|
61
|
+
mlrun/common/schemas/notification.py,sha256=WDdGhFII--zII5XebfkTdse8reMgKeVCYXlgeH7M9WE,5430
|
|
62
|
+
mlrun/common/schemas/object.py,sha256=0vftHJcicAm87Hfgi_SdyQEqokoZRE4IEHHRPx34hNQ,1983
|
|
63
|
+
mlrun/common/schemas/pagination.py,sha256=8NEmiIkCXw5_sv-lE0MWgWz-WpxhSSn-vBtbPDBOGXc,899
|
|
64
|
+
mlrun/common/schemas/partition.py,sha256=s7607EKe4T_37wxS5kt-j4XFqwWY_90aHBZggAdYeDw,5516
|
|
65
|
+
mlrun/common/schemas/pipeline.py,sha256=HFFtM_fyerkCaDDpTrXJVgYg02SD56SV06ZQ6_WhApc,1435
|
|
66
|
+
mlrun/common/schemas/project.py,sha256=e3glE0HdLLZAbJJn6hKABtFI9L4jrlrQZHmUygXBlzM,6510
|
|
67
|
+
mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
|
|
68
|
+
mlrun/common/schemas/runs.py,sha256=-OJOQiorFUiWgy2DKLGovWr-xbMTJ1BC3IIVXCdyp94,1274
|
|
69
|
+
mlrun/common/schemas/runtime_resource.py,sha256=74EGmk1iODg-wV0cn2ew44ZX20nqJMowgj-gNsh0vyU,1569
|
|
70
|
+
mlrun/common/schemas/schedule.py,sha256=LTWdZ4FvKDGkmmfyqKoBQ36VFqnnyIYLnq1I6qrTPyo,4292
|
|
71
|
+
mlrun/common/schemas/secret.py,sha256=CCxFYiPwJtDxwg2VVJH9nUG9cAZ2a34IjeuaWv-BYlc,1487
|
|
72
|
+
mlrun/common/schemas/tag.py,sha256=HRZi5QZ4vVGaCr2AMk9eJgcNiAIXmH4YDc8a4fvF770,893
|
|
73
|
+
mlrun/common/schemas/workflow.py,sha256=rwYzDJYxpE9k4kC88j_eUCmqK4ZsWV_h-_nli7Fs7Ow,2078
|
|
74
|
+
mlrun/common/schemas/model_monitoring/__init__.py,sha256=6gQcNTzCDEd-rDv6qDC5pE78INnV1AHKP9WbysUVNcw,1840
|
|
75
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=h6-_FOG3SeKPDx4lS-ckZkgA3WU_Dl4dtezfIMIi61k,11299
|
|
76
|
+
mlrun/common/schemas/model_monitoring/grafana.py,sha256=Rq10KKOyyUYr7qOQFZfwGZtUim0LY9O0LQ5uc9jmIVQ,1562
|
|
77
|
+
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=5AZE2N4Ptfa5r_xOYMerGrwS_qEelMkKAk13KR1AgRE,10925
|
|
78
|
+
mlrun/data_types/__init__.py,sha256=unRo9GGwCmj0hBKBRsXJ2P4BzpQaddlQTvIrVQaKluI,984
|
|
79
|
+
mlrun/data_types/data_types.py,sha256=0_oKLC6-sXL2_nnaDMP_HSXB3fD1nJAG4J2Jq6sGNNw,4998
|
|
80
|
+
mlrun/data_types/infer.py,sha256=KdaRgWcqvLkuLjXrMuDr3ik6WY7JP5wJO0Yii_Vl5kw,6173
|
|
81
|
+
mlrun/data_types/spark.py,sha256=4fPpqjFCYeFgK_yHhUNM4rT-1Gw9YiXazyjTK7TtbTI,9626
|
|
82
|
+
mlrun/data_types/to_pandas.py,sha256=KOy0FLXPJirsgH6szcC5BI6t70yVDCjuo6LmuYHNTuI,11429
|
|
83
|
+
mlrun/datastore/__init__.py,sha256=ca-9rcmxMimZKq3EHetpptZQ5udkf4O0sm37D7NWaXE,4128
|
|
84
|
+
mlrun/datastore/alibaba_oss.py,sha256=k-OHVe08HjMewlkpsT657CbOiVFAfSq9_EqhCE-k86s,4940
|
|
85
|
+
mlrun/datastore/azure_blob.py,sha256=SzAcHYSXkm8Zpopz2Ea-rWVClH0URocUazcNK04S9W0,12776
|
|
86
|
+
mlrun/datastore/base.py,sha256=Dqg8PqX0TFKHZg27Dgguc3RnQ1GABZiLf87p5ErTqJs,26448
|
|
87
|
+
mlrun/datastore/datastore.py,sha256=frUYYP4i8ZmnY8GNXSgN_3x_exRgRPfxrCtAGEUifEU,9478
|
|
88
|
+
mlrun/datastore/datastore_profile.py,sha256=DOCiN90li7G3kIe6z3vfHxf8iQKS6V_UNai_woeFR80,20884
|
|
89
|
+
mlrun/datastore/dbfs_store.py,sha256=QkDRzwFnvm7CgEg4NuGxes6tBgKDyhX0CiBUvK8c9pk,6568
|
|
90
|
+
mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
|
|
91
|
+
mlrun/datastore/google_cloud_storage.py,sha256=MnToY6irdhBZ8Wcapqnr1Yq2724LAh2uPO7MAtdWfUY,8716
|
|
92
|
+
mlrun/datastore/hdfs.py,sha256=NhxvPojQQDEm0xzB6RcvnD4uLZOxfHHKYWV4gwzG7D4,1928
|
|
93
|
+
mlrun/datastore/inmem.py,sha256=IsM83nn-3CqmGdLzim7i9ZmJwG6ZGhBZGN6_hszWZnE,2951
|
|
94
|
+
mlrun/datastore/redis.py,sha256=QeNMkSz3zQXiXZhFUZcEtViqqbUysGJditbqe5M-J48,5682
|
|
95
|
+
mlrun/datastore/s3.py,sha256=U6487yQP8njrquZWvxHMPm_Q9gGOr4moCYWZ-U87U-c,9046
|
|
96
|
+
mlrun/datastore/snowflake_utils.py,sha256=Wohvnlmq8j1d98RCaknll-iWdZZpSlCrKhUOEy0_-CA,1483
|
|
97
|
+
mlrun/datastore/sources.py,sha256=HQHbaAH7WdBGyeM1WYr3FS5MVSBXu93VOGmJ5At-gsw,49220
|
|
98
|
+
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
99
|
+
mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
|
|
100
|
+
mlrun/datastore/store_resources.py,sha256=PFOMrZ6KH6hBOb0PiO-cHx_kv0UpHu5P2t8_mrR-lS4,6842
|
|
101
|
+
mlrun/datastore/storeytargets.py,sha256=uNYG4nCBD3JIfa51CG4cDe9ryc9oIcqUdUXKvCPB6uE,5086
|
|
102
|
+
mlrun/datastore/targets.py,sha256=QiEK-mHmUt2qnS2yaBSSKgk8CKqsGU-JoQ9kHoW1bvE,80759
|
|
103
|
+
mlrun/datastore/utils.py,sha256=ZDAzz0W16_JcM6Q9h4RoMbdruM9eA6YGlA5dw8gW8Bw,7754
|
|
104
|
+
mlrun/datastore/v3io.py,sha256=QSYBORRLcJTeM9mt0EaWzyLcdmzrPkqrF7k5uLTam5U,8209
|
|
105
|
+
mlrun/datastore/vectorstore.py,sha256=GUX9G09uCHfERVYAyKc1UdlipadnXU8gEZ-VzF0F0A4,9559
|
|
106
|
+
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
107
|
+
mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
|
|
108
|
+
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
109
|
+
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
110
|
+
mlrun/db/base.py,sha256=asefMW3HtMXHEnbDO9XH-Ey4teY25V0pSifUoHbnE8Y,29267
|
|
111
|
+
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
112
|
+
mlrun/db/httpdb.py,sha256=lbFxfwZbGhJF7_Cv2vhfSFKAoo7x0U4xA8DV4zpWa6Y,224105
|
|
113
|
+
mlrun/db/nopdb.py,sha256=xJbTuB_GQg_bGvi_0YJjVqBHn-7DbCP6ExwQFLtsOSg,26275
|
|
114
|
+
mlrun/feature_store/__init__.py,sha256=AVnY2AFUNc2dKxLLUMx2K3Wo1eGviv0brDcYlDnmtf4,1506
|
|
115
|
+
mlrun/feature_store/api.py,sha256=qkojZpzqGAn3r9ww0ynBRKOs8ji8URaK4DSYD4SE-CE,50395
|
|
116
|
+
mlrun/feature_store/common.py,sha256=Z7USI-d1fo0iwBMsqMBtJflJfyuiV3BLoDXQPSAoBAs,12826
|
|
117
|
+
mlrun/feature_store/feature_set.py,sha256=lakkuKYAvYDJKDTE0xJa5n1nEipMPwpLki-J3CMk0mQ,56221
|
|
118
|
+
mlrun/feature_store/feature_vector.py,sha256=9EJXdnPklwKdkYDKV0hxByIjd59K6R2S-DnP7jZlwoY,44602
|
|
119
|
+
mlrun/feature_store/ingestion.py,sha256=kT3Hbz1PBjsJd-GPBm2ap0sg9-fiXxaSXoEIo-dOXpU,11361
|
|
120
|
+
mlrun/feature_store/steps.py,sha256=JoJXeZxE5NFTlkOuAsVqMZs8-lQf2A76pt4RNYSSHvQ,29317
|
|
121
|
+
mlrun/feature_store/retrieval/__init__.py,sha256=bwA4copPpLQi8fyoUAYtOyrlw0-6f3-Knct8GbJSvRg,1282
|
|
122
|
+
mlrun/feature_store/retrieval/base.py,sha256=XupWdfxEsqElOvpCPEE-sKaE3EU_AhNCS1ANBUB9nS8,30456
|
|
123
|
+
mlrun/feature_store/retrieval/dask_merger.py,sha256=t60xciYp6StUQLEyFyI4JK5NpWkdBy2MGCs6beimaWU,5575
|
|
124
|
+
mlrun/feature_store/retrieval/job.py,sha256=_EltjdbAuQgBUTNzGdlz58Ite1QqFBCnX61Kr1VdW04,8631
|
|
125
|
+
mlrun/feature_store/retrieval/local_merger.py,sha256=jM-8ta44PeNUc1cKMPs-TxrO9t8pXbwu_Tw8MZrLxUY,4513
|
|
126
|
+
mlrun/feature_store/retrieval/spark_merger.py,sha256=XTMK40Y0bUli1Z9KwtYmMSQ8a4WOHEHzIq9uzk1mfc4,10548
|
|
127
|
+
mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
|
|
128
|
+
mlrun/frameworks/__init__.py,sha256=f-iaBYrQ3Qtu_Jh482ZosSZppI0M_JeeXuDhoLcZTBk,641
|
|
129
|
+
mlrun/frameworks/parallel_coordinates.py,sha256=UuZ0b0ACsaaH0rDya_0YMOWwaH6zhEyDIssOwEgqOAo,11588
|
|
130
|
+
mlrun/frameworks/_common/__init__.py,sha256=1ovfHxNW8V9ERVVZx8lPFVGBtsXHaHli7pZPR-Ixn8g,860
|
|
131
|
+
mlrun/frameworks/_common/artifacts_library.py,sha256=O0z74o3Z6k5NruTqXMLDugZ6midOmSFqNlt7WhYIRP8,8517
|
|
132
|
+
mlrun/frameworks/_common/mlrun_interface.py,sha256=gjNV_siKyJ7xZdwoH8uvRmPuuQrc8WjnhoXr3GUCkAc,21093
|
|
133
|
+
mlrun/frameworks/_common/model_handler.py,sha256=0hsLFxMNaLhGIeXCMeHqUp7p2L9lJgcQKI4b7ef8CLQ,55596
|
|
134
|
+
mlrun/frameworks/_common/plan.py,sha256=Yr98b5lkCV0K0u_krnU8gZJiXj14xfrFjJ6xD6QJdn0,3444
|
|
135
|
+
mlrun/frameworks/_common/producer.py,sha256=R67XRbiz1bk0XNvuW7ybbA4v6o6Q5qzD0h3AkC-tM1A,5766
|
|
136
|
+
mlrun/frameworks/_common/utils.py,sha256=NqoKbgj6UGPMBNhpK6mkKK4GOt5ko1lDqExFhQm9oEc,9131
|
|
137
|
+
mlrun/frameworks/_dl_common/__init__.py,sha256=bwGbKOynYW1Ohl7890yKH32Nr5GqX55P5nzLKMJDJiI,648
|
|
138
|
+
mlrun/frameworks/_dl_common/model_handler.py,sha256=GUAcDklhAxxH9e9xZPnqjjUGQGeXIHvSdw_SH-r9ACs,1151
|
|
139
|
+
mlrun/frameworks/_dl_common/utils.py,sha256=eVjqSHJh2OSKq7s1BMyCVrZ9VIrkAKaD1Y0wcTA-QXU,996
|
|
140
|
+
mlrun/frameworks/_dl_common/loggers/__init__.py,sha256=ey4GGD6wm03ri70pGX7Ow-S-NU8UBA3vKa9FBh1d1d0,685
|
|
141
|
+
mlrun/frameworks/_dl_common/loggers/logger.py,sha256=wDR60HUeS7CETcTjefO8JodjqefZby9fSeZCeAtzd3U,11477
|
|
142
|
+
mlrun/frameworks/_dl_common/loggers/mlrun_logger.py,sha256=19BllrT6Sre049gDOFziZGLkl2DhNuhhNLTnUL5UvXI,14788
|
|
143
|
+
mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py,sha256=ii28ZdSxW-XS8qTljAVCyjZYev0V-RuOJ-BG5Z7ImPI,27876
|
|
144
|
+
mlrun/frameworks/_ml_common/__init__.py,sha256=kXyw4g8e8qU0OWElHo6lmIpN16vhIqayb6nVDC9tr50,854
|
|
145
|
+
mlrun/frameworks/_ml_common/artifacts_library.py,sha256=eHCrc43NjLYSOcixiW31SQ-SoxAvBBNf2W5Xb-4W48U,3145
|
|
146
|
+
mlrun/frameworks/_ml_common/model_handler.py,sha256=POnOECT7k6qD6lmXUh2dH7-3eMeDIFef8a1vwTetNhI,17095
|
|
147
|
+
mlrun/frameworks/_ml_common/pkl_model_server.py,sha256=NbaEveUcpNXsiJIlc7kdeYfjcVPsTs9blsygxtAXB0k,2717
|
|
148
|
+
mlrun/frameworks/_ml_common/plan.py,sha256=B1jiFpGAZeYDLEXlY5dne_GCoF4os4E0TtnfELsFNsc,4864
|
|
149
|
+
mlrun/frameworks/_ml_common/producer.py,sha256=5sCFmr38zg_ZTZUvukVti0-z2VP6d-vBhQbIOEPwJf0,4061
|
|
150
|
+
mlrun/frameworks/_ml_common/utils.py,sha256=_PGPTG4uqk4tYjtu-X-0qInMgYEiN_UxYDG4GsPplYo,10477
|
|
151
|
+
mlrun/frameworks/_ml_common/loggers/__init__.py,sha256=guo4L6Dntr_M-hzm2fPh1DoGkL2wmCuxqytKHf-rYAw,635
|
|
152
|
+
mlrun/frameworks/_ml_common/loggers/logger.py,sha256=EpC4hQQYODG4Kc5LtcRWRfyzFMv9FYVZEXPIFloAB7A,5630
|
|
153
|
+
mlrun/frameworks/_ml_common/loggers/mlrun_logger.py,sha256=75R42-ofzdLtfxjOZToIH09nYj93Xi_6YT3ru00XVqo,6406
|
|
154
|
+
mlrun/frameworks/_ml_common/plans/__init__.py,sha256=qasoseYqCf_dxne9kywLtpASBqd6831gtl4g5VjkjHM,820
|
|
155
|
+
mlrun/frameworks/_ml_common/plans/calibration_curve_plan.py,sha256=KRLc6qRw7qb0aQvEUCvyQ1-NB3YjR5EmkhAgmBaPHd8,4894
|
|
156
|
+
mlrun/frameworks/_ml_common/plans/confusion_matrix_plan.py,sha256=dYzu6hm44CwltgrAl0Tbik-tuSI3FuGfQuzCWfExmNE,6069
|
|
157
|
+
mlrun/frameworks/_ml_common/plans/dataset_plan.py,sha256=KN1o-3R0QCJLRpe2-Z4fh37S-rSIXma31TRowFnS_pk,6641
|
|
158
|
+
mlrun/frameworks/_ml_common/plans/feature_importance_plan.py,sha256=5tT_BZNfv4ngoeGS6PE_goqNttYw2LqUZEbanrXHIHE,5285
|
|
159
|
+
mlrun/frameworks/_ml_common/plans/roc_curve_plan.py,sha256=EJP0bVlwX0NIo8mwOQ9hEXZ7ZVLQupj002vxr2zgyCc,7003
|
|
160
|
+
mlrun/frameworks/auto_mlrun/__init__.py,sha256=lhk2SpPecVQ1jOuEnViKWQeXK_LLWUUg1MAkoBrNm60,604
|
|
161
|
+
mlrun/frameworks/auto_mlrun/auto_mlrun.py,sha256=4h7mpx4fdb4Mx06rmM-AO2RK-K-bLuB5dyPgr3hVGNg,24192
|
|
162
|
+
mlrun/frameworks/huggingface/__init__.py,sha256=tFhuz2Q6FgBpWUpRfl5dqhFDTdUYV3EZW4RNVs55V34,619
|
|
163
|
+
mlrun/frameworks/huggingface/model_server.py,sha256=aSNL3Qd3C4WBIiS9apv9aKwHQk4k083PyKHY11h8kpY,6133
|
|
164
|
+
mlrun/frameworks/lgbm/__init__.py,sha256=5JaF-fsfdqE_4hzcub9k9uvV6DpbvnzUn8B4rdt59R4,16192
|
|
165
|
+
mlrun/frameworks/lgbm/model_handler.py,sha256=4WC4NlZIQiU265LYYEccxiB2ZK-tUJMu1sF4qCsjsQg,13946
|
|
166
|
+
mlrun/frameworks/lgbm/model_server.py,sha256=gTmnMMDPc7Tp_R68wCfJxXNkD2mnv0nTasbAqnf_hCc,9270
|
|
167
|
+
mlrun/frameworks/lgbm/utils.py,sha256=5TjnYZkdyGq9zFOmatyoU6fwEtYlK1-nrvXyrMU5amY,8285
|
|
168
|
+
mlrun/frameworks/lgbm/callbacks/__init__.py,sha256=8lbXwJPeevWZr4X2bn9t8wZqDedGaOELeU3aMFdc7I8,755
|
|
169
|
+
mlrun/frameworks/lgbm/callbacks/callback.py,sha256=eOF9_8_AmTybbOE-wN8S47yV4HkfeDHKfSzzvtRBO7E,4048
|
|
170
|
+
mlrun/frameworks/lgbm/callbacks/logging_callback.py,sha256=eCawN7WW61lqRIxaF3UpodAPcJYlNi6dK0_6zBEibfM,5160
|
|
171
|
+
mlrun/frameworks/lgbm/callbacks/mlrun_logging_callback.py,sha256=R-Z98SVCyT583Eo5Ma0va4CF4Mzw3MhSk2e7dPQ6hF4,4110
|
|
172
|
+
mlrun/frameworks/lgbm/mlrun_interfaces/__init__.py,sha256=Lm_n_c0VLFRz8E4L9nQjJEPk7W9RYjjyLt2m9h2KlOo,740
|
|
173
|
+
mlrun/frameworks/lgbm/mlrun_interfaces/booster_mlrun_interface.py,sha256=xRqFtTGPKA0W-G66xJL6SDN3-648Pf0r3Jv-VzwMdrg,1531
|
|
174
|
+
mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py,sha256=BHNdh2OQSXjLKUSuRQTM1Oj_18BK3R_ov1A03YY-51Y,14271
|
|
175
|
+
mlrun/frameworks/lgbm/mlrun_interfaces/model_mlrun_interface.py,sha256=xZbzQSgHZ6GhlpgaW543wE3c-GAw0BAinrfXa106AVo,1333
|
|
176
|
+
mlrun/frameworks/onnx/__init__.py,sha256=OXClzprUne4d5cIq7YyWCH8FGdzMlQYrMtmn8RqkwKw,689
|
|
177
|
+
mlrun/frameworks/onnx/dataset.py,sha256=dAmKt1sZhgx0vgzoXZikznpUfdmIvWTtuEfqVjK3_3c,6115
|
|
178
|
+
mlrun/frameworks/onnx/mlrun_interface.py,sha256=-3KZq0ievpHfuEx6ONyBjp470_hQKfDung-4xgkEZGo,2419
|
|
179
|
+
mlrun/frameworks/onnx/model_handler.py,sha256=JagsM-NOO-Xn-a-3knF6Ne6hPu9l1jCaT5Y-NSg79wA,6189
|
|
180
|
+
mlrun/frameworks/onnx/model_server.py,sha256=SGnkJwVozi0RAr5qeUIDuDEyq_s45J9kYLDpM887ElQ,7103
|
|
181
|
+
mlrun/frameworks/pytorch/__init__.py,sha256=iuQxBeHs58oGty2rza1QfdwOHLxjDqONR7085d2wi_A,22147
|
|
182
|
+
mlrun/frameworks/pytorch/callbacks_handler.py,sha256=Mn9JsFGM13Hi1tRy7RIEjffVUyCh9H8eCkFmEnJw5VQ,28233
|
|
183
|
+
mlrun/frameworks/pytorch/mlrun_interface.py,sha256=7XFMYVJIhojt2RIl3o6T_ysgoTfw8rb47xEF7z1K2hQ,44791
|
|
184
|
+
mlrun/frameworks/pytorch/model_handler.py,sha256=ZDz97kUwufn-TXaLcNC2am5gkyc-986Xn4gXaPmmX3o,22504
|
|
185
|
+
mlrun/frameworks/pytorch/model_server.py,sha256=A8jwibPM_EUiWg-Hvq3MxeJqqTyAEWokiy3wlitDoF8,10228
|
|
186
|
+
mlrun/frameworks/pytorch/utils.py,sha256=kjkLNgzX9lLyEnZlUiBFfoKy_E1_OWj0g-sVYJT_kPQ,4515
|
|
187
|
+
mlrun/frameworks/pytorch/callbacks/__init__.py,sha256=6fknB2bdTg2SgY48DbdeRKd6oio5IPjzHOPwXL3tZ50,794
|
|
188
|
+
mlrun/frameworks/pytorch/callbacks/callback.py,sha256=CEqNCo4h9Xvbt2gkpZECsp-3YiKL3wre-GtBxUxmwlc,11538
|
|
189
|
+
mlrun/frameworks/pytorch/callbacks/logging_callback.py,sha256=5o8HziXvSCNqXOAo5n1h1QQAAW-mstLPeRaD_W-u-oc,23295
|
|
190
|
+
mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py,sha256=A740jhojRs2ghUu7QZyls4MgV6EcXpLgqmTrCNhj7js,9438
|
|
191
|
+
mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py,sha256=05JwyGG1hRtv_l8asIdJqz6DpzPwrEmjBQzd_jDvAwU,26528
|
|
192
|
+
mlrun/frameworks/sklearn/__init__.py,sha256=nRQCvSj0BkM8lKQT1s_CzGhok4lG2g1lRMbww2C49JM,10939
|
|
193
|
+
mlrun/frameworks/sklearn/estimator.py,sha256=t773mHNcvKYTKlP-Iuwlkfwt1VixIcsUcM-80bneog4,5860
|
|
194
|
+
mlrun/frameworks/sklearn/metric.py,sha256=3Bx_R2oFu9E20SanWhHoGm_saoXfoeRszvyp4YHj8V0,7119
|
|
195
|
+
mlrun/frameworks/sklearn/metrics_library.py,sha256=PVPNpljaGglXcw7THLHX-XU0cA8NuuaLvwuj6S-TLJ4,12271
|
|
196
|
+
mlrun/frameworks/sklearn/mlrun_interface.py,sha256=JzHMBQM4sPBJqzb8P-rsG_2RQ_QrXrb8KFj6GNfwrJ0,14339
|
|
197
|
+
mlrun/frameworks/sklearn/model_handler.py,sha256=n0vpsQznva_WVloz7GTnfMGcMDQU_f1bHhUAJ_qxjfE,4753
|
|
198
|
+
mlrun/frameworks/sklearn/utils.py,sha256=Cg_pSxUMvKe8vBSLQor6JM8u9_ccKJg4Rk5EPDzTsVo,1209
|
|
199
|
+
mlrun/frameworks/tf_keras/__init__.py,sha256=OIHqn6Y1_lcB2j5O3hKea4cp0uVtF4Lv96lvAkm_9x4,10553
|
|
200
|
+
mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=1xPUv8YAqxrY3CmkMfWMdp2yEAvk5viiMH6qw41ytSk,16617
|
|
201
|
+
mlrun/frameworks/tf_keras/model_handler.py,sha256=K99NF7WxqmGpzXXssO9mdQb_Swaek_g3aIhZ4GW-k1k,28276
|
|
202
|
+
mlrun/frameworks/tf_keras/model_server.py,sha256=PZW6OBGTJ6bSfHedAhhW8HATbJyp2VaAzSDC02zjyKk,9653
|
|
203
|
+
mlrun/frameworks/tf_keras/utils.py,sha256=_QWk1YmdRybbUB54vsQFE2_WMuAK0g7eR1ozVbMk0Go,4284
|
|
204
|
+
mlrun/frameworks/tf_keras/callbacks/__init__.py,sha256=sd8aWG2jO9mO_noZca0ReVf8X6fSCqO_di1Z-mT8FH8,742
|
|
205
|
+
mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=QGgCDAVtoixy94NdrbCfQLsV0kQlv4b535pVv47RRRw,22029
|
|
206
|
+
mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py,sha256=O63ZL_04wqxDHhDsNhGX880dUmIUPt5bKnSgTUTbduw,8838
|
|
207
|
+
mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py,sha256=Z0Qgea9-G0-9gq3OPH3Cre7f8zMWX0bWyBQPgxxemYQ,28616
|
|
208
|
+
mlrun/frameworks/xgboost/__init__.py,sha256=NyFRxu5v5z8oegbJP05PFUmfJL3I3JeN1PYHjIbfXpo,10335
|
|
209
|
+
mlrun/frameworks/xgboost/mlrun_interface.py,sha256=QcP_mTKBjxvRyWcNnju0BlvXBDOqNH9B1XBoxvEojAk,878
|
|
210
|
+
mlrun/frameworks/xgboost/model_handler.py,sha256=e3VLKMmaC9OFoclUPx9buUXYLDe1Ab3zMxXUmL8TMO4,11664
|
|
211
|
+
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
212
|
+
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
213
|
+
mlrun/launcher/base.py,sha256=uZaUpwjy9_Z137aQ4b1JsuYqD01ZVRxytAxZSFKSu6U,16480
|
|
214
|
+
mlrun/launcher/client.py,sha256=FXzQQqrSVE9oapLjjUYvx5qhZPG1r4ynUjUUFZVPekE,6228
|
|
215
|
+
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
216
|
+
mlrun/launcher/local.py,sha256=9zNiuswHnSINDj4yYP2Vd192b5d4FUtSA8O2ICKjsKo,11279
|
|
217
|
+
mlrun/launcher/remote.py,sha256=rLJW4UAnUT5iUb4BsGBOAV3K4R29a0X4lFtRkVKlyYU,7709
|
|
218
|
+
mlrun/model_monitoring/__init__.py,sha256=RgXjrQSN7gZwo-URei3FNo3fE9wWlo1-wNhSVtNXbPA,784
|
|
219
|
+
mlrun/model_monitoring/api.py,sha256=8pXirt4w5RkDB2I5GpVaU3ZzClhEq3Wy4m1l20eJ7pw,28292
|
|
220
|
+
mlrun/model_monitoring/controller.py,sha256=dBfZQswF67vqeUFnmgsm9jU_5sOs9dLwMPEiYHG-Kk8,19786
|
|
221
|
+
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
222
|
+
mlrun/model_monitoring/helpers.py,sha256=cGK8ZQgzqW8-TAgpBF30HyHfDmeeSlogskHGxnE_Em8,16091
|
|
223
|
+
mlrun/model_monitoring/stream_processing.py,sha256=ltCVgo_b3yay16CUbqeGkRfzCHZSn14lVeBng5m9keY,31738
|
|
224
|
+
mlrun/model_monitoring/tracking_policy.py,sha256=PBIGrUYWrwcE5gwXupBIVzOb0QRRwPJsgQm_yLGQxB4,5595
|
|
225
|
+
mlrun/model_monitoring/writer.py,sha256=-47Z7oMr6q2ieJunZgkMK8d0IHZJhC3jxTBIxHgtSOk,10490
|
|
226
|
+
mlrun/model_monitoring/applications/__init__.py,sha256=QYvzgCutFdAkzqKPD3mvkX_3c1X4tzd-kW8ojUOE9ic,889
|
|
227
|
+
mlrun/model_monitoring/applications/_application_steps.py,sha256=h80Rs0vN70R3YOW-mCN8quWw1gFbfQdOPQeUwYFic_Q,7162
|
|
228
|
+
mlrun/model_monitoring/applications/base.py,sha256=IINdGZ5fKs7hFDJGM-y4nnPDFykrSfodrLEitMDPIP8,11467
|
|
229
|
+
mlrun/model_monitoring/applications/context.py,sha256=gpxaUGpYKgWcVE4I91Q3lBGjuqUsZZ5nMO9-vNuq_KM,14976
|
|
230
|
+
mlrun/model_monitoring/applications/evidently_base.py,sha256=hRjXuXf6xf8sbjGt9yYfGDUGnvS5rV3W7tkJroF3QJA,5098
|
|
231
|
+
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=G26_4gQfcwDZe3S6SIZ4Uc_qyrHAJ6lDTFOQGkbfQR8,14455
|
|
232
|
+
mlrun/model_monitoring/applications/results.py,sha256=oh1z9oacWWP4azVXm_Fx7j8uXSfdkB9T4mtGwyPBveE,5748
|
|
233
|
+
mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
|
|
234
|
+
mlrun/model_monitoring/db/_schedules.py,sha256=NTO1rbSyhW1JidpBDSN39ZBD0ctp5pbJFYQwxKRIRrs,5821
|
|
235
|
+
mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
|
|
236
|
+
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=Zqh_27I2YAEHk9nl0Z6lUxP7VEfrgrpnwhmHsbi4jnA,4055
|
|
237
|
+
mlrun/model_monitoring/db/tsdb/base.py,sha256=EWm-56AzuLSH1JV6DAhSRu9sUel5YD6Ch1n5tgUHODo,20983
|
|
238
|
+
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
239
|
+
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
240
|
+
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=5otz6VXRYNMc55hq9SdTQoglywdr2Ylh-ApL1dCyqls,13169
|
|
241
|
+
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Uadj0UvAmln2MxDWod-kAzau1uNlqZh981rPhbUH_5M,2857
|
|
242
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=a2AjI7_jTnbJ8as1Bt0AMQcwsPgFsR0tvyxlKp3uZrs,29706
|
|
243
|
+
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
244
|
+
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
|
|
245
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=_9n837rmlmxeEzqKjc5LerXRxNqKAgjMMzU-sKz4uyo,35668
|
|
246
|
+
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
247
|
+
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
248
|
+
mlrun/package/__init__.py,sha256=v7VDyK9kDOOuDvFo4oiGV2fx-vM1KL7fdN9pGLakhUQ,7008
|
|
249
|
+
mlrun/package/context_handler.py,sha256=VTr1Sz8LgmiktV4o9IEq1oeMNb8h4VGxigHP_6APB6o,14597
|
|
250
|
+
mlrun/package/errors.py,sha256=LKF8SSaRIdbkB7JQz6b9U4mZV42Ebnf6ZHu4wKuWqK4,1204
|
|
251
|
+
mlrun/package/packager.py,sha256=-eXESrSuPTT_3ELi9RG1-035O2J4R73umOkC5xnPgqc,15189
|
|
252
|
+
mlrun/package/packagers_manager.py,sha256=VF7X9NDJGuXRDIIZmPLPzOxB9qFqiXqVaK064_7vKz4,37895
|
|
253
|
+
mlrun/package/packagers/__init__.py,sha256=wF2OdhG1zgABbxYBxBNUCk0VNYwBMS9Yy4EW0OMPuoI,666
|
|
254
|
+
mlrun/package/packagers/default_packager.py,sha256=stA6WtaTbwacLSLqFOiHCnCBgb-afvzBRMicCtBIl-Y,26768
|
|
255
|
+
mlrun/package/packagers/numpy_packagers.py,sha256=UlhV4CE6r8uqlLKDOuRuMx154ktzcQ1hJNFB8sUgAeI,25767
|
|
256
|
+
mlrun/package/packagers/pandas_packagers.py,sha256=8H7q-o7IrM236pSNyDzO6J_OdYIFtsRoUIXT8lQlWJM,35941
|
|
257
|
+
mlrun/package/packagers/python_standard_library_packagers.py,sha256=RtzgiWwxiDsuVYGzxOLUX35dAq9N2xJuU_tc1Nw4pB8,22530
|
|
258
|
+
mlrun/package/utils/__init__.py,sha256=fqkOiShjoHJAHL-dm-du930cSll-Z59YJJTzaIBlYn0,1618
|
|
259
|
+
mlrun/package/utils/_archiver.py,sha256=EK47v44yZOx2XeM4YGidgszsnrryz2J35f9M2A47bms,7951
|
|
260
|
+
mlrun/package/utils/_formatter.py,sha256=0Wh87kd2y5HNPRSgP2LpkGe8e1fDHDCRcxZQ-QBE9bA,6383
|
|
261
|
+
mlrun/package/utils/_pickler.py,sha256=1dn-Cs52o-Xsft3XLvBxNmZpbhgx2l6sNpfo7BbvRT4,10401
|
|
262
|
+
mlrun/package/utils/_supported_format.py,sha256=O3LPTvZ6A-nGi6mB2kTzJp2DQ-cCOgnlvFCiIqetPTY,2357
|
|
263
|
+
mlrun/package/utils/log_hint_utils.py,sha256=40X7oVzCiAIGsTTSON0iYNHj-_1Y4l4SDMThTA85If8,3696
|
|
264
|
+
mlrun/package/utils/type_hint_utils.py,sha256=JYrek6vuN3z7e6MGUD3qBLDfQ03C4puZXNTpDSj-VrM,14695
|
|
265
|
+
mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3551
|
|
266
|
+
mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
|
|
267
|
+
mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
|
|
268
|
+
mlrun/projects/operations.py,sha256=VXUlMrouFTls-I-bMhdN5pPfQ34TR7bFQ-NUSWNvl84,20029
|
|
269
|
+
mlrun/projects/pipelines.py,sha256=YEaISS9HXGqk-JNxSYZuzioH9_orN_pDKjJUQPfs0y0,46886
|
|
270
|
+
mlrun/projects/project.py,sha256=FDxkUEh2TgPj9kYsXUACoQcvwa9voeIbCVsdHH34y_E,224187
|
|
271
|
+
mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
|
|
272
|
+
mlrun/runtimes/base.py,sha256=Yt2l7srrXjK783cunBEKH0yQxQZRH8lkedXNOXuLbbo,37841
|
|
273
|
+
mlrun/runtimes/daskjob.py,sha256=JwuGvOiPsxEDHHMMUS4Oie4hLlYYIZwihAl6DjroTY0,19521
|
|
274
|
+
mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
|
|
275
|
+
mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51PFr8Q4mg,4918
|
|
276
|
+
mlrun/runtimes/generators.py,sha256=ysV91D7A57Ykb0SsNyqnnDQcmPiyjaTI1C-IMxUzTh0,7279
|
|
277
|
+
mlrun/runtimes/kubejob.py,sha256=gJnlAJ0RJw65yeiIPuLEjxJkDYfbpRgS3lyWkDDFXTk,8797
|
|
278
|
+
mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
|
|
279
|
+
mlrun/runtimes/mounts.py,sha256=pGQlnsNTUxAhFMWLS_53E784z-IH9a6oQjKjSp1gbJE,18733
|
|
280
|
+
mlrun/runtimes/pod.py,sha256=76YdMB4165kCwSemEeobAzT2i7P3dKkll8gSKp97qpQ,67788
|
|
281
|
+
mlrun/runtimes/remotesparkjob.py,sha256=dod99nqz3GdRfmnBoQKfwFCXTetfuCScd2pKH3HJyoY,7394
|
|
282
|
+
mlrun/runtimes/utils.py,sha256=3_Vu_OHlhi8f0vh_w9ii2eTKgS5dh6RVi1HwX9oDKuU,15675
|
|
283
|
+
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
284
|
+
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=sIqIg5DQAf4j0wCPA-G0GoxY6vacRddxCy5KDUZszek,2245
|
|
285
|
+
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=p80j2_jHzlH20dHT-avjfcbaDBTY2re1WjlJjbg5uSQ,12794
|
|
286
|
+
mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=oJzym54jD957yzxRXiSYpituSV8JV_XJh90YTKIwapY,8684
|
|
287
|
+
mlrun/runtimes/mpijob/__init__.py,sha256=6sUPQRFwigi4mqjDVZmRE-qgaLw2ILY5NbneVUuMKto,947
|
|
288
|
+
mlrun/runtimes/mpijob/abstract.py,sha256=JGMjcJ4dvpJbctF6psU9UvYyNCutMxTMgBQeTlzpkro,9249
|
|
289
|
+
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
290
|
+
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
291
|
+
mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
|
|
292
|
+
mlrun/runtimes/nuclio/function.py,sha256=ZXXHuPkQPgOewaGr9G3jLTQSFQHSJpLVFJ2bIA6bfpI,52287
|
|
293
|
+
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
294
|
+
mlrun/runtimes/nuclio/serving.py,sha256=i8UPADxQVr5zO7HiO5GjVWbFSt4WMF219h8gE4YOaBA,30070
|
|
295
|
+
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
296
|
+
mlrun/runtimes/nuclio/application/application.py,sha256=HlEq4A6hbFqr3Ba3TL4m7nbmfMYI06Zb_NAKGjzkEFU,29242
|
|
297
|
+
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=JIIYae6bXzCLf3jXuu49KWPQYoXr_FDQ2Rbo1OWKAd0,3150
|
|
298
|
+
mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
|
|
299
|
+
mlrun/runtimes/sparkjob/spark3job.py,sha256=0ipkgAjDYDJDlcuvt379zonjhepCspsQQXMrz_tZfHo,41628
|
|
300
|
+
mlrun/serving/__init__.py,sha256=-SMRV3q_5cGVPDxRslXPU0zGYZIygs0cSj7WKlOJJUc,1163
|
|
301
|
+
mlrun/serving/merger.py,sha256=Sj2OUjPNLQrGZD_StMx8-j0kGyzKlp4QjTmDHmpJQLA,6185
|
|
302
|
+
mlrun/serving/remote.py,sha256=KBSC3Aw0H6fOlmwdnc37C1CtegCiI7MhkKAXgaxFESs,18158
|
|
303
|
+
mlrun/serving/routers.py,sha256=m9z0tJCm1xhLnBcbcOXHxS4CCluA_wUKajv1Jk3iOz0,56367
|
|
304
|
+
mlrun/serving/server.py,sha256=KtcK_fn57G4CLgtEvSeaxwA-kruhUxv28StV3HimvXE,22294
|
|
305
|
+
mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
|
|
306
|
+
mlrun/serving/states.py,sha256=DDNlyW0AQRgMfnXnYMBaXxF3gZQzxrAJipz_X6JMjjs,61604
|
|
307
|
+
mlrun/serving/utils.py,sha256=k2EIYDWHUGkE-IBI6T0UNT32fw-KySsccIJM_LObI00,4171
|
|
308
|
+
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
309
|
+
mlrun/serving/v2_serving.py,sha256=zfE96u997fhJ3Tk8ClD0dMF5jP0LVoeusfQTvw9tinI,28312
|
|
310
|
+
mlrun/track/__init__.py,sha256=yVXbT52fXvGKRlc_ByHqIVt7-9L3DRE634RSeQwgXtU,665
|
|
311
|
+
mlrun/track/tracker.py,sha256=CyTU6Qd3_5GGEJ_hpocOj71wvV65EuFYUjaYEUKAL6Q,3575
|
|
312
|
+
mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
|
|
313
|
+
mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
|
|
314
|
+
mlrun/track/trackers/mlflow_tracker.py,sha256=8JnCelnjqqW2L8wjh4fCvEL8r5wYIOzboz3UZj0CyyY,23547
|
|
315
|
+
mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
|
|
316
|
+
mlrun/utils/async_http.py,sha256=Q6khMuhs4ORzm4LLdzCFhVGADGSoB-4UHVzm7J0K70Q,11736
|
|
317
|
+
mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
|
|
318
|
+
mlrun/utils/clones.py,sha256=y3zC9QS7z5mLuvyQ6vFd6sJnikbgtDwrBvieQq0sovY,7359
|
|
319
|
+
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
320
|
+
mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
|
|
321
|
+
mlrun/utils/helpers.py,sha256=89EdKYHB1kzeZPlNumRPY9GfpcmcCitRYWkUj0O0G6Q,63293
|
|
322
|
+
mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
|
|
323
|
+
mlrun/utils/logger.py,sha256=_v4UTv1-STzC2c6aAWAa0NNl9STQoBYbR3OHgAiL41s,14606
|
|
324
|
+
mlrun/utils/regex.py,sha256=IQqwPna6Z8J31xkTUduYbGk48GkQBUJFZSuxAWm1pzU,5162
|
|
325
|
+
mlrun/utils/retryer.py,sha256=GzDMeATklqxcKSLYaFYcqioh8e5cbWRxA1_XKrGR1A4,7570
|
|
326
|
+
mlrun/utils/singleton.py,sha256=p1Y-X0mPSs_At092GS-pZCA8CTR62HOqPU07_ZH6-To,869
|
|
327
|
+
mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1294
|
|
328
|
+
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
329
|
+
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
330
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=-O5dh9ymhrxUBfVhaldaoDQHuaSvKIyIcN3LdyqSflA,28375
|
|
331
|
+
mlrun/utils/notifications/notification/__init__.py,sha256=9Rfy6Jm8n0LaEDO1VAQb6kIbr7_uVuQhK1pS_abELIY,2581
|
|
332
|
+
mlrun/utils/notifications/notification/base.py,sha256=r-5eAGm2xz5VZGbV6NfeRV-heF7WzOYi-qWwDK2nR7U,5297
|
|
333
|
+
mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
|
|
334
|
+
mlrun/utils/notifications/notification/git.py,sha256=t2lqRrPRBO4awf_uhxJreH9CpcbYSH8T3CvHtwspHkE,6306
|
|
335
|
+
mlrun/utils/notifications/notification/ipython.py,sha256=9uZvI1uOLFaNuAsfJPXmL3l6dOzFoWdBK5GYNYFAfks,2282
|
|
336
|
+
mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAqp1vij7C6aRJ9h2mgs,6012
|
|
337
|
+
mlrun/utils/notifications/notification/slack.py,sha256=NKV4RFiY3gLsS8uPppgniPLyag8zJ9O1VhixoXkM7kw,7108
|
|
338
|
+
mlrun/utils/notifications/notification/webhook.py,sha256=lSGKCQMa-TstKbMpZnU5uQkW14tzIaqjBHDXUNh9dlU,4848
|
|
339
|
+
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
340
|
+
mlrun/utils/version/version.json,sha256=18EOngGAe2WZN2s_8JMl9i4ooNg1Rq_Rh_PNq67uJSY,89
|
|
341
|
+
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
342
|
+
mlrun-1.8.0rc11.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
343
|
+
mlrun-1.8.0rc11.dist-info/METADATA,sha256=h2XW_1tqFVKXB5toS5NloxpXGsCVI52T4ZRKMkdam-Q,24459
|
|
344
|
+
mlrun-1.8.0rc11.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
345
|
+
mlrun-1.8.0rc11.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
346
|
+
mlrun-1.8.0rc11.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
347
|
+
mlrun-1.8.0rc11.dist-info/RECORD,,
|
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
# Copyright 2024 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
|
-
import enum
|
|
16
|
-
import typing
|
|
17
|
-
import warnings
|
|
18
|
-
|
|
19
|
-
import mlrun.common.schemas.secret
|
|
20
|
-
import mlrun.errors
|
|
21
|
-
|
|
22
|
-
from .base import StoreBase
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class ObjectStoreFactory(enum.Enum):
|
|
26
|
-
"""Enum class to handle the different store type values for saving model monitoring records."""
|
|
27
|
-
|
|
28
|
-
v3io_nosql = "v3io-nosql"
|
|
29
|
-
SQL = "sql"
|
|
30
|
-
|
|
31
|
-
def to_object_store(
|
|
32
|
-
self,
|
|
33
|
-
project: str,
|
|
34
|
-
**kwargs,
|
|
35
|
-
) -> StoreBase:
|
|
36
|
-
"""
|
|
37
|
-
Return a StoreBase object based on the provided enum value.
|
|
38
|
-
|
|
39
|
-
:param project: The name of the project.
|
|
40
|
-
|
|
41
|
-
:return: `StoreBase` object.
|
|
42
|
-
|
|
43
|
-
"""
|
|
44
|
-
|
|
45
|
-
if self == self.v3io_nosql:
|
|
46
|
-
from mlrun.model_monitoring.db.stores.v3io_kv.kv_store import KVStoreBase
|
|
47
|
-
|
|
48
|
-
return KVStoreBase(project=project)
|
|
49
|
-
|
|
50
|
-
# Assuming SQL store target if store type is not KV.
|
|
51
|
-
# Update these lines once there are more than two store target types.
|
|
52
|
-
|
|
53
|
-
from mlrun.model_monitoring.db.stores.sqldb.sql_store import SQLStoreBase
|
|
54
|
-
|
|
55
|
-
return SQLStoreBase(
|
|
56
|
-
project=project,
|
|
57
|
-
**kwargs,
|
|
58
|
-
)
|
|
59
|
-
|
|
60
|
-
@classmethod
|
|
61
|
-
def _missing_(cls, value: typing.Any):
|
|
62
|
-
"""A lookup function to handle an invalid value.
|
|
63
|
-
:param value: Provided enum (invalid) value.
|
|
64
|
-
"""
|
|
65
|
-
valid_values = list(cls.__members__.keys())
|
|
66
|
-
raise mlrun.errors.MLRunInvalidMMStoreTypeError(
|
|
67
|
-
f"{value} is not a valid endpoint store, please choose a valid value: %{valid_values}."
|
|
68
|
-
)
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
def get_model_endpoint_store(
|
|
72
|
-
project: str,
|
|
73
|
-
access_key: str = None,
|
|
74
|
-
secret_provider: typing.Optional[typing.Callable[[str], str]] = None,
|
|
75
|
-
) -> StoreBase:
|
|
76
|
-
# Leaving here for backwards compatibility
|
|
77
|
-
warnings.warn(
|
|
78
|
-
"The 'get_model_endpoint_store' function is deprecated and will be removed in 1.9.0. "
|
|
79
|
-
"Please use `get_store_object` instead.",
|
|
80
|
-
# TODO: remove in 1.9.0
|
|
81
|
-
FutureWarning,
|
|
82
|
-
)
|
|
83
|
-
return get_store_object(
|
|
84
|
-
project=project, access_key=access_key, secret_provider=secret_provider
|
|
85
|
-
)
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
def get_store_object(
|
|
89
|
-
project: str,
|
|
90
|
-
secret_provider: typing.Optional[typing.Callable[[str], str]] = None,
|
|
91
|
-
store_connection_string: typing.Optional[str] = None,
|
|
92
|
-
**kwargs,
|
|
93
|
-
) -> StoreBase:
|
|
94
|
-
"""
|
|
95
|
-
Generate a store object. If a connection string is provided, the store type will be updated according to the
|
|
96
|
-
connection string. Currently, the supported store types are SQL and v3io-nosql.
|
|
97
|
-
|
|
98
|
-
:param project: The name of the project.
|
|
99
|
-
:param secret_provider: An optional secret provider to get the connection string secret.
|
|
100
|
-
:param store_connection_string: Optional explicit connection string of the store.
|
|
101
|
-
|
|
102
|
-
:return: `StoreBase` object. Using this object, the user can apply different operations such as write, update, get
|
|
103
|
-
and delete a model endpoint record.
|
|
104
|
-
:raise: `MLRunInvalidMMStoreTypeError` if the user didn't provide store connection
|
|
105
|
-
or the provided store connection is invalid.
|
|
106
|
-
"""
|
|
107
|
-
|
|
108
|
-
store_connection_string = (
|
|
109
|
-
store_connection_string
|
|
110
|
-
or mlrun.model_monitoring.helpers.get_connection_string(
|
|
111
|
-
secret_provider=secret_provider
|
|
112
|
-
)
|
|
113
|
-
)
|
|
114
|
-
|
|
115
|
-
if store_connection_string and (
|
|
116
|
-
store_connection_string.startswith("mysql")
|
|
117
|
-
or store_connection_string.startswith("sqlite")
|
|
118
|
-
):
|
|
119
|
-
store_type = mlrun.common.schemas.model_monitoring.ModelEndpointTarget.SQL
|
|
120
|
-
kwargs["store_connection_string"] = store_connection_string
|
|
121
|
-
elif store_connection_string and store_connection_string == "v3io":
|
|
122
|
-
store_type = (
|
|
123
|
-
mlrun.common.schemas.model_monitoring.ModelEndpointTarget.V3IO_NOSQL
|
|
124
|
-
)
|
|
125
|
-
else:
|
|
126
|
-
raise mlrun.errors.MLRunInvalidMMStoreTypeError(
|
|
127
|
-
"You must provide a valid store connection by using "
|
|
128
|
-
"set_model_monitoring_credentials API."
|
|
129
|
-
)
|
|
130
|
-
# Get store type value from ObjectStoreFactory enum class
|
|
131
|
-
store_type_fact = ObjectStoreFactory(store_type)
|
|
132
|
-
|
|
133
|
-
# Convert into store target object
|
|
134
|
-
return store_type_fact.to_object_store(
|
|
135
|
-
project=project, secret_provider=secret_provider, **kwargs
|
|
136
|
-
)
|