mlrun 1.7.0rc14__py3-none-any.whl → 1.7.0rc15__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 +0 -105
- mlrun/artifacts/__init__.py +1 -2
- mlrun/artifacts/base.py +8 -250
- mlrun/artifacts/dataset.py +1 -190
- mlrun/artifacts/manager.py +2 -41
- mlrun/artifacts/model.py +1 -140
- mlrun/artifacts/plots.py +1 -375
- mlrun/common/schemas/model_monitoring/__init__.py +4 -0
- mlrun/common/schemas/model_monitoring/constants.py +24 -3
- mlrun/common/schemas/model_monitoring/model_endpoints.py +13 -1
- mlrun/config.py +3 -3
- mlrun/data_types/to_pandas.py +4 -4
- mlrun/datastore/base.py +41 -9
- mlrun/datastore/datastore_profile.py +50 -3
- mlrun/datastore/inmem.py +2 -2
- mlrun/datastore/sources.py +43 -2
- mlrun/datastore/store_resources.py +2 -6
- mlrun/datastore/targets.py +106 -39
- mlrun/db/httpdb.py +4 -4
- mlrun/feature_store/__init__.py +0 -2
- mlrun/feature_store/api.py +12 -47
- mlrun/feature_store/feature_set.py +9 -0
- mlrun/feature_store/retrieval/base.py +9 -4
- mlrun/feature_store/retrieval/conversion.py +4 -4
- mlrun/feature_store/retrieval/dask_merger.py +2 -0
- mlrun/feature_store/retrieval/job.py +2 -0
- mlrun/feature_store/retrieval/local_merger.py +2 -0
- mlrun/feature_store/retrieval/spark_merger.py +5 -0
- mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py +5 -10
- mlrun/kfpops.py +5 -10
- mlrun/launcher/base.py +1 -1
- mlrun/launcher/client.py +1 -1
- mlrun/lists.py +2 -2
- mlrun/model.py +18 -9
- mlrun/model_monitoring/api.py +41 -18
- mlrun/model_monitoring/application.py +5 -305
- mlrun/model_monitoring/applications/__init__.py +11 -0
- mlrun/model_monitoring/applications/_application_steps.py +158 -0
- mlrun/model_monitoring/applications/base.py +282 -0
- mlrun/model_monitoring/applications/context.py +214 -0
- mlrun/model_monitoring/applications/evidently_base.py +211 -0
- mlrun/model_monitoring/applications/histogram_data_drift.py +92 -77
- mlrun/model_monitoring/applications/results.py +99 -0
- mlrun/model_monitoring/controller.py +3 -1
- mlrun/model_monitoring/db/stores/sqldb/models/base.py +7 -6
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py +1 -1
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +67 -4
- mlrun/model_monitoring/evidently_application.py +6 -118
- mlrun/model_monitoring/helpers.py +1 -1
- mlrun/model_monitoring/model_endpoint.py +3 -2
- mlrun/model_monitoring/stream_processing.py +2 -3
- mlrun/model_monitoring/writer.py +69 -39
- mlrun/platforms/iguazio.py +2 -2
- mlrun/projects/project.py +18 -31
- mlrun/render.py +2 -10
- mlrun/run.py +1 -3
- mlrun/runtimes/__init__.py +3 -3
- mlrun/runtimes/base.py +3 -3
- mlrun/runtimes/funcdoc.py +0 -28
- mlrun/runtimes/local.py +1 -1
- mlrun/runtimes/mpijob/__init__.py +0 -20
- mlrun/runtimes/mpijob/v1.py +1 -1
- mlrun/runtimes/nuclio/function.py +1 -1
- mlrun/runtimes/utils.py +1 -1
- mlrun/utils/helpers.py +27 -40
- mlrun/utils/notifications/notification/slack.py +4 -2
- mlrun/utils/notifications/notification_pusher.py +133 -14
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.0rc14.dist-info → mlrun-1.7.0rc15.dist-info}/METADATA +2 -2
- {mlrun-1.7.0rc14.dist-info → mlrun-1.7.0rc15.dist-info}/RECORD +75 -71
- mlrun/runtimes/mpijob/v1alpha1.py +0 -29
- /mlrun/{runtimes → common/runtimes}/constants.py +0 -0
- {mlrun-1.7.0rc14.dist-info → mlrun-1.7.0rc15.dist-info}/LICENSE +0 -0
- {mlrun-1.7.0rc14.dist-info → mlrun-1.7.0rc15.dist-info}/WHEEL +0 -0
- {mlrun-1.7.0rc14.dist-info → mlrun-1.7.0rc15.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.0rc14.dist-info → mlrun-1.7.0rc15.dist-info}/top_level.txt +0 -0
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=rxnxHjb5Rq_EnHv77irxah9zKL89AjZZpjQyx3W5izQ,7249
|
|
2
|
-
mlrun/__main__.py,sha256=
|
|
3
|
-
mlrun/config.py,sha256=
|
|
2
|
+
mlrun/__main__.py,sha256=OJNDRTmu57Z0hYy8pAJHDoJNFA5AoBogNxvRERywnlw,45304
|
|
3
|
+
mlrun/config.py,sha256=zLvnW1GKtjqNNnBNrfFlJfCVNUBJRaQShSphEwkbTFQ,64571
|
|
4
4
|
mlrun/errors.py,sha256=HmOAdfpL0bCDisZMUoJPOumneq71ko49Ph-XBL-A4xA,7080
|
|
5
5
|
mlrun/execution.py,sha256=F45o_rJI3Q8epQefTksvyjmgZr4ZxKmUxXbKW5UZOaY,40891
|
|
6
6
|
mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
|
|
7
7
|
mlrun/k8s_utils.py,sha256=YyFZT2WNZrJkcZoqxrkduQgzQ1X-7195O0mmEqvaIug,7023
|
|
8
|
-
mlrun/kfpops.py,sha256=
|
|
9
|
-
mlrun/lists.py,sha256=
|
|
10
|
-
mlrun/model.py,sha256=
|
|
11
|
-
mlrun/render.py,sha256=
|
|
12
|
-
mlrun/run.py,sha256=
|
|
8
|
+
mlrun/kfpops.py,sha256=UO5CUVlJhEJ_a0dcB_HB_iTK1PO21R9uFrBfOgrf4as,30147
|
|
9
|
+
mlrun/lists.py,sha256=OZV1ZBpEzSb4RM7zBL4dT1iQK-pGWmFkSNha9PCdZZ8,8227
|
|
10
|
+
mlrun/model.py,sha256=MP6d27J7s4_BhTIp-Xr9n0M3gCogHUVjbxXG14OM1Sc,71390
|
|
11
|
+
mlrun/render.py,sha256=3aBVMZIViQB5CgRbEgAY2ugGIBMmbNfiqc05ahRgmDI,12696
|
|
12
|
+
mlrun/run.py,sha256=D7E3zWGPFDe6jLoW_WIyA75naaKOnQNRTP_-9_pvYVo,43100
|
|
13
13
|
mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
|
|
14
14
|
mlrun/api/schemas/__init__.py,sha256=LhfO3myrnLVxC0MYCAc1_LTuqhRlYV3H7BwJkjOu3dQ,14211
|
|
15
|
-
mlrun/artifacts/__init__.py,sha256=
|
|
16
|
-
mlrun/artifacts/base.py,sha256=
|
|
17
|
-
mlrun/artifacts/dataset.py,sha256=
|
|
18
|
-
mlrun/artifacts/manager.py,sha256=
|
|
19
|
-
mlrun/artifacts/model.py,sha256=
|
|
20
|
-
mlrun/artifacts/plots.py,sha256=
|
|
15
|
+
mlrun/artifacts/__init__.py,sha256=V7QKvBEflRxDIaEmH_2ddKigLi8aTzi6aSBk46k-5K8,1130
|
|
16
|
+
mlrun/artifacts/base.py,sha256=bMyzC3gEyhYueP0PBjhY8aEnmQFnKCPXgEMZmC9_wDY,28287
|
|
17
|
+
mlrun/artifacts/dataset.py,sha256=421Mk9ShVUtK64ANDMIL8DaEE2jIipX40mZSWCSKILw,16209
|
|
18
|
+
mlrun/artifacts/manager.py,sha256=0b9E8SYaCB_8USJ2b9FqeubyTJ8-t2xuxlbrkGhvbVg,13864
|
|
19
|
+
mlrun/artifacts/model.py,sha256=TjncO-a1ieI6rq6R2KOatRHgGxui39NDKPZJDPy8UcY,20794
|
|
20
|
+
mlrun/artifacts/plots.py,sha256=wmaxVXiAPSCyn3M7pIlcBu9pP3O8lrq0Ewx6iHRDF9s,4238
|
|
21
21
|
mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
22
22
|
mlrun/common/constants.py,sha256=7SLxtvq1VGO9ed0xQ87jM09ScTKMuv_2qx_IBE6hybg,991
|
|
23
23
|
mlrun/common/helpers.py,sha256=BAhyuUnZvD_BT43i0_1EszuSbKgZx7bFy2KRIWP0XeA,1087
|
|
@@ -27,6 +27,7 @@ mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,5
|
|
|
27
27
|
mlrun/common/db/sql_session.py,sha256=Znc8KE2oLy4lg3_vRki1sVlNx59TgDSOTCXfU561hBU,2659
|
|
28
28
|
mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
|
|
29
29
|
mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
|
|
30
|
+
mlrun/common/runtimes/constants.py,sha256=oP3OxdYCpbvadJ3zP1JGkqGBKaBheNkCnJISWha9x58,9513
|
|
30
31
|
mlrun/common/schemas/__init__.py,sha256=JGyxf4eM8ZuVVCASsKZS6lo_Y7VzAuCC8zXZACRAyks,5119
|
|
31
32
|
mlrun/common/schemas/alert.py,sha256=F-ZQbfBdrSm-PYESjlQ_IjnzKs0OrilOhBdCWzNZOe8,3181
|
|
32
33
|
mlrun/common/schemas/api_gateway.py,sha256=mw47rpTBAVIRV6TdMQ_A6rIgnEHOUweU7iT3VbINvBE,2519
|
|
@@ -58,34 +59,34 @@ mlrun/common/schemas/schedule.py,sha256=e9nAeRkZkyk37Ws1cBNseHVKPOQqmWV16rt-zr_e
|
|
|
58
59
|
mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
|
|
59
60
|
mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
|
|
60
61
|
mlrun/common/schemas/workflow.py,sha256=eRoaOBFiWbvP0iwZ6Aof5JmheV81A0-0PGi8L4vuXmI,1823
|
|
61
|
-
mlrun/common/schemas/model_monitoring/__init__.py,sha256=
|
|
62
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
62
|
+
mlrun/common/schemas/model_monitoring/__init__.py,sha256=9v9Q6Jfn3iiv0gMc8R7d-ZpxU3fWaWvCIya_fWQYh6I,1607
|
|
63
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=ytMQwgf3SfpTwlptJvDZPqeO3ic96MAdXGf9bvHpBgU,8842
|
|
63
64
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=aiNK8iL_fIzDVO_bj4fted9P6fAwaymcPC2OnRk36po,1431
|
|
64
|
-
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=
|
|
65
|
+
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=_HCdL_LisANYm9vPRov15dwWmuy5Q02DNbZ_WHCxTZk,12274
|
|
65
66
|
mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
|
|
66
67
|
mlrun/data_types/data_types.py,sha256=hWiL5TPOj9EK7_nd1yttLBUhXTmBYLDZzmG-hWzzhHE,4751
|
|
67
68
|
mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
|
|
68
69
|
mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,9457
|
|
69
|
-
mlrun/data_types/to_pandas.py,sha256=
|
|
70
|
+
mlrun/data_types/to_pandas.py,sha256=vGFR8qdndcQlO3mKZQfuSrUELyklyZZTPtw9LyXK8xU,9924
|
|
70
71
|
mlrun/datastore/__init__.py,sha256=pQQI_Vi7H45Bbe6f9JaF8dOgtGWf3qY9_kd8NNTfaog,4093
|
|
71
72
|
mlrun/datastore/alibaba_oss.py,sha256=OfQ9AbsJNBFF9DFgUdq38TvKw6qwnHmEcnH-nze6ZZg,4827
|
|
72
73
|
mlrun/datastore/azure_blob.py,sha256=NpkEoIie7mH171tOwlrwpEwzRYGoo9SF3FAAegEENhU,9019
|
|
73
|
-
mlrun/datastore/base.py,sha256=
|
|
74
|
+
mlrun/datastore/base.py,sha256=z1ON-fd6mjRu_YZybhY2uw26T5upk4HHAsV8PfkB3o4,25586
|
|
74
75
|
mlrun/datastore/datastore.py,sha256=GGo8XPnKVWWgY0b-18D93V1g8DJgeBNafa6knnHEabw,9111
|
|
75
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
76
|
+
mlrun/datastore/datastore_profile.py,sha256=p2nNSM3IlJcc2VrD8HmB51zS2Lr3MaZqjbs3efecheg,18831
|
|
76
77
|
mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
|
|
77
78
|
mlrun/datastore/filestore.py,sha256=nS3Ie6jG41NDiW_as9tF8Nu5maaSVEKYKUr1IQtPhuA,3767
|
|
78
79
|
mlrun/datastore/google_cloud_storage.py,sha256=Du5qYYUCSkLt9acQDeQ-PgEjttsE7D2eAoLebO43kiw,6110
|
|
79
80
|
mlrun/datastore/hdfs.py,sha256=TfL1zUWVRxEHF9kswZtOzrMdDmhSfiSVIAjz7fxWyVw,1876
|
|
80
|
-
mlrun/datastore/inmem.py,sha256=
|
|
81
|
+
mlrun/datastore/inmem.py,sha256=PQAbNbjQvDhtCQrvPTCuUWRwGVe4a7nB5E84l8C20pQ,2802
|
|
81
82
|
mlrun/datastore/redis.py,sha256=yJ8xYHAR4DyYzsAMLQmsdzO-VVUTQABkIxcWhVHeUFI,5575
|
|
82
83
|
mlrun/datastore/s3.py,sha256=EIPAXJGZ9kpQVbb_utFFZskDM21fAGz4m6QEAGecABU,8110
|
|
83
84
|
mlrun/datastore/snowflake_utils.py,sha256=QFWS6skWnPs_p4ioE9qEyUUettSHVYA4g8e-LnebU8A,1439
|
|
84
|
-
mlrun/datastore/sources.py,sha256=
|
|
85
|
+
mlrun/datastore/sources.py,sha256=UI18K8ArhqPidDEJ7pSL16C-1vXKWkFI7Vf-g5N_WKs,41260
|
|
85
86
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
86
87
|
mlrun/datastore/spark_utils.py,sha256=50rllp6xXpXY__1LbU7aTXUU5ca8dKAfoskPre3npZo,1611
|
|
87
|
-
mlrun/datastore/store_resources.py,sha256=
|
|
88
|
-
mlrun/datastore/targets.py,sha256=
|
|
88
|
+
mlrun/datastore/store_resources.py,sha256=6uge0IQ3PgkozpMYBhjVbPbwLVV2sxnwnt-Paw11nBE,6684
|
|
89
|
+
mlrun/datastore/targets.py,sha256=v1V7fyA4EJdgTT-6EbkZ7yIhKgtbb0bVcwXByeLklec,78902
|
|
89
90
|
mlrun/datastore/utils.py,sha256=TjvFRJIje3RzQpxfMZAGniyzSWgWC_AEbuTrZXxshRo,5852
|
|
90
91
|
mlrun/datastore/v3io.py,sha256=tmZ2S-POZhjjKPE_0T1EkHcv6Q10pz5KQiaTXE1Be-4,8102
|
|
91
92
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
@@ -94,22 +95,22 @@ mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
|
94
95
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
95
96
|
mlrun/db/base.py,sha256=cTH6vKj8p-fyT3a-n9LSIn3Y5KQXjDMpOfVge3_ZkFY,21109
|
|
96
97
|
mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
|
|
97
|
-
mlrun/db/httpdb.py,sha256=
|
|
98
|
+
mlrun/db/httpdb.py,sha256=tNMCzZOAELH5SA4qL4ZNos7D1QQfvaeaGnk7voSdt6I,170882
|
|
98
99
|
mlrun/db/nopdb.py,sha256=dcwgZYNSsP-ZNv3ZAyTvD5Pu-2YhoW_fIzHNLG_e1J0,18434
|
|
99
|
-
mlrun/feature_store/__init__.py,sha256=
|
|
100
|
-
mlrun/feature_store/api.py,sha256=
|
|
100
|
+
mlrun/feature_store/__init__.py,sha256=FhHRc8NdqL_HWpCs7A8dKruxJS5wEm55Gs3dcgBiRUg,1522
|
|
101
|
+
mlrun/feature_store/api.py,sha256=uYheyPkJOVCrz1jivvpGatgy_JBAq0It0XZqPpNVQkE,48699
|
|
101
102
|
mlrun/feature_store/common.py,sha256=DKmoRk04NCS1gv7qZuEUa2-g8WsfR6IWjYctcrqKVlg,12853
|
|
102
|
-
mlrun/feature_store/feature_set.py,sha256=
|
|
103
|
+
mlrun/feature_store/feature_set.py,sha256=qD8RqkeoJFbJMMK5-zjs-27DC4UXQiQSokkt4pdMzkw,56027
|
|
103
104
|
mlrun/feature_store/feature_vector.py,sha256=YTwg2-qFMF8ard3jvrYACh7vwZJ51ddy8UzCguQ1F1I,43561
|
|
104
105
|
mlrun/feature_store/ingestion.py,sha256=GZkrke5_JJfA_PGOFc6ekbHKujHgMgqr6t4vop5n_bg,11210
|
|
105
106
|
mlrun/feature_store/steps.py,sha256=EAOJvcnKNiFxSXlJuRxEEZU3q2a6GpMH9KffTfXeWKo,28860
|
|
106
107
|
mlrun/feature_store/retrieval/__init__.py,sha256=bwA4copPpLQi8fyoUAYtOyrlw0-6f3-Knct8GbJSvRg,1282
|
|
107
|
-
mlrun/feature_store/retrieval/base.py,sha256=
|
|
108
|
-
mlrun/feature_store/retrieval/conversion.py,sha256=
|
|
109
|
-
mlrun/feature_store/retrieval/dask_merger.py,sha256=
|
|
110
|
-
mlrun/feature_store/retrieval/job.py,sha256=
|
|
111
|
-
mlrun/feature_store/retrieval/local_merger.py,sha256=
|
|
112
|
-
mlrun/feature_store/retrieval/spark_merger.py,sha256=
|
|
108
|
+
mlrun/feature_store/retrieval/base.py,sha256=zgDsRsYQz8eqReKBEeTP0O4UoLoVYjWpO1o1gtvbjRA,30230
|
|
109
|
+
mlrun/feature_store/retrieval/conversion.py,sha256=2eN1JfciLpw94RqsGYiDhyGHDjjVestZpM-naRX9xR8,11633
|
|
110
|
+
mlrun/feature_store/retrieval/dask_merger.py,sha256=t60xciYp6StUQLEyFyI4JK5NpWkdBy2MGCs6beimaWU,5575
|
|
111
|
+
mlrun/feature_store/retrieval/job.py,sha256=1nQzPpCZDQI-3j1a4SCBtGoY9I2K-r0NOIjFPqKrwhU,8344
|
|
112
|
+
mlrun/feature_store/retrieval/local_merger.py,sha256=jM-8ta44PeNUc1cKMPs-TxrO9t8pXbwu_Tw8MZrLxUY,4513
|
|
113
|
+
mlrun/feature_store/retrieval/spark_merger.py,sha256=Ys0eNE3QiGlLCxahwMCT1AqJAmDR8DfJzC6VuX3x0iI,11166
|
|
113
114
|
mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
|
|
114
115
|
mlrun/frameworks/__init__.py,sha256=qRHe_nUfxpoLaSASAkIxcW6IyunMtxq5LXhjzZMO_1E,743
|
|
115
116
|
mlrun/frameworks/parallel_coordinates.py,sha256=9sjRaRJXKAQASb1cGuoSoGmDenZlDtE9c6ut1iA2hwQ,11487
|
|
@@ -126,7 +127,7 @@ mlrun/frameworks/_dl_common/utils.py,sha256=eVjqSHJh2OSKq7s1BMyCVrZ9VIrkAKaD1Y0w
|
|
|
126
127
|
mlrun/frameworks/_dl_common/loggers/__init__.py,sha256=0mh4CZKKjlwsE4Boaldb0TfSyaUltwQshGLBNpwQsYA,787
|
|
127
128
|
mlrun/frameworks/_dl_common/loggers/logger.py,sha256=wDR60HUeS7CETcTjefO8JodjqefZby9fSeZCeAtzd3U,11477
|
|
128
129
|
mlrun/frameworks/_dl_common/loggers/mlrun_logger.py,sha256=Sv63luck4EKGseIW1fgVO2KCaSez2p5taKu9Rqg1lPY,14748
|
|
129
|
-
mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py,sha256=
|
|
130
|
+
mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py,sha256=7V8shi-VNAhG9culAadvV-hxYhPlTIlMGUSSObpfQOs,27836
|
|
130
131
|
mlrun/frameworks/_ml_common/__init__.py,sha256=0Tf6dl15IuJ41aokIpDmcGbV_aczHniZ1m3VVXJFcjY,956
|
|
131
132
|
mlrun/frameworks/_ml_common/artifacts_library.py,sha256=eHCrc43NjLYSOcixiW31SQ-SoxAvBBNf2W5Xb-4W48U,3145
|
|
132
133
|
mlrun/frameworks/_ml_common/model_handler.py,sha256=3iDzjCooqKJutXAa4B2sgaUArV_f1KzWPJDn7k4l7Zs,16885
|
|
@@ -196,38 +197,43 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=QcP_mTKBjxvRyWcNnju0BlvXBDOqN
|
|
|
196
197
|
mlrun/frameworks/xgboost/model_handler.py,sha256=e7IwdrmAaQ5Yy_fqOirN7oi-xEJgg_Gqh83Dw1w-U34,11530
|
|
197
198
|
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
198
199
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
199
|
-
mlrun/launcher/base.py,sha256=
|
|
200
|
-
mlrun/launcher/client.py,sha256=
|
|
200
|
+
mlrun/launcher/base.py,sha256=6COzHANgNI4ES_hI4Iv8_Mmjm_R82JhJgBJiOF60PEg,16432
|
|
201
|
+
mlrun/launcher/client.py,sha256=ZVWAgVm-XFt-r1jJblXqaj_MrGztlcrUTd_qS6BqMq0,6062
|
|
201
202
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
202
203
|
mlrun/launcher/local.py,sha256=6E83lCJ8Ma4WPCQYzo3P6c4tvpIipJsokZ3zMrCORbk,10909
|
|
203
204
|
mlrun/launcher/remote.py,sha256=2DGInyx0um5BRUEA5DYcnLXzVKTIv8JxeXogWdxl48o,7469
|
|
204
205
|
mlrun/model_monitoring/__init__.py,sha256=fS93sGyotiurc2lf1x49JiM3MaN8zm4YxKYN42Ecc4U,859
|
|
205
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
206
|
-
mlrun/model_monitoring/application.py,sha256=
|
|
207
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
206
|
+
mlrun/model_monitoring/api.py,sha256=zOYxVK-rTC1ZZkI9ImPb4ifxPk3mzEzQxMGHRSg2AV0,30298
|
|
207
|
+
mlrun/model_monitoring/application.py,sha256=RJ8HeAPfGO3P2A_dEZYNg60c1wKTADh2YSv8BQ5embg,745
|
|
208
|
+
mlrun/model_monitoring/controller.py,sha256=MQ4BF3vfJSyYZv6HuTuSLt_nqaflgBYyOSwCccbwaio,27981
|
|
208
209
|
mlrun/model_monitoring/controller_handler.py,sha256=J9Y9ppLsQaxyYRl21165Rr7QuI9EM-mk-5veAqs4Bi0,1336
|
|
209
|
-
mlrun/model_monitoring/evidently_application.py,sha256=
|
|
210
|
+
mlrun/model_monitoring/evidently_application.py,sha256=iOc42IVjj8m6PDBmVcKIMWm46Bu0EdO9SDcH40Eqhyo,769
|
|
210
211
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
211
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
212
|
-
mlrun/model_monitoring/model_endpoint.py,sha256=
|
|
212
|
+
mlrun/model_monitoring/helpers.py,sha256=hbDcxv0j3ob6eabEzlZ0JBr0GG1GsWZDdnJfHwNTrYs,9375
|
|
213
|
+
mlrun/model_monitoring/model_endpoint.py,sha256=7VX0cBATqLsA4sSinDzouf41ndxqh2mf5bO9BW0G5Z4,4017
|
|
213
214
|
mlrun/model_monitoring/prometheus.py,sha256=cUR4y73GutJB_pA_VCBDl9YtK4PcIJp2wj2rnLVmYi4,7578
|
|
214
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
215
|
+
mlrun/model_monitoring/stream_processing.py,sha256=CZ5kx3jI_nD9ctx9jhAL-pmks8h1A26tTG1jbGy6I0k,49092
|
|
215
216
|
mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
|
|
216
|
-
mlrun/model_monitoring/writer.py,sha256=
|
|
217
|
-
mlrun/model_monitoring/applications/__init__.py,sha256=
|
|
218
|
-
mlrun/model_monitoring/applications/
|
|
217
|
+
mlrun/model_monitoring/writer.py,sha256=Y2ZzBCRRk1m_UGc35GqG8QNS3kpi2tTj4CPi3pbaLA0,10536
|
|
218
|
+
mlrun/model_monitoring/applications/__init__.py,sha256=i793GqYee01mRh_KD6GShvX7UbPBgdJDO4qf9Z3BXEQ,970
|
|
219
|
+
mlrun/model_monitoring/applications/_application_steps.py,sha256=O4AbdjGgpGQiTGuAbW8-nswffax7w4YfSoO9yaRt9nU,6055
|
|
220
|
+
mlrun/model_monitoring/applications/base.py,sha256=5YYI3XDcXnbkDQFL5oZGfbco93dqv1vB2fLW0wK8lSo,11362
|
|
221
|
+
mlrun/model_monitoring/applications/context.py,sha256=oOKzyCnlZ9cA3CPijaCPOtTThpVOJN220H-P6bk66no,8571
|
|
222
|
+
mlrun/model_monitoring/applications/evidently_base.py,sha256=AE_eIz-GEYm3AZTrMCiqF9bcSMlvYk08LJb6bKWAQLg,8057
|
|
223
|
+
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=Bnj-Ql2MUw6E30J7Ol0811VXTQMnPJ2cpMUFU_FvVYc,12069
|
|
224
|
+
mlrun/model_monitoring/applications/results.py,sha256=VVlu9Si7Tj2LNJzPQrp4_Qeyh9mxOVMu1Jwb5K2LfvY,3577
|
|
219
225
|
mlrun/model_monitoring/db/__init__.py,sha256=sXYc6CF2I_HMJyUoY_4VueQf3OL-vhEAuWHxQvuoGRs,662
|
|
220
226
|
mlrun/model_monitoring/db/stores/__init__.py,sha256=G3g1ZclwVWfdtFsuTAW1O2A2ndR4ku9xU9TivnIb4yk,4305
|
|
221
227
|
mlrun/model_monitoring/db/stores/base/__init__.py,sha256=JufJETW3BXzPhFwbRa8dMf7BFGGZKceIWIMgr5x9n9c,599
|
|
222
228
|
mlrun/model_monitoring/db/stores/base/store.py,sha256=nOWEwL1zDxYQ09QBALXK57k9FNFIuYg9H0Z_ntW-Xs8,7073
|
|
223
229
|
mlrun/model_monitoring/db/stores/sqldb/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
224
|
-
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=
|
|
230
|
+
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=eqRB7BhEi-wp98meYZaoX81uA2KX2JBWe7mSj-izzn4,27103
|
|
225
231
|
mlrun/model_monitoring/db/stores/sqldb/models/__init__.py,sha256=359IyQfnBqe4MXrKe4wCPAM2-ntqjUYCx1n_djSdNYg,2196
|
|
226
|
-
mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=
|
|
232
|
+
mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=2EZD0VCl69PRyvfQ9QAAQp08MGAUllmj5nXiCwyj7VU,4423
|
|
227
233
|
mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=IQxnupQAVnAu_J2aENRyKuRJuOc5EcfVtWBRCEpOwzA,2022
|
|
228
234
|
mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=S45CfdLSq_XJVKz3ZtdA8imsWWnuKdHb696HjDktLTU,994
|
|
229
235
|
mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
230
|
-
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=
|
|
236
|
+
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=tk8J2cmw4Xqd6c40Cw4XoPQwlEWOkeAXi-sMYYoR9uM,30321
|
|
231
237
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
232
238
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
233
239
|
mlrun/package/__init__.py,sha256=uWILzN42bcq5vFRk6ptxEmn1I5uBWAnhaJr7e4H834w,7082
|
|
@@ -248,35 +254,33 @@ mlrun/package/utils/_supported_format.py,sha256=O3LPTvZ6A-nGi6mB2kTzJp2DQ-cCOgnl
|
|
|
248
254
|
mlrun/package/utils/log_hint_utils.py,sha256=40X7oVzCiAIGsTTSON0iYNHj-_1Y4l4SDMThTA85If8,3696
|
|
249
255
|
mlrun/package/utils/type_hint_utils.py,sha256=JYrek6vuN3z7e6MGUD3qBLDfQ03C4puZXNTpDSj-VrM,14695
|
|
250
256
|
mlrun/platforms/__init__.py,sha256=2Rt8sx4rBwa7D3SaEAImcZPnj2auPaundk-mStgGcXI,2352
|
|
251
|
-
mlrun/platforms/iguazio.py,sha256=
|
|
257
|
+
mlrun/platforms/iguazio.py,sha256=Qw4_mqSsuq6wrJBIres22Fbc6-YZOxZSVkdlv1xR7Kk,19441
|
|
252
258
|
mlrun/platforms/other.py,sha256=jA-3e8rNq6NSzDHsox4evVMKVN9cnTTYOnVU6rL0zOA,11828
|
|
253
259
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
254
260
|
mlrun/projects/operations.py,sha256=Myzx1dTRQoThBRoxisi5-cpyE8VtbZE5QCrSA_DcIqc,18570
|
|
255
261
|
mlrun/projects/pipelines.py,sha256=-AZsHXtJAI-ws7R2JxvEY1pvi7qPohQAy6xHq_zuKDc,41279
|
|
256
|
-
mlrun/projects/project.py,sha256=
|
|
257
|
-
mlrun/runtimes/__init__.py,sha256=
|
|
258
|
-
mlrun/runtimes/base.py,sha256=
|
|
259
|
-
mlrun/runtimes/constants.py,sha256=oP3OxdYCpbvadJ3zP1JGkqGBKaBheNkCnJISWha9x58,9513
|
|
262
|
+
mlrun/projects/project.py,sha256=63BLIFuEjXBZ1rPBGI9D-hhylUGYYHifucqTnNEjMp8,173319
|
|
263
|
+
mlrun/runtimes/__init__.py,sha256=H2C77DX4IUsOpGdZT-yrD3JcTxg3J2IR8Tf4HRPOcBQ,8652
|
|
264
|
+
mlrun/runtimes/base.py,sha256=XLDwuSB58DhtcO-GPiPSr9LU2cOTk6p40sE4gGa8sOs,36809
|
|
260
265
|
mlrun/runtimes/daskjob.py,sha256=xvN8ajs3-_voqxrfz6b3rh_idNw4ypRAkPRWGOnDMGA,19149
|
|
261
|
-
mlrun/runtimes/funcdoc.py,sha256=
|
|
266
|
+
mlrun/runtimes/funcdoc.py,sha256=CC9cWRPgBiM2sk4NJTqusjc6O9kZ-49vGA5WRPjREKE,9796
|
|
262
267
|
mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51PFr8Q4mg,4918
|
|
263
268
|
mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
|
|
264
269
|
mlrun/runtimes/kubejob.py,sha256=pqtIkwem7WRrw2DqrOAO8tAmIVJO4-QVof-zmHVt_WA,8641
|
|
265
|
-
mlrun/runtimes/local.py,sha256=
|
|
270
|
+
mlrun/runtimes/local.py,sha256=2zWAjEQE2wS7mf9tjn2Ru2_H8nNh22IjH4humcgfWqA,21790
|
|
266
271
|
mlrun/runtimes/pod.py,sha256=r7znudhzyyFRtP3sX9J2lb8iKMUbdKtqbSfCxk4yYGE,65232
|
|
267
272
|
mlrun/runtimes/remotesparkjob.py,sha256=ORkKmZRz_V3YiNE1NF7JIa_hI_LWbKEyI15Qb6R6g5I,7326
|
|
268
|
-
mlrun/runtimes/utils.py,sha256=
|
|
273
|
+
mlrun/runtimes/utils.py,sha256=8CKMrHA3RRsWLccsYFDOrS9Eh0RWxp6EcHxwvaHKVks,15462
|
|
269
274
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
270
275
|
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=sIqIg5DQAf4j0wCPA-G0GoxY6vacRddxCy5KDUZszek,2245
|
|
271
276
|
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=a9W7A8sboteQov0Z9uVcthEU3FGYFf2cdAsi-vdjH1w,12749
|
|
272
277
|
mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=-kzz5b3YBit6sGWojjREW_aHHRTx72zzTbxWGxvUplE,8679
|
|
273
|
-
mlrun/runtimes/mpijob/__init__.py,sha256=
|
|
278
|
+
mlrun/runtimes/mpijob/__init__.py,sha256=V_1gQD1VHa0Qvjqgyv8RLouH27Sy9YTwj2ZG62o32zU,1049
|
|
274
279
|
mlrun/runtimes/mpijob/abstract.py,sha256=kDWo-IY1FKLZhI30j38Xx9HMhlUvHezfd1DT2ShoxZY,9161
|
|
275
|
-
mlrun/runtimes/mpijob/v1.py,sha256=
|
|
276
|
-
mlrun/runtimes/mpijob/v1alpha1.py,sha256=w_971wwL03hW_ksgHJXdjTdjhxCs9KJ0zNqHSQ9whIM,1034
|
|
280
|
+
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
277
281
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
278
282
|
mlrun/runtimes/nuclio/api_gateway.py,sha256=hHWzBuqk2HZz_2QKJ7fV0ZvgZwb-rrZUySdi0om_ujk,19826
|
|
279
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
283
|
+
mlrun/runtimes/nuclio/function.py,sha256=dTd_plHPPM9UXSK5-q4MT8ngbCveXJT50R2ayze6HYU,49342
|
|
280
284
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
281
285
|
mlrun/runtimes/nuclio/serving.py,sha256=H3bSI33FmfOBkL99ZU6_xKbFx4qKdyQVdpIwwfhK5qo,29649
|
|
282
286
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
@@ -305,7 +309,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
305
309
|
mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
|
|
306
310
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
307
311
|
mlrun/utils/db.py,sha256=KEa-vzicUhzIwo1wBXax2ZuXtYgf5to7wnsY3CYCiOQ,1713
|
|
308
|
-
mlrun/utils/helpers.py,sha256=
|
|
312
|
+
mlrun/utils/helpers.py,sha256=pYq3-_HHvF_lbKd7wwlxufIJPSkqo5ubVnj9yFGY4js,51670
|
|
309
313
|
mlrun/utils/http.py,sha256=l_JCPrCq8bfYUcUcAFWUPvb9Xu-93bLGIhV-H-XCU9s,8707
|
|
310
314
|
mlrun/utils/logger.py,sha256=6-XMv1ucg9NqTstLpiji9qb06XHpx2LvNA8JxU1J5Tk,8133
|
|
311
315
|
mlrun/utils/regex.py,sha256=Nd7xnDHU9PEOsse6rFwLNVgU4AaYCyuwMmQ9qgx2-Vw,4581
|
|
@@ -314,20 +318,20 @@ mlrun/utils/singleton.py,sha256=p1Y-X0mPSs_At092GS-pZCA8CTR62HOqPU07_ZH6-To,869
|
|
|
314
318
|
mlrun/utils/v3io_clients.py,sha256=7eReciHBPLuLW6b5DIc8emnmrjh4D8hXPuqZDooR6HQ,1284
|
|
315
319
|
mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
|
|
316
320
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
317
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
321
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=z4nW0atI_IZZLKR8Awb0PPoJFurpLndgjkizlXyR8Z8,26279
|
|
318
322
|
mlrun/utils/notifications/notification/__init__.py,sha256=Kucv9d0x1MBk-6kxpe1-3He6eKCRinPeItcbiJsdDqg,2092
|
|
319
323
|
mlrun/utils/notifications/notification/base.py,sha256=sq6ICoboUeVwNPhMenaTFDEFnu6fo-7rLDRzjVKnIbc,2778
|
|
320
324
|
mlrun/utils/notifications/notification/console.py,sha256=MAVk7v5PJ52vdGRv76YcEPixWgV0licBPWGpR01uR40,2643
|
|
321
325
|
mlrun/utils/notifications/notification/git.py,sha256=ELZ-ZmbFDb39A0OUIhtvuSbqJoVfF_o_IOxMD5eBlv4,5351
|
|
322
326
|
mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT1U41IYwyytovv5X_LsI4,2066
|
|
323
|
-
mlrun/utils/notifications/notification/slack.py,sha256=
|
|
327
|
+
mlrun/utils/notifications/notification/slack.py,sha256=E0l-ptI_OU_HVF_iYd1dQNPI264L6nUFVp4KY_YSZx8,6337
|
|
324
328
|
mlrun/utils/notifications/notification/webhook.py,sha256=m6q7zhIUPjqzHwYXOQf_SjRXB7vQ5snE__gTHP9gRU8,2748
|
|
325
329
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
326
|
-
mlrun/utils/version/version.json,sha256
|
|
330
|
+
mlrun/utils/version/version.json,sha256=x82UVdUlBMQxG0pvdafRi5sqH0ltdY6tPZ31C6WPxRs,89
|
|
327
331
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
328
|
-
mlrun-1.7.
|
|
329
|
-
mlrun-1.7.
|
|
330
|
-
mlrun-1.7.
|
|
331
|
-
mlrun-1.7.
|
|
332
|
-
mlrun-1.7.
|
|
333
|
-
mlrun-1.7.
|
|
332
|
+
mlrun-1.7.0rc15.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
333
|
+
mlrun-1.7.0rc15.dist-info/METADATA,sha256=LeqTV_rtllROVT2K1oxbo2cjwt5_OfgK2hbqHyD14T4,18801
|
|
334
|
+
mlrun-1.7.0rc15.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
335
|
+
mlrun-1.7.0rc15.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
336
|
+
mlrun-1.7.0rc15.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
337
|
+
mlrun-1.7.0rc15.dist-info/RECORD,,
|
|
@@ -1,29 +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
|
-
from deprecated import deprecated
|
|
15
|
-
|
|
16
|
-
from mlrun.runtimes.constants import MPIJobCRDVersions
|
|
17
|
-
from mlrun.runtimes.mpijob.abstract import AbstractMPIJobRuntime
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
# TODO: Remove in 1.7.0
|
|
21
|
-
@deprecated(
|
|
22
|
-
version="1.5.0",
|
|
23
|
-
reason="v1alpha1 mpi will be removed in 1.7.0, use v1 instead",
|
|
24
|
-
category=FutureWarning,
|
|
25
|
-
)
|
|
26
|
-
class MpiRuntimeV1Alpha1(AbstractMPIJobRuntime):
|
|
27
|
-
crd_group = "kubeflow.org"
|
|
28
|
-
crd_version = MPIJobCRDVersions.v1alpha1
|
|
29
|
-
crd_plural = "mpijobs"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|