mlrun 1.10.0rc19__py3-none-any.whl → 1.10.0rc21__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/common/schemas/function.py +10 -0
- mlrun/common/schemas/model_monitoring/constants.py +4 -11
- mlrun/common/schemas/model_monitoring/model_endpoints.py +2 -0
- mlrun/datastore/model_provider/huggingface_provider.py +109 -20
- mlrun/datastore/model_provider/model_provider.py +110 -32
- mlrun/datastore/model_provider/openai_provider.py +87 -31
- mlrun/db/base.py +0 -19
- mlrun/db/httpdb.py +10 -46
- mlrun/db/nopdb.py +0 -10
- mlrun/launcher/base.py +0 -6
- mlrun/model_monitoring/api.py +43 -22
- mlrun/model_monitoring/applications/base.py +1 -1
- mlrun/model_monitoring/controller.py +112 -38
- mlrun/model_monitoring/db/_schedules.py +13 -9
- mlrun/model_monitoring/stream_processing.py +16 -12
- mlrun/platforms/__init__.py +3 -2
- mlrun/projects/project.py +2 -2
- mlrun/run.py +38 -5
- mlrun/serving/server.py +23 -0
- mlrun/serving/states.py +76 -29
- mlrun/serving/system_steps.py +60 -36
- mlrun/utils/helpers.py +27 -13
- mlrun/utils/notifications/notification_pusher.py +1 -1
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.10.0rc19.dist-info → mlrun-1.10.0rc21.dist-info}/METADATA +6 -5
- {mlrun-1.10.0rc19.dist-info → mlrun-1.10.0rc21.dist-info}/RECORD +30 -31
- mlrun/api/schemas/__init__.py +0 -259
- {mlrun-1.10.0rc19.dist-info → mlrun-1.10.0rc21.dist-info}/WHEEL +0 -0
- {mlrun-1.10.0rc19.dist-info → mlrun-1.10.0rc21.dist-info}/entry_points.txt +0 -0
- {mlrun-1.10.0rc19.dist-info → mlrun-1.10.0rc21.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.10.0rc19.dist-info → mlrun-1.10.0rc21.dist-info}/top_level.txt +0 -0
mlrun/utils/helpers.py
CHANGED
|
@@ -464,17 +464,11 @@ def to_date_str(d):
|
|
|
464
464
|
return ""
|
|
465
465
|
|
|
466
466
|
|
|
467
|
-
def normalize_name(name: str
|
|
467
|
+
def normalize_name(name: str):
|
|
468
468
|
# TODO: Must match
|
|
469
469
|
# [a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?
|
|
470
470
|
name = re.sub(r"\s+", "-", name)
|
|
471
471
|
if "_" in name:
|
|
472
|
-
if verbose:
|
|
473
|
-
warnings.warn(
|
|
474
|
-
"Names with underscore '_' are about to be deprecated, use dashes '-' instead. "
|
|
475
|
-
f"Replacing '{name}' underscores with dashes.",
|
|
476
|
-
FutureWarning,
|
|
477
|
-
)
|
|
478
472
|
name = name.replace("_", "-")
|
|
479
473
|
return name.lower()
|
|
480
474
|
|
|
@@ -835,7 +829,7 @@ def extend_hub_uri_if_needed(uri) -> tuple[str, bool]:
|
|
|
835
829
|
raise mlrun.errors.MLRunInvalidArgumentError(
|
|
836
830
|
"Invalid character '/' in function name or source name"
|
|
837
831
|
) from exc
|
|
838
|
-
name = normalize_name(name=name
|
|
832
|
+
name = normalize_name(name=name)
|
|
839
833
|
if not source_name:
|
|
840
834
|
# Searching item in all sources
|
|
841
835
|
sources = db.list_hub_sources(item_name=name, tag=tag)
|
|
@@ -2409,9 +2403,7 @@ def split_path(path: str) -> typing.Union[str, list[str], None]:
|
|
|
2409
2403
|
return path
|
|
2410
2404
|
|
|
2411
2405
|
|
|
2412
|
-
def get_data_from_path(
|
|
2413
|
-
path: typing.Union[str, list[str], None], data: dict
|
|
2414
|
-
) -> dict[str, Any]:
|
|
2406
|
+
def get_data_from_path(path: typing.Union[str, list[str], None], data: dict) -> Any:
|
|
2415
2407
|
if isinstance(path, str):
|
|
2416
2408
|
output_data = data.get(path)
|
|
2417
2409
|
elif isinstance(path, list):
|
|
@@ -2424,8 +2416,6 @@ def get_data_from_path(
|
|
|
2424
2416
|
raise mlrun.errors.MLRunInvalidArgumentError(
|
|
2425
2417
|
"Expected path be of type str or list of str or None"
|
|
2426
2418
|
)
|
|
2427
|
-
if isinstance(output_data, (int, float)):
|
|
2428
|
-
output_data = [output_data]
|
|
2429
2419
|
return output_data
|
|
2430
2420
|
|
|
2431
2421
|
|
|
@@ -2437,3 +2427,27 @@ def is_valid_port(port: int, raise_on_error: bool = False) -> bool:
|
|
|
2437
2427
|
if raise_on_error:
|
|
2438
2428
|
raise ValueError("Port must be in the range 0–65535")
|
|
2439
2429
|
return False
|
|
2430
|
+
|
|
2431
|
+
|
|
2432
|
+
def set_data_by_path(
|
|
2433
|
+
path: typing.Union[str, list[str], None], data: dict, value
|
|
2434
|
+
) -> None:
|
|
2435
|
+
if path is None:
|
|
2436
|
+
if not isinstance(value, dict):
|
|
2437
|
+
raise ValueError("When path is None, value must be a dictionary.")
|
|
2438
|
+
data.update(value)
|
|
2439
|
+
|
|
2440
|
+
elif isinstance(path, str):
|
|
2441
|
+
data[path] = value
|
|
2442
|
+
|
|
2443
|
+
elif isinstance(path, list):
|
|
2444
|
+
current = data
|
|
2445
|
+
for key in path[:-1]:
|
|
2446
|
+
if key not in current or not isinstance(current[key], dict):
|
|
2447
|
+
current[key] = {}
|
|
2448
|
+
current = current[key]
|
|
2449
|
+
current[path[-1]] = value
|
|
2450
|
+
else:
|
|
2451
|
+
raise mlrun.errors.MLRunInvalidArgumentError(
|
|
2452
|
+
"Expected path to be of type str or list of str"
|
|
2453
|
+
)
|
|
@@ -308,7 +308,7 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
308
308
|
and retry_count >= max_retries
|
|
309
309
|
):
|
|
310
310
|
message += (
|
|
311
|
-
"\nRetry limit reached
|
|
311
|
+
"\nRetry limit reached - run has failed after all retry attempts."
|
|
312
312
|
)
|
|
313
313
|
|
|
314
314
|
severity = (
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.0rc21
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -21,7 +21,8 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
21
21
|
Requires-Python: >=3.9, <3.12
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
|
-
Requires-Dist: urllib3
|
|
24
|
+
Requires-Dist: urllib3>=1.26.20; python_version < "3.11"
|
|
25
|
+
Requires-Dist: urllib3>=2.5.0; python_version >= "3.11"
|
|
25
26
|
Requires-Dist: GitPython>=3.1.41,~=3.1
|
|
26
27
|
Requires-Dist: aiohttp~=3.11
|
|
27
28
|
Requires-Dist: aiohttp-retry~=2.9
|
|
@@ -44,7 +45,7 @@ Requires-Dist: semver~=3.0
|
|
|
44
45
|
Requires-Dist: dependency-injector~=4.41
|
|
45
46
|
Requires-Dist: fsspec<2024.7,>=2023.9.2
|
|
46
47
|
Requires-Dist: v3iofs~=0.1.17
|
|
47
|
-
Requires-Dist: storey~=1.10.
|
|
48
|
+
Requires-Dist: storey~=1.10.10
|
|
48
49
|
Requires-Dist: inflection~=0.5.0
|
|
49
50
|
Requires-Dist: python-dotenv~=1.0
|
|
50
51
|
Requires-Dist: setuptools>=75.2
|
|
@@ -112,7 +113,7 @@ Requires-Dist: apscheduler<4,>=3.11; extra == "api"
|
|
|
112
113
|
Requires-Dist: objgraph~=3.6; extra == "api"
|
|
113
114
|
Requires-Dist: igz-mgmt~=0.4.1; extra == "api"
|
|
114
115
|
Requires-Dist: humanfriendly~=10.0; extra == "api"
|
|
115
|
-
Requires-Dist: fastapi~=0.
|
|
116
|
+
Requires-Dist: fastapi~=0.116.0; extra == "api"
|
|
116
117
|
Requires-Dist: sqlalchemy~=2.0; extra == "api"
|
|
117
118
|
Requires-Dist: sqlalchemy-utils~=0.41.2; extra == "api"
|
|
118
119
|
Requires-Dist: pymysql~=1.1; extra == "api"
|
|
@@ -203,7 +204,7 @@ Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete-
|
|
|
203
204
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete-api"
|
|
204
205
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
205
206
|
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
|
|
206
|
-
Requires-Dist: fastapi~=0.
|
|
207
|
+
Requires-Dist: fastapi~=0.116.0; extra == "complete-api"
|
|
207
208
|
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete-api"
|
|
208
209
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete-api"
|
|
209
210
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete-api"
|
|
@@ -8,11 +8,10 @@ mlrun/k8s_utils.py,sha256=mMnGyouHoJC93ZD2KGf9neJM1pD7mR9IXLnHOEwYVTQ,21469
|
|
|
8
8
|
mlrun/lists.py,sha256=OlaV2QIFUzmenad9kxNJ3k4whlDyxI3zFbGwr6vpC5Y,8561
|
|
9
9
|
mlrun/model.py,sha256=wHtM8LylSOEFk6Hxl95CVm8DOPhofjsANYdIvKHH6dw,88956
|
|
10
10
|
mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
|
|
11
|
-
mlrun/run.py,sha256=
|
|
11
|
+
mlrun/run.py,sha256=WwcAkbmfnT0Qslxte4xchl-B_UN5YkJIz6_gDGT9_mo,48208
|
|
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
|
-
mlrun/api/schemas/__init__.py,sha256=b8pOb-hPeojIisSSiy5zwMh-uZAebyB2mAnmGGLe5Sc,13919
|
|
16
15
|
mlrun/artifacts/__init__.py,sha256=ZrEUNto7tGdnBGteCp9zOyO8b78z7O3xgcpzUt9UHE4,1240
|
|
17
16
|
mlrun/artifacts/base.py,sha256=6x_2KPMNOciiNNUsiKgJ-b6ejxAHm_Ro22xODLoTc44,28559
|
|
18
17
|
mlrun/artifacts/dataset.py,sha256=bhb5Kfbs8P28yjnpN76th5lLEUl5nAqD4VqVzHEVPrM,16421
|
|
@@ -55,7 +54,7 @@ mlrun/common/schemas/datastore_profile.py,sha256=jDva-_XTCU0EyExs5uB2PVR7-Tj4g4Z
|
|
|
55
54
|
mlrun/common/schemas/events.py,sha256=LjAU7t-aNhkECbF_o2mzXiZ5mn4299d-_HOd20Xv6iQ,1025
|
|
56
55
|
mlrun/common/schemas/feature_store.py,sha256=Kz7AWQ1RCPA8sTL9cGRZnfUBhWf4MX_5yyYswtCOcCk,4802
|
|
57
56
|
mlrun/common/schemas/frontend_spec.py,sha256=tR8k78cppYK-X8kCWe0mz1gk8yqpsn2IxM3QmBdTJs8,2622
|
|
58
|
-
mlrun/common/schemas/function.py,sha256=
|
|
57
|
+
mlrun/common/schemas/function.py,sha256=BUHenAK6r_mWtDrBWE42xPJU8zh8ng5Usj7GmB_SAcU,5108
|
|
59
58
|
mlrun/common/schemas/http.py,sha256=KozLgGV1vpNXQ8Qptr_Zm6BEbc2VcU42hSphe_ffe_A,704
|
|
60
59
|
mlrun/common/schemas/hub.py,sha256=zYupE3yBKlVEAhHNb4rn9g5T63sekRUnI4Ql3v4a_c4,4118
|
|
61
60
|
mlrun/common/schemas/k8s.py,sha256=YgyDK7KNt29GHCOxd1vw-jnl_757cIPLzViCTNT1Zcc,1403
|
|
@@ -75,10 +74,10 @@ mlrun/common/schemas/serving.py,sha256=4ek9JZDagkdeXyfkX6P6xp4deUNSf_kqXUaXcKSuv
|
|
|
75
74
|
mlrun/common/schemas/tag.py,sha256=1wqEiAujsElojWb3qmuyfcaLFjXSNAAQdafkDx7fkn0,891
|
|
76
75
|
mlrun/common/schemas/workflow.py,sha256=Y-FHJnxs5c86yetuOAPdEJPkne__tLPCxjSXSb4lrjo,2541
|
|
77
76
|
mlrun/common/schemas/model_monitoring/__init__.py,sha256=FqFiFIDcylquQdY0XTBamB5kMzMrMFEpVYM_ecsVfLg,1925
|
|
78
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
77
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=5Frul4YrJQZvUIOE4T2Tp8I6GjklFD7EyRIOR6YqsPo,13726
|
|
79
78
|
mlrun/common/schemas/model_monitoring/functions.py,sha256=GpfSGp05D87wEKemECD3USL368pvnAM2WfS-nef5qOg,2210
|
|
80
79
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=THQlLfPBevBksta8p5OaIsBaJtsNSXexLvHrDxOaVns,2095
|
|
81
|
-
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=
|
|
80
|
+
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=Bl08bnM5DnWJsj4gZhCDD49PDg5y7mPnrsD2fKBE7BI,13316
|
|
82
81
|
mlrun/data_types/__init__.py,sha256=wdxGS1PTnaKXiNZ7PYGxxo86OifHH7NYoArIjDJksLA,1054
|
|
83
82
|
mlrun/data_types/data_types.py,sha256=0_oKLC6-sXL2_nnaDMP_HSXB3fD1nJAG4J2Jq6sGNNw,4998
|
|
84
83
|
mlrun/data_types/infer.py,sha256=F_dW7oR6jrhdONzTl4ngeGh9x7twHdpUJBd2xMVA1Vw,6476
|
|
@@ -109,17 +108,17 @@ mlrun/datastore/utils.py,sha256=jxvq4lgQfgqb7dwKe4Kp51fYCCyOvitEdIfV2mzlqxg,1193
|
|
|
109
108
|
mlrun/datastore/v3io.py,sha256=sMn5473k_bXyIJovNf0rahbVHRmO0YPdOwIhbs06clg,8201
|
|
110
109
|
mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
|
|
111
110
|
mlrun/datastore/model_provider/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
112
|
-
mlrun/datastore/model_provider/huggingface_provider.py,sha256=
|
|
113
|
-
mlrun/datastore/model_provider/model_provider.py,sha256=
|
|
114
|
-
mlrun/datastore/model_provider/openai_provider.py,sha256=
|
|
111
|
+
mlrun/datastore/model_provider/huggingface_provider.py,sha256=c8t7kZ1ZbjZpbyRmwLNz_eqrfwRXmVs_sf6F1s_H2xg,11594
|
|
112
|
+
mlrun/datastore/model_provider/model_provider.py,sha256=3F-iWkxfOI8ypgzJw1I8ZkSXF6xYaqCZf5BMQhG46Fo,11098
|
|
113
|
+
mlrun/datastore/model_provider/openai_provider.py,sha256=KgbP8M4VnbWf9Yh5iG2g3qvXEoLmwWyeL1iTWqwFyWI,11406
|
|
115
114
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
116
115
|
mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
|
|
117
116
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
118
117
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
119
|
-
mlrun/db/base.py,sha256=
|
|
118
|
+
mlrun/db/base.py,sha256=KAY8ufVtQ96aqs6V2uEcRcBZABq0_Mskxdoa_qN_4I4,31536
|
|
120
119
|
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
121
|
-
mlrun/db/httpdb.py,sha256=
|
|
122
|
-
mlrun/db/nopdb.py,sha256=
|
|
120
|
+
mlrun/db/httpdb.py,sha256=37XXs6v3lMh30jA_IM85Rk54Beo9zDL67CUzndy3Mvs,237163
|
|
121
|
+
mlrun/db/nopdb.py,sha256=tk2dhSO9I4irH7X5_R73PCh4gbu25QuQTbZIAI7MHls,27876
|
|
123
122
|
mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
|
|
124
123
|
mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
|
|
125
124
|
mlrun/feature_store/common.py,sha256=JlQA7XWkg9fLuw7cXFmWpUneQqM3NBhwv7DU_xlenWI,12819
|
|
@@ -220,28 +219,28 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=KINOf0udbY75raTewjEFGNlIRyE0e
|
|
|
220
219
|
mlrun/frameworks/xgboost/model_handler.py,sha256=bJq4D1VK3rzhALovqIV5mS0LvGiTlsgAkHanD25pU2c,11663
|
|
221
220
|
mlrun/frameworks/xgboost/utils.py,sha256=4rShiFChzDbWJ4HoTo4qV_lj-Z89pHBAp6Z1yHmU8wA,1068
|
|
222
221
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
223
|
-
mlrun/launcher/base.py,sha256=
|
|
222
|
+
mlrun/launcher/base.py,sha256=IgBE-ZS1ZiGzucg5SElGtO4qOB0cqYQfGtZTcRc2S3Y,17378
|
|
224
223
|
mlrun/launcher/client.py,sha256=cl40ZdF2fU1QbUKdl4Xnucb1u2h-8_dn095qIUyxbuM,6402
|
|
225
224
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
226
225
|
mlrun/launcher/local.py,sha256=3gv-IQYoIChSmRaZ0vLUh0Tu26oLMCx9GbBYh4fWygQ,12161
|
|
227
226
|
mlrun/launcher/remote.py,sha256=zFXE52Cq_7EkC8lfNKT0ceIbye0CfFiundF7O1YU4Xw,7810
|
|
228
227
|
mlrun/model_monitoring/__init__.py,sha256=qDQnncjya9XPTlfvGyfWsZWiXc-glGZrrNja-5QmCZk,782
|
|
229
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
230
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
228
|
+
mlrun/model_monitoring/api.py,sha256=G8mI2iJm7cptTVue7dl9qMD6oY8_uxnEoVLz93DFQq4,27003
|
|
229
|
+
mlrun/model_monitoring/controller.py,sha256=XDbDnASFeYaIiqW4unSJPYgJfMvJjs5tPfI5kHRAdg0,43646
|
|
231
230
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
232
231
|
mlrun/model_monitoring/helpers.py,sha256=0xhIYKzhaBrgyjLiA_ekCZsXzi3GBXpLyG40Bhj-PTY,23596
|
|
233
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
232
|
+
mlrun/model_monitoring/stream_processing.py,sha256=bryYO3D0cC10MAQ-liHxUZ79MrL-VFXCb7KNyj6bl-8,34655
|
|
234
233
|
mlrun/model_monitoring/writer.py,sha256=rGRFzSOkqZWvD3Y6sVk2H1Gepfnkzkp9ce00PsApTLo,8288
|
|
235
234
|
mlrun/model_monitoring/applications/__init__.py,sha256=MaH_n4GiqqQvSkntM5yQ7_FCANtM_IfgK-IJTdo4G_E,757
|
|
236
235
|
mlrun/model_monitoring/applications/_application_steps.py,sha256=t9LDIqQUGE10cyjyhlg0QqN1yVx0apD1HpERYLJfm8U,7409
|
|
237
|
-
mlrun/model_monitoring/applications/base.py,sha256=
|
|
236
|
+
mlrun/model_monitoring/applications/base.py,sha256=W_IjD6EvWD_vueDVIHbnn0tEoGt9tVkCe7cXzxNdzrQ,43917
|
|
238
237
|
mlrun/model_monitoring/applications/context.py,sha256=fAGFNCyNhSnVJPSIeJxv-XmEL2JhDmjK5Ouog9qyvdc,17035
|
|
239
238
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
|
|
240
239
|
mlrun/model_monitoring/applications/results.py,sha256=LfBQOmkpKGvVGNrcj5QiXsRIG2IRgcv_Xqe4QJBmauk,5699
|
|
241
240
|
mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
|
|
242
241
|
mlrun/model_monitoring/applications/evidently/base.py,sha256=shH9YwuFrGNWy1IDAbv622l-GE4o1z_u1bqhqTyTHDA,5661
|
|
243
242
|
mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
|
|
244
|
-
mlrun/model_monitoring/db/_schedules.py,sha256=
|
|
243
|
+
mlrun/model_monitoring/db/_schedules.py,sha256=jxxMqMtTpZsoTIISxSiORw2i_wmKfjwTAxJ8DD3qM-0,11105
|
|
245
244
|
mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
|
|
246
245
|
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=4S86V_Ot_skE16SLkw0WwsaAUB0ECH6SoJdp-TIu6s8,4645
|
|
247
246
|
mlrun/model_monitoring/db/tsdb/base.py,sha256=vOoAlKxBsVfHBv6XCLOMoVRV6CQMfngD-3UlTNcl_yw,33012
|
|
@@ -273,12 +272,12 @@ mlrun/package/utils/_pickler.py,sha256=nyEubm6jze22zLuoQjOqode_FkfQMTOKaWLQ0ES2N
|
|
|
273
272
|
mlrun/package/utils/_supported_format.py,sha256=tuHLPyahFitxoQkZ5dC0dymwc5zxCMVW-_yqa6LSgUY,2356
|
|
274
273
|
mlrun/package/utils/log_hint_utils.py,sha256=oFUrzcJ-AHocXSGIiMP6Yq3IYBgUfnrB-ri7EmXMDvg,3695
|
|
275
274
|
mlrun/package/utils/type_hint_utils.py,sha256=Ic3A7C9KnbfdLe-nUgzGoefBnsvOJJP9ipfuscA8MLU,14694
|
|
276
|
-
mlrun/platforms/__init__.py,sha256=
|
|
275
|
+
mlrun/platforms/__init__.py,sha256=QgtpAt1lpfTKk0mLtesB1P8szK9cpNDPeYzu2qDbPCM,3580
|
|
277
276
|
mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
|
|
278
277
|
mlrun/projects/__init__.py,sha256=hdCOA6_fp8X4qGGGT7Bj7sPbkM1PayWuaVZL0DkpuZw,1240
|
|
279
278
|
mlrun/projects/operations.py,sha256=Rc__P5ucNAY2G-lHc2LrnZs15PUbNFt8-NqNNT2Bjpk,20623
|
|
280
279
|
mlrun/projects/pipelines.py,sha256=nGDzBABEOqoe9sWbax4SfF8CVLgrvK0NLWBadzEthVE,52219
|
|
281
|
-
mlrun/projects/project.py,sha256=
|
|
280
|
+
mlrun/projects/project.py,sha256=3cHsUMyOtm0jTB8UFhcwRWY5WHgR2L_VqNhPc3Nb0OU,254157
|
|
282
281
|
mlrun/runtimes/__init__.py,sha256=8cqrYKy1a0_87XG7V_p96untQ4t8RocadM4LVEEN1JM,9029
|
|
283
282
|
mlrun/runtimes/base.py,sha256=UD2wwxXIZ5ocY-pw7Mzc98plhp-OEgyBuPDtPuVdx98,38346
|
|
284
283
|
mlrun/runtimes/daskjob.py,sha256=IN6gKKrmCIjWooj5FgFm-pAb2i7ra1ERRzClfu_rYGI,20102
|
|
@@ -312,10 +311,10 @@ mlrun/serving/__init__.py,sha256=nriJAcVn5aatwU03T7SsE6ngJEGTxr3wIGt4WuvCCzY,139
|
|
|
312
311
|
mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
|
|
313
312
|
mlrun/serving/remote.py,sha256=Igha2FipK3-6rV_PZ1K464kTbiTu8rhc6SMm-HiEJ6o,18817
|
|
314
313
|
mlrun/serving/routers.py,sha256=SmBOlHn7rT2gWTa-W8f16UB0UthgIFc4D1cPOZAA9ss,54003
|
|
315
|
-
mlrun/serving/server.py,sha256=
|
|
314
|
+
mlrun/serving/server.py,sha256=t5nME4nnoubuyQxD_LM_kGtfEKMM6ccgxalmvLYekiw,39513
|
|
316
315
|
mlrun/serving/serving_wrapper.py,sha256=UL9hhWCfMPcTJO_XrkvNaFvck1U1E7oS8trTZyak0cA,835
|
|
317
|
-
mlrun/serving/states.py,sha256=
|
|
318
|
-
mlrun/serving/system_steps.py,sha256=
|
|
316
|
+
mlrun/serving/states.py,sha256=1hKGyLqV9dTsBOmi94DOcyXx43C7falgig5YgbF1PW4,126612
|
|
317
|
+
mlrun/serving/system_steps.py,sha256=kGaQ2OXsdluthXm_15G-f98caj3n04hq6LTIEBjzLM0,19426
|
|
319
318
|
mlrun/serving/utils.py,sha256=Zbfqm8TKNcTE8zRBezVBzpvR2WKeKeIRN7otNIaiYEc,4170
|
|
320
319
|
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
321
320
|
mlrun/serving/v2_serving.py,sha256=257LVOvWxV0KjeY0-Kxro6YgKmPu2QzNne2IORlXi5E,25434
|
|
@@ -329,7 +328,7 @@ mlrun/utils/async_http.py,sha256=8Olx8TNNeXB07nEGwlqhEgFgnFAD71vBU_bqaA9JW-w,122
|
|
|
329
328
|
mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
|
|
330
329
|
mlrun/utils/clones.py,sha256=qbAGyEbSvlewn3Tw_DpQZP9z6MGzFhSaZfI1CblX8Fg,7515
|
|
331
330
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
332
|
-
mlrun/utils/helpers.py,sha256=
|
|
331
|
+
mlrun/utils/helpers.py,sha256=_uJlkMEY9bWNIAU247qnRmA7FslUK9M0g-7eB6GkbAE,83235
|
|
333
332
|
mlrun/utils/http.py,sha256=5ZU2VpokaUM_DT3HBSqTm8xjUqTPjZN5fKkSIvKlTl0,8704
|
|
334
333
|
mlrun/utils/logger.py,sha256=uaCgI_ezzaXf7nJDCy-1Nrjds8vSXqDbzmjmb3IyCQo,14864
|
|
335
334
|
mlrun/utils/regex.py,sha256=FcRwWD8x9X3HLhCCU2F0AVKTFah784Pr7ZAe3a02jw8,5199
|
|
@@ -338,7 +337,7 @@ mlrun/utils/singleton.py,sha256=fNOfAUtha6OPCV_M1umWnGD0iabnnRwBke9otIspv30,868
|
|
|
338
337
|
mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1294
|
|
339
338
|
mlrun/utils/vault.py,sha256=-36b_PG0Fk9coPJiX6F704NF1nmKDdCH9Bg17wep88w,10446
|
|
340
339
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
341
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
340
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=tspup8ZNUggLxx4No2da9EY7GwHsihY33A8oN_tHKpk,27356
|
|
342
341
|
mlrun/utils/notifications/notification/__init__.py,sha256=9Rfy6Jm8n0LaEDO1VAQb6kIbr7_uVuQhK1pS_abELIY,2581
|
|
343
342
|
mlrun/utils/notifications/notification/base.py,sha256=-9e3XqUixrWwImnTGrIL4enJRSIUP9gMrJVxwaLqeXc,5403
|
|
344
343
|
mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
|
|
@@ -348,11 +347,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
|
|
|
348
347
|
mlrun/utils/notifications/notification/slack.py,sha256=kfhogR5keR7Zjh0VCjJNK3NR5_yXT7Cv-x9GdOUW4Z8,7294
|
|
349
348
|
mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
|
|
350
349
|
mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
|
|
351
|
-
mlrun/utils/version/version.json,sha256=
|
|
350
|
+
mlrun/utils/version/version.json,sha256=H7d1ELzXp0aH2jO3jaUw6eXsjA2R2GNc7FzvPs7pEqE,90
|
|
352
351
|
mlrun/utils/version/version.py,sha256=M2hVhRrgkN3SxacZHs3ZqaOsqAA7B6a22ne324IQ1HE,1877
|
|
353
|
-
mlrun-1.10.
|
|
354
|
-
mlrun-1.10.
|
|
355
|
-
mlrun-1.10.
|
|
356
|
-
mlrun-1.10.
|
|
357
|
-
mlrun-1.10.
|
|
358
|
-
mlrun-1.10.
|
|
352
|
+
mlrun-1.10.0rc21.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
|
|
353
|
+
mlrun-1.10.0rc21.dist-info/METADATA,sha256=OLYNzVbE0RffYFwXIORP4OpDCJKQaDZbvFlhli3-Qs0,26272
|
|
354
|
+
mlrun-1.10.0rc21.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
355
|
+
mlrun-1.10.0rc21.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
356
|
+
mlrun-1.10.0rc21.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
357
|
+
mlrun-1.10.0rc21.dist-info/RECORD,,
|
mlrun/api/schemas/__init__.py
DELETED
|
@@ -1,259 +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
|
-
"""
|
|
16
|
-
Schemas were moved to mlrun.common.schemas.
|
|
17
|
-
For backwards compatibility reasons, we have left this folder untouched so that older version of mlrun would
|
|
18
|
-
be able to migrate to newer version without having to upgrade into an intermediate version.
|
|
19
|
-
|
|
20
|
-
The DeprecationHelper class is used to print a deprecation warning when the old import is used, and return the new
|
|
21
|
-
schema.
|
|
22
|
-
"""
|
|
23
|
-
|
|
24
|
-
import sys
|
|
25
|
-
import warnings
|
|
26
|
-
|
|
27
|
-
import mlrun.common.formatters
|
|
28
|
-
import mlrun.common.schemas
|
|
29
|
-
import mlrun.common.schemas.artifact as old_artifact
|
|
30
|
-
import mlrun.common.schemas.auth as old_auth
|
|
31
|
-
import mlrun.common.schemas.background_task as old_background_task
|
|
32
|
-
import mlrun.common.schemas.client_spec as old_client_spec
|
|
33
|
-
import mlrun.common.schemas.clusterization_spec as old_clusterization_spec
|
|
34
|
-
import mlrun.common.schemas.constants as old_constants
|
|
35
|
-
import mlrun.common.schemas.feature_store as old_feature_store
|
|
36
|
-
import mlrun.common.schemas.frontend_spec as old_frontend_spec
|
|
37
|
-
import mlrun.common.schemas.function as old_function
|
|
38
|
-
import mlrun.common.schemas.http as old_http
|
|
39
|
-
import mlrun.common.schemas.k8s as old_k8s
|
|
40
|
-
import mlrun.common.schemas.memory_reports as old_memory_reports
|
|
41
|
-
import mlrun.common.schemas.model_monitoring.grafana
|
|
42
|
-
import mlrun.common.schemas.object as old_object
|
|
43
|
-
import mlrun.common.schemas.pipeline as old_pipeline
|
|
44
|
-
import mlrun.common.schemas.project as old_project
|
|
45
|
-
import mlrun.common.schemas.runtime_resource as old_runtime_resource
|
|
46
|
-
import mlrun.common.schemas.schedule as old_schedule
|
|
47
|
-
import mlrun.common.schemas.secret as old_secret
|
|
48
|
-
import mlrun.common.schemas.tag as old_tag
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
class DeprecationHelper:
|
|
52
|
-
"""A helper class to deprecate old schemas"""
|
|
53
|
-
|
|
54
|
-
def __init__(self, new_target, version="1.4.0"):
|
|
55
|
-
self._new_target = new_target
|
|
56
|
-
self._version = version
|
|
57
|
-
|
|
58
|
-
def _warn(self):
|
|
59
|
-
warnings.warn(
|
|
60
|
-
f"mlrun.api.schemas.{self._new_target.__name__} is deprecated since version {self._version}, "
|
|
61
|
-
f"Use mlrun.common.schemas.{self._new_target.__name__} instead.",
|
|
62
|
-
FutureWarning,
|
|
63
|
-
)
|
|
64
|
-
|
|
65
|
-
def __call__(self, *args, **kwargs):
|
|
66
|
-
self._warn()
|
|
67
|
-
return self._new_target(*args, **kwargs)
|
|
68
|
-
|
|
69
|
-
def __getattr__(self, attr):
|
|
70
|
-
self._warn()
|
|
71
|
-
return getattr(self._new_target, attr)
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
# for backwards compatibility, we need to inject the old import path to `sys.modules`
|
|
75
|
-
sys.modules["mlrun.api.schemas.artifact"] = old_artifact
|
|
76
|
-
sys.modules["mlrun.api.schemas.auth"] = old_auth
|
|
77
|
-
sys.modules["mlrun.api.schemas.background_task"] = old_background_task
|
|
78
|
-
sys.modules["mlrun.api.schemas.client_spec"] = old_client_spec
|
|
79
|
-
sys.modules["mlrun.api.schemas.clusterization_spec"] = old_clusterization_spec
|
|
80
|
-
sys.modules["mlrun.api.schemas.constants"] = old_constants
|
|
81
|
-
sys.modules["mlrun.api.schemas.feature_store"] = old_feature_store
|
|
82
|
-
sys.modules["mlrun.api.schemas.frontend_spec"] = old_frontend_spec
|
|
83
|
-
sys.modules["mlrun.api.schemas.function"] = old_function
|
|
84
|
-
sys.modules["mlrun.api.schemas.http"] = old_http
|
|
85
|
-
sys.modules["mlrun.api.schemas.k8s"] = old_k8s
|
|
86
|
-
sys.modules["mlrun.api.schemas.memory_reports"] = old_memory_reports
|
|
87
|
-
sys.modules["mlrun.api.schemas.object"] = old_object
|
|
88
|
-
sys.modules["mlrun.api.schemas.pipeline"] = old_pipeline
|
|
89
|
-
sys.modules["mlrun.api.schemas.project"] = old_project
|
|
90
|
-
sys.modules["mlrun.api.schemas.runtime_resource"] = old_runtime_resource
|
|
91
|
-
sys.modules["mlrun.api.schemas.schedule"] = old_schedule
|
|
92
|
-
sys.modules["mlrun.api.schemas.secret"] = old_secret
|
|
93
|
-
sys.modules["mlrun.api.schemas.tag"] = old_tag
|
|
94
|
-
|
|
95
|
-
# The DeprecationHelper class is used to print a deprecation warning when the old import is used,
|
|
96
|
-
# and return the new schema. This is done for backwards compatibility with mlrun.api.schemas.
|
|
97
|
-
ArtifactCategories = DeprecationHelper(mlrun.common.schemas.ArtifactCategories)
|
|
98
|
-
ArtifactIdentifier = DeprecationHelper(mlrun.common.schemas.ArtifactIdentifier)
|
|
99
|
-
ArtifactsFormat = DeprecationHelper(mlrun.common.formatters.ArtifactFormat)
|
|
100
|
-
AuthInfo = DeprecationHelper(mlrun.common.schemas.AuthInfo)
|
|
101
|
-
AuthorizationAction = DeprecationHelper(mlrun.common.schemas.AuthorizationAction)
|
|
102
|
-
AuthorizationResourceTypes = DeprecationHelper(
|
|
103
|
-
mlrun.common.schemas.AuthorizationResourceTypes
|
|
104
|
-
)
|
|
105
|
-
AuthorizationVerificationInput = DeprecationHelper(
|
|
106
|
-
mlrun.common.schemas.AuthorizationVerificationInput
|
|
107
|
-
)
|
|
108
|
-
Credentials = DeprecationHelper(mlrun.common.schemas.Credentials)
|
|
109
|
-
ProjectsRole = DeprecationHelper(mlrun.common.schemas.ProjectsRole)
|
|
110
|
-
|
|
111
|
-
BackgroundTask = DeprecationHelper(mlrun.common.schemas.BackgroundTask)
|
|
112
|
-
BackgroundTaskMetadata = DeprecationHelper(mlrun.common.schemas.BackgroundTaskMetadata)
|
|
113
|
-
BackgroundTaskSpec = DeprecationHelper(mlrun.common.schemas.BackgroundTaskSpec)
|
|
114
|
-
BackgroundTaskState = DeprecationHelper(mlrun.common.schemas.BackgroundTaskState)
|
|
115
|
-
BackgroundTaskStatus = DeprecationHelper(mlrun.common.schemas.BackgroundTaskStatus)
|
|
116
|
-
ClientSpe = DeprecationHelper(mlrun.common.schemas.ClientSpec)
|
|
117
|
-
ClusterizationSpec = DeprecationHelper(mlrun.common.schemas.ClusterizationSpec)
|
|
118
|
-
WaitForChiefToReachOnlineStateFeatureFlag = DeprecationHelper(
|
|
119
|
-
mlrun.common.schemas.WaitForChiefToReachOnlineStateFeatureFlag
|
|
120
|
-
)
|
|
121
|
-
APIStates = DeprecationHelper(mlrun.common.schemas.APIStates)
|
|
122
|
-
ClusterizationRole = DeprecationHelper(mlrun.common.schemas.ClusterizationRole)
|
|
123
|
-
DeletionStrategy = DeprecationHelper(mlrun.common.schemas.DeletionStrategy)
|
|
124
|
-
FeatureStorePartitionByField = DeprecationHelper(
|
|
125
|
-
mlrun.common.schemas.FeatureStorePartitionByField
|
|
126
|
-
)
|
|
127
|
-
HeaderNames = DeprecationHelper(mlrun.common.schemas.HeaderNames)
|
|
128
|
-
LogsCollectorMode = DeprecationHelper(mlrun.common.schemas.LogsCollectorMode)
|
|
129
|
-
OrderType = DeprecationHelper(mlrun.common.schemas.OrderType)
|
|
130
|
-
PatchMode = DeprecationHelper(mlrun.common.schemas.PatchMode)
|
|
131
|
-
RunPartitionByField = DeprecationHelper(mlrun.common.schemas.RunPartitionByField)
|
|
132
|
-
SortField = DeprecationHelper(mlrun.common.schemas.SortField)
|
|
133
|
-
EntitiesOutput = DeprecationHelper(mlrun.common.schemas.EntitiesOutput)
|
|
134
|
-
Entity = DeprecationHelper(mlrun.common.schemas.Entity)
|
|
135
|
-
EntityListOutput = DeprecationHelper(mlrun.common.schemas.EntityListOutput)
|
|
136
|
-
EntityRecord = DeprecationHelper(mlrun.common.schemas.EntityRecord)
|
|
137
|
-
Feature = DeprecationHelper(mlrun.common.schemas.Feature)
|
|
138
|
-
FeatureListOutput = DeprecationHelper(mlrun.common.schemas.FeatureListOutput)
|
|
139
|
-
FeatureRecord = DeprecationHelper(mlrun.common.schemas.FeatureRecord)
|
|
140
|
-
FeatureSet = DeprecationHelper(mlrun.common.schemas.FeatureSet)
|
|
141
|
-
FeatureSetDigestOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetDigestOutput)
|
|
142
|
-
FeatureSetDigestSpec = DeprecationHelper(mlrun.common.schemas.FeatureSetDigestSpec)
|
|
143
|
-
FeatureSetIngestInput = DeprecationHelper(mlrun.common.schemas.FeatureSetIngestInput)
|
|
144
|
-
FeatureSetIngestOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetIngestOutput)
|
|
145
|
-
FeatureSetRecord = DeprecationHelper(mlrun.common.schemas.FeatureSetRecord)
|
|
146
|
-
FeatureSetsOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetsOutput)
|
|
147
|
-
FeatureSetSpec = DeprecationHelper(mlrun.common.schemas.FeatureSetSpec)
|
|
148
|
-
FeatureSetsTagsOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetsTagsOutput)
|
|
149
|
-
FeaturesOutput = DeprecationHelper(mlrun.common.schemas.FeaturesOutput)
|
|
150
|
-
FeatureVector = DeprecationHelper(mlrun.common.schemas.FeatureVector)
|
|
151
|
-
FeatureVectorRecord = DeprecationHelper(mlrun.common.schemas.FeatureVectorRecord)
|
|
152
|
-
FeatureVectorsOutput = DeprecationHelper(mlrun.common.schemas.FeatureVectorsOutput)
|
|
153
|
-
FeatureVectorsTagsOutput = DeprecationHelper(
|
|
154
|
-
mlrun.common.schemas.FeatureVectorsTagsOutput
|
|
155
|
-
)
|
|
156
|
-
AuthenticationFeatureFlag = DeprecationHelper(
|
|
157
|
-
mlrun.common.schemas.AuthenticationFeatureFlag
|
|
158
|
-
)
|
|
159
|
-
FeatureFlags = DeprecationHelper(mlrun.common.schemas.FeatureFlags)
|
|
160
|
-
FrontendSpec = DeprecationHelper(mlrun.common.schemas.FrontendSpec)
|
|
161
|
-
NuclioStreamsFeatureFlag = DeprecationHelper(
|
|
162
|
-
mlrun.common.schemas.NuclioStreamsFeatureFlag
|
|
163
|
-
)
|
|
164
|
-
PreemptionNodesFeatureFlag = DeprecationHelper(
|
|
165
|
-
mlrun.common.schemas.PreemptionNodesFeatureFlag
|
|
166
|
-
)
|
|
167
|
-
ProjectMembershipFeatureFlag = DeprecationHelper(
|
|
168
|
-
mlrun.common.schemas.ProjectMembershipFeatureFlag
|
|
169
|
-
)
|
|
170
|
-
FunctionState = DeprecationHelper(mlrun.common.schemas.FunctionState)
|
|
171
|
-
PreemptionModes = DeprecationHelper(mlrun.common.schemas.PreemptionModes)
|
|
172
|
-
SecurityContextEnrichmentModes = DeprecationHelper(
|
|
173
|
-
mlrun.common.schemas.SecurityContextEnrichmentModes
|
|
174
|
-
)
|
|
175
|
-
HTTPSessionRetryMode = DeprecationHelper(mlrun.common.schemas.HTTPSessionRetryMode)
|
|
176
|
-
NodeSelectorOperator = DeprecationHelper(mlrun.common.schemas.NodeSelectorOperator)
|
|
177
|
-
Resources = DeprecationHelper(mlrun.common.schemas.Resources)
|
|
178
|
-
ResourceSpec = DeprecationHelper(mlrun.common.schemas.ResourceSpec)
|
|
179
|
-
IndexedHubSource = DeprecationHelper(mlrun.common.schemas.IndexedHubSource)
|
|
180
|
-
HubCatalog = DeprecationHelper(mlrun.common.schemas.HubCatalog)
|
|
181
|
-
HubItem = DeprecationHelper(mlrun.common.schemas.HubItem)
|
|
182
|
-
HubObjectMetadata = DeprecationHelper(mlrun.common.schemas.HubObjectMetadata)
|
|
183
|
-
HubSource = DeprecationHelper(mlrun.common.schemas.HubSource)
|
|
184
|
-
HubSourceSpec = DeprecationHelper(mlrun.common.schemas.HubSourceSpec)
|
|
185
|
-
last_source_index = DeprecationHelper(mlrun.common.schemas.last_source_index)
|
|
186
|
-
MostCommonObjectTypesReport = DeprecationHelper(
|
|
187
|
-
mlrun.common.schemas.MostCommonObjectTypesReport
|
|
188
|
-
)
|
|
189
|
-
ObjectTypeReport = DeprecationHelper(mlrun.common.schemas.ObjectTypeReport)
|
|
190
|
-
Features = DeprecationHelper(mlrun.common.schemas.Features)
|
|
191
|
-
FeatureValues = DeprecationHelper(mlrun.common.schemas.FeatureValues)
|
|
192
|
-
GrafanaColumn = DeprecationHelper(
|
|
193
|
-
mlrun.common.schemas.model_monitoring.grafana.GrafanaColumn
|
|
194
|
-
)
|
|
195
|
-
|
|
196
|
-
GrafanaNumberColumn = DeprecationHelper(
|
|
197
|
-
mlrun.common.schemas.model_monitoring.grafana.GrafanaNumberColumn
|
|
198
|
-
)
|
|
199
|
-
GrafanaStringColumn = DeprecationHelper(
|
|
200
|
-
mlrun.common.schemas.model_monitoring.grafana.GrafanaStringColumn
|
|
201
|
-
)
|
|
202
|
-
GrafanaTable = DeprecationHelper(
|
|
203
|
-
mlrun.common.schemas.model_monitoring.grafana.GrafanaTable
|
|
204
|
-
)
|
|
205
|
-
ModelEndpoint = DeprecationHelper(mlrun.common.schemas.ModelEndpoint)
|
|
206
|
-
ModelEndpointList = DeprecationHelper(mlrun.common.schemas.ModelEndpointList)
|
|
207
|
-
ModelEndpointMetadata = DeprecationHelper(mlrun.common.schemas.ModelEndpointMetadata)
|
|
208
|
-
ModelEndpointSpec = DeprecationHelper(mlrun.common.schemas.ModelEndpointSpec)
|
|
209
|
-
ModelEndpointStatus = DeprecationHelper(mlrun.common.schemas.ModelEndpointStatus)
|
|
210
|
-
NotificationSeverity = DeprecationHelper(mlrun.common.schemas.NotificationSeverity)
|
|
211
|
-
NotificationStatus = DeprecationHelper(mlrun.common.schemas.NotificationStatus)
|
|
212
|
-
ObjectKind = DeprecationHelper(mlrun.common.schemas.ObjectKind)
|
|
213
|
-
ObjectMetadata = DeprecationHelper(mlrun.common.schemas.ObjectMetadata)
|
|
214
|
-
ObjectSpec = DeprecationHelper(mlrun.common.schemas.ObjectSpec)
|
|
215
|
-
ObjectStatus = DeprecationHelper(mlrun.common.schemas.ObjectStatus)
|
|
216
|
-
PipelinesFormat = DeprecationHelper(mlrun.common.formatters.PipelineFormat)
|
|
217
|
-
PipelinesOutput = DeprecationHelper(mlrun.common.schemas.PipelinesOutput)
|
|
218
|
-
PipelinesPagination = DeprecationHelper(mlrun.common.schemas.PipelinesPagination)
|
|
219
|
-
IguazioProject = DeprecationHelper(mlrun.common.schemas.IguazioProject)
|
|
220
|
-
Project = DeprecationHelper(mlrun.common.schemas.Project)
|
|
221
|
-
ProjectDesiredState = DeprecationHelper(mlrun.common.schemas.ProjectDesiredState)
|
|
222
|
-
ProjectMetadata = DeprecationHelper(mlrun.common.schemas.ProjectMetadata)
|
|
223
|
-
ProjectOwner = DeprecationHelper(mlrun.common.schemas.ProjectOwner)
|
|
224
|
-
ProjectsFormat = DeprecationHelper(mlrun.common.formatters.ProjectFormat)
|
|
225
|
-
ProjectsOutput = DeprecationHelper(mlrun.common.schemas.ProjectsOutput)
|
|
226
|
-
ProjectSpec = DeprecationHelper(mlrun.common.schemas.ProjectSpec)
|
|
227
|
-
ProjectState = DeprecationHelper(mlrun.common.schemas.ProjectState)
|
|
228
|
-
ProjectStatus = DeprecationHelper(mlrun.common.schemas.ProjectStatus)
|
|
229
|
-
ProjectSummariesOutput = DeprecationHelper(mlrun.common.schemas.ProjectSummariesOutput)
|
|
230
|
-
ProjectSummary = DeprecationHelper(mlrun.common.schemas.ProjectSummary)
|
|
231
|
-
GroupedByJobRuntimeResourcesOutput = DeprecationHelper(
|
|
232
|
-
mlrun.common.schemas.GroupedByJobRuntimeResourcesOutput
|
|
233
|
-
)
|
|
234
|
-
GroupedByProjectRuntimeResourcesOutput = DeprecationHelper(
|
|
235
|
-
mlrun.common.schemas.GroupedByProjectRuntimeResourcesOutput
|
|
236
|
-
)
|
|
237
|
-
KindRuntimeResources = DeprecationHelper(mlrun.common.schemas.KindRuntimeResources)
|
|
238
|
-
ListRuntimeResourcesGroupByField = DeprecationHelper(
|
|
239
|
-
mlrun.common.schemas.ListRuntimeResourcesGroupByField
|
|
240
|
-
)
|
|
241
|
-
RuntimeResource = DeprecationHelper(mlrun.common.schemas.RuntimeResource)
|
|
242
|
-
RuntimeResources = DeprecationHelper(mlrun.common.schemas.RuntimeResources)
|
|
243
|
-
RuntimeResourcesOutput = DeprecationHelper(mlrun.common.schemas.RuntimeResourcesOutput)
|
|
244
|
-
ScheduleCronTrigger = DeprecationHelper(mlrun.common.schemas.ScheduleCronTrigger)
|
|
245
|
-
ScheduleInput = DeprecationHelper(mlrun.common.schemas.ScheduleInput)
|
|
246
|
-
ScheduleKinds = DeprecationHelper(mlrun.common.schemas.ScheduleKinds)
|
|
247
|
-
ScheduleOutput = DeprecationHelper(mlrun.common.schemas.ScheduleOutput)
|
|
248
|
-
ScheduleRecord = DeprecationHelper(mlrun.common.schemas.ScheduleRecord)
|
|
249
|
-
SchedulesOutput = DeprecationHelper(mlrun.common.schemas.SchedulesOutput)
|
|
250
|
-
ScheduleUpdate = DeprecationHelper(mlrun.common.schemas.ScheduleUpdate)
|
|
251
|
-
AuthSecretData = DeprecationHelper(mlrun.common.schemas.AuthSecretData)
|
|
252
|
-
SecretKeysData = DeprecationHelper(mlrun.common.schemas.SecretKeysData)
|
|
253
|
-
SecretProviderName = DeprecationHelper(mlrun.common.schemas.SecretProviderName)
|
|
254
|
-
SecretsData = DeprecationHelper(mlrun.common.schemas.SecretsData)
|
|
255
|
-
UserSecretCreationRequest = DeprecationHelper(
|
|
256
|
-
mlrun.common.schemas.UserSecretCreationRequest
|
|
257
|
-
)
|
|
258
|
-
Tag = DeprecationHelper(mlrun.common.schemas.Tag)
|
|
259
|
-
TagObjects = DeprecationHelper(mlrun.common.schemas.TagObjects)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|