mlrun 1.10.0rc2__py3-none-any.whl → 1.10.0rc4__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.

Files changed (67) hide show
  1. mlrun/__init__.py +2 -2
  2. mlrun/__main__.py +2 -2
  3. mlrun/artifacts/__init__.py +1 -0
  4. mlrun/artifacts/base.py +20 -8
  5. mlrun/artifacts/dataset.py +1 -1
  6. mlrun/artifacts/document.py +1 -1
  7. mlrun/artifacts/helpers.py +40 -0
  8. mlrun/artifacts/llm_prompt.py +165 -0
  9. mlrun/artifacts/manager.py +13 -1
  10. mlrun/artifacts/model.py +92 -12
  11. mlrun/artifacts/plots.py +2 -2
  12. mlrun/common/formatters/artifact.py +1 -0
  13. mlrun/common/runtimes/constants.py +0 -21
  14. mlrun/common/schemas/artifact.py +12 -12
  15. mlrun/common/schemas/pipeline.py +0 -16
  16. mlrun/common/schemas/project.py +0 -17
  17. mlrun/common/schemas/runs.py +0 -17
  18. mlrun/config.py +3 -3
  19. mlrun/datastore/base.py +2 -2
  20. mlrun/datastore/datastore.py +1 -1
  21. mlrun/datastore/datastore_profile.py +3 -11
  22. mlrun/datastore/redis.py +2 -3
  23. mlrun/datastore/sources.py +0 -9
  24. mlrun/datastore/store_resources.py +3 -3
  25. mlrun/datastore/storeytargets.py +2 -5
  26. mlrun/datastore/targets.py +7 -57
  27. mlrun/datastore/utils.py +1 -11
  28. mlrun/db/base.py +7 -6
  29. mlrun/db/httpdb.py +72 -66
  30. mlrun/db/nopdb.py +1 -0
  31. mlrun/errors.py +22 -1
  32. mlrun/execution.py +87 -1
  33. mlrun/feature_store/common.py +5 -5
  34. mlrun/feature_store/feature_set.py +10 -6
  35. mlrun/feature_store/feature_vector.py +8 -6
  36. mlrun/launcher/base.py +1 -1
  37. mlrun/lists.py +1 -1
  38. mlrun/model.py +0 -5
  39. mlrun/model_monitoring/__init__.py +0 -1
  40. mlrun/model_monitoring/api.py +0 -44
  41. mlrun/model_monitoring/applications/evidently/base.py +3 -41
  42. mlrun/model_monitoring/controller.py +1 -1
  43. mlrun/model_monitoring/writer.py +1 -4
  44. mlrun/projects/operations.py +3 -3
  45. mlrun/projects/project.py +260 -23
  46. mlrun/run.py +9 -27
  47. mlrun/runtimes/base.py +6 -6
  48. mlrun/runtimes/kubejob.py +2 -2
  49. mlrun/runtimes/nuclio/function.py +3 -3
  50. mlrun/runtimes/nuclio/serving.py +13 -23
  51. mlrun/runtimes/remotesparkjob.py +6 -0
  52. mlrun/runtimes/sparkjob/spark3job.py +6 -0
  53. mlrun/serving/__init__.py +5 -1
  54. mlrun/serving/server.py +39 -3
  55. mlrun/serving/states.py +101 -4
  56. mlrun/serving/v2_serving.py +1 -1
  57. mlrun/utils/helpers.py +66 -9
  58. mlrun/utils/notifications/notification/slack.py +5 -1
  59. mlrun/utils/notifications/notification_pusher.py +2 -1
  60. mlrun/utils/version/version.json +2 -2
  61. {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc4.dist-info}/METADATA +22 -10
  62. {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc4.dist-info}/RECORD +66 -65
  63. {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc4.dist-info}/WHEEL +1 -1
  64. mlrun/model_monitoring/tracking_policy.py +0 -124
  65. {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc4.dist-info}/entry_points.txt +0 -0
  66. {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc4.dist-info}/licenses/LICENSE +0 -0
  67. {mlrun-1.10.0rc2.dist-info → mlrun-1.10.0rc4.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlrun
3
- Version: 1.10.0rc2
3
+ Version: 1.10.0rc4
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -35,7 +35,7 @@ Requires-Dist: pyarrow<17,>=10.0
35
35
  Requires-Dist: pyyaml<7,>=6.0.2
36
36
  Requires-Dist: requests~=2.32
37
37
  Requires-Dist: tabulate~=0.8.6
38
- Requires-Dist: v3io~=0.6.9
38
+ Requires-Dist: v3io~=0.7.0
39
39
  Requires-Dist: pydantic>=1.10.15
40
40
  Requires-Dist: mergedeep~=1.3
41
41
  Requires-Dist: v3io-frames~=0.10.14; python_version < "3.11"
@@ -51,8 +51,8 @@ Requires-Dist: setuptools>=75.2
51
51
  Requires-Dist: deprecated~=1.2
52
52
  Requires-Dist: jinja2>=3.1.6,~=3.1
53
53
  Requires-Dist: orjson<4,>=3.9.15
54
- Requires-Dist: mlrun-pipelines-kfp-common~=0.5.2
55
- Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.1
54
+ Requires-Dist: mlrun-pipelines-kfp-common~=0.5.5
55
+ Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.4
56
56
  Requires-Dist: docstring_parser~=0.16
57
57
  Requires-Dist: aiosmtplib~=3.0
58
58
  Provides-Extra: s3
@@ -118,7 +118,7 @@ Requires-Dist: timelength~=1.1; extra == "api"
118
118
  Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "api"
119
119
  Requires-Dist: aiosmtplib~=3.0; extra == "api"
120
120
  Requires-Dist: pydantic<2,>=1; extra == "api"
121
- Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.1; extra == "api"
121
+ Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.4; extra == "api"
122
122
  Requires-Dist: grpcio~=1.70.0; extra == "api"
123
123
  Provides-Extra: all
124
124
  Requires-Dist: adlfs==2023.9.0; extra == "all"
@@ -212,7 +212,7 @@ Requires-Dist: igz-mgmt~=0.4.1; extra == "complete-api"
212
212
  Requires-Dist: kafka-python~=2.1.0; extra == "complete-api"
213
213
  Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "complete-api"
214
214
  Requires-Dist: mlflow~=2.16; extra == "complete-api"
215
- Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.1; extra == "complete-api"
215
+ Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.4; extra == "complete-api"
216
216
  Requires-Dist: msrest~=0.6.21; extra == "complete-api"
217
217
  Requires-Dist: objgraph~=3.6; extra == "complete-api"
218
218
  Requires-Dist: oss2==2.18.1; extra == "complete-api"
@@ -252,7 +252,19 @@ Dynamic: summary
252
252
  ![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/mlrun/mlrun?sort=semver)
253
253
  [![Join MLOps Live](https://img.shields.io/badge/slack-join_chat-white.svg?logo=slack&style=social)](https://mlopslive.slack.com)
254
254
 
255
- <p align="left"><img src="https://github.com/mlrun/mlrun/raw/development/docs/_static/images/MLRun-logo.png" alt="MLRun logo" width="150"/></p>
255
+ <div>
256
+ <span>
257
+ <picture>
258
+ <img img align="left" src="./docs/_static/images/MLRun-logo.png" alt="MLRun logo" width="150"/>
259
+ </picture>
260
+ </span>
261
+ <span>
262
+ <picture>
263
+ <img img align="right" src="./docs/_static/images/maintenance_logo.svg" alt="Maintenance logo" width="250"/>
264
+ </picture>
265
+ </span>
266
+ <br clear="all"/>
267
+ </div>
256
268
 
257
269
  # Using MLRun
258
270
 
@@ -268,7 +280,7 @@ See the supported data stores, development tools, services, platforms, etc., sup
268
280
 
269
281
  ## Gen AI tasks
270
282
 
271
- <p align="center"><img src="https://github.com/mlrun/mlrun/raw/development/docs/_static/images/ai-tasks.png" alt="ai-tasks" width="800"/></p><br>
283
+ <p align="center"><img src="./docs/_static/images/ai-tasks.png" alt="ai-tasks" width="800"/></p><br>
272
284
 
273
285
  Use MLRun to develop, scale, deploy, and monitor your AI model across your enterprise. The [**gen AI development workflow**](https://docs.mlrun.org/en/stable/genai/genai-flow.html)
274
286
  section describes the different tasks and stages in detail.
@@ -333,7 +345,7 @@ Collect production data, metadata, and metrics to tune the model and application
333
345
  <a id="mlops-tasks"></a>
334
346
  ## MLOps tasks
335
347
 
336
- <p align="center"><img src="https://github.com/mlrun/mlrun/raw/development/docs/_static/images/mlops-task.png" alt="mlrun-tasks" width="800"/></p><br>
348
+ <p align="center"><img src="./docs/_static/images/mlops-task.png" alt="mlrun-tasks" width="800"/></p><br>
337
349
 
338
350
  The [**MLOps development workflow**](https://docs.mlrun.org/en/stable/mlops-dev-flow.html) section describes the different tasks and stages in detail.
339
351
  MLRun can be used to automate and orchestrate all the different tasks or just specific tasks (and integrate them with what you have already deployed).
@@ -383,7 +395,7 @@ Observability is built into the different MLRun objects (data, functions, jobs,
383
395
  <a id="core-components"></a>
384
396
  ## MLRun core components
385
397
 
386
- <p align="center"><img src="https://github.com/mlrun/mlrun/raw/development/docs/_static/images/mlops-core.png" alt="mlrun-core" width="800"/></p><br>
398
+ <p align="center"><img src="./docs/_static/images/mlops-core.png" alt="mlrun-core" width="800"/></p><br>
387
399
 
388
400
 
389
401
  MLRun includes the following major components:
@@ -1,25 +1,27 @@
1
- mlrun/__init__.py,sha256=Cqm9U9eCEdLpMejhU2BEhubu0mHL71igJJIwYa738EA,7450
2
- mlrun/__main__.py,sha256=VdfzVztkOePCLVmQ8Ip7XgWtqEhp1wKxiZq5FbhO-lU,46353
3
- mlrun/config.py,sha256=bilYGInCOi4K_M8AL-GWCz5QHZRFqjFTSfnIkhMcwJ4,71918
4
- mlrun/errors.py,sha256=v_CaACo-7DH4gp1iAVWjpld3u0_tUP7KqP22fMuj-EQ,8423
5
- mlrun/execution.py,sha256=ZUFUWj3BwCybTmxXqv9Yc42VF96qwhyuTj_bTS-5UWE,50663
1
+ mlrun/__init__.py,sha256=uhNeFUVaV2spRa94u9tNZjMdLBixdu-9iY-uzORjsKQ,7448
2
+ mlrun/__main__.py,sha256=6Mihuy3M7l80rJKM-MeKJdzwMbidfgVw-i7CxqToNnY,46351
3
+ mlrun/config.py,sha256=1LY0qRlmff4iWlQKQGb5XfOWaWjcyKSnGbHipiRBgss,71912
4
+ mlrun/errors.py,sha256=bAk0t_qmCxQSPNK0TugOAfA5R6f0G6OYvEvXUWSJ_5U,9062
5
+ mlrun/execution.py,sha256=Yo1_UX9ARZ8IDYX6B5FPngnIy8hBhuzwL2-bIeXlMg8,54581
6
6
  mlrun/features.py,sha256=jMEXo6NB36A6iaxNEJWzdtYwUmglYD90OIKTIEeWhE8,15841
7
7
  mlrun/k8s_utils.py,sha256=mMnGyouHoJC93ZD2KGf9neJM1pD7mR9IXLnHOEwYVTQ,21469
8
- mlrun/lists.py,sha256=-nbmqScRia0v2IdSHt6Pd0fLRLSEtdB9bSxyD92BWvs,8562
9
- mlrun/model.py,sha256=wZADXOzaKMInw6w7xRxaSzx7Xgazlf_oJtWfoqPX8bE,86301
8
+ mlrun/lists.py,sha256=OlaV2QIFUzmenad9kxNJ3k4whlDyxI3zFbGwr6vpC5Y,8561
9
+ mlrun/model.py,sha256=TvD4u7E0CNHyX_Gt6TU8XOHcH182vcPzzLB2qZagL44,86125
10
10
  mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
11
- mlrun/run.py,sha256=0ORoMtEq6-D1pZLHcYMb2szCFXS3P6N8XhAzu6Ud1NA,45112
11
+ mlrun/run.py,sha256=ld-xB-Bav8wDc64V15zjoOyl3siOIPaRn3kl1drXakw,44469
12
12
  mlrun/secrets.py,sha256=dZPdkc_zzfscVQepOHUwmzFqnBavDCBXV9DQoH_eIYM,7800
13
13
  mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
14
14
  mlrun/alerts/alert.py,sha256=QQFZGydQbx9RvAaSiaH-ALQZVcDKQX5lgizqj_rXW2k,15948
15
15
  mlrun/api/schemas/__init__.py,sha256=b8pOb-hPeojIisSSiy5zwMh-uZAebyB2mAnmGGLe5Sc,13919
16
- mlrun/artifacts/__init__.py,sha256=ofC2extBCOC1wg1YtdTzWzH3eeG_f-sFBUkHjYtZJpk,1175
17
- mlrun/artifacts/base.py,sha256=SFHe44o9RV9C3-WODOD53WdBjWk0Ya8lnap9LmERwrQ,29959
18
- mlrun/artifacts/dataset.py,sha256=QTot5vCgLHatlIWwNnKbWdZ8HHTxaZ7wk4gWQDoqQ2k,16655
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=cad5pvEz3jmA7xgqfRUT5ojc3co0ikSD7UzO99NypQ0,22229
22
- mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
16
+ mlrun/artifacts/__init__.py,sha256=ZrEUNto7tGdnBGteCp9zOyO8b78z7O3xgcpzUt9UHE4,1240
17
+ mlrun/artifacts/base.py,sha256=y-YUdMvLvRRdkgp8c5rq8XyDyyT7ktLOZThbxNSmIKg,30529
18
+ mlrun/artifacts/dataset.py,sha256=p8Rk0yrBUszh4pe7VLfcUK9piD-J_UX_X6gU5fYCyQg,16665
19
+ mlrun/artifacts/document.py,sha256=p5HsWdmIIJ0NahS7y3EEQN2tfHtUrUmUG-8BEEyi_Jc,17373
20
+ mlrun/artifacts/helpers.py,sha256=ejTEC9vkI2w5FHn5Gopw3VEIxuni0bazWUnR6BBWZfU,1662
21
+ mlrun/artifacts/llm_prompt.py,sha256=19ubV9owECwqb73wDnS8lED_siWYoJCRsrK_Td0DXdo,5428
22
+ mlrun/artifacts/manager.py,sha256=ylCmwTSDxPWYTBBW7v90XLYy7CYS7xVydj-D-kWY7bU,16827
23
+ mlrun/artifacts/model.py,sha256=1yeg923wJQdziebiY80yjSSm25FgGfzljB1AT-nbB8c,25848
24
+ mlrun/artifacts/plots.py,sha256=TxOHBaGbj7fEKNTHVIM_uxQjqPLpU3Rh1pqGh2_inuo,4833
23
25
  mlrun/common/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
24
26
  mlrun/common/constants.py,sha256=Yj5YHANbpKHDKxZ1y5bV1wifvV3UQZ2QuvECUuYhrpM,3594
25
27
  mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
@@ -28,7 +30,7 @@ mlrun/common/types.py,sha256=1gxThbmC0Vd0U1ffIkEwz4T4S7JOgHt70rvw8TCO21c,1073
28
30
  mlrun/common/db/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
29
31
  mlrun/common/db/sql_session.py,sha256=QuEDcxLtL9pBilNbx-jG7BEIj4TckNWjbrIkmKkM084,2707
30
32
  mlrun/common/formatters/__init__.py,sha256=au7S3M3wa9964RpQhFSvflk5-i5SWMeb3kek8Gvt4kg,889
31
- mlrun/common/formatters/artifact.py,sha256=2nLg1YwCJIOh91hgOf5PhHctzfy-rMmOFm1yIF2RNQI,1423
33
+ mlrun/common/formatters/artifact.py,sha256=NT2RPfReUGWVQ-Rhv1zexgXfLuKI5FvtneJDhihZK5g,1462
32
34
  mlrun/common/formatters/base.py,sha256=85vQ0t4ZfqCs8b8QV1RLfRcEvANztKvTvsa__sD3zTo,4099
33
35
  mlrun/common/formatters/feature_set.py,sha256=SmSSiNYXZtmzQDCvQJhIpArtjOInmDN0g1xFqrDdWsw,1534
34
36
  mlrun/common/formatters/function.py,sha256=H8bHilWSn1NXm5WWlFH2dx8slomCGm3e8ghsmWOOh48,1493
@@ -38,11 +40,11 @@ mlrun/common/formatters/project.py,sha256=4cxC5B6PKvpL2SYxxqg9vpEhoaWtart6iCIr2A
38
40
  mlrun/common/formatters/run.py,sha256=LlqhhVY4dAp5y17k_sWBtHaJogdNdtJWF0iO9sX-bUw,1059
39
41
  mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
40
42
  mlrun/common/model_monitoring/helpers.py,sha256=AkuHz4u318MEP4ebxmNWlNXh6HiNLrI5oF7QvJiJkYc,2707
41
- mlrun/common/runtimes/constants.py,sha256=aa8C5WcStJuisMKBl2yALqv17tK1fwtT3T7p6TzVui0,12526
43
+ mlrun/common/runtimes/constants.py,sha256=IkKwNHb-PQrpOZvekP4HzxCP5L4ZuIxPYVEzqK6Tegc,11976
42
44
  mlrun/common/schemas/__init__.py,sha256=6f5oAznWONwTb0oxEwdBomdQrv-pfymwPWu85JOWqBc,5400
43
45
  mlrun/common/schemas/alert.py,sha256=u6INAHBhQIfm-mMsGqDJo1_JDN6gOuWZa-8fOU-aOUE,10182
44
46
  mlrun/common/schemas/api_gateway.py,sha256=bgC3vXbyb1SVwsSZkLXtEoQLCe_QDKpIhAVX3X_HWW4,7126
45
- mlrun/common/schemas/artifact.py,sha256=-Ah1XtX3wpcNVTdnmAml9GyDcm8CmvxJnH-tHblv0L8,4248
47
+ mlrun/common/schemas/artifact.py,sha256=JojMRRa4n0Rge2olGOpUyp348hkTGsMEnvUBRSoo4oE,4310
46
48
  mlrun/common/schemas/auth.py,sha256=t8mEHc3MXNsAeKuv3khDwxitrwW0s7kbBSuhFKXXH7Y,6879
47
49
  mlrun/common/schemas/background_task.py,sha256=v_LIQnPlqs9mYXNZl7a7Ay4q1d3pOl7KqiCtm1vfPxk,1727
48
50
  mlrun/common/schemas/client_spec.py,sha256=-8fYRjcded-e0xqAEEd3LsXtgvk1hv1MKYmtu2zdpcc,2874
@@ -62,10 +64,10 @@ mlrun/common/schemas/notification.py,sha256=Q-tBaU_V7YZiuj3ankuACf3_-hb874_osxq0
62
64
  mlrun/common/schemas/object.py,sha256=9g2bK3KUXmzhaGavbmpVf6rxDhquYogp8bb12dzP4XE,1982
63
65
  mlrun/common/schemas/pagination.py,sha256=8NEmiIkCXw5_sv-lE0MWgWz-WpxhSSn-vBtbPDBOGXc,899
64
66
  mlrun/common/schemas/partition.py,sha256=crl61DzS-9i5rCyHUbjtpTCk03lluxfb2dS0o1gdLH4,5920
65
- mlrun/common/schemas/pipeline.py,sha256=ndX7Xl8yY_utzFNz4D9B8PXF3uoOc3vKY5mTWtmXAus,1434
66
- mlrun/common/schemas/project.py,sha256=BTn-eV5oOu7kVXJYShp5Zblyn1JJKP9WT8qY7hfbkV0,6509
67
+ mlrun/common/schemas/pipeline.py,sha256=lzaNHudyOiSMpNsoKoNMZhJJa2R4wdA4TR8A98L_yIo,996
68
+ mlrun/common/schemas/project.py,sha256=Q2jznR4S_xolyKQQFlThIShZgiTaVgL56bAdy3tjE6A,5871
67
69
  mlrun/common/schemas/regex.py,sha256=r-phg_9ge1lFraPCQd_wpnYGQ1oOCj3xChycJxZtIQY,775
68
- mlrun/common/schemas/runs.py,sha256=-OJOQiorFUiWgy2DKLGovWr-xbMTJ1BC3IIVXCdyp94,1274
70
+ mlrun/common/schemas/runs.py,sha256=yKY29ByTS4SruWQyPpDNFGulMrcT9Ms-3lnwBUDp3us,751
69
71
  mlrun/common/schemas/runtime_resource.py,sha256=TybJmCHJXmm1z3s5J1dd89TeFE6lG5t7vjcrf1R9YfE,1568
70
72
  mlrun/common/schemas/schedule.py,sha256=L7z9Lp06-xmFmdp0q5PypCU_DCl6zZIyQTVoJa01gfM,4291
71
73
  mlrun/common/schemas/secret.py,sha256=Td2UAeWHSAdA4nIP3rQv_PIVKVqcBnCnK6xjr528tS8,1486
@@ -84,39 +86,39 @@ mlrun/data_types/to_pandas.py,sha256=KOy0FLXPJirsgH6szcC5BI6t70yVDCjuo6LmuYHNTuI
84
86
  mlrun/datastore/__init__.py,sha256=81ulmQnRk1ENvwYOdetxqsLnr2gYVtW-KsvF-tY1Jxk,5783
85
87
  mlrun/datastore/alibaba_oss.py,sha256=k-OHVe08HjMewlkpsT657CbOiVFAfSq9_EqhCE-k86s,4940
86
88
  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=bQ5qDioFcTVq2VfOdJ-UN9g1igoSOHNLT04azItcy6M,22095
89
+ mlrun/datastore/base.py,sha256=7PF563trEBtbcVjifQpCWx-g0p7jHJTt_8Vf4ngytaQ,26203
90
+ mlrun/datastore/datastore.py,sha256=QiQrmRNjVm45XIyqGKkDxLITOB4ZUHL5hnec0H4PWf0,9514
91
+ mlrun/datastore/datastore_profile.py,sha256=BtcIKt9OK_rji4NKw2SnjTt0ECU3leRzGy_ndmd4gxA,21812
90
92
  mlrun/datastore/dbfs_store.py,sha256=QkDRzwFnvm7CgEg4NuGxes6tBgKDyhX0CiBUvK8c9pk,6568
91
93
  mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
92
94
  mlrun/datastore/google_cloud_storage.py,sha256=MnToY6irdhBZ8Wcapqnr1Yq2724LAh2uPO7MAtdWfUY,8716
93
95
  mlrun/datastore/hdfs.py,sha256=NhxvPojQQDEm0xzB6RcvnD4uLZOxfHHKYWV4gwzG7D4,1928
94
96
  mlrun/datastore/inmem.py,sha256=IsM83nn-3CqmGdLzim7i9ZmJwG6ZGhBZGN6_hszWZnE,2951
95
- mlrun/datastore/redis.py,sha256=QeNMkSz3zQXiXZhFUZcEtViqqbUysGJditbqe5M-J48,5682
97
+ mlrun/datastore/redis.py,sha256=yzkVU8c9glXsjVW48RXKzEXaHPrCfQFHabFa4SJ0pN0,5567
96
98
  mlrun/datastore/s3.py,sha256=lD4Fs69rwMeISovZzOxRdz_z9FuffysTdjJA9ybdnLA,9262
97
99
  mlrun/datastore/snowflake_utils.py,sha256=KBbIN8REEuQyk1tVIW33rpwORzbC0Wmj0pm43h-dInA,1481
98
- mlrun/datastore/sources.py,sha256=BiKHW7Fzyi0bRgPMbLY-edlhoYcj_UqY4IlPZgDqjbA,49386
100
+ mlrun/datastore/sources.py,sha256=9phXuylVP5Y8KKZxNEyns-rYiTnjNcu8HBovH1HOfEY,49022
99
101
  mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
100
102
  mlrun/datastore/spark_utils.py,sha256=dn0RWpYzee-M8UZw-NVuHAdqlNAZ7VO-fNtI8ZiDkyM,2864
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=7qLf26BDH3qYTHOR7TSP0tUMPBhYOkaaOwffUBxgqY0,81201
104
- mlrun/datastore/utils.py,sha256=fMCsO1NOVShL0TD1w2EdCw4niqzsM5wx2JCMcIpXIAI,11228
103
+ mlrun/datastore/store_resources.py,sha256=s2794zqkzy_mjRMvRedDNs_tycTLoF8wxTqsWRQphCE,6839
104
+ mlrun/datastore/storeytargets.py,sha256=OwWw-YrrtrnKpbUSP8tgWyKusArsLygkD365X7TT4yE,6500
105
+ mlrun/datastore/targets.py,sha256=pxVHBAmGDkyQAnqXvc__qjgOG_ctVc-_oZ_g1QDai_g,79121
106
+ mlrun/datastore/utils.py,sha256=vDIILv1E320BIqSBwyUECOILuL3V_yRj8xAaafvTT9w,10820
105
107
  mlrun/datastore/v3io.py,sha256=QSYBORRLcJTeM9mt0EaWzyLcdmzrPkqrF7k5uLTam5U,8209
106
108
  mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
107
109
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
108
110
  mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
109
111
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
110
112
  mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
111
- mlrun/db/base.py,sha256=fiXni5U4ZhHCA6Qxk19ORZnshZcEzc_8H1quzPkmtsc,30815
113
+ mlrun/db/base.py,sha256=dzOmf86zcblTpffk7hxYPYz18IVJPAJ8ne8NoKyDUu4,30857
112
114
  mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
113
- mlrun/db/httpdb.py,sha256=ZpE_PWznV3ZgQSSGfXukHuNdy-M0Ed16wFUeu88miqc,232859
114
- mlrun/db/nopdb.py,sha256=uNqqT5TPpUNL8syY-UjWsJeeCprlMrq7g6yOwuMyKhc,27196
115
+ mlrun/db/httpdb.py,sha256=8D9QTq2CZL9fkhY4fowA0nlS26rNT2THsxsbPwGT_MY,233123
116
+ mlrun/db/nopdb.py,sha256=hQ_tkQjOszgBQxEKL-tDULfA7KgwP3z-frFJiW-uL18,27234
115
117
  mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
116
118
  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=24AtKf16xkXzUXD-YvN7fw5dE1GQ1q1J7UyZbfWu3LY,55709
119
- mlrun/feature_store/feature_vector.py,sha256=DY7wUx3ifqWqjzLliCnZcosbMFsIY0WDeF4ToDQcXd8,31068
119
+ mlrun/feature_store/common.py,sha256=JlQA7XWkg9fLuw7cXFmWpUneQqM3NBhwv7DU_xlenWI,12819
120
+ mlrun/feature_store/feature_set.py,sha256=HNLZ9pAzS16dgMMQzwTUsIh0dqpa08-fRX4PEwUbmNc,55785
121
+ mlrun/feature_store/feature_vector.py,sha256=OCPgHkvPNwKUYgjGBP0S-NRJvm0vnvrcyIWMJxz1JVk,31117
120
122
  mlrun/feature_store/feature_vector_utils.py,sha256=1EIzCG5dtZu-lbvVP68yv2u8NkWo-aSin-uH5iLMByM,17189
121
123
  mlrun/feature_store/ingestion.py,sha256=kT3Hbz1PBjsJd-GPBm2ap0sg9-fiXxaSXoEIo-dOXpU,11361
122
124
  mlrun/feature_store/steps.py,sha256=Hk-pCwP0l-ff_gcgkXwUohI-mPGjzA__k9jDRxJLBxQ,29326
@@ -212,19 +214,18 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=KINOf0udbY75raTewjEFGNlIRyE0e
212
214
  mlrun/frameworks/xgboost/model_handler.py,sha256=bJq4D1VK3rzhALovqIV5mS0LvGiTlsgAkHanD25pU2c,11663
213
215
  mlrun/frameworks/xgboost/utils.py,sha256=4rShiFChzDbWJ4HoTo4qV_lj-Z89pHBAp6Z1yHmU8wA,1068
214
216
  mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
215
- mlrun/launcher/base.py,sha256=J3lmVdj10eLFvsze1kPXqR7_UlJOcAqArjWrObFINN4,16482
217
+ mlrun/launcher/base.py,sha256=VUjXoYcCopdJgSTkGDPOJWcZavKDoqmExv7GjqyRiws,16481
216
218
  mlrun/launcher/client.py,sha256=iZS5rqIf2do1XNGJ4oyQHkdQtndr48l9Mffs_xCI_NI,6280
217
219
  mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
218
220
  mlrun/launcher/local.py,sha256=9XEkWSRYokXbtL1d_XEH3yTNU2fQXX7JcUwfC_8NG_4,11457
219
221
  mlrun/launcher/remote.py,sha256=GYXsxVIwcUZ1V-cv2R3Yk4nSoUeAtRurEawrUN3AkEE,7715
220
- mlrun/model_monitoring/__init__.py,sha256=ELy7njEtZnz09Dc6PGZSFFEGtnwI15bJNWM3Pj4_YIs,753
221
- mlrun/model_monitoring/api.py,sha256=LU58dzE4QZiMH23lgiqfI__3m2E3eEZP-DQe2ioUSwM,28317
222
- mlrun/model_monitoring/controller.py,sha256=p4UphE9y-YN_ndZQykvPvJow2sAhnYj3nkuJmyIzvf4,37661
222
+ mlrun/model_monitoring/__init__.py,sha256=2zigVN5JUnOhRcqGBd4gj0ctubVlyEvxmxXix0De5GQ,709
223
+ mlrun/model_monitoring/api.py,sha256=lAsUp-gzqw8D1cpHVGA2_nPMYn5R4jdxk9UaGOiQ8fE,25945
224
+ mlrun/model_monitoring/controller.py,sha256=CQxK9Sq5k8XonvVBQnSimakpTwMMAyqT5mOaG534MaM,37660
223
225
  mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
224
226
  mlrun/model_monitoring/helpers.py,sha256=8QsoYRPOVSnR3Lcv99m4XYrp_cR6hSqBUflYSOkJmFQ,21019
225
227
  mlrun/model_monitoring/stream_processing.py,sha256=Gu3TQzYoNjbreZYI73-F49QpYrod9RZOyGSgininBsA,33373
226
- mlrun/model_monitoring/tracking_policy.py,sha256=PBIGrUYWrwcE5gwXupBIVzOb0QRRwPJsgQm_yLGQxB4,5595
227
- mlrun/model_monitoring/writer.py,sha256=ibbhvfSHb8Reqlb7RGFEAUNM4iTyK1gk8-2m46mP6VM,8428
228
+ mlrun/model_monitoring/writer.py,sha256=rGRFzSOkqZWvD3Y6sVk2H1Gepfnkzkp9ce00PsApTLo,8288
228
229
  mlrun/model_monitoring/applications/__init__.py,sha256=MaH_n4GiqqQvSkntM5yQ7_FCANtM_IfgK-IJTdo4G_E,757
229
230
  mlrun/model_monitoring/applications/_application_steps.py,sha256=mjuBVqa7KY_Ymoo8DzddthUpBZyfio2e4O5ce-d-2eY,8444
230
231
  mlrun/model_monitoring/applications/base.py,sha256=f73LycKUG85invl6l7V4MRiRd1bx8jmepayrpwpr3c0,25131
@@ -232,7 +233,7 @@ mlrun/model_monitoring/applications/context.py,sha256=VfyPCIdO4z73uqFcJs87jzSI4P
232
233
  mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
233
234
  mlrun/model_monitoring/applications/results.py,sha256=_qmj6TWT0SR2bi7gUyRKBU418eGgGoLW2_hTJ7S-ock,5782
234
235
  mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
235
- mlrun/model_monitoring/applications/evidently/base.py,sha256=LYYtbP4uwfIE5QyQofFUoeSQPXx8QnncVbV-gspn1WA,7371
236
+ mlrun/model_monitoring/applications/evidently/base.py,sha256=shH9YwuFrGNWy1IDAbv622l-GE4o1z_u1bqhqTyTHDA,5661
236
237
  mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
237
238
  mlrun/model_monitoring/db/_schedules.py,sha256=RWn4wtKsIXg668gMLpxO9I8GlkxvPSaA5y7w-wFDcgE,9048
238
239
  mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
@@ -269,20 +270,20 @@ mlrun/package/utils/type_hint_utils.py,sha256=Ic3A7C9KnbfdLe-nUgzGoefBnsvOJJP9ip
269
270
  mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3551
270
271
  mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
271
272
  mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
272
- mlrun/projects/operations.py,sha256=bpIcEbt2mTpCzCAY_gk6NY6NUoBOTW2e6R5Qum3z-wQ,20837
273
+ mlrun/projects/operations.py,sha256=dbCWb-KNlIIJeZH9lp4Y2PxkYMkZI2pJPYbMSbiDWe4,20840
273
274
  mlrun/projects/pipelines.py,sha256=wud7ezeEmhIJvfYE_wzQbA4ygEfGXHtbOtoOpan6poY,48556
274
- mlrun/projects/project.py,sha256=XS-uJqTkN_QqXDCJqS8sgA35Zl7AVvGtNHUtaDSZNy0,238615
275
+ mlrun/projects/project.py,sha256=Fqk_YCmuNSHCk1SKVYkAboxgFHOUZcsQ1DmJp2oYjCg,250056
275
276
  mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
276
- mlrun/runtimes/base.py,sha256=rt14frZWUNsqHKdBZLa593OkrTC4qmdJAVx1QMyJedE,38492
277
+ mlrun/runtimes/base.py,sha256=QsHYTIMlfzElbGZ3yAzyHK5IdXFIfsYIv3dRUnN7c44,38493
277
278
  mlrun/runtimes/daskjob.py,sha256=BHJ-BiAIozj9vQAnpsR0mN9xXQ7RE8aISEGPUR0d2-k,19558
278
279
  mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
279
280
  mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
280
281
  mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
281
- mlrun/runtimes/kubejob.py,sha256=K-nR3J0-S3Em6Ez-JD0BxHczobQhC4m0829HLdSwX8g,8797
282
+ mlrun/runtimes/kubejob.py,sha256=xt6NyPiIiPYmGDFtTe4RHF-zhrFdgwcnRr2NQEBB5NI,8799
282
283
  mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
283
284
  mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
284
285
  mlrun/runtimes/pod.py,sha256=nucFAGTcKbN79VRs06NVmcEnahtkQAsX_9MDDum3_Zg,51755
285
- mlrun/runtimes/remotesparkjob.py,sha256=dod99nqz3GdRfmnBoQKfwFCXTetfuCScd2pKH3HJyoY,7394
286
+ mlrun/runtimes/remotesparkjob.py,sha256=2B63b9AFEUguEaIY1k2VU77Jur-16t0dYAN6IUNk5_c,7705
286
287
  mlrun/runtimes/utils.py,sha256=VFKA7dWuILAcJGia_7Pw_zBBG00wZlat7o2N6u5EItw,16284
287
288
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
288
289
  mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=ufjcLKA5E6FSDF5CXm5l8uP_mUSFppwr5krLHln1kAU,2243
@@ -293,24 +294,24 @@ mlrun/runtimes/mpijob/abstract.py,sha256=JGMjcJ4dvpJbctF6psU9UvYyNCutMxTMgBQeTlz
293
294
  mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
294
295
  mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
295
296
  mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
296
- mlrun/runtimes/nuclio/function.py,sha256=xKYoMsEpc7LWnMyqXns_NkmgL0PH79Suwf2vqiThES4,54720
297
+ mlrun/runtimes/nuclio/function.py,sha256=JgqMf_nG19O-XRzy3QkvaVHvbPRXiuoS8FUJvOQmqrs,54720
297
298
  mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
298
- mlrun/runtimes/nuclio/serving.py,sha256=7kd1i9KdWxhY2z2nDFxEnduEqECzYB0wPhiLxVXS2pI,33434
299
+ mlrun/runtimes/nuclio/serving.py,sha256=8q3ClEqshYqZw6vdwxRfLJ2nchTY63nbLjcu_xmtsAU,32903
299
300
  mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
300
301
  mlrun/runtimes/nuclio/application/application.py,sha256=VPX-ruYQJ7-7yd5c2sWdF4U5JCGSS3kYjUfOgev6l_Y,29186
301
302
  mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
302
303
  mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
303
- mlrun/runtimes/sparkjob/spark3job.py,sha256=nhV9K12cO2NNvgBsiZk0K9fQKSuDY4njrgSl57O7eic,41022
304
- mlrun/serving/__init__.py,sha256=FhOlOCnBC5HFXOHzSDe4NHBs6mNUDP_Qqy6WMNsCwws,1307
304
+ mlrun/runtimes/sparkjob/spark3job.py,sha256=gPUitVuSnVw_OaDUtvNpwZwu-ryk4PQXGuZjpZ5uElc,41299
305
+ mlrun/serving/__init__.py,sha256=ujpKHIsHXJz5TELwEIsjMbijxONRg7kZ6ZcVONcRjcs,1324
305
306
  mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
306
307
  mlrun/serving/remote.py,sha256=Igha2FipK3-6rV_PZ1K464kTbiTu8rhc6SMm-HiEJ6o,18817
307
308
  mlrun/serving/routers.py,sha256=SY6AsaiSnh8ssXq8hQE2z9MYapOxFOFJBx9QomiZMO8,53915
308
- mlrun/serving/server.py,sha256=KiNhW0nTV5STZPzR6kEAUFVzCCAX8qv0g9AoCopARrM,23429
309
+ mlrun/serving/server.py,sha256=ZjrNvrp87IMJFM0EZwzRKl42nR4RoP3U6frqKJ6FqcI,24847
309
310
  mlrun/serving/serving_wrapper.py,sha256=UL9hhWCfMPcTJO_XrkvNaFvck1U1E7oS8trTZyak0cA,835
310
- mlrun/serving/states.py,sha256=alsl4Z08VPgcSdlSpmj4AOzjvp_1tbREmNvA9YsO1lU,79258
311
+ mlrun/serving/states.py,sha256=7ESFzy1aDJgvMWlImSeLh6zfbKw3-mM6j-aPyy3rUhU,82967
311
312
  mlrun/serving/utils.py,sha256=Zbfqm8TKNcTE8zRBezVBzpvR2WKeKeIRN7otNIaiYEc,4170
312
313
  mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
313
- mlrun/serving/v2_serving.py,sha256=b3C5Utv2_AOPrH_hPi3NarjNbAK3kRoeIfqMU4qNuUo,25362
314
+ mlrun/serving/v2_serving.py,sha256=p194GSVm5YU0_FEgtchMf0RkBCMyDaRZlrl8pceseHA,25377
314
315
  mlrun/track/__init__.py,sha256=yVXbT52fXvGKRlc_ByHqIVt7-9L3DRE634RSeQwgXtU,665
315
316
  mlrun/track/tracker.py,sha256=CyTU6Qd3_5GGEJ_hpocOj71wvV65EuFYUjaYEUKAL6Q,3575
316
317
  mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
@@ -322,7 +323,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
322
323
  mlrun/utils/clones.py,sha256=qbAGyEbSvlewn3Tw_DpQZP9z6MGzFhSaZfI1CblX8Fg,7515
323
324
  mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
324
325
  mlrun/utils/db.py,sha256=UIYDPHvPxim8tpjeD4S2QbfTx9Bhe-VqUQjqYTRHFuo,2185
325
- mlrun/utils/helpers.py,sha256=xeWplOzaISgMUIBWOf5faCqkGhftYbtq-hM6kjIUlas,76820
326
+ mlrun/utils/helpers.py,sha256=Ox9y4mqSxBj_bC0CvV3f1GqyaKubfuOXeDFpNFP1Eok,79157
326
327
  mlrun/utils/http.py,sha256=5ZU2VpokaUM_DT3HBSqTm8xjUqTPjZN5fKkSIvKlTl0,8704
327
328
  mlrun/utils/logger.py,sha256=RG0m1rx6gfkJ-2C1r_p41MMpPiaDYqaYM2lYHDlNZEU,14767
328
329
  mlrun/utils/regex.py,sha256=FcRwWD8x9X3HLhCCU2F0AVKTFah784Pr7ZAe3a02jw8,5199
@@ -331,21 +332,21 @@ mlrun/utils/singleton.py,sha256=fNOfAUtha6OPCV_M1umWnGD0iabnnRwBke9otIspv30,868
331
332
  mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1294
332
333
  mlrun/utils/vault.py,sha256=-36b_PG0Fk9coPJiX6F704NF1nmKDdCH9Bg17wep88w,10446
333
334
  mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
334
- mlrun/utils/notifications/notification_pusher.py,sha256=38VcSCraW6Wy_DX10MpHoYQ7N1lQP87FL9os2GQ7IVk,26628
335
+ mlrun/utils/notifications/notification_pusher.py,sha256=s5Iu6u9_LXeVRPA70BNqrFIamTk7D3_AG6DH7K9qVQA,26668
335
336
  mlrun/utils/notifications/notification/__init__.py,sha256=9Rfy6Jm8n0LaEDO1VAQb6kIbr7_uVuQhK1pS_abELIY,2581
336
337
  mlrun/utils/notifications/notification/base.py,sha256=-9e3XqUixrWwImnTGrIL4enJRSIUP9gMrJVxwaLqeXc,5403
337
338
  mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
338
339
  mlrun/utils/notifications/notification/git.py,sha256=t2lqRrPRBO4awf_uhxJreH9CpcbYSH8T3CvHtwspHkE,6306
339
340
  mlrun/utils/notifications/notification/ipython.py,sha256=9uZvI1uOLFaNuAsfJPXmL3l6dOzFoWdBK5GYNYFAfks,2282
340
341
  mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAqp1vij7C6aRJ9h2mgs,6012
341
- mlrun/utils/notifications/notification/slack.py,sha256=eQvmctTh6wIG5xVOesLLV9S1-UUCu5UEQ9JIJOor3ts,7183
342
+ mlrun/utils/notifications/notification/slack.py,sha256=kfhogR5keR7Zjh0VCjJNK3NR5_yXT7Cv-x9GdOUW4Z8,7294
342
343
  mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
343
344
  mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
344
- mlrun/utils/version/version.json,sha256=u1JVxufRVjmi-Ixk_HVAIB5VaVrAhpNM6RAV3FGhPYw,89
345
+ mlrun/utils/version/version.json,sha256=R8YDmn_EnZg4pAGw2hJaHCTLwPrwPSNo85DO0cCu6j4,89
345
346
  mlrun/utils/version/version.py,sha256=M2hVhRrgkN3SxacZHs3ZqaOsqAA7B6a22ne324IQ1HE,1877
346
- mlrun-1.10.0rc2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
347
- mlrun-1.10.0rc2.dist-info/METADATA,sha256=plLmdkL4W7BOTfvibVBG36U6S_3FEcdOFa8BlUAGoEE,25710
348
- mlrun-1.10.0rc2.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
349
- mlrun-1.10.0rc2.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
350
- mlrun-1.10.0rc2.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
351
- mlrun-1.10.0rc2.dist-info/RECORD,,
347
+ mlrun-1.10.0rc4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
348
+ mlrun-1.10.0rc4.dist-info/METADATA,sha256=R1CHFvM8LK8w1hHze40hl2jyvF_3NPROM6p2WTBZJqM,25777
349
+ mlrun-1.10.0rc4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
350
+ mlrun-1.10.0rc4.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
351
+ mlrun-1.10.0rc4.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
352
+ mlrun-1.10.0rc4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.7.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,124 +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 warnings
16
- from typing import Optional, Union
17
-
18
- import mlrun.common.schemas.schedule
19
- import mlrun.model
20
-
21
-
22
- class TrackingPolicy(mlrun.model.ModelObj):
23
- """
24
- Modified model monitoring configurations. By using TrackingPolicy, the user can apply his model monitoring
25
- requirements, such as setting the scheduling policy of the model monitoring batch job or changing the image of the
26
- model monitoring stream.
27
- """
28
-
29
- _dict_fields = ["default_batch_image", "stream_image", "application_batch"]
30
-
31
- def __init__(
32
- self,
33
- default_batch_intervals: Union[
34
- mlrun.common.schemas.schedule.ScheduleCronTrigger, str
35
- ] = mlrun.common.schemas.schedule.ScheduleCronTrigger(minute="0", hour="*/1"),
36
- default_batch_image: str = "mlrun/mlrun",
37
- stream_image: str = "mlrun/mlrun",
38
- base_period: int = 10,
39
- default_controller_image: str = "mlrun/mlrun",
40
- ):
41
- """
42
- Initialize TrackingPolicy object.
43
- :param default_batch_intervals: Model monitoring batch scheduling policy. By default, executed on the hour
44
- every hour. Can be either a string or a ScheduleCronTrigger object. The
45
- string time format is based on ScheduleCronTrigger expression:
46
- minute, hour, day of month, month, day of week. It will be converted into
47
- a ScheduleCronTrigger object.
48
- :param default_batch_image: The default image of the model monitoring batch job. By default, the image
49
- is mlrun/mlrun.
50
- :param stream_image: The image of the model monitoring stream real-time function. By default,
51
- the image is mlrun/mlrun.
52
- :param base_period: Minutes to determine the frequency in which the model monitoring controller
53
- job is running. By default, the base period is 10 minutes.
54
- :param default_controller_image: The default image of the model monitoring controller job. Note that the
55
- writer function, which is a real time nuclio functino, will be deployed
56
- with the same image. By default, the image is mlrun/mlrun.
57
- """
58
- warnings.warn(
59
- "The `TrackingPolicy` class is deprecated from version 1.7.0 and is not "
60
- "used anymore. It will be removed in 1.9.0.",
61
- FutureWarning,
62
- )
63
-
64
- if isinstance(default_batch_intervals, str):
65
- default_batch_intervals = (
66
- mlrun.common.schemas.schedule.ScheduleCronTrigger.from_crontab(
67
- default_batch_intervals
68
- )
69
- )
70
- self.default_batch_intervals = default_batch_intervals
71
- self.default_batch_image = default_batch_image
72
- self.stream_image = stream_image
73
- self.base_period = base_period
74
- self.default_controller_image = default_controller_image
75
-
76
- @classmethod
77
- def from_dict(
78
- cls, struct=None, fields=None, deprecated_fields: Optional[dict] = None
79
- ):
80
- new_obj = super().from_dict(
81
- struct, fields=cls._dict_fields, deprecated_fields=deprecated_fields
82
- )
83
- # Convert default batch interval into ScheduleCronTrigger object
84
- if (
85
- mlrun.common.schemas.model_monitoring.EventFieldType.DEFAULT_BATCH_INTERVALS
86
- in struct
87
- ):
88
- if isinstance(
89
- struct[
90
- mlrun.common.schemas.model_monitoring.EventFieldType.DEFAULT_BATCH_INTERVALS
91
- ],
92
- str,
93
- ):
94
- new_obj.default_batch_intervals = mlrun.common.schemas.schedule.ScheduleCronTrigger.from_crontab(
95
- struct[
96
- mlrun.common.schemas.model_monitoring.EventFieldType.DEFAULT_BATCH_INTERVALS
97
- ]
98
- )
99
- else:
100
- new_obj.default_batch_intervals = mlrun.common.schemas.schedule.ScheduleCronTrigger.parse_obj(
101
- struct[
102
- mlrun.common.schemas.model_monitoring.EventFieldType.DEFAULT_BATCH_INTERVALS
103
- ]
104
- )
105
- return new_obj
106
-
107
- def to_dict(
108
- self,
109
- fields: Optional[list] = None,
110
- exclude: Optional[list] = None,
111
- strip: bool = False,
112
- ):
113
- struct = super().to_dict(
114
- fields,
115
- exclude=[
116
- mlrun.common.schemas.model_monitoring.EventFieldType.DEFAULT_BATCH_INTERVALS
117
- ],
118
- strip=strip,
119
- )
120
- if self.default_batch_intervals:
121
- struct[
122
- mlrun.common.schemas.model_monitoring.EventFieldType.DEFAULT_BATCH_INTERVALS
123
- ] = self.default_batch_intervals.dict()
124
- return struct