mlrun 1.5.0rc11__py3-none-any.whl → 1.5.0rc13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mlrun might be problematic. Click here for more details.
- mlrun/__main__.py +31 -2
- mlrun/api/api/endpoints/functions.py +110 -52
- mlrun/api/api/endpoints/model_endpoints.py +0 -56
- mlrun/api/crud/model_monitoring/deployment.py +208 -38
- mlrun/api/crud/model_monitoring/helpers.py +19 -6
- mlrun/api/crud/model_monitoring/model_endpoints.py +14 -31
- mlrun/api/db/sqldb/db.py +3 -1
- mlrun/api/utils/builder.py +2 -4
- mlrun/common/model_monitoring/helpers.py +19 -5
- mlrun/common/schemas/model_monitoring/constants.py +69 -0
- mlrun/common/schemas/model_monitoring/model_endpoints.py +22 -1
- mlrun/config.py +30 -12
- mlrun/datastore/__init__.py +1 -0
- mlrun/datastore/datastore_profile.py +2 -2
- mlrun/datastore/sources.py +4 -30
- mlrun/datastore/targets.py +106 -55
- mlrun/db/httpdb.py +20 -6
- mlrun/feature_store/__init__.py +2 -0
- mlrun/feature_store/api.py +3 -31
- mlrun/feature_store/feature_vector.py +1 -1
- mlrun/feature_store/retrieval/base.py +8 -3
- mlrun/launcher/remote.py +3 -3
- mlrun/lists.py +11 -0
- mlrun/model_monitoring/__init__.py +0 -1
- mlrun/model_monitoring/api.py +1 -1
- mlrun/model_monitoring/application.py +313 -0
- mlrun/model_monitoring/batch_application.py +526 -0
- mlrun/model_monitoring/batch_application_handler.py +32 -0
- mlrun/model_monitoring/evidently_application.py +89 -0
- mlrun/model_monitoring/helpers.py +39 -3
- mlrun/model_monitoring/stores/kv_model_endpoint_store.py +38 -7
- mlrun/model_monitoring/tracking_policy.py +4 -4
- mlrun/model_monitoring/writer.py +37 -0
- mlrun/projects/pipelines.py +38 -4
- mlrun/projects/project.py +257 -43
- mlrun/run.py +5 -2
- mlrun/runtimes/__init__.py +2 -0
- mlrun/runtimes/function.py +2 -1
- mlrun/utils/helpers.py +12 -0
- mlrun/utils/http.py +3 -0
- mlrun/utils/notifications/notification_pusher.py +22 -8
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.5.0rc11.dist-info → mlrun-1.5.0rc13.dist-info}/METADATA +5 -5
- {mlrun-1.5.0rc11.dist-info → mlrun-1.5.0rc13.dist-info}/RECORD +49 -44
- /mlrun/model_monitoring/{model_monitoring_batch.py → batch.py} +0 -0
- {mlrun-1.5.0rc11.dist-info → mlrun-1.5.0rc13.dist-info}/LICENSE +0 -0
- {mlrun-1.5.0rc11.dist-info → mlrun-1.5.0rc13.dist-info}/WHEEL +0 -0
- {mlrun-1.5.0rc11.dist-info → mlrun-1.5.0rc13.dist-info}/entry_points.txt +0 -0
- {mlrun-1.5.0rc11.dist-info → mlrun-1.5.0rc13.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.0rc13
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -64,7 +64,7 @@ Requires-Dist: avro ~=1.11 ; extra == 'all'
|
|
|
64
64
|
Requires-Dist: azure-core ~=1.24 ; extra == 'all'
|
|
65
65
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'all'
|
|
66
66
|
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'all'
|
|
67
|
-
Requires-Dist: azure-storage-blob
|
|
67
|
+
Requires-Dist: azure-storage-blob <12.18,>=12.13 ; extra == 'all'
|
|
68
68
|
Requires-Dist: bokeh >=2.4.2,~=2.4 ; extra == 'all'
|
|
69
69
|
Requires-Dist: boto3 <1.27,>=1.24.59 ; extra == 'all'
|
|
70
70
|
Requires-Dist: databricks-sdk ~=0.3.0 ; extra == 'all'
|
|
@@ -95,7 +95,7 @@ Requires-Dist: alembic ~=1.9 ; extra == 'api'
|
|
|
95
95
|
Provides-Extra: azure-blob-storage
|
|
96
96
|
Requires-Dist: msrest ~=0.6.21 ; extra == 'azure-blob-storage'
|
|
97
97
|
Requires-Dist: azure-core ~=1.24 ; extra == 'azure-blob-storage'
|
|
98
|
-
Requires-Dist: azure-storage-blob
|
|
98
|
+
Requires-Dist: azure-storage-blob <12.18,>=12.13 ; extra == 'azure-blob-storage'
|
|
99
99
|
Requires-Dist: adlfs <2023.5,>=2022.2 ; extra == 'azure-blob-storage'
|
|
100
100
|
Requires-Dist: pyopenssl >=23 ; extra == 'azure-blob-storage'
|
|
101
101
|
Provides-Extra: azure-key-vault
|
|
@@ -111,7 +111,7 @@ Requires-Dist: avro ~=1.11 ; extra == 'complete'
|
|
|
111
111
|
Requires-Dist: azure-core ~=1.24 ; extra == 'complete'
|
|
112
112
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'complete'
|
|
113
113
|
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete'
|
|
114
|
-
Requires-Dist: azure-storage-blob
|
|
114
|
+
Requires-Dist: azure-storage-blob <12.18,>=12.13 ; extra == 'complete'
|
|
115
115
|
Requires-Dist: boto3 <1.27,>=1.24.59 ; extra == 'complete'
|
|
116
116
|
Requires-Dist: databricks-sdk ~=0.3.0 ; extra == 'complete'
|
|
117
117
|
Requires-Dist: gcsfs <2023.7,>=2023.1 ; extra == 'complete'
|
|
@@ -133,7 +133,7 @@ Requires-Dist: avro ~=1.11 ; extra == 'complete-api'
|
|
|
133
133
|
Requires-Dist: azure-core ~=1.24 ; extra == 'complete-api'
|
|
134
134
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'complete-api'
|
|
135
135
|
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete-api'
|
|
136
|
-
Requires-Dist: azure-storage-blob
|
|
136
|
+
Requires-Dist: azure-storage-blob <12.18,>=12.13 ; extra == 'complete-api'
|
|
137
137
|
Requires-Dist: boto3 <1.27,>=1.24.59 ; extra == 'complete-api'
|
|
138
138
|
Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'complete-api'
|
|
139
139
|
Requires-Dist: databricks-sdk ~=0.3.0 ; extra == 'complete-api'
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=adWxPTY8n0qaMkwt3KVGPN2hZeHT4vcG7lWZxBewEg4,7279
|
|
2
|
-
mlrun/__main__.py,sha256=
|
|
3
|
-
mlrun/config.py,sha256=
|
|
2
|
+
mlrun/__main__.py,sha256=WW4vKA-5WrYXRovCbN0zSkQMOPeFfbjpKOlCgpLtEcg,49301
|
|
3
|
+
mlrun/config.py,sha256=40PjLSvZgKsV6zc8uQxWDhRDLL-Ch4hzDoGAL03FPeA,58692
|
|
4
4
|
mlrun/errors.py,sha256=pYZZtJsMqkFktG6T8iTyfyESrrhOLfKvB3U_jUDHMo8,6780
|
|
5
5
|
mlrun/execution.py,sha256=DPy9QzI18sRrI8vu4qXChl7QAPbc5swi_AU7E5YWBj0,39723
|
|
6
6
|
mlrun/features.py,sha256=UQQ2uh5Xh9XsMGiYBqh3bKgDhOHANjv1gQgWyId9qQE,15624
|
|
7
7
|
mlrun/k8s_utils.py,sha256=DhaLjX9Y4n6MZ-Gie2puEQ7LNQ9N6yUmnu6W_Y5ifMU,4876
|
|
8
8
|
mlrun/kfpops.py,sha256=ttXDQR9dphYvIhTHEKKTpE3QEPMrAr2-6Ph2RTFaUWM,29695
|
|
9
|
-
mlrun/lists.py,sha256=
|
|
9
|
+
mlrun/lists.py,sha256=XFv87TKpfdkah_KFoOVUHNxoouOT2sS306aZnGO4nKQ,8779
|
|
10
10
|
mlrun/model.py,sha256=36ncrKITJR56WhwUOxPfkr1WrnKsiq5bugbtcg0reUU,61563
|
|
11
11
|
mlrun/render.py,sha256=a_s-kzQ35bJg7e7cBxk3MCnoIK4qvDS2dGO8RzHgI1c,13016
|
|
12
|
-
mlrun/run.py,sha256=
|
|
12
|
+
mlrun/run.py,sha256=6NcQNgl_HnN4WGR2OHcTAgFeQ9uyGZv9hFwnTen2WQw,47531
|
|
13
13
|
mlrun/secrets.py,sha256=hr2Ia9kLkoMM3KoxijXqO6AIJOUrrLxvz4Q7Xk39d4Y,7783
|
|
14
14
|
mlrun/api/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
15
15
|
mlrun/api/alembic.ini,sha256=oeSJRHwBbF3c3-N_RJilcZD-diq3F-oPv21gDIkrZGs,2105
|
|
@@ -32,13 +32,13 @@ mlrun/api/api/endpoints/datastore_profile.py,sha256=yzW4VI7yYwWRAHieMcBch4IVz3WE
|
|
|
32
32
|
mlrun/api/api/endpoints/feature_store.py,sha256=mq6XVv9zaW7zU-XRHh8X2gTwk-z6a1QE3bcuOdR6jQU,28853
|
|
33
33
|
mlrun/api/api/endpoints/files.py,sha256=dFwmP40O2MXI1CmU3gJ1XrOVjSubpb0KJtguWJC5Bn4,6712
|
|
34
34
|
mlrun/api/api/endpoints/frontend_spec.py,sha256=r8r6BSDpYcUpWKJX7zqXJPtYBZHzfZILd1w-SIikea8,5530
|
|
35
|
-
mlrun/api/api/endpoints/functions.py,sha256=
|
|
35
|
+
mlrun/api/api/endpoints/functions.py,sha256=WSQWv0QXMoGgnEunSMQBbPFVig0H8hdbxkaGokUgrBQ,41111
|
|
36
36
|
mlrun/api/api/endpoints/grafana_proxy.py,sha256=5PvWjqTeb88kNtuTtZub9eFgr6I0ORlmPXGHk6G1QfM,6086
|
|
37
37
|
mlrun/api/api/endpoints/healthz.py,sha256=DVNb94DLQhmQWxxo5d3AZbd82AL_PGuzU6NJ3IT5pkA,1344
|
|
38
38
|
mlrun/api/api/endpoints/hub.py,sha256=KsnshPX0IRANcRG-VR_tKLlxCH7I9qgsuYtCYIwMipM,10495
|
|
39
39
|
mlrun/api/api/endpoints/jobs.py,sha256=TTfV0xGrThuf8XqeGlrH34_aoo89QDt_wJgy7WcxD44,2931
|
|
40
40
|
mlrun/api/api/endpoints/logs.py,sha256=jMoRvAxgIIcwNahTbH_FPScND_m_Yez91SS92KUGahw,2975
|
|
41
|
-
mlrun/api/api/endpoints/model_endpoints.py,sha256=
|
|
41
|
+
mlrun/api/api/endpoints/model_endpoints.py,sha256=KEQ3UGx-hIqeWzc5In-UsNB2pbppgbxweQaOTwNLeMM,13568
|
|
42
42
|
mlrun/api/api/endpoints/operations.py,sha256=tLqaRsyVP8CxCv8H_IDg3GtJW040xY5F_D5exLF7bGg,3756
|
|
43
43
|
mlrun/api/api/endpoints/pipelines.py,sha256=hKPzWOQXdhOdwZUt4Ik0jCFc_TbB6bTeGOhWuJhiegM,9231
|
|
44
44
|
mlrun/api/api/endpoints/projects.py,sha256=nCHgjYNxC4_E33WB_kWoFj-3yULxE11f39xJcH0M8F8,14736
|
|
@@ -70,10 +70,10 @@ mlrun/api/crud/secrets.py,sha256=hlO4WCxGYF6_DdSBRWgmsZ9IiBxUNHfnCnxkImlTxmQ,224
|
|
|
70
70
|
mlrun/api/crud/tags.py,sha256=pcXXrmlfgCBCtw5uBX6hAHdqO96XIg0ov5vn-u6r5Q4,3277
|
|
71
71
|
mlrun/api/crud/workflows.py,sha256=7RtE1cEL32pcBzotIArDGwQhae9_s7tQHmYqShtYIhU,13612
|
|
72
72
|
mlrun/api/crud/model_monitoring/__init__.py,sha256=_rZmfvis_Qkhephv_SEgzqUVuC4bY-D84mCyyztWRs0,759
|
|
73
|
-
mlrun/api/crud/model_monitoring/deployment.py,sha256=
|
|
73
|
+
mlrun/api/crud/model_monitoring/deployment.py,sha256=Osg3Rt1Bi63pI33edpuhWpe6rZTFFTZNWbHFBZ_1sNw,32275
|
|
74
74
|
mlrun/api/crud/model_monitoring/grafana.py,sha256=7D-sUY3PjFh7_HjYe-KWryvepxO9zLArVC3U7IChuqA,17494
|
|
75
|
-
mlrun/api/crud/model_monitoring/helpers.py,sha256=
|
|
76
|
-
mlrun/api/crud/model_monitoring/model_endpoints.py,sha256=
|
|
75
|
+
mlrun/api/crud/model_monitoring/helpers.py,sha256=5K6y7hIjBdxY__rNfluINFgis1IJZQWuK-TjP26ypag,6114
|
|
76
|
+
mlrun/api/crud/model_monitoring/model_endpoints.py,sha256=s1KwAAZ0sz6SY5XZT4eyyVKBTysnqHzEnLdtwd11aTU,31423
|
|
77
77
|
mlrun/api/crud/runtimes/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
78
78
|
mlrun/api/crud/runtimes/nuclio/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
79
79
|
mlrun/api/crud/runtimes/nuclio/function.py,sha256=Tgca7uACPlyeoGiLkIHsX0d9SePy_a6pEW03ryGMdPc,18762
|
|
@@ -83,7 +83,7 @@ mlrun/api/db/base.py,sha256=fXEmwwOHN1RIbXo0ScQ4wjwlwET7H5g4uxOMmT3YtB0,16410
|
|
|
83
83
|
mlrun/api/db/init_db.py,sha256=WTHphTsHl-ZKszZsQk3V-lFTzIEbWYJADolleugQ8eg,739
|
|
84
84
|
mlrun/api/db/session.py,sha256=v1HJJ8yc854NQAPjygQX6pSqE-2mNjGjFK7vFdoKcLo,1299
|
|
85
85
|
mlrun/api/db/sqldb/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
86
|
-
mlrun/api/db/sqldb/db.py,sha256=
|
|
86
|
+
mlrun/api/db/sqldb/db.py,sha256=F7xMmQ1XBqqmR-VLauWCQ7en5zVBR8pMBYMy-UDp9DM,156915
|
|
87
87
|
mlrun/api/db/sqldb/helpers.py,sha256=Asc_cDFE2e7gbQ3SVriYyyK4yu94wfOemYPYCMpNLws,2340
|
|
88
88
|
mlrun/api/db/sqldb/models/__init__.py,sha256=oD0qix1voOtUiP-fG04QK5VHOPageoclcSjw0PIoBQY,1105
|
|
89
89
|
mlrun/api/db/sqldb/models/models_mysql.py,sha256=K_3AodqlZxKD7ovdFqo5K35YSKmOYeKRv0PkBGHmDKY,22325
|
|
@@ -140,7 +140,7 @@ mlrun/api/schemas/__init__.py,sha256=ckAFziB1YgJTsIoY-Dd1iUh8nZMKLsLT_W40dCAixg8
|
|
|
140
140
|
mlrun/api/utils/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
141
141
|
mlrun/api/utils/asyncio.py,sha256=Uaekrr2Gw55ivhqmxdXIDBgFmcH48p94XfEdhqq7ot8,1092
|
|
142
142
|
mlrun/api/utils/background_tasks.py,sha256=ZlNkk-4I37s_efqg521AudbN52NRIOdbvbRpoWL_S54,7371
|
|
143
|
-
mlrun/api/utils/builder.py,sha256=
|
|
143
|
+
mlrun/api/utils/builder.py,sha256=IT_6UTLuCTYUODIr5N0zwN_5vDZXcLmie9wUKv0c_qI,36705
|
|
144
144
|
mlrun/api/utils/helpers.py,sha256=WltrGj7UOURvHzdz99wo-Aixqh06Lqyrt31c1EQw7AE,2512
|
|
145
145
|
mlrun/api/utils/memory_reports.py,sha256=l-texuripca1J5tfBmwzSc3l0t6dAMNO8JFjt9kptd8,3728
|
|
146
146
|
mlrun/api/utils/periodic.py,sha256=0dyKI1bEYRJGwH1Ciqt52Brqys8MAesq84hli6ENZbg,2760
|
|
@@ -200,7 +200,7 @@ mlrun/common/types.py,sha256=V_jCEFCJZcycFVsPzEToCRQja5bqW0zRAAVaGN_QYxQ,790
|
|
|
200
200
|
mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
201
201
|
mlrun/common/db/sql_session.py,sha256=iWR8DWyziN2DSDiBgc5Wj3O7iVWDwfd0nJklAKwjoRM,2542
|
|
202
202
|
mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
|
|
203
|
-
mlrun/common/model_monitoring/helpers.py,sha256=
|
|
203
|
+
mlrun/common/model_monitoring/helpers.py,sha256=FTp6tDHhi7oqbgAz-cu7DpcSKSxOtTgJY2v2B_tnkf8,3955
|
|
204
204
|
mlrun/common/schemas/__init__.py,sha256=y6pIe1ZWFfBzWzQkkhg_wiFuDkWUBh5xC17ldqwb-Sk,4561
|
|
205
205
|
mlrun/common/schemas/artifact.py,sha256=vbXaY8eHxKt7YHKksD_PYEC-47eguxVb6wRAtMAW7Bk,1923
|
|
206
206
|
mlrun/common/schemas/auth.py,sha256=CZgqGDVNk4rnpVzEsTrNtOoBbYVj-G2o88s3eTonAlc,5879
|
|
@@ -229,18 +229,18 @@ mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF
|
|
|
229
229
|
mlrun/common/schemas/tag.py,sha256=2sm2Z5qM0jyakHuT_lxb-EQ2M5Unpodz4lj6MNkDEzo,905
|
|
230
230
|
mlrun/common/schemas/workflow.py,sha256=zlEod6UCWDVHK_DEuLEx30XhTUg2xwvpiJNIWLAML2s,1729
|
|
231
231
|
mlrun/common/schemas/model_monitoring/__init__.py,sha256=5jWwYb5AUhcHZK3LOFhButWspwgagQnlisl6f5_vRms,1364
|
|
232
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
232
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=T_ERWFBEy3kdFZMfIbEZbGxDefFikySu3SLPSuXHTEU,7449
|
|
233
233
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=W6TcNc7mqPj040lfQrEadEQ37csdxLDgdU3QRLlELMQ,1444
|
|
234
|
-
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=
|
|
234
|
+
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=I0PzDi56sJEVafS_GNCIuYAN_ZC0bWmOiWHGsDo_480,12060
|
|
235
235
|
mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
|
|
236
236
|
mlrun/data_types/data_types.py,sha256=qgRIdlSl9X-rAnwOW-F0hwPbDKOZI05JlSzV1O8ReaU,4647
|
|
237
237
|
mlrun/data_types/infer.py,sha256=iEEQKZ6l-6PhHJWPwVyBJTEANNoP9xkrkYtryOH3O60,5813
|
|
238
238
|
mlrun/data_types/spark.py,sha256=iNcpPsChTmDndqRp92eWN0ZoAszqWXvRR86rupx2ThQ,9426
|
|
239
|
-
mlrun/datastore/__init__.py,sha256=
|
|
239
|
+
mlrun/datastore/__init__.py,sha256=PL48mjvA4Z26qPGmf_KcsC0b7_z8O-k8j50jeVqdp70,4114
|
|
240
240
|
mlrun/datastore/azure_blob.py,sha256=8j3cZuQ8pqnPx48JAJvjtqSqufyNlqXROGrMGD8h3wM,6946
|
|
241
241
|
mlrun/datastore/base.py,sha256=9riD7d__cegdvegsgDebo2G7fxOejXKk8c7xq3yH8qo,22471
|
|
242
242
|
mlrun/datastore/datastore.py,sha256=gYZVC-lAZZPjr-7plsiPaeb2blFt207taNseePIz2qU,8670
|
|
243
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
243
|
+
mlrun/datastore/datastore_profile.py,sha256=theKCioqKxPx_G7M1HgF3WIk5I1wl6a_LT9V5RCcHyU,6619
|
|
244
244
|
mlrun/datastore/dbfs_store.py,sha256=ZzsSZ4ZMByDkvzNKLpvTTRq8asaaKdz3UDsnC2cV7bU,6526
|
|
245
245
|
mlrun/datastore/filestore.py,sha256=o4ex777XyxyV1CQBP7M2JyyssCVVAc4H3JrvNC9eryM,3791
|
|
246
246
|
mlrun/datastore/google_cloud_storage.py,sha256=Y_X4ODhvvBeknE_Aqaky_Fdi0-EY5waZAglmAttgFgY,5114
|
|
@@ -248,10 +248,10 @@ mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,62
|
|
|
248
248
|
mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
|
|
249
249
|
mlrun/datastore/redis.py,sha256=x2A2LgGeDPTtajPoB3RBqYysDgPrSW5iQd5PR_TLhNI,5466
|
|
250
250
|
mlrun/datastore/s3.py,sha256=Zd3Bmd9IMA3WEG4fWQnhJqyAjwW2PouHPpk4uDnMttg,7035
|
|
251
|
-
mlrun/datastore/sources.py,sha256=
|
|
251
|
+
mlrun/datastore/sources.py,sha256=yP81r4qzl0PF6TdfZFLNCjA-qr5gZpGsksOB5iY5he8,37997
|
|
252
252
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
253
253
|
mlrun/datastore/store_resources.py,sha256=SUY9oJieq3r8PEq8G661XxmXem_e-CxDoy2AJ7dpXBk,6906
|
|
254
|
-
mlrun/datastore/targets.py,sha256=
|
|
254
|
+
mlrun/datastore/targets.py,sha256=vPirtqpyynFQiARums9gxMiEFbodt-H6ab4U2oNV0r0,66570
|
|
255
255
|
mlrun/datastore/utils.py,sha256=HWX9SfCsBk4Mx-0xp5kwshTZnm32fHdy3gRdVaYSt0Y,5805
|
|
256
256
|
mlrun/datastore/v3io.py,sha256=ywd-rrB5Uicdk7KGMk-nJ4mKPjvg2z5w6TVx5Bo5jIo,8099
|
|
257
257
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
@@ -259,17 +259,17 @@ mlrun/datastore/wasbfs/fs.py,sha256=FfKli7rBwres1pg8AxDlyyg1D5WukBEKb8Mi1SF5HqY,
|
|
|
259
259
|
mlrun/db/__init__.py,sha256=Wy3NbZwgAneRHXCIKygQE-68tnAhvF7lVxrFSh9G6Y4,1145
|
|
260
260
|
mlrun/db/base.py,sha256=vfUrS6Bs5Rqxdx285tpNuxRr60C82tyaULY8M5gCjg4,17364
|
|
261
261
|
mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
|
|
262
|
-
mlrun/db/httpdb.py,sha256=
|
|
262
|
+
mlrun/db/httpdb.py,sha256=JeegiQT3fabDlFXtw6RGwteSA460ARzkbZ2MpJY-h-Y,145536
|
|
263
263
|
mlrun/db/nopdb.py,sha256=Z7Di4Tz7OXMZNq8clVZInKlY0QzHu5xoo4KN5soGw_E,13990
|
|
264
|
-
mlrun/feature_store/__init__.py,sha256=
|
|
265
|
-
mlrun/feature_store/api.py,sha256=
|
|
264
|
+
mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
|
|
265
|
+
mlrun/feature_store/api.py,sha256=9CKng3Z0mD-h1ly__FpQOcPee2uI1omqcmgSw6lm5iQ,45902
|
|
266
266
|
mlrun/feature_store/common.py,sha256=sl2pmkuv5w4KtTMjt0ky34Qps0iuoXNWbyYGuBkCxjc,12809
|
|
267
267
|
mlrun/feature_store/feature_set.py,sha256=At5S9ORHXQ-Gz63MfwTTcu3lCIsHN03cLWEWSmFum68,47837
|
|
268
|
-
mlrun/feature_store/feature_vector.py,sha256=
|
|
268
|
+
mlrun/feature_store/feature_vector.py,sha256=o9-yJXcYFesbtNQYqAQ1g-8rmcVH4XhHHCklDvGo2H4,34962
|
|
269
269
|
mlrun/feature_store/ingestion.py,sha256=GZkrke5_JJfA_PGOFc6ekbHKujHgMgqr6t4vop5n_bg,11210
|
|
270
270
|
mlrun/feature_store/steps.py,sha256=EcZBJvSO-7UMUnzf-nv728cHRxGxHschzfXrmji7e5U,29357
|
|
271
271
|
mlrun/feature_store/retrieval/__init__.py,sha256=6qtZFx8-vtsHv8ZGJuTv3UDe9m7XIlOq4ryEYC58Eww,1260
|
|
272
|
-
mlrun/feature_store/retrieval/base.py,sha256=
|
|
272
|
+
mlrun/feature_store/retrieval/base.py,sha256=tzDuEl6mN5sdjibCuYhqUxUCh7kcyhnD9re2r_vHSzw,30988
|
|
273
273
|
mlrun/feature_store/retrieval/dask_merger.py,sha256=Lxoj16c8hp9i5RHf-8BmG9NmReeEev6AHu96oEN2Gp8,4895
|
|
274
274
|
mlrun/feature_store/retrieval/job.py,sha256=ZveUaLml6jU8EZCGoxM4vLKNWnjC7EDndGMH3aOuAu0,7714
|
|
275
275
|
mlrun/feature_store/retrieval/local_merger.py,sha256=M0R2FWc-kuLVvyAYbawrxAJvqjshtaRK2gQqF6DjgxM,4218
|
|
@@ -364,18 +364,23 @@ mlrun/launcher/base.py,sha256=hyBTQjnjGN-pLMD46MtXcO8__QKBcy_jxOiuH3HqTrI,15824
|
|
|
364
364
|
mlrun/launcher/client.py,sha256=c5h7m5i18FXwWaze8epaLjCKMM0_OM8FMXmTNnzCSns,6201
|
|
365
365
|
mlrun/launcher/factory.py,sha256=tk6foFWox7f_xaeTgkWTx9ht_5fv0XzLDR8ucdb8oTE,2344
|
|
366
366
|
mlrun/launcher/local.py,sha256=cWsXKfW-VOgAQOO795rh1YWalR-epRb0z0AbkYwL1x8,10815
|
|
367
|
-
mlrun/launcher/remote.py,sha256=
|
|
368
|
-
mlrun/model_monitoring/__init__.py,sha256=
|
|
369
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
367
|
+
mlrun/launcher/remote.py,sha256=neqIWNi64uR694DIFg6BdJk6Bbi0w_FIhfjChX1wsmk,6772
|
|
368
|
+
mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
|
|
369
|
+
mlrun/model_monitoring/api.py,sha256=ATuhMYQe8NBPKrBo9L2Ogk1APwZjA2v9Sg0fvCJgt1Y,34753
|
|
370
|
+
mlrun/model_monitoring/application.py,sha256=OlpzGxBkTuBbqFIwN9AwiibqDP5YZaBHv6a7bWahm5c,12209
|
|
371
|
+
mlrun/model_monitoring/batch.py,sha256=tnhTUkY9nDedkK7NZ5U53jL0P9i83_7QZlwEh1U0AhM,42337
|
|
372
|
+
mlrun/model_monitoring/batch_application.py,sha256=kFGZUss7CBkpcei9NlHFmKoU1Wu5l7_pdq8GuOhK0bk,21938
|
|
373
|
+
mlrun/model_monitoring/batch_application_handler.py,sha256=6I3XmganxCfI-IUFEvFpdsUFiw3OiIMq58BS-XARIMs,1046
|
|
374
|
+
mlrun/model_monitoring/evidently_application.py,sha256=ToQ9BfXZJqhVSxsVyWVEpYjKYaaTAT9wB83Tj7KVJdA,3401
|
|
370
375
|
mlrun/model_monitoring/features_drift_table.py,sha256=2r51W4xQ8gNq3PXt73IfsYu4l4mjwD-dLfRVAvKplTE,24209
|
|
371
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
376
|
+
mlrun/model_monitoring/helpers.py,sha256=lJhH8SiRQg4jHo0HDC_89t2jghwPqOp1Xks1tFdQBj0,3269
|
|
372
377
|
mlrun/model_monitoring/model_endpoint.py,sha256=yuKvIa5vJxsPk4dXPK6cKgfmZqsD_W2cdeNCWKEO6Tc,5214
|
|
373
|
-
mlrun/model_monitoring/model_monitoring_batch.py,sha256=tnhTUkY9nDedkK7NZ5U53jL0P9i83_7QZlwEh1U0AhM,42337
|
|
374
378
|
mlrun/model_monitoring/prometheus.py,sha256=Z0UWmhQ-dpGGH31gCiGdfmhfj-RFRf1Tu1bYVe-k4jk,7605
|
|
375
379
|
mlrun/model_monitoring/stream_processing.py,sha256=LqRMosAWF1ncKjP829zDTdpkx5pPcydv5QJp3RGQY_U,48755
|
|
376
|
-
mlrun/model_monitoring/tracking_policy.py,sha256=
|
|
380
|
+
mlrun/model_monitoring/tracking_policy.py,sha256=gu-qyQ4Oa7-SaeyaXduakmqlPSZxmkRq7AhN6Da1o1U,4598
|
|
381
|
+
mlrun/model_monitoring/writer.py,sha256=XZJwMJdJq-1n-9e0e7KDBe2qXp23c7JjoIZgHEntIBQ,1528
|
|
377
382
|
mlrun/model_monitoring/stores/__init__.py,sha256=adU_G07jkD3JUT8__d0jAxs9nNomL7igKmd6uVM9L50,4525
|
|
378
|
-
mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=
|
|
383
|
+
mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=6lhaTR_MSsGxZxNp_RT220anDp8q8trWtJrVOrvp-To,21485
|
|
379
384
|
mlrun/model_monitoring/stores/model_endpoint_store.py,sha256=zqGVidq9Clym1l15ZltIZMCTdFuZ1QUwXxEAma9-4Hs,5695
|
|
380
385
|
mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=UsCcOvi_lf1MsGA6VMUi9Hao0EHCXwhXGyD4E5aDDC4,16259
|
|
381
386
|
mlrun/model_monitoring/stores/models/__init__.py,sha256=usKJhg-jD0YBmaE1advYiOn4QGUNkXK0jjJHXpA1L8U,1117
|
|
@@ -404,14 +409,14 @@ mlrun/platforms/iguazio.py,sha256=LU1d33ll5EKIyp2zitCffZIbq-3fRwNSNO9MK2cIsHc,21
|
|
|
404
409
|
mlrun/platforms/other.py,sha256=z4pWqxXkVVuMLk-MbNb0Y_ZR5pmIsUm0R8vHnqpEnew,11852
|
|
405
410
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
406
411
|
mlrun/projects/operations.py,sha256=AJsin0LrJHTisAPi-9t2ciFNZ83QdMRESIG31Mh_0x4,17948
|
|
407
|
-
mlrun/projects/pipelines.py,sha256=
|
|
408
|
-
mlrun/projects/project.py,sha256=
|
|
409
|
-
mlrun/runtimes/__init__.py,sha256=
|
|
412
|
+
mlrun/projects/pipelines.py,sha256=z12g0yzYswZpaFe_XL0eTjgYPkJ3bpCCL-cjxZ0ni64,35745
|
|
413
|
+
mlrun/projects/project.py,sha256=5cV39aohgnzMcpY5AxCK1fWabIxCDvrOIFQ2F3SbeXY,137893
|
|
414
|
+
mlrun/runtimes/__init__.py,sha256=OuwnzCoaoXnqAv_RhoYRF6mRPfZ2pkslenxASpXhHQM,6707
|
|
410
415
|
mlrun/runtimes/base.py,sha256=6MZ2n7jKyqX0j7wrWXIjMlZOu6dCer5Lac_QrRyIUC4,38198
|
|
411
416
|
mlrun/runtimes/constants.py,sha256=TnkD0nQ7pcFq1aJvbweoM4BgbkhaA6fHhg9rnAkxDBE,6689
|
|
412
417
|
mlrun/runtimes/daskjob.py,sha256=LgA4Y1gcNUHvRz0YlFT-mfEfzn8-yPD5Y1MCF2HPgFk,16226
|
|
413
418
|
mlrun/runtimes/funcdoc.py,sha256=HRD-mQkSyRBPExNWEhTCX3Cj01MXyeuQqc6jKwg5aZ4,9994
|
|
414
|
-
mlrun/runtimes/function.py,sha256=
|
|
419
|
+
mlrun/runtimes/function.py,sha256=UtGNpNtcYXdtuioG0DZAQKqhEqMmtpX12nMT_KmfWxE,45273
|
|
415
420
|
mlrun/runtimes/function_reference.py,sha256=SJ0J-4ww0FQdijmdnUwGUKhMb-h5wtzqCPItTWKIL40,4911
|
|
416
421
|
mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
|
|
417
422
|
mlrun/runtimes/kubejob.py,sha256=LcqMlwsGAfXwbesz652P0kRpzgW7azZ9ijeLqSoCDxs,15325
|
|
@@ -448,15 +453,15 @@ mlrun/utils/azure_vault.py,sha256=VNs2fz0XlFrV5Ggz3T0mR7mOWHefEcC14wM7QpsbY44,34
|
|
|
448
453
|
mlrun/utils/clones.py,sha256=Q1b1BA4-slooth0gEXoX-x8mhr1m6BgFBA72DXfCqJ8,6245
|
|
449
454
|
mlrun/utils/condition_evaluator.py,sha256=oR-GjryAg76D4G79G-DzVkx631D6Gd4jJgbr_d3Btnw,1920
|
|
450
455
|
mlrun/utils/db.py,sha256=2pdIYKIA0GiwwuWLW0PJ_bPu9M1rd7ESBqnMr5wWuW4,1662
|
|
451
|
-
mlrun/utils/helpers.py,sha256=
|
|
452
|
-
mlrun/utils/http.py,sha256=
|
|
456
|
+
mlrun/utils/helpers.py,sha256=38rlIwVqakHlIoqVQ6MtAOe61KpRMOyBblN8nikjzSg,49885
|
|
457
|
+
mlrun/utils/http.py,sha256=_3pJPuDPz7M9pU4uRN-NPUmCyaANCQsAWAIrlVLZPiY,8733
|
|
453
458
|
mlrun/utils/logger.py,sha256=d5qUNJ-J_tNASi7A7-cRBOOXA0jJrEDEWFft8AAukLc,7035
|
|
454
459
|
mlrun/utils/regex.py,sha256=V0kaw1-zuehkN20g_Pq6SgkJTBLRdBqNkXOGN_2TJEw,4430
|
|
455
460
|
mlrun/utils/singleton.py,sha256=UUTQiBTXyzmjeYzsvTUsSxqyLJHOtesqif9GNfZO9rc,883
|
|
456
461
|
mlrun/utils/v3io_clients.py,sha256=HL7Hma-pxaQBXMKcEnWqGLCpFgykwnszlabzeOHC9-E,1319
|
|
457
462
|
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
458
463
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
459
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
464
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=dWIhrAz-XOqhV4XeREbN_TRjX9j-DFFsabJOfL-fJKw,22320
|
|
460
465
|
mlrun/utils/notifications/notification/__init__.py,sha256=v2ULfsoGLlgBKS90ezou9wooBX7fo0NJgDsNdr51YEk,2113
|
|
461
466
|
mlrun/utils/notifications/notification/base.py,sha256=t1sxExL2i2tJr3UuiQ9NTDONrpXcGBsrnxtAdemog2s,2293
|
|
462
467
|
mlrun/utils/notifications/notification/console.py,sha256=3xNMf-PFANx6h6I6qpf-xRnI5S0001fHI4caYguNBgg,1971
|
|
@@ -465,11 +470,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=qrBmtECiRG6sZpCIVMg7RZc
|
|
|
465
470
|
mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
|
|
466
471
|
mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
|
|
467
472
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
468
|
-
mlrun/utils/version/version.json,sha256=
|
|
473
|
+
mlrun/utils/version/version.json,sha256=wKRp6RJ3zwxvyvpOVxDWfhT26gzBbWMs-1oFSJzdtqA,89
|
|
469
474
|
mlrun/utils/version/version.py,sha256=HMwseV8xjTQ__6T6yUWojx_z6yUj7Io7O4NcCCH_sz8,1970
|
|
470
|
-
mlrun-1.5.
|
|
471
|
-
mlrun-1.5.
|
|
472
|
-
mlrun-1.5.
|
|
473
|
-
mlrun-1.5.
|
|
474
|
-
mlrun-1.5.
|
|
475
|
-
mlrun-1.5.
|
|
475
|
+
mlrun-1.5.0rc13.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
476
|
+
mlrun-1.5.0rc13.dist-info/METADATA,sha256=mD1yy0Ra0vNtU2KeoFIssXqFdLisTxV6Lp-RJGjByDo,17826
|
|
477
|
+
mlrun-1.5.0rc13.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
478
|
+
mlrun-1.5.0rc13.dist-info/entry_points.txt,sha256=ZbXmb36B9JmK7EaleP8MIAbZSOQXQV0iwKR6si0HUWk,47
|
|
479
|
+
mlrun-1.5.0rc13.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
480
|
+
mlrun-1.5.0rc13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|