mlrun 1.7.2rc3__py3-none-any.whl → 1.8.0__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 +26 -22
- mlrun/__main__.py +15 -16
- mlrun/alerts/alert.py +150 -15
- mlrun/api/schemas/__init__.py +1 -9
- mlrun/artifacts/__init__.py +2 -3
- mlrun/artifacts/base.py +62 -19
- mlrun/artifacts/dataset.py +17 -17
- mlrun/artifacts/document.py +454 -0
- mlrun/artifacts/manager.py +28 -18
- mlrun/artifacts/model.py +91 -59
- mlrun/artifacts/plots.py +2 -2
- mlrun/common/constants.py +8 -0
- mlrun/common/formatters/__init__.py +1 -0
- mlrun/common/formatters/artifact.py +1 -1
- mlrun/common/formatters/feature_set.py +2 -0
- mlrun/common/formatters/function.py +1 -0
- mlrun/{model_monitoring/db/stores/v3io_kv/__init__.py → common/formatters/model_endpoint.py} +17 -0
- 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 +12 -62
- mlrun/common/runtimes/constants.py +25 -4
- mlrun/common/schemas/__init__.py +9 -5
- mlrun/common/schemas/alert.py +114 -19
- mlrun/common/schemas/api_gateway.py +3 -3
- mlrun/common/schemas/artifact.py +22 -9
- mlrun/common/schemas/auth.py +8 -4
- mlrun/common/schemas/background_task.py +7 -7
- mlrun/common/schemas/client_spec.py +4 -4
- 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 +4 -8
- mlrun/common/schemas/model_monitoring/constants.py +127 -46
- mlrun/common/schemas/model_monitoring/grafana.py +18 -12
- mlrun/common/schemas/model_monitoring/model_endpoints.py +154 -160
- 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 +142 -0
- mlrun/common/schemas/pipeline.py +3 -3
- mlrun/common/schemas/project.py +26 -18
- mlrun/common/schemas/runs.py +3 -3
- mlrun/common/schemas/runtime_resource.py +5 -5
- mlrun/common/schemas/schedule.py +1 -1
- mlrun/common/schemas/secret.py +1 -1
- mlrun/{model_monitoring/db/stores/sqldb/__init__.py → common/schemas/serving.py} +10 -1
- mlrun/common/schemas/tag.py +3 -3
- mlrun/common/schemas/workflow.py +6 -5
- mlrun/common/types.py +1 -0
- mlrun/config.py +157 -89
- mlrun/data_types/__init__.py +5 -3
- mlrun/data_types/infer.py +13 -3
- mlrun/data_types/spark.py +2 -1
- mlrun/datastore/__init__.py +59 -18
- mlrun/datastore/alibaba_oss.py +4 -1
- mlrun/datastore/azure_blob.py +4 -1
- mlrun/datastore/base.py +19 -24
- mlrun/datastore/datastore.py +10 -4
- mlrun/datastore/datastore_profile.py +178 -45
- 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 +14 -3
- mlrun/datastore/sources.py +89 -92
- mlrun/datastore/store_resources.py +7 -4
- mlrun/datastore/storeytargets.py +51 -16
- mlrun/datastore/targets.py +38 -31
- mlrun/datastore/utils.py +87 -4
- mlrun/datastore/v3io.py +4 -1
- mlrun/datastore/vectorstore.py +291 -0
- mlrun/datastore/wasbfs/fs.py +13 -12
- mlrun/db/base.py +286 -100
- mlrun/db/httpdb.py +1562 -490
- mlrun/db/nopdb.py +250 -83
- mlrun/errors.py +6 -2
- mlrun/execution.py +194 -50
- mlrun/feature_store/__init__.py +2 -10
- mlrun/feature_store/api.py +20 -458
- mlrun/feature_store/common.py +9 -9
- mlrun/feature_store/feature_set.py +20 -18
- mlrun/feature_store/feature_vector.py +105 -479
- mlrun/feature_store/feature_vector_utils.py +466 -0
- mlrun/feature_store/retrieval/base.py +15 -11
- mlrun/feature_store/retrieval/job.py +2 -1
- mlrun/feature_store/retrieval/storey_merger.py +1 -1
- mlrun/feature_store/steps.py +3 -3
- 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 +31 -31
- 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/k8s_utils.py +2 -5
- mlrun/launcher/base.py +3 -4
- mlrun/launcher/client.py +2 -2
- mlrun/launcher/local.py +6 -2
- mlrun/launcher/remote.py +1 -1
- mlrun/lists.py +8 -4
- mlrun/model.py +132 -46
- mlrun/model_monitoring/__init__.py +3 -5
- mlrun/model_monitoring/api.py +113 -98
- mlrun/model_monitoring/applications/__init__.py +0 -5
- mlrun/model_monitoring/applications/_application_steps.py +81 -50
- mlrun/model_monitoring/applications/base.py +467 -14
- mlrun/model_monitoring/applications/context.py +212 -134
- mlrun/model_monitoring/{db/stores/base → applications/evidently}/__init__.py +6 -2
- mlrun/model_monitoring/applications/evidently/base.py +146 -0
- mlrun/model_monitoring/applications/histogram_data_drift.py +89 -56
- mlrun/model_monitoring/applications/results.py +67 -15
- mlrun/model_monitoring/controller.py +701 -315
- mlrun/model_monitoring/db/__init__.py +0 -2
- mlrun/model_monitoring/db/_schedules.py +242 -0
- mlrun/model_monitoring/db/_stats.py +189 -0
- mlrun/model_monitoring/db/tsdb/__init__.py +33 -22
- mlrun/model_monitoring/db/tsdb/base.py +243 -49
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +76 -36
- mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py +33 -0
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py +213 -0
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +534 -88
- mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +1 -0
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +436 -106
- mlrun/model_monitoring/helpers.py +356 -114
- mlrun/model_monitoring/stream_processing.py +190 -345
- mlrun/model_monitoring/tracking_policy.py +11 -4
- mlrun/model_monitoring/writer.py +49 -90
- mlrun/package/__init__.py +3 -6
- mlrun/package/context_handler.py +2 -2
- 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 +35 -32
- 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 +30 -30
- mlrun/projects/pipelines.py +116 -47
- mlrun/projects/project.py +1292 -329
- mlrun/render.py +5 -9
- mlrun/run.py +57 -14
- mlrun/runtimes/__init__.py +1 -3
- mlrun/runtimes/base.py +30 -22
- mlrun/runtimes/daskjob.py +9 -9
- mlrun/runtimes/databricks_job/databricks_runtime.py +6 -5
- mlrun/runtimes/function_reference.py +5 -2
- mlrun/runtimes/generators.py +3 -2
- mlrun/runtimes/kubejob.py +6 -7
- mlrun/runtimes/mounts.py +574 -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 -13
- mlrun/runtimes/nuclio/application/reverse_proxy.go +66 -64
- mlrun/runtimes/nuclio/function.py +127 -70
- mlrun/runtimes/nuclio/serving.py +105 -37
- mlrun/runtimes/pod.py +159 -54
- mlrun/runtimes/remotesparkjob.py +3 -2
- mlrun/runtimes/sparkjob/__init__.py +0 -2
- mlrun/runtimes/sparkjob/spark3job.py +22 -12
- mlrun/runtimes/utils.py +7 -6
- mlrun/secrets.py +2 -2
- mlrun/serving/__init__.py +8 -0
- mlrun/serving/merger.py +7 -5
- mlrun/serving/remote.py +35 -22
- mlrun/serving/routers.py +186 -240
- mlrun/serving/server.py +41 -10
- mlrun/serving/states.py +432 -118
- mlrun/serving/utils.py +13 -2
- mlrun/serving/v1_serving.py +3 -2
- mlrun/serving/v2_serving.py +161 -203
- 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 +35 -22
- mlrun/utils/clones.py +7 -4
- mlrun/utils/helpers.py +511 -58
- mlrun/utils/logger.py +119 -13
- mlrun/utils/notifications/notification/__init__.py +22 -19
- mlrun/utils/notifications/notification/base.py +39 -15
- 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 +16 -8
- mlrun/utils/notifications/notification/webhook.py +24 -8
- mlrun/utils/notifications/notification_pusher.py +191 -200
- mlrun/utils/regex.py +12 -2
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.2rc3.dist-info → mlrun-1.8.0.dist-info}/METADATA +81 -54
- mlrun-1.8.0.dist-info/RECORD +351 -0
- {mlrun-1.7.2rc3.dist-info → mlrun-1.8.0.dist-info}/WHEEL +1 -1
- mlrun/model_monitoring/applications/evidently_base.py +0 -137
- 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/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/kv_store.py +0 -726
- mlrun/model_monitoring/model_endpoint.py +0 -118
- mlrun-1.7.2rc3.dist-info/RECORD +0 -351
- {mlrun-1.7.2rc3.dist-info → mlrun-1.8.0.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.2rc3.dist-info → mlrun-1.8.0.dist-info/licenses}/LICENSE +0 -0
- {mlrun-1.7.2rc3.dist-info → mlrun-1.8.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
mlrun/__init__.py,sha256=Cqm9U9eCEdLpMejhU2BEhubu0mHL71igJJIwYa738EA,7450
|
|
2
|
+
mlrun/__main__.py,sha256=0NDzPf9VFRO8KFfGgb8mkGUPIDS285aASV8Hbxs-ND0,45920
|
|
3
|
+
mlrun/config.py,sha256=xxmIe0g1YP2Y5_R_uQjP3w6v_4lA7iTjXhAyojdY08I,71929
|
|
4
|
+
mlrun/errors.py,sha256=LkcbXTLANGdsgo2CRX2pdbyNmt--lMsjGv0XZMgP-Nc,8222
|
|
5
|
+
mlrun/execution.py,sha256=rss4zA5M9tOCnSaXrK_-_BQ5F5DfF9OzesgQliq7jvQ,50008
|
|
6
|
+
mlrun/features.py,sha256=ReBaNGsBYXqcbgI012n-SO_j6oHIbk_Vpv0CGPXbUmo,15842
|
|
7
|
+
mlrun/k8s_utils.py,sha256=-RmKAlSBo_qVeJa1bIiwi6TUyuEpb4AhF7wIQ_H5ZJ0,8909
|
|
8
|
+
mlrun/lists.py,sha256=-nbmqScRia0v2IdSHt6Pd0fLRLSEtdB9bSxyD92BWvs,8562
|
|
9
|
+
mlrun/model.py,sha256=5YedJfY9La867fhW8sZJdWb4FwyXPR1r1C5SqYyB4_w,85864
|
|
10
|
+
mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
|
|
11
|
+
mlrun/run.py,sha256=vEgESyKS6mwl6L4qtU71HtoaVQSzbxQguJESGdndyEc,45122
|
|
12
|
+
mlrun/secrets.py,sha256=dZPdkc_zzfscVQepOHUwmzFqnBavDCBXV9DQoH_eIYM,7800
|
|
13
|
+
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
|
+
mlrun/alerts/alert.py,sha256=QQFZGydQbx9RvAaSiaH-ALQZVcDKQX5lgizqj_rXW2k,15948
|
|
15
|
+
mlrun/api/schemas/__init__.py,sha256=tVAnpexDkfI0JWMJNlPSnVOzoV4xqIjWGSln9UkPS4I,13921
|
|
16
|
+
mlrun/artifacts/__init__.py,sha256=ofC2extBCOC1wg1YtdTzWzH3eeG_f-sFBUkHjYtZJpk,1175
|
|
17
|
+
mlrun/artifacts/base.py,sha256=mQnDToP65cgXzhWUBNOT3ObkO_FqltHNVDEn7nFgDRQ,29982
|
|
18
|
+
mlrun/artifacts/dataset.py,sha256=p8Rk0yrBUszh4pe7VLfcUK9piD-J_UX_X6gU5fYCyQg,16665
|
|
19
|
+
mlrun/artifacts/document.py,sha256=3X1i27NYSd-cOcX-lEvaNTUvwS2UKWXW2EnlfWokrVk,17374
|
|
20
|
+
mlrun/artifacts/manager.py,sha256=bqp2-VgThx5RAGEui6LwTA9EMNNq6Vu1Z_-yjBpk92c,16212
|
|
21
|
+
mlrun/artifacts/model.py,sha256=J5b8zODrpx5ULtsgS9RGKqzMXYs7ADacE0BLBglmhrs,22239
|
|
22
|
+
mlrun/artifacts/plots.py,sha256=TxOHBaGbj7fEKNTHVIM_uxQjqPLpU3Rh1pqGh2_inuo,4833
|
|
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=1gxThbmC0Vd0U1ffIkEwz4T4S7JOgHt70rvw8TCO21c,1073
|
|
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=8oet2n5_bZlUALNXIjeYCTPDYKRB1h3gu_NWNK2lEig,1425
|
|
32
|
+
mlrun/common/formatters/base.py,sha256=LHwWWnQJCmvlnOCCmG8YtJ_xzs0xBI8PujYDL5Ky9H4,4101
|
|
33
|
+
mlrun/common/formatters/feature_set.py,sha256=hC4Yh0TTUzOk2tSPPRXmb0ynjrfaxYZGv578QfQKgC4,1536
|
|
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=AkuHz4u318MEP4ebxmNWlNXh6HiNLrI5oF7QvJiJkYc,2707
|
|
41
|
+
mlrun/common/runtimes/constants.py,sha256=FU9VdepuakXCt6zk9MLobelQjsFWtnuqZ5pQMSpphuk,12325
|
|
42
|
+
mlrun/common/schemas/__init__.py,sha256=tNeYsylPAgG-3YI_Foka80alqm0JoCpXtuS_nDZzuaU,5324
|
|
43
|
+
mlrun/common/schemas/alert.py,sha256=tRsjHEQTjCb-83GS0mprsu5junvqL4aQjWN2Rt_yAaM,10183
|
|
44
|
+
mlrun/common/schemas/api_gateway.py,sha256=3a0QxECLmoDkD5IiOKtXJL-uiWB26Hg55WMA3nULYuI,7127
|
|
45
|
+
mlrun/common/schemas/artifact.py,sha256=RRnURzGiBYDZKc4gB-giyywDhkp3ttnsObgJNy-QqEE,4250
|
|
46
|
+
mlrun/common/schemas/auth.py,sha256=qYOCDbK-k7GTjwLseqGoxwcR-rdIbG2k7ct29M0sPUI,6880
|
|
47
|
+
mlrun/common/schemas/background_task.py,sha256=ofWRAQGGEkXEu79Dbw7tT_5GPolR09Lc3Ebg2r0fT24,1728
|
|
48
|
+
mlrun/common/schemas/client_spec.py,sha256=iQpxwPoWkrHaxta5qKY78loxmMNsbjCz9Y1O9BTeeZQ,2875
|
|
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=MI8f7EbJ42RyVBLYVIjL6cjkWoL6Wgjdi-XbaUqQM3M,5921
|
|
65
|
+
mlrun/common/schemas/pipeline.py,sha256=Z5nDr5WTzIgfBqnij_jvHkN_ep7xmOWNldCP60zv9qA,1436
|
|
66
|
+
mlrun/common/schemas/project.py,sha256=HHfaGbbRVVJuJPupHAEfW8jaxhcTDof3NiV61UC3MiU,6511
|
|
67
|
+
mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
|
|
68
|
+
mlrun/common/schemas/runs.py,sha256=Lo95LJVcLlYNkepgljxKC7VnMfnYNidcmdxKu2-jz0E,1275
|
|
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/serving.py,sha256=81ZxlDHP1fm9VPmXZGkjZj2n6cVRmqEN478hsmvv5QA,744
|
|
73
|
+
mlrun/common/schemas/tag.py,sha256=HRZi5QZ4vVGaCr2AMk9eJgcNiAIXmH4YDc8a4fvF770,893
|
|
74
|
+
mlrun/common/schemas/workflow.py,sha256=6u9niXfXpV-_c2rZL97gFIdAnOfM5WK-OCbrM5Kk34s,2108
|
|
75
|
+
mlrun/common/schemas/model_monitoring/__init__.py,sha256=SxHG-GIdcTEuFxpKzkUdT9zKaU5Xqz9qF1uCwXvZ2z8,1709
|
|
76
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=wbNe_n5wX98gD1XQ6jmt97Jh59S9GsE54UBPZl9Pg20,12570
|
|
77
|
+
mlrun/common/schemas/model_monitoring/grafana.py,sha256=THQlLfPBevBksta8p5OaIsBaJtsNSXexLvHrDxOaVns,2095
|
|
78
|
+
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=YYFai89qBTnKM8dSUncVD25uwz8QdcTLrEb7vMefyTc,12391
|
|
79
|
+
mlrun/data_types/__init__.py,sha256=wdxGS1PTnaKXiNZ7PYGxxo86OifHH7NYoArIjDJksLA,1054
|
|
80
|
+
mlrun/data_types/data_types.py,sha256=0_oKLC6-sXL2_nnaDMP_HSXB3fD1nJAG4J2Jq6sGNNw,4998
|
|
81
|
+
mlrun/data_types/infer.py,sha256=Ogp3rsENVkjU0GDaGa9J1vjGrvMxgzwbSEuG51nt61E,6477
|
|
82
|
+
mlrun/data_types/spark.py,sha256=4fPpqjFCYeFgK_yHhUNM4rT-1Gw9YiXazyjTK7TtbTI,9626
|
|
83
|
+
mlrun/data_types/to_pandas.py,sha256=KOy0FLXPJirsgH6szcC5BI6t70yVDCjuo6LmuYHNTuI,11429
|
|
84
|
+
mlrun/datastore/__init__.py,sha256=81ulmQnRk1ENvwYOdetxqsLnr2gYVtW-KsvF-tY1Jxk,5783
|
|
85
|
+
mlrun/datastore/alibaba_oss.py,sha256=k-OHVe08HjMewlkpsT657CbOiVFAfSq9_EqhCE-k86s,4940
|
|
86
|
+
mlrun/datastore/azure_blob.py,sha256=SzAcHYSXkm8Zpopz2Ea-rWVClH0URocUazcNK04S9W0,12776
|
|
87
|
+
mlrun/datastore/base.py,sha256=9R3lwB_L4hv5WW2q24WS62_KTh-wO4UG6pwzISZU6bM,26231
|
|
88
|
+
mlrun/datastore/datastore.py,sha256=AXXPgHpSG8Ig1RtTDGfdCJu4UT-AQPC43FGBOptIVOg,9484
|
|
89
|
+
mlrun/datastore/datastore_profile.py,sha256=JIH7GYlC40pdaqO8xwYp52dO8QFEB8le021kFINFh4k,23862
|
|
90
|
+
mlrun/datastore/dbfs_store.py,sha256=QkDRzwFnvm7CgEg4NuGxes6tBgKDyhX0CiBUvK8c9pk,6568
|
|
91
|
+
mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
|
|
92
|
+
mlrun/datastore/google_cloud_storage.py,sha256=MnToY6irdhBZ8Wcapqnr1Yq2724LAh2uPO7MAtdWfUY,8716
|
|
93
|
+
mlrun/datastore/hdfs.py,sha256=NhxvPojQQDEm0xzB6RcvnD4uLZOxfHHKYWV4gwzG7D4,1928
|
|
94
|
+
mlrun/datastore/inmem.py,sha256=IsM83nn-3CqmGdLzim7i9ZmJwG6ZGhBZGN6_hszWZnE,2951
|
|
95
|
+
mlrun/datastore/redis.py,sha256=QeNMkSz3zQXiXZhFUZcEtViqqbUysGJditbqe5M-J48,5682
|
|
96
|
+
mlrun/datastore/s3.py,sha256=lD4Fs69rwMeISovZzOxRdz_z9FuffysTdjJA9ybdnLA,9262
|
|
97
|
+
mlrun/datastore/snowflake_utils.py,sha256=Wohvnlmq8j1d98RCaknll-iWdZZpSlCrKhUOEy0_-CA,1483
|
|
98
|
+
mlrun/datastore/sources.py,sha256=KTIsddAHNnpZoMv5i_6Rz2WjuKt6mFvhEFU899SgT20,48978
|
|
99
|
+
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
100
|
+
mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
|
|
101
|
+
mlrun/datastore/store_resources.py,sha256=PFOMrZ6KH6hBOb0PiO-cHx_kv0UpHu5P2t8_mrR-lS4,6842
|
|
102
|
+
mlrun/datastore/storeytargets.py,sha256=dSy9wr4IyxrIE1GHBxzVEeEY1sdU66s4w-oUuaIfa2U,6620
|
|
103
|
+
mlrun/datastore/targets.py,sha256=w_UGKiOaonXUKbbxG-9XryWcdTezbzhHB2UjfgE76dM,81213
|
|
104
|
+
mlrun/datastore/utils.py,sha256=akkc-d9DJOUXCGJGhUyWilQ1an-Pz7W6aDCEzXv3_bA,10614
|
|
105
|
+
mlrun/datastore/v3io.py,sha256=QSYBORRLcJTeM9mt0EaWzyLcdmzrPkqrF7k5uLTam5U,8209
|
|
106
|
+
mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
|
|
107
|
+
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
108
|
+
mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
|
|
109
|
+
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
110
|
+
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
111
|
+
mlrun/db/base.py,sha256=lfPEPUBXPdmzXUhFD0hDBBWXdV7HXfcsz9Gj_AMLllg,30819
|
|
112
|
+
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
113
|
+
mlrun/db/httpdb.py,sha256=p2IIJxkc_q3xAKymIzX3Ic3ep60X6bpQ6PZRe9s0fyY,232763
|
|
114
|
+
mlrun/db/nopdb.py,sha256=ttC1pe95rZdMgiLG9kzrjZFYB1gWj3SEqeqK5c0q0w4,27197
|
|
115
|
+
mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
|
|
116
|
+
mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
|
|
117
|
+
mlrun/feature_store/common.py,sha256=Z7USI-d1fo0iwBMsqMBtJflJfyuiV3BLoDXQPSAoBAs,12826
|
|
118
|
+
mlrun/feature_store/feature_set.py,sha256=lakkuKYAvYDJKDTE0xJa5n1nEipMPwpLki-J3CMk0mQ,56221
|
|
119
|
+
mlrun/feature_store/feature_vector.py,sha256=DY7wUx3ifqWqjzLliCnZcosbMFsIY0WDeF4ToDQcXd8,31068
|
|
120
|
+
mlrun/feature_store/feature_vector_utils.py,sha256=1EIzCG5dtZu-lbvVP68yv2u8NkWo-aSin-uH5iLMByM,17189
|
|
121
|
+
mlrun/feature_store/ingestion.py,sha256=kT3Hbz1PBjsJd-GPBm2ap0sg9-fiXxaSXoEIo-dOXpU,11361
|
|
122
|
+
mlrun/feature_store/steps.py,sha256=IXvxKxTAxkeeZQmbHp7CkqmkfBYGnMaP8OBv-7moj2M,29327
|
|
123
|
+
mlrun/feature_store/retrieval/__init__.py,sha256=bwA4copPpLQi8fyoUAYtOyrlw0-6f3-Knct8GbJSvRg,1282
|
|
124
|
+
mlrun/feature_store/retrieval/base.py,sha256=ehopCTJA75mv8YQph5JEzWpErl6EvVXvU393SnHcxSU,30434
|
|
125
|
+
mlrun/feature_store/retrieval/dask_merger.py,sha256=t60xciYp6StUQLEyFyI4JK5NpWkdBy2MGCs6beimaWU,5575
|
|
126
|
+
mlrun/feature_store/retrieval/job.py,sha256=_EltjdbAuQgBUTNzGdlz58Ite1QqFBCnX61Kr1VdW04,8631
|
|
127
|
+
mlrun/feature_store/retrieval/local_merger.py,sha256=jM-8ta44PeNUc1cKMPs-TxrO9t8pXbwu_Tw8MZrLxUY,4513
|
|
128
|
+
mlrun/feature_store/retrieval/spark_merger.py,sha256=XTMK40Y0bUli1Z9KwtYmMSQ8a4WOHEHzIq9uzk1mfc4,10548
|
|
129
|
+
mlrun/feature_store/retrieval/storey_merger.py,sha256=gzqK1K2xtgFmreZDL5Y6U6MNunOIdS75bhzGmP38wRE,6320
|
|
130
|
+
mlrun/frameworks/__init__.py,sha256=f-iaBYrQ3Qtu_Jh482ZosSZppI0M_JeeXuDhoLcZTBk,641
|
|
131
|
+
mlrun/frameworks/parallel_coordinates.py,sha256=UuZ0b0ACsaaH0rDya_0YMOWwaH6zhEyDIssOwEgqOAo,11588
|
|
132
|
+
mlrun/frameworks/_common/__init__.py,sha256=1ovfHxNW8V9ERVVZx8lPFVGBtsXHaHli7pZPR-Ixn8g,860
|
|
133
|
+
mlrun/frameworks/_common/artifacts_library.py,sha256=O0z74o3Z6k5NruTqXMLDugZ6midOmSFqNlt7WhYIRP8,8517
|
|
134
|
+
mlrun/frameworks/_common/mlrun_interface.py,sha256=gjNV_siKyJ7xZdwoH8uvRmPuuQrc8WjnhoXr3GUCkAc,21093
|
|
135
|
+
mlrun/frameworks/_common/model_handler.py,sha256=NpYyGpYUJLJCH3-kOntyzo1WO1baTLdwVeXHI_BagV4,55530
|
|
136
|
+
mlrun/frameworks/_common/plan.py,sha256=Yr98b5lkCV0K0u_krnU8gZJiXj14xfrFjJ6xD6QJdn0,3444
|
|
137
|
+
mlrun/frameworks/_common/producer.py,sha256=R67XRbiz1bk0XNvuW7ybbA4v6o6Q5qzD0h3AkC-tM1A,5766
|
|
138
|
+
mlrun/frameworks/_common/utils.py,sha256=NqoKbgj6UGPMBNhpK6mkKK4GOt5ko1lDqExFhQm9oEc,9131
|
|
139
|
+
mlrun/frameworks/_dl_common/__init__.py,sha256=bwGbKOynYW1Ohl7890yKH32Nr5GqX55P5nzLKMJDJiI,648
|
|
140
|
+
mlrun/frameworks/_dl_common/model_handler.py,sha256=GUAcDklhAxxH9e9xZPnqjjUGQGeXIHvSdw_SH-r9ACs,1151
|
|
141
|
+
mlrun/frameworks/_dl_common/utils.py,sha256=eVjqSHJh2OSKq7s1BMyCVrZ9VIrkAKaD1Y0wcTA-QXU,996
|
|
142
|
+
mlrun/frameworks/_dl_common/loggers/__init__.py,sha256=ey4GGD6wm03ri70pGX7Ow-S-NU8UBA3vKa9FBh1d1d0,685
|
|
143
|
+
mlrun/frameworks/_dl_common/loggers/logger.py,sha256=wDR60HUeS7CETcTjefO8JodjqefZby9fSeZCeAtzd3U,11477
|
|
144
|
+
mlrun/frameworks/_dl_common/loggers/mlrun_logger.py,sha256=19BllrT6Sre049gDOFziZGLkl2DhNuhhNLTnUL5UvXI,14788
|
|
145
|
+
mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py,sha256=ii28ZdSxW-XS8qTljAVCyjZYev0V-RuOJ-BG5Z7ImPI,27876
|
|
146
|
+
mlrun/frameworks/_ml_common/__init__.py,sha256=kXyw4g8e8qU0OWElHo6lmIpN16vhIqayb6nVDC9tr50,854
|
|
147
|
+
mlrun/frameworks/_ml_common/artifacts_library.py,sha256=eHCrc43NjLYSOcixiW31SQ-SoxAvBBNf2W5Xb-4W48U,3145
|
|
148
|
+
mlrun/frameworks/_ml_common/model_handler.py,sha256=POnOECT7k6qD6lmXUh2dH7-3eMeDIFef8a1vwTetNhI,17095
|
|
149
|
+
mlrun/frameworks/_ml_common/pkl_model_server.py,sha256=NbaEveUcpNXsiJIlc7kdeYfjcVPsTs9blsygxtAXB0k,2717
|
|
150
|
+
mlrun/frameworks/_ml_common/plan.py,sha256=B1jiFpGAZeYDLEXlY5dne_GCoF4os4E0TtnfELsFNsc,4864
|
|
151
|
+
mlrun/frameworks/_ml_common/producer.py,sha256=5sCFmr38zg_ZTZUvukVti0-z2VP6d-vBhQbIOEPwJf0,4061
|
|
152
|
+
mlrun/frameworks/_ml_common/utils.py,sha256=_PGPTG4uqk4tYjtu-X-0qInMgYEiN_UxYDG4GsPplYo,10477
|
|
153
|
+
mlrun/frameworks/_ml_common/loggers/__init__.py,sha256=guo4L6Dntr_M-hzm2fPh1DoGkL2wmCuxqytKHf-rYAw,635
|
|
154
|
+
mlrun/frameworks/_ml_common/loggers/logger.py,sha256=EpC4hQQYODG4Kc5LtcRWRfyzFMv9FYVZEXPIFloAB7A,5630
|
|
155
|
+
mlrun/frameworks/_ml_common/loggers/mlrun_logger.py,sha256=75R42-ofzdLtfxjOZToIH09nYj93Xi_6YT3ru00XVqo,6406
|
|
156
|
+
mlrun/frameworks/_ml_common/plans/__init__.py,sha256=qasoseYqCf_dxne9kywLtpASBqd6831gtl4g5VjkjHM,820
|
|
157
|
+
mlrun/frameworks/_ml_common/plans/calibration_curve_plan.py,sha256=KRLc6qRw7qb0aQvEUCvyQ1-NB3YjR5EmkhAgmBaPHd8,4894
|
|
158
|
+
mlrun/frameworks/_ml_common/plans/confusion_matrix_plan.py,sha256=dYzu6hm44CwltgrAl0Tbik-tuSI3FuGfQuzCWfExmNE,6069
|
|
159
|
+
mlrun/frameworks/_ml_common/plans/dataset_plan.py,sha256=KN1o-3R0QCJLRpe2-Z4fh37S-rSIXma31TRowFnS_pk,6641
|
|
160
|
+
mlrun/frameworks/_ml_common/plans/feature_importance_plan.py,sha256=5tT_BZNfv4ngoeGS6PE_goqNttYw2LqUZEbanrXHIHE,5285
|
|
161
|
+
mlrun/frameworks/_ml_common/plans/roc_curve_plan.py,sha256=EJP0bVlwX0NIo8mwOQ9hEXZ7ZVLQupj002vxr2zgyCc,7003
|
|
162
|
+
mlrun/frameworks/auto_mlrun/__init__.py,sha256=lhk2SpPecVQ1jOuEnViKWQeXK_LLWUUg1MAkoBrNm60,604
|
|
163
|
+
mlrun/frameworks/auto_mlrun/auto_mlrun.py,sha256=4h7mpx4fdb4Mx06rmM-AO2RK-K-bLuB5dyPgr3hVGNg,24192
|
|
164
|
+
mlrun/frameworks/huggingface/__init__.py,sha256=tFhuz2Q6FgBpWUpRfl5dqhFDTdUYV3EZW4RNVs55V34,619
|
|
165
|
+
mlrun/frameworks/huggingface/model_server.py,sha256=aSNL3Qd3C4WBIiS9apv9aKwHQk4k083PyKHY11h8kpY,6133
|
|
166
|
+
mlrun/frameworks/lgbm/__init__.py,sha256=5JaF-fsfdqE_4hzcub9k9uvV6DpbvnzUn8B4rdt59R4,16192
|
|
167
|
+
mlrun/frameworks/lgbm/model_handler.py,sha256=4WC4NlZIQiU265LYYEccxiB2ZK-tUJMu1sF4qCsjsQg,13946
|
|
168
|
+
mlrun/frameworks/lgbm/model_server.py,sha256=gTmnMMDPc7Tp_R68wCfJxXNkD2mnv0nTasbAqnf_hCc,9270
|
|
169
|
+
mlrun/frameworks/lgbm/utils.py,sha256=5TjnYZkdyGq9zFOmatyoU6fwEtYlK1-nrvXyrMU5amY,8285
|
|
170
|
+
mlrun/frameworks/lgbm/callbacks/__init__.py,sha256=8lbXwJPeevWZr4X2bn9t8wZqDedGaOELeU3aMFdc7I8,755
|
|
171
|
+
mlrun/frameworks/lgbm/callbacks/callback.py,sha256=eOF9_8_AmTybbOE-wN8S47yV4HkfeDHKfSzzvtRBO7E,4048
|
|
172
|
+
mlrun/frameworks/lgbm/callbacks/logging_callback.py,sha256=eCawN7WW61lqRIxaF3UpodAPcJYlNi6dK0_6zBEibfM,5160
|
|
173
|
+
mlrun/frameworks/lgbm/callbacks/mlrun_logging_callback.py,sha256=R-Z98SVCyT583Eo5Ma0va4CF4Mzw3MhSk2e7dPQ6hF4,4110
|
|
174
|
+
mlrun/frameworks/lgbm/mlrun_interfaces/__init__.py,sha256=Lm_n_c0VLFRz8E4L9nQjJEPk7W9RYjjyLt2m9h2KlOo,740
|
|
175
|
+
mlrun/frameworks/lgbm/mlrun_interfaces/booster_mlrun_interface.py,sha256=xRqFtTGPKA0W-G66xJL6SDN3-648Pf0r3Jv-VzwMdrg,1531
|
|
176
|
+
mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py,sha256=BHNdh2OQSXjLKUSuRQTM1Oj_18BK3R_ov1A03YY-51Y,14271
|
|
177
|
+
mlrun/frameworks/lgbm/mlrun_interfaces/model_mlrun_interface.py,sha256=xZbzQSgHZ6GhlpgaW543wE3c-GAw0BAinrfXa106AVo,1333
|
|
178
|
+
mlrun/frameworks/onnx/__init__.py,sha256=OXClzprUne4d5cIq7YyWCH8FGdzMlQYrMtmn8RqkwKw,689
|
|
179
|
+
mlrun/frameworks/onnx/dataset.py,sha256=dAmKt1sZhgx0vgzoXZikznpUfdmIvWTtuEfqVjK3_3c,6115
|
|
180
|
+
mlrun/frameworks/onnx/mlrun_interface.py,sha256=-3KZq0ievpHfuEx6ONyBjp470_hQKfDung-4xgkEZGo,2419
|
|
181
|
+
mlrun/frameworks/onnx/model_handler.py,sha256=JagsM-NOO-Xn-a-3knF6Ne6hPu9l1jCaT5Y-NSg79wA,6189
|
|
182
|
+
mlrun/frameworks/onnx/model_server.py,sha256=SGnkJwVozi0RAr5qeUIDuDEyq_s45J9kYLDpM887ElQ,7103
|
|
183
|
+
mlrun/frameworks/pytorch/__init__.py,sha256=iuQxBeHs58oGty2rza1QfdwOHLxjDqONR7085d2wi_A,22147
|
|
184
|
+
mlrun/frameworks/pytorch/callbacks_handler.py,sha256=Mn9JsFGM13Hi1tRy7RIEjffVUyCh9H8eCkFmEnJw5VQ,28233
|
|
185
|
+
mlrun/frameworks/pytorch/mlrun_interface.py,sha256=7XFMYVJIhojt2RIl3o6T_ysgoTfw8rb47xEF7z1K2hQ,44791
|
|
186
|
+
mlrun/frameworks/pytorch/model_handler.py,sha256=ZDz97kUwufn-TXaLcNC2am5gkyc-986Xn4gXaPmmX3o,22504
|
|
187
|
+
mlrun/frameworks/pytorch/model_server.py,sha256=A8jwibPM_EUiWg-Hvq3MxeJqqTyAEWokiy3wlitDoF8,10228
|
|
188
|
+
mlrun/frameworks/pytorch/utils.py,sha256=kjkLNgzX9lLyEnZlUiBFfoKy_E1_OWj0g-sVYJT_kPQ,4515
|
|
189
|
+
mlrun/frameworks/pytorch/callbacks/__init__.py,sha256=6fknB2bdTg2SgY48DbdeRKd6oio5IPjzHOPwXL3tZ50,794
|
|
190
|
+
mlrun/frameworks/pytorch/callbacks/callback.py,sha256=CEqNCo4h9Xvbt2gkpZECsp-3YiKL3wre-GtBxUxmwlc,11538
|
|
191
|
+
mlrun/frameworks/pytorch/callbacks/logging_callback.py,sha256=5o8HziXvSCNqXOAo5n1h1QQAAW-mstLPeRaD_W-u-oc,23295
|
|
192
|
+
mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py,sha256=A740jhojRs2ghUu7QZyls4MgV6EcXpLgqmTrCNhj7js,9438
|
|
193
|
+
mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py,sha256=05JwyGG1hRtv_l8asIdJqz6DpzPwrEmjBQzd_jDvAwU,26528
|
|
194
|
+
mlrun/frameworks/sklearn/__init__.py,sha256=nRQCvSj0BkM8lKQT1s_CzGhok4lG2g1lRMbww2C49JM,10939
|
|
195
|
+
mlrun/frameworks/sklearn/estimator.py,sha256=t773mHNcvKYTKlP-Iuwlkfwt1VixIcsUcM-80bneog4,5860
|
|
196
|
+
mlrun/frameworks/sklearn/metric.py,sha256=3Bx_R2oFu9E20SanWhHoGm_saoXfoeRszvyp4YHj8V0,7119
|
|
197
|
+
mlrun/frameworks/sklearn/metrics_library.py,sha256=PVPNpljaGglXcw7THLHX-XU0cA8NuuaLvwuj6S-TLJ4,12271
|
|
198
|
+
mlrun/frameworks/sklearn/mlrun_interface.py,sha256=JzHMBQM4sPBJqzb8P-rsG_2RQ_QrXrb8KFj6GNfwrJ0,14339
|
|
199
|
+
mlrun/frameworks/sklearn/model_handler.py,sha256=n0vpsQznva_WVloz7GTnfMGcMDQU_f1bHhUAJ_qxjfE,4753
|
|
200
|
+
mlrun/frameworks/sklearn/utils.py,sha256=Cg_pSxUMvKe8vBSLQor6JM8u9_ccKJg4Rk5EPDzTsVo,1209
|
|
201
|
+
mlrun/frameworks/tf_keras/__init__.py,sha256=OIHqn6Y1_lcB2j5O3hKea4cp0uVtF4Lv96lvAkm_9x4,10553
|
|
202
|
+
mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=1xPUv8YAqxrY3CmkMfWMdp2yEAvk5viiMH6qw41ytSk,16617
|
|
203
|
+
mlrun/frameworks/tf_keras/model_handler.py,sha256=K99NF7WxqmGpzXXssO9mdQb_Swaek_g3aIhZ4GW-k1k,28276
|
|
204
|
+
mlrun/frameworks/tf_keras/model_server.py,sha256=PZW6OBGTJ6bSfHedAhhW8HATbJyp2VaAzSDC02zjyKk,9653
|
|
205
|
+
mlrun/frameworks/tf_keras/utils.py,sha256=_QWk1YmdRybbUB54vsQFE2_WMuAK0g7eR1ozVbMk0Go,4284
|
|
206
|
+
mlrun/frameworks/tf_keras/callbacks/__init__.py,sha256=sd8aWG2jO9mO_noZca0ReVf8X6fSCqO_di1Z-mT8FH8,742
|
|
207
|
+
mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=QGgCDAVtoixy94NdrbCfQLsV0kQlv4b535pVv47RRRw,22029
|
|
208
|
+
mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py,sha256=O63ZL_04wqxDHhDsNhGX880dUmIUPt5bKnSgTUTbduw,8838
|
|
209
|
+
mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py,sha256=Z0Qgea9-G0-9gq3OPH3Cre7f8zMWX0bWyBQPgxxemYQ,28616
|
|
210
|
+
mlrun/frameworks/xgboost/__init__.py,sha256=NyFRxu5v5z8oegbJP05PFUmfJL3I3JeN1PYHjIbfXpo,10335
|
|
211
|
+
mlrun/frameworks/xgboost/mlrun_interface.py,sha256=QcP_mTKBjxvRyWcNnju0BlvXBDOqNH9B1XBoxvEojAk,878
|
|
212
|
+
mlrun/frameworks/xgboost/model_handler.py,sha256=e3VLKMmaC9OFoclUPx9buUXYLDe1Ab3zMxXUmL8TMO4,11664
|
|
213
|
+
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
214
|
+
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
215
|
+
mlrun/launcher/base.py,sha256=uZaUpwjy9_Z137aQ4b1JsuYqD01ZVRxytAxZSFKSu6U,16480
|
|
216
|
+
mlrun/launcher/client.py,sha256=lJ3y9brmPspgwAZrUPAeu3Dn5B7mh9k3MhrbFKhNDvw,6286
|
|
217
|
+
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
218
|
+
mlrun/launcher/local.py,sha256=775HY-8S9LFUX5ubGXrLO0N1lVh8bn-DHFmNYuNqQPA,11451
|
|
219
|
+
mlrun/launcher/remote.py,sha256=rLJW4UAnUT5iUb4BsGBOAV3K4R29a0X4lFtRkVKlyYU,7709
|
|
220
|
+
mlrun/model_monitoring/__init__.py,sha256=ELy7njEtZnz09Dc6PGZSFFEGtnwI15bJNWM3Pj4_YIs,753
|
|
221
|
+
mlrun/model_monitoring/api.py,sha256=qGQripjfaaSactOs-0TK7-DIocXQNhy_znqR2eYT8Ug,28321
|
|
222
|
+
mlrun/model_monitoring/controller.py,sha256=p4UphE9y-YN_ndZQykvPvJow2sAhnYj3nkuJmyIzvf4,37661
|
|
223
|
+
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
224
|
+
mlrun/model_monitoring/helpers.py,sha256=8QsoYRPOVSnR3Lcv99m4XYrp_cR6hSqBUflYSOkJmFQ,21019
|
|
225
|
+
mlrun/model_monitoring/stream_processing.py,sha256=Gu3TQzYoNjbreZYI73-F49QpYrod9RZOyGSgininBsA,33373
|
|
226
|
+
mlrun/model_monitoring/tracking_policy.py,sha256=LldBBEUS9uxyC09wo4Ff1z692FzAbSy93gJYGQHXGIw,5596
|
|
227
|
+
mlrun/model_monitoring/writer.py,sha256=rgoD1iwlqJiRdiuKY5yrSvs_wV5RD_2Ie4R4BLqZOWw,8429
|
|
228
|
+
mlrun/model_monitoring/applications/__init__.py,sha256=xDBxkBjl-whHSG_4t1mLkxiypLH-fzn8TmAW9Mjo2uI,759
|
|
229
|
+
mlrun/model_monitoring/applications/_application_steps.py,sha256=mjuBVqa7KY_Ymoo8DzddthUpBZyfio2e4O5ce-d-2eY,8444
|
|
230
|
+
mlrun/model_monitoring/applications/base.py,sha256=f73LycKUG85invl6l7V4MRiRd1bx8jmepayrpwpr3c0,25131
|
|
231
|
+
mlrun/model_monitoring/applications/context.py,sha256=VfyPCIdO4z73uqFcJs87jzSI4PatX5N5Xicg8Ye1Bag,16968
|
|
232
|
+
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
|
|
233
|
+
mlrun/model_monitoring/applications/results.py,sha256=_qmj6TWT0SR2bi7gUyRKBU418eGgGoLW2_hTJ7S-ock,5782
|
|
234
|
+
mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
|
|
235
|
+
mlrun/model_monitoring/applications/evidently/base.py,sha256=shH9YwuFrGNWy1IDAbv622l-GE4o1z_u1bqhqTyTHDA,5661
|
|
236
|
+
mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
|
|
237
|
+
mlrun/model_monitoring/db/_schedules.py,sha256=RWn4wtKsIXg668gMLpxO9I8GlkxvPSaA5y7w-wFDcgE,9048
|
|
238
|
+
mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
|
|
239
|
+
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=4S86V_Ot_skE16SLkw0WwsaAUB0ECH6SoJdp-TIu6s8,4645
|
|
240
|
+
mlrun/model_monitoring/db/tsdb/base.py,sha256=mvV9S_adfKaAObzT2w6m4ko30UnRxPrh30eL0dshVyA,26914
|
|
241
|
+
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
242
|
+
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
243
|
+
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=EslhaR65jfeNdD5Ibk-3Hb4e5r5qYPfHb9rTChX3sG0,12689
|
|
244
|
+
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Uadj0UvAmln2MxDWod-kAzau1uNlqZh981rPhbUH_5M,2857
|
|
245
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py,sha256=8xo2O_yQrJGNDoYYB3Bwtdwwvzs3U9dT3BtPot0zENQ,6449
|
|
246
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=h0ZrNgOwTlBRd_DaYDc6eeVM9f_8CLJMUPEAIrZpbyU,37803
|
|
247
|
+
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
248
|
+
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
|
|
249
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=aDdyHWJLOG-3EgPTJgbEzOOQf5NetpFQk_HdQbs5_zI,47160
|
|
250
|
+
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
251
|
+
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
252
|
+
mlrun/package/__init__.py,sha256=v7VDyK9kDOOuDvFo4oiGV2fx-vM1KL7fdN9pGLakhUQ,7008
|
|
253
|
+
mlrun/package/context_handler.py,sha256=in6jOV4O9ALUYaDKdsUVa8uFP4g9pVJsgvjamkfA4VY,14589
|
|
254
|
+
mlrun/package/errors.py,sha256=LKF8SSaRIdbkB7JQz6b9U4mZV42Ebnf6ZHu4wKuWqK4,1204
|
|
255
|
+
mlrun/package/packager.py,sha256=-eXESrSuPTT_3ELi9RG1-035O2J4R73umOkC5xnPgqc,15189
|
|
256
|
+
mlrun/package/packagers_manager.py,sha256=hRRJxIZJhTEPaosWsDOUjcLTj-5-nCii94J5kLjpcRM,37337
|
|
257
|
+
mlrun/package/packagers/__init__.py,sha256=wF2OdhG1zgABbxYBxBNUCk0VNYwBMS9Yy4EW0OMPuoI,666
|
|
258
|
+
mlrun/package/packagers/default_packager.py,sha256=stA6WtaTbwacLSLqFOiHCnCBgb-afvzBRMicCtBIl-Y,26768
|
|
259
|
+
mlrun/package/packagers/numpy_packagers.py,sha256=UlhV4CE6r8uqlLKDOuRuMx154ktzcQ1hJNFB8sUgAeI,25767
|
|
260
|
+
mlrun/package/packagers/pandas_packagers.py,sha256=8H7q-o7IrM236pSNyDzO6J_OdYIFtsRoUIXT8lQlWJM,35941
|
|
261
|
+
mlrun/package/packagers/python_standard_library_packagers.py,sha256=RtzgiWwxiDsuVYGzxOLUX35dAq9N2xJuU_tc1Nw4pB8,22530
|
|
262
|
+
mlrun/package/utils/__init__.py,sha256=fqkOiShjoHJAHL-dm-du930cSll-Z59YJJTzaIBlYn0,1618
|
|
263
|
+
mlrun/package/utils/_archiver.py,sha256=EK47v44yZOx2XeM4YGidgszsnrryz2J35f9M2A47bms,7951
|
|
264
|
+
mlrun/package/utils/_formatter.py,sha256=0Wh87kd2y5HNPRSgP2LpkGe8e1fDHDCRcxZQ-QBE9bA,6383
|
|
265
|
+
mlrun/package/utils/_pickler.py,sha256=1dn-Cs52o-Xsft3XLvBxNmZpbhgx2l6sNpfo7BbvRT4,10401
|
|
266
|
+
mlrun/package/utils/_supported_format.py,sha256=O3LPTvZ6A-nGi6mB2kTzJp2DQ-cCOgnlvFCiIqetPTY,2357
|
|
267
|
+
mlrun/package/utils/log_hint_utils.py,sha256=40X7oVzCiAIGsTTSON0iYNHj-_1Y4l4SDMThTA85If8,3696
|
|
268
|
+
mlrun/package/utils/type_hint_utils.py,sha256=JYrek6vuN3z7e6MGUD3qBLDfQ03C4puZXNTpDSj-VrM,14695
|
|
269
|
+
mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3551
|
|
270
|
+
mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
|
|
271
|
+
mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
|
|
272
|
+
mlrun/projects/operations.py,sha256=9ntpM8WnnyRk1iCY0NDKW-3aR4j2QZPSJM0SdMnsQKs,20032
|
|
273
|
+
mlrun/projects/pipelines.py,sha256=wud7ezeEmhIJvfYE_wzQbA4ygEfGXHtbOtoOpan6poY,48556
|
|
274
|
+
mlrun/projects/project.py,sha256=O3oeg5ZZLvsvftN_T6syB1xQJ7e1eFg37mrlIaL4VCY,237075
|
|
275
|
+
mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
|
|
276
|
+
mlrun/runtimes/base.py,sha256=m347abcZRdI8654wBJea9D2GBRlkv_prz9UrA5ihlkA,37859
|
|
277
|
+
mlrun/runtimes/daskjob.py,sha256=JwuGvOiPsxEDHHMMUS4Oie4hLlYYIZwihAl6DjroTY0,19521
|
|
278
|
+
mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
|
|
279
|
+
mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
|
|
280
|
+
mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
|
|
281
|
+
mlrun/runtimes/kubejob.py,sha256=xt6NyPiIiPYmGDFtTe4RHF-zhrFdgwcnRr2NQEBB5NI,8799
|
|
282
|
+
mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
|
|
283
|
+
mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
|
|
284
|
+
mlrun/runtimes/pod.py,sha256=kjnDKOQKqfmprzA3tbXhaB58Dp6So4cOApcjYZ3kVko,67691
|
|
285
|
+
mlrun/runtimes/remotesparkjob.py,sha256=dod99nqz3GdRfmnBoQKfwFCXTetfuCScd2pKH3HJyoY,7394
|
|
286
|
+
mlrun/runtimes/utils.py,sha256=ut0IvQr47NI4Tw7XeHrA7HU7Zun3B1-K44GInecSWF8,15676
|
|
287
|
+
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
288
|
+
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=sIqIg5DQAf4j0wCPA-G0GoxY6vacRddxCy5KDUZszek,2245
|
|
289
|
+
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=WBq8Q0RIYwLkyshU7btYrB59wotzK_6xixHqZ-oz0PY,12851
|
|
290
|
+
mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=oJzym54jD957yzxRXiSYpituSV8JV_XJh90YTKIwapY,8684
|
|
291
|
+
mlrun/runtimes/mpijob/__init__.py,sha256=6sUPQRFwigi4mqjDVZmRE-qgaLw2ILY5NbneVUuMKto,947
|
|
292
|
+
mlrun/runtimes/mpijob/abstract.py,sha256=JGMjcJ4dvpJbctF6psU9UvYyNCutMxTMgBQeTlzpkro,9249
|
|
293
|
+
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
294
|
+
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
295
|
+
mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
|
|
296
|
+
mlrun/runtimes/nuclio/function.py,sha256=_PJ5ubHb3JfLjOj5sXaxnmTnBLI2YogI33D4OY1u55k,54543
|
|
297
|
+
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
298
|
+
mlrun/runtimes/nuclio/serving.py,sha256=Pqca0oG_B76RlgBsMYH8yR5M3LBp-ARONP0mP4aFTls,33436
|
|
299
|
+
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
300
|
+
mlrun/runtimes/nuclio/application/application.py,sha256=VPX-ruYQJ7-7yd5c2sWdF4U5JCGSS3kYjUfOgev6l_Y,29186
|
|
301
|
+
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
|
|
302
|
+
mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
|
|
303
|
+
mlrun/runtimes/sparkjob/spark3job.py,sha256=E777WdlSe7Yx2kpg1bK0zZokn93bOQiUbtvtbcHV7ig,41610
|
|
304
|
+
mlrun/serving/__init__.py,sha256=FhOlOCnBC5HFXOHzSDe4NHBs6mNUDP_Qqy6WMNsCwws,1307
|
|
305
|
+
mlrun/serving/merger.py,sha256=qtPJacx94Tsz_-8L3J_-aS2NEsTdechZkQzJmyHjmig,6195
|
|
306
|
+
mlrun/serving/remote.py,sha256=gxJkj_J3j-sZcVUbUzbAmJafP6t6y4NVFsu0kWmYngA,18818
|
|
307
|
+
mlrun/serving/routers.py,sha256=SY6AsaiSnh8ssXq8hQE2z9MYapOxFOFJBx9QomiZMO8,53915
|
|
308
|
+
mlrun/serving/server.py,sha256=KiNhW0nTV5STZPzR6kEAUFVzCCAX8qv0g9AoCopARrM,23429
|
|
309
|
+
mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
|
|
310
|
+
mlrun/serving/states.py,sha256=PaVdgZ8GyE8bxr_-RvuSUINwHuPypJmqaQs27aEPweo,73367
|
|
311
|
+
mlrun/serving/utils.py,sha256=k2EIYDWHUGkE-IBI6T0UNT32fw-KySsccIJM_LObI00,4171
|
|
312
|
+
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
313
|
+
mlrun/serving/v2_serving.py,sha256=b3C5Utv2_AOPrH_hPi3NarjNbAK3kRoeIfqMU4qNuUo,25362
|
|
314
|
+
mlrun/track/__init__.py,sha256=yVXbT52fXvGKRlc_ByHqIVt7-9L3DRE634RSeQwgXtU,665
|
|
315
|
+
mlrun/track/tracker.py,sha256=CyTU6Qd3_5GGEJ_hpocOj71wvV65EuFYUjaYEUKAL6Q,3575
|
|
316
|
+
mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
|
|
317
|
+
mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
|
|
318
|
+
mlrun/track/trackers/mlflow_tracker.py,sha256=8JnCelnjqqW2L8wjh4fCvEL8r5wYIOzboz3UZj0CyyY,23547
|
|
319
|
+
mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
|
|
320
|
+
mlrun/utils/async_http.py,sha256=nAN0hxKUKaGc1XYJjdb59C2G1-nIF8HbzZECBmlODZI,12247
|
|
321
|
+
mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
|
|
322
|
+
mlrun/utils/clones.py,sha256=yXOeuLtgIiKZdmjeKK0Z_vIrH19ds5JuoJaCeDjhwOo,7516
|
|
323
|
+
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
324
|
+
mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
|
|
325
|
+
mlrun/utils/helpers.py,sha256=m5WwqAjneDiF0k9YKBwcwqdE-z0oWd-_4mZvYlNJa18,78461
|
|
326
|
+
mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
|
|
327
|
+
mlrun/utils/logger.py,sha256=RG0m1rx6gfkJ-2C1r_p41MMpPiaDYqaYM2lYHDlNZEU,14767
|
|
328
|
+
mlrun/utils/regex.py,sha256=jbR7IiOp6OO0mg9Fl_cVZCpWb9fL9nTPONCUxCDNWXg,5201
|
|
329
|
+
mlrun/utils/retryer.py,sha256=GzDMeATklqxcKSLYaFYcqioh8e5cbWRxA1_XKrGR1A4,7570
|
|
330
|
+
mlrun/utils/singleton.py,sha256=p1Y-X0mPSs_At092GS-pZCA8CTR62HOqPU07_ZH6-To,869
|
|
331
|
+
mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1294
|
|
332
|
+
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
333
|
+
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
334
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=s5Iu6u9_LXeVRPA70BNqrFIamTk7D3_AG6DH7K9qVQA,26668
|
|
335
|
+
mlrun/utils/notifications/notification/__init__.py,sha256=9Rfy6Jm8n0LaEDO1VAQb6kIbr7_uVuQhK1pS_abELIY,2581
|
|
336
|
+
mlrun/utils/notifications/notification/base.py,sha256=-9e3XqUixrWwImnTGrIL4enJRSIUP9gMrJVxwaLqeXc,5403
|
|
337
|
+
mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
|
|
338
|
+
mlrun/utils/notifications/notification/git.py,sha256=t2lqRrPRBO4awf_uhxJreH9CpcbYSH8T3CvHtwspHkE,6306
|
|
339
|
+
mlrun/utils/notifications/notification/ipython.py,sha256=9uZvI1uOLFaNuAsfJPXmL3l6dOzFoWdBK5GYNYFAfks,2282
|
|
340
|
+
mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAqp1vij7C6aRJ9h2mgs,6012
|
|
341
|
+
mlrun/utils/notifications/notification/slack.py,sha256=kfhogR5keR7Zjh0VCjJNK3NR5_yXT7Cv-x9GdOUW4Z8,7294
|
|
342
|
+
mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
|
|
343
|
+
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
344
|
+
mlrun/utils/version/version.json,sha256=ZZL1P41EhStIsPvOYCd6AxNCOLlPmQKtYbKec7UTgHc,84
|
|
345
|
+
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
346
|
+
mlrun-1.8.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
347
|
+
mlrun-1.8.0.dist-info/METADATA,sha256=pLdeMHXnl5-EoKkM3lqHwkZgsKXbLF6XMgIS6nwXph0,25801
|
|
348
|
+
mlrun-1.8.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
349
|
+
mlrun-1.8.0.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
350
|
+
mlrun-1.8.0.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
351
|
+
mlrun-1.8.0.dist-info/RECORD,,
|
|
@@ -1,137 +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
|
-
import uuid
|
|
16
|
-
import warnings
|
|
17
|
-
from abc import ABC
|
|
18
|
-
|
|
19
|
-
import pandas as pd
|
|
20
|
-
import semver
|
|
21
|
-
|
|
22
|
-
import mlrun.model_monitoring.applications.base as mm_base
|
|
23
|
-
import mlrun.model_monitoring.applications.context as mm_context
|
|
24
|
-
from mlrun.errors import MLRunIncompatibleVersionError
|
|
25
|
-
|
|
26
|
-
SUPPORTED_EVIDENTLY_VERSION = semver.Version.parse("0.4.39")
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
def _check_evidently_version(*, cur: semver.Version, ref: semver.Version) -> None:
|
|
30
|
-
if ref.is_compatible(cur) or (
|
|
31
|
-
cur.major == ref.major == 0 and cur.minor == ref.minor and cur.patch > ref.patch
|
|
32
|
-
):
|
|
33
|
-
return
|
|
34
|
-
if cur.major == ref.major == 0 and cur.minor > ref.minor:
|
|
35
|
-
warnings.warn(
|
|
36
|
-
f"Evidently version {cur} is not compatible with the tested "
|
|
37
|
-
f"version {ref}, use at your own risk."
|
|
38
|
-
)
|
|
39
|
-
else:
|
|
40
|
-
raise MLRunIncompatibleVersionError(
|
|
41
|
-
f"Evidently version {cur} is not supported, please change to "
|
|
42
|
-
f"{ref} (or another compatible version)."
|
|
43
|
-
)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
_HAS_EVIDENTLY = False
|
|
47
|
-
try:
|
|
48
|
-
import evidently # noqa: F401
|
|
49
|
-
|
|
50
|
-
_check_evidently_version(
|
|
51
|
-
cur=semver.Version.parse(evidently.__version__),
|
|
52
|
-
ref=SUPPORTED_EVIDENTLY_VERSION,
|
|
53
|
-
)
|
|
54
|
-
_HAS_EVIDENTLY = True
|
|
55
|
-
except ModuleNotFoundError:
|
|
56
|
-
pass
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
if _HAS_EVIDENTLY:
|
|
60
|
-
from evidently.suite.base_suite import Display
|
|
61
|
-
from evidently.ui.type_aliases import STR_UUID
|
|
62
|
-
from evidently.ui.workspace import Workspace
|
|
63
|
-
from evidently.utils.dashboard import TemplateParams, file_html_template
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
class EvidentlyModelMonitoringApplicationBase(
|
|
67
|
-
mm_base.ModelMonitoringApplicationBase, ABC
|
|
68
|
-
):
|
|
69
|
-
def __init__(
|
|
70
|
-
self, evidently_workspace_path: str, evidently_project_id: "STR_UUID"
|
|
71
|
-
) -> None:
|
|
72
|
-
"""
|
|
73
|
-
A class for integrating Evidently for mlrun model monitoring within a monitoring application.
|
|
74
|
-
Note: evidently is not installed by default in the mlrun/mlrun image.
|
|
75
|
-
It must be installed separately to use this class.
|
|
76
|
-
|
|
77
|
-
:param evidently_workspace_path: (str) The path to the Evidently workspace.
|
|
78
|
-
:param evidently_project_id: (str) The ID of the Evidently project.
|
|
79
|
-
|
|
80
|
-
"""
|
|
81
|
-
|
|
82
|
-
# TODO : more then one project (mep -> project)
|
|
83
|
-
if not _HAS_EVIDENTLY:
|
|
84
|
-
raise ModuleNotFoundError("Evidently is not installed - the app cannot run")
|
|
85
|
-
self.evidently_workspace = Workspace.create(evidently_workspace_path)
|
|
86
|
-
self.evidently_project_id = evidently_project_id
|
|
87
|
-
self.evidently_project = self.evidently_workspace.get_project(
|
|
88
|
-
evidently_project_id
|
|
89
|
-
)
|
|
90
|
-
|
|
91
|
-
@staticmethod
|
|
92
|
-
def log_evidently_object(
|
|
93
|
-
monitoring_context: mm_context.MonitoringApplicationContext,
|
|
94
|
-
evidently_object: "Display",
|
|
95
|
-
artifact_name: str,
|
|
96
|
-
) -> None:
|
|
97
|
-
"""
|
|
98
|
-
Logs an Evidently report or suite as an artifact.
|
|
99
|
-
|
|
100
|
-
:param monitoring_context: (MonitoringApplicationContext) The monitoring context to process.
|
|
101
|
-
:param evidently_object: (Display) The Evidently display to log, e.g. a report or a test suite object.
|
|
102
|
-
:param artifact_name: (str) The name for the logged artifact.
|
|
103
|
-
"""
|
|
104
|
-
evidently_object_html = evidently_object.get_html()
|
|
105
|
-
monitoring_context.log_artifact(
|
|
106
|
-
artifact_name, body=evidently_object_html.encode("utf-8"), format="html"
|
|
107
|
-
)
|
|
108
|
-
|
|
109
|
-
def log_project_dashboard(
|
|
110
|
-
self,
|
|
111
|
-
monitoring_context: mm_context.MonitoringApplicationContext,
|
|
112
|
-
timestamp_start: pd.Timestamp,
|
|
113
|
-
timestamp_end: pd.Timestamp,
|
|
114
|
-
artifact_name: str = "dashboard",
|
|
115
|
-
) -> None:
|
|
116
|
-
"""
|
|
117
|
-
Logs an Evidently project dashboard.
|
|
118
|
-
|
|
119
|
-
:param monitoring_context: (MonitoringApplicationContext) The monitoring context to process.
|
|
120
|
-
:param timestamp_start: (pd.Timestamp) The start timestamp for the dashboard data.
|
|
121
|
-
:param timestamp_end: (pd.Timestamp) The end timestamp for the dashboard data.
|
|
122
|
-
:param artifact_name: (str) The name for the logged artifact.
|
|
123
|
-
"""
|
|
124
|
-
|
|
125
|
-
dashboard_info = self.evidently_project.build_dashboard_info(
|
|
126
|
-
timestamp_start, timestamp_end
|
|
127
|
-
)
|
|
128
|
-
template_params = TemplateParams(
|
|
129
|
-
dashboard_id="pd_" + str(uuid.uuid4()).replace("-", ""),
|
|
130
|
-
dashboard_info=dashboard_info,
|
|
131
|
-
additional_graphs={},
|
|
132
|
-
)
|
|
133
|
-
|
|
134
|
-
dashboard_html = file_html_template(params=template_params)
|
|
135
|
-
monitoring_context.log_artifact(
|
|
136
|
-
artifact_name, body=dashboard_html.encode("utf-8"), format="html"
|
|
137
|
-
)
|
|
@@ -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
|
-
)
|