mlrun 1.7.0rc43__py3-none-any.whl → 1.7.0rc46__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 (51) hide show
  1. mlrun/__main__.py +4 -2
  2. mlrun/artifacts/manager.py +3 -1
  3. mlrun/common/formatters/__init__.py +1 -0
  4. mlrun/common/formatters/feature_set.py +33 -0
  5. mlrun/common/schemas/__init__.py +1 -0
  6. mlrun/common/schemas/alert.py +11 -11
  7. mlrun/common/schemas/auth.py +2 -0
  8. mlrun/common/schemas/client_spec.py +0 -1
  9. mlrun/common/schemas/model_monitoring/__init__.py +1 -0
  10. mlrun/common/schemas/workflow.py +1 -0
  11. mlrun/config.py +28 -21
  12. mlrun/data_types/data_types.py +5 -0
  13. mlrun/datastore/base.py +4 -4
  14. mlrun/datastore/s3.py +12 -9
  15. mlrun/datastore/storeytargets.py +2 -2
  16. mlrun/db/base.py +3 -0
  17. mlrun/db/httpdb.py +17 -12
  18. mlrun/db/nopdb.py +24 -4
  19. mlrun/execution.py +3 -1
  20. mlrun/feature_store/api.py +1 -0
  21. mlrun/feature_store/retrieval/spark_merger.py +7 -3
  22. mlrun/frameworks/_common/plan.py +3 -3
  23. mlrun/frameworks/_ml_common/plan.py +1 -1
  24. mlrun/frameworks/parallel_coordinates.py +2 -3
  25. mlrun/launcher/client.py +6 -6
  26. mlrun/model_monitoring/applications/results.py +4 -4
  27. mlrun/model_monitoring/controller.py +1 -1
  28. mlrun/model_monitoring/db/stores/sqldb/sql_store.py +15 -1
  29. mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +12 -0
  30. mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +7 -7
  31. mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +13 -12
  32. mlrun/model_monitoring/helpers.py +7 -8
  33. mlrun/model_monitoring/writer.py +3 -1
  34. mlrun/projects/pipelines.py +2 -0
  35. mlrun/projects/project.py +43 -19
  36. mlrun/render.py +3 -3
  37. mlrun/runtimes/daskjob.py +1 -1
  38. mlrun/runtimes/kubejob.py +6 -6
  39. mlrun/runtimes/nuclio/api_gateway.py +6 -0
  40. mlrun/runtimes/nuclio/application/application.py +3 -3
  41. mlrun/runtimes/nuclio/function.py +41 -0
  42. mlrun/runtimes/pod.py +19 -13
  43. mlrun/serving/server.py +2 -0
  44. mlrun/utils/helpers.py +22 -16
  45. mlrun/utils/version/version.json +2 -2
  46. {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc46.dist-info}/METADATA +22 -22
  47. {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc46.dist-info}/RECORD +51 -50
  48. {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc46.dist-info}/WHEEL +1 -1
  49. {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc46.dist-info}/LICENSE +0 -0
  50. {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc46.dist-info}/entry_points.txt +0 -0
  51. {mlrun-1.7.0rc43.dist-info → mlrun-1.7.0rc46.dist-info}/top_level.txt +0 -0
mlrun/runtimes/pod.py CHANGED
@@ -1107,12 +1107,12 @@ class KubeResource(BaseRuntime, KfpAdapterMixin):
1107
1107
 
1108
1108
  :param state_thresholds: A dictionary of state to threshold. The supported states are:
1109
1109
 
1110
- * pending_scheduled - The pod/crd is scheduled on a node but not yet running
1111
- * pending_not_scheduled - The pod/crd is not yet scheduled on a node
1112
- * executing - The pod/crd started and is running
1113
- * image_pull_backoff - The pod/crd is in image pull backoff
1114
- See mlrun.mlconf.function.spec.state_thresholds for the default thresholds.
1110
+ * pending_scheduled - The pod/crd is scheduled on a node but not yet running
1111
+ * pending_not_scheduled - The pod/crd is not yet scheduled on a node
1112
+ * executing - The pod/crd started and is running
1113
+ * image_pull_backoff - The pod/crd is in image pull backoff
1115
1114
 
1115
+ See :code:`mlrun.mlconf.function.spec.state_thresholds` for the default thresholds.
1116
1116
  :param patch: Whether to merge the given thresholds with the existing thresholds (True, default)
1117
1117
  or override them (False)
1118
1118
  """
@@ -1347,20 +1347,26 @@ class KubeResource(BaseRuntime, KfpAdapterMixin):
1347
1347
 
1348
1348
  def _build_image(
1349
1349
  self,
1350
- builder_env,
1351
- force_build,
1352
- mlrun_version_specifier,
1353
- show_on_failure,
1354
- skip_deployed,
1355
- watch,
1356
- is_kfp,
1357
- with_mlrun,
1350
+ builder_env: dict,
1351
+ force_build: bool,
1352
+ mlrun_version_specifier: typing.Optional[bool],
1353
+ show_on_failure: bool,
1354
+ skip_deployed: bool,
1355
+ watch: bool,
1356
+ is_kfp: bool,
1357
+ with_mlrun: typing.Optional[bool],
1358
1358
  ):
1359
1359
  # When we're in pipelines context we must watch otherwise the pipelines pod will exit before the operation
1360
1360
  # is actually done. (when a pipelines pod exits, the pipeline step marked as done)
1361
1361
  if is_kfp:
1362
1362
  watch = True
1363
1363
 
1364
+ if skip_deployed and self.requires_build() and not self.is_deployed():
1365
+ logger.warning(
1366
+ f"Even though {skip_deployed=}, the build might be triggered due to the function's configuration. "
1367
+ "See requires_build() and is_deployed() for reasoning."
1368
+ )
1369
+
1364
1370
  db = self._get_db()
1365
1371
  data = db.remote_builder(
1366
1372
  self,
mlrun/serving/server.py CHANGED
@@ -401,6 +401,8 @@ def v2_serving_handler(context, event, get_body=False):
401
401
  "kafka-cluster",
402
402
  "v3ioStream",
403
403
  "v3io-stream",
404
+ "rabbit-mq",
405
+ "rabbitMq",
404
406
  ):
405
407
  event.path = "/"
406
408
 
mlrun/utils/helpers.py CHANGED
@@ -41,7 +41,7 @@ import semver
41
41
  import yaml
42
42
  from dateutil import parser
43
43
  from mlrun_pipelines.models import PipelineRun
44
- from pandas._libs.tslibs.timestamps import Timedelta, Timestamp
44
+ from pandas import Timedelta, Timestamp
45
45
  from yaml.representer import RepresenterError
46
46
 
47
47
  import mlrun
@@ -111,9 +111,12 @@ def get_artifact_target(item: dict, project=None):
111
111
  project_str = project or item["metadata"].get("project")
112
112
  tree = item["metadata"].get("tree")
113
113
  tag = item["metadata"].get("tag")
114
+ kind = item.get("kind")
114
115
 
115
- if item.get("kind") in {"dataset", "model", "artifact"} and db_key:
116
- target = f"{DB_SCHEMA}://{StorePrefix.Artifact}/{project_str}/{db_key}"
116
+ if kind in {"dataset", "model", "artifact"} and db_key:
117
+ target = (
118
+ f"{DB_SCHEMA}://{StorePrefix.kind_to_prefix(kind)}/{project_str}/{db_key}"
119
+ )
117
120
  target += f":{tag}" if tag else ":latest"
118
121
  if tree:
119
122
  target += f"@{tree}"
@@ -133,18 +136,25 @@ def is_legacy_artifact(artifact):
133
136
  logger = create_logger(config.log_level, config.log_formatter, "mlrun", sys.stdout)
134
137
  missing = object()
135
138
 
136
- is_ipython = False
139
+ is_ipython = False # is IPython terminal, including Jupyter
140
+ is_jupyter = False # is Jupyter notebook/lab terminal
137
141
  try:
138
- import IPython
142
+ import IPython.core.getipython
143
+
144
+ ipy = IPython.core.getipython.get_ipython()
139
145
 
140
- ipy = IPython.get_ipython()
141
- # if its IPython terminal ignore (cant show html)
142
- if ipy and "Terminal" not in str(type(ipy)):
143
- is_ipython = True
144
- except ImportError:
146
+ is_ipython = ipy is not None
147
+ is_jupyter = (
148
+ is_ipython
149
+ # not IPython
150
+ and "Terminal" not in str(type(ipy))
151
+ )
152
+
153
+ del ipy
154
+ except ModuleNotFoundError:
145
155
  pass
146
156
 
147
- if is_ipython and config.nest_asyncio_enabled in ["1", "True"]:
157
+ if is_jupyter and config.nest_asyncio_enabled in ["1", "True"]:
148
158
  # bypass Jupyter asyncio bug
149
159
  import nest_asyncio
150
160
 
@@ -1421,11 +1431,7 @@ def is_running_in_jupyter_notebook() -> bool:
1421
1431
  Check if the code is running inside a Jupyter Notebook.
1422
1432
  :return: True if running inside a Jupyter Notebook, False otherwise.
1423
1433
  """
1424
- import IPython
1425
-
1426
- ipy = IPython.get_ipython()
1427
- # if its IPython terminal, it isn't a Jupyter ipython
1428
- return ipy and "Terminal" not in str(type(ipy))
1434
+ return is_jupyter
1429
1435
 
1430
1436
 
1431
1437
  def create_ipython_display():
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "13896619ed9e935aab2e08c075dc12ae6f3e449f",
3
- "version": "1.7.0-rc43"
2
+ "git_commit": "2fcec45a11625a8ea4cea29091e594a3adcb76f5",
3
+ "version": "1.7.0-rc46"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.7.0rc43
3
+ Version: 1.7.0rc46
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -33,7 +33,7 @@ Requires-Dist: numpy <1.27.0,>=1.16.5
33
33
  Requires-Dist: pandas <2.2,>=1.2
34
34
  Requires-Dist: pyarrow <15,>=10.0
35
35
  Requires-Dist: pyyaml <7,>=5.4.1
36
- Requires-Dist: requests ~=2.31
36
+ Requires-Dist: requests ~=2.32
37
37
  Requires-Dist: tabulate ~=0.8.6
38
38
  Requires-Dist: v3io ~=0.6.9
39
39
  Requires-Dist: pydantic <1.10.15,>=1.10.8
@@ -57,16 +57,16 @@ Requires-Dist: ossfs ==2023.12.0 ; extra == 'alibaba-oss'
57
57
  Requires-Dist: oss2 ==2.18.1 ; extra == 'alibaba-oss'
58
58
  Provides-Extra: all
59
59
  Requires-Dist: adlfs ==2023.9.0 ; extra == 'all'
60
- Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 'all'
60
+ Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 'all'
61
61
  Requires-Dist: avro ~=1.11 ; extra == 'all'
62
62
  Requires-Dist: azure-core ~=1.24 ; extra == 'all'
63
63
  Requires-Dist: azure-identity ~=1.5 ; extra == 'all'
64
64
  Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'all'
65
65
  Requires-Dist: bokeh >=2.4.2,~=2.4 ; extra == 'all'
66
- Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 'all'
67
- Requires-Dist: dask ~=2023.9.0 ; extra == 'all'
66
+ Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 'all'
67
+ Requires-Dist: dask ~=2023.12.1 ; extra == 'all'
68
68
  Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'all'
69
- Requires-Dist: distributed ~=2023.9.0 ; extra == 'all'
69
+ Requires-Dist: distributed ~=2023.12.1 ; extra == 'all'
70
70
  Requires-Dist: gcsfs <2024.7,>=2023.9.2 ; extra == 'all'
71
71
  Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'all'
72
72
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'all'
@@ -84,7 +84,7 @@ Requires-Dist: redis ~=4.3 ; extra == 'all'
84
84
  Requires-Dist: s3fs <2024.7,>=2023.9.2 ; extra == 'all'
85
85
  Requires-Dist: snowflake-connector-python ~=3.7 ; extra == 'all'
86
86
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'all'
87
- Requires-Dist: taos-ws-py ~=0.3.2 ; extra == 'all'
87
+ Requires-Dist: taos-ws-py ~=0.3.3 ; extra == 'all'
88
88
  Provides-Extra: api
89
89
  Requires-Dist: uvicorn ~=0.27.1 ; extra == 'api'
90
90
  Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'api'
@@ -111,15 +111,15 @@ Provides-Extra: bokeh
111
111
  Requires-Dist: bokeh >=2.4.2,~=2.4 ; extra == 'bokeh'
112
112
  Provides-Extra: complete
113
113
  Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete'
114
- Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 'complete'
114
+ Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 'complete'
115
115
  Requires-Dist: avro ~=1.11 ; extra == 'complete'
116
116
  Requires-Dist: azure-core ~=1.24 ; extra == 'complete'
117
117
  Requires-Dist: azure-identity ~=1.5 ; extra == 'complete'
118
118
  Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete'
119
- Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 'complete'
120
- Requires-Dist: dask ~=2023.9.0 ; extra == 'complete'
119
+ Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 'complete'
120
+ Requires-Dist: dask ~=2023.12.1 ; extra == 'complete'
121
121
  Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete'
122
- Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete'
122
+ Requires-Dist: distributed ~=2023.12.1 ; extra == 'complete'
123
123
  Requires-Dist: gcsfs <2024.7,>=2023.9.2 ; extra == 'complete'
124
124
  Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'complete'
125
125
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete'
@@ -137,21 +137,21 @@ Requires-Dist: redis ~=4.3 ; extra == 'complete'
137
137
  Requires-Dist: s3fs <2024.7,>=2023.9.2 ; extra == 'complete'
138
138
  Requires-Dist: snowflake-connector-python ~=3.7 ; extra == 'complete'
139
139
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete'
140
- Requires-Dist: taos-ws-py ~=0.3.2 ; extra == 'complete'
140
+ Requires-Dist: taos-ws-py ~=0.3.3 ; extra == 'complete'
141
141
  Provides-Extra: complete-api
142
142
  Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete-api'
143
- Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 'complete-api'
143
+ Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 'complete-api'
144
144
  Requires-Dist: alembic ~=1.9 ; extra == 'complete-api'
145
145
  Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'complete-api'
146
146
  Requires-Dist: avro ~=1.11 ; extra == 'complete-api'
147
147
  Requires-Dist: azure-core ~=1.24 ; extra == 'complete-api'
148
148
  Requires-Dist: azure-identity ~=1.5 ; extra == 'complete-api'
149
149
  Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete-api'
150
- Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 'complete-api'
150
+ Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 'complete-api'
151
151
  Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'complete-api'
152
- Requires-Dist: dask ~=2023.9.0 ; extra == 'complete-api'
152
+ Requires-Dist: dask ~=2023.12.1 ; extra == 'complete-api'
153
153
  Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete-api'
154
- Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete-api'
154
+ Requires-Dist: distributed ~=2023.12.1 ; extra == 'complete-api'
155
155
  Requires-Dist: fastapi ~=0.110.0 ; extra == 'complete-api'
156
156
  Requires-Dist: gcsfs <2024.7,>=2023.9.2 ; extra == 'complete-api'
157
157
  Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'complete-api'
@@ -174,13 +174,13 @@ Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
174
174
  Requires-Dist: s3fs <2024.7,>=2023.9.2 ; extra == 'complete-api'
175
175
  Requires-Dist: snowflake-connector-python ~=3.7 ; extra == 'complete-api'
176
176
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete-api'
177
- Requires-Dist: taos-ws-py ~=0.3.2 ; extra == 'complete-api'
177
+ Requires-Dist: taos-ws-py ~=0.3.3 ; extra == 'complete-api'
178
178
  Requires-Dist: timelength ~=1.1 ; extra == 'complete-api'
179
179
  Requires-Dist: uvicorn ~=0.27.1 ; extra == 'complete-api'
180
180
  Requires-Dist: memray ~=1.12 ; (sys_platform != "win32") and extra == 'complete-api'
181
181
  Provides-Extra: dask
182
- Requires-Dist: dask ~=2023.9.0 ; extra == 'dask'
183
- Requires-Dist: distributed ~=2023.9.0 ; extra == 'dask'
182
+ Requires-Dist: dask ~=2023.12.1 ; extra == 'dask'
183
+ Requires-Dist: distributed ~=2023.12.1 ; extra == 'dask'
184
184
  Provides-Extra: databricks-sdk
185
185
  Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'databricks-sdk'
186
186
  Provides-Extra: google-cloud
@@ -201,15 +201,15 @@ Requires-Dist: plotly ~=5.23 ; extra == 'plotly'
201
201
  Provides-Extra: redis
202
202
  Requires-Dist: redis ~=4.3 ; extra == 'redis'
203
203
  Provides-Extra: s3
204
- Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 's3'
205
- Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 's3'
204
+ Requires-Dist: boto3 <1.36,>=1.28.0 ; extra == 's3'
205
+ Requires-Dist: aiobotocore <2.16,>=2.5.0 ; extra == 's3'
206
206
  Requires-Dist: s3fs <2024.7,>=2023.9.2 ; extra == 's3'
207
207
  Provides-Extra: snowflake
208
208
  Requires-Dist: snowflake-connector-python ~=3.7 ; extra == 'snowflake'
209
209
  Provides-Extra: sqlalchemy
210
210
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'sqlalchemy'
211
211
  Provides-Extra: tdengine
212
- Requires-Dist: taos-ws-py ~=0.3.2 ; extra == 'tdengine'
212
+ Requires-Dist: taos-ws-py ~=0.3.3 ; extra == 'tdengine'
213
213
 
214
214
  <a id="top"></a>
215
215
  [![Build Status](https://github.com/mlrun/mlrun/actions/workflows/build.yaml/badge.svg?branch=development)](https://github.com/mlrun/mlrun/actions/workflows/build.yaml?query=branch%3Adevelopment)
@@ -1,13 +1,13 @@
1
1
  mlrun/__init__.py,sha256=y08M1JcKXy5-9_5WaI9fn5aV5BxIQ5QkbduJK0OxWbA,7470
2
- mlrun/__main__.py,sha256=iAifncsrQQx6ozXXmz7GH1OiNl8PA7KS3TnwlxnHGeo,45890
3
- mlrun/config.py,sha256=Qr6ToS9ryv0ivaKrbC3rnWMwL8ptbqXDFVxJzXRRg5s,66971
2
+ mlrun/__main__.py,sha256=mC_Izs4kuHUHQi88QJFLN22n1kbygGM0wAirjNt7uj4,45938
3
+ mlrun/config.py,sha256=NJG59Rl_5-mwgCdPDboRhjHD1ujW9ITYL7gtCbSMkM8,67308
4
4
  mlrun/errors.py,sha256=nY23dns_kTzbOrelJf0FyxLw5mglv7jo4Sx3efKS9Fs,7798
5
- mlrun/execution.py,sha256=5MG-B8KVS_7OqkVw-SCuQqNAeULegwo3y0JW36uSb54,42334
5
+ mlrun/execution.py,sha256=EGsEeSqOFnSxYFL4_YVKv8DEx2YsmJ9aA1gXBAV5W5A,42563
6
6
  mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
7
7
  mlrun/k8s_utils.py,sha256=mRQMs6NzPq36vx1n5_2BfFapXysc8wv3NcrZ77_2ANA,8949
8
8
  mlrun/lists.py,sha256=3PqBdcajdwhTe1XuFsAaHTuFVM2kjwepf31qqE82apg,8384
9
9
  mlrun/model.py,sha256=WcRg13FSww_4YLpL-WDRnfoBnfiEHXRFTMLEMJIeICk,80694
10
- mlrun/render.py,sha256=n8SeY3ogVrsV02-7-H0lt1RmpkxGpbI-11RQx61Vq9E,13267
10
+ mlrun/render.py,sha256=940H9fBBFeghH4dlifbURvtjlvw4GlWdAXezN6ky4rI,13275
11
11
  mlrun/run.py,sha256=hNxV-TnixbH8MCos2jqz8jdTDlK7dBSvJMil_QoGKQI,43616
12
12
  mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
13
13
  mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
@@ -16,7 +16,7 @@ mlrun/api/schemas/__init__.py,sha256=fEWH4I8hr5AdRJ7yoW44RlFB6NHkYDxyomP5J6ct1z4
16
16
  mlrun/artifacts/__init__.py,sha256=daGrLqltI1nE3ES30nm-tanUnxReRzfyxyaxNRx2zbc,1168
17
17
  mlrun/artifacts/base.py,sha256=EystjLta4XVdZP2x4nz1ZNlDUYKTIcFNfMVfBVseCHw,29168
18
18
  mlrun/artifacts/dataset.py,sha256=O_2g2RFHYEAXIBX86mgyc0wBNOhWLT7NlYvxFeLNTuw,16505
19
- mlrun/artifacts/manager.py,sha256=sHRPJmE60Zot2CNj8Qg-IjVShJ1H6dcFgsWffczgSgA,15403
19
+ mlrun/artifacts/manager.py,sha256=1hSPEMqZG18OsA4smjxaIUabtelQO8wLfgbb8gkMQJg,15587
20
20
  mlrun/artifacts/model.py,sha256=ObUkqFMejYOtq0CDFdpYwzwhQ5bsHv0dHTysuVPJnbs,21102
21
21
  mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
22
22
  mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
@@ -26,9 +26,10 @@ mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
26
26
  mlrun/common/types.py,sha256=APVFvumnHpCG-yXlt6OSioMfkyT-DADPiW3dGG3dUFQ,1057
27
27
  mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
28
28
  mlrun/common/db/sql_session.py,sha256=J6b-0xrnFb-8n_xdksPXeA8kArSMfAiSDN4n7iOhtus,2708
29
- mlrun/common/formatters/__init__.py,sha256=91yPb5xoLK7fTIOC5C7ndJMvyEBlQY6f0CjenLYbsZw,785
29
+ mlrun/common/formatters/__init__.py,sha256=topwMC5auQYTDBq8dwa31-5e8bWvHcLYmUqyXysXVWQ,835
30
30
  mlrun/common/formatters/artifact.py,sha256=t4LmoWCFjPJ_YzzQCC2aMJwOeeLi84le979m6OTRyoM,1401
31
31
  mlrun/common/formatters/base.py,sha256=LHwWWnQJCmvlnOCCmG8YtJ_xzs0xBI8PujYDL5Ky9H4,4101
32
+ mlrun/common/formatters/feature_set.py,sha256=lH5RL9Mo6weRexHrruUnmL1qqv_mZocBOQcyVOtXoIk,1056
32
33
  mlrun/common/formatters/function.py,sha256=fGa5m5aI_XvQdvrUr73dmUwrEJrE_8wM4_P4q8RgBTg,1477
33
34
  mlrun/common/formatters/pipeline.py,sha256=hGUV_3wcTEMa-JouspbjgJ1JGKa2Wc5cXSaH2XhOdMc,1763
34
35
  mlrun/common/formatters/project.py,sha256=rdGf7fq_CfwFwd8iKWl8sW-tqTJilK3gJtV5oLdaY-M,1756
@@ -36,13 +37,13 @@ mlrun/common/formatters/run.py,sha256=eEBy1NEwGT9b98TWS2OetEbDnDrnHBIBVMrlXsxveo
36
37
  mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
37
38
  mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
38
39
  mlrun/common/runtimes/constants.py,sha256=Rl0Sd8n_L7Imo-uF1LL9CJ5Szi0W1gUm36yrF8PXfSc,10989
39
- mlrun/common/schemas/__init__.py,sha256=xCRh98GdHfB6Tzb7_lrOhgoO9UnkUfTcsjStLZll8tc,5247
40
- mlrun/common/schemas/alert.py,sha256=NIotUCJjtw5aYA3CmxiDo2ch-Ba8r1Sj1WkJfYCtluM,6749
40
+ mlrun/common/schemas/__init__.py,sha256=QZMyVHjIoa88JmyVy45JGkNGz5K39XX7A72TUnXrLNA,5267
41
+ mlrun/common/schemas/alert.py,sha256=qWYCISNYMdkgAARVQNxshVr9d-s8LGscfLKpczkTBms,6749
41
42
  mlrun/common/schemas/api_gateway.py,sha256=9ilorgLOiWxFZbv89-dbPNfVdaChlGOIdC4SLTxQwNI,7118
42
43
  mlrun/common/schemas/artifact.py,sha256=V3ngobnzI1v2eoOroWBEedjAZu0ntCSIQ-LzsOK1Z9k,3570
43
- mlrun/common/schemas/auth.py,sha256=5c4WSn3KdX1v04ttSQblkF_gyjdjuJSHG7BTCx4_LWM,6336
44
+ mlrun/common/schemas/auth.py,sha256=faxZeVCmIRchMnDCaiIhwTdGTtRc7u1ImbZQvxm6FJ4,6500
44
45
  mlrun/common/schemas/background_task.py,sha256=2qZxib2qrF_nPZj0ncitCG-2jxz2hg1qj0hFc8eswWQ,1707
45
- mlrun/common/schemas/client_spec.py,sha256=xQ_9S5i5q7vJmkp2_3IYD0FSYnWoAr1k-W9MU2ClgEU,2955
46
+ mlrun/common/schemas/client_spec.py,sha256=wqzQ5R4Zc7FL-8lV_BRN6nLrD0jK1kon05-JQ3fy2KY,2892
46
47
  mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
47
48
  mlrun/common/schemas/common.py,sha256=73KxUHF6gvTdI29qLWecmOWqpOxDpMbD8ypsK03GtEE,1654
48
49
  mlrun/common/schemas/constants.py,sha256=sTNCimttd7ytSZ3jxbftItw_HDGxPwY96Ub86OvcT9w,6660
@@ -66,20 +67,20 @@ mlrun/common/schemas/runtime_resource.py,sha256=2rSuYL-9JkESSomlnU91mYDbfV-IkqZe
66
67
  mlrun/common/schemas/schedule.py,sha256=nD9kxH2KjXkbGZPNfzVNlNSxbyFZmZUlwtT04_z2xCw,4289
67
68
  mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
68
69
  mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
69
- mlrun/common/schemas/workflow.py,sha256=eRoaOBFiWbvP0iwZ6Aof5JmheV81A0-0PGi8L4vuXmI,1823
70
- mlrun/common/schemas/model_monitoring/__init__.py,sha256=uCnHhhVZkWbbtsawIjOa3ub9ShDJK2md-s2fbx46crg,1792
70
+ mlrun/common/schemas/workflow.py,sha256=WxmlwtwrzwL4lfHYjQTOp03uv6PWYMpZ4cNBMOA6N6E,1897
71
+ mlrun/common/schemas/model_monitoring/__init__.py,sha256=3uijQoEigSeEklKjhDZnfWk1EOgMP0EuKHlRGxGA95A,1813
71
72
  mlrun/common/schemas/model_monitoring/constants.py,sha256=YaKwvMHhJVIwFJDsLg2Iu6zCv2YgxdiiJ1owvb5IGGk,9568
72
73
  mlrun/common/schemas/model_monitoring/grafana.py,sha256=SG13MFUUz_tk6-mWeSx17qcdEW4ekicxqNtnMSwRTCY,1559
73
74
  mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=FdKbO8Lb_SDrEXtEHn19GEiAWUWLd_fS6bk0ytanhmo,13762
74
75
  mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
75
- mlrun/data_types/data_types.py,sha256=hWiL5TPOj9EK7_nd1yttLBUhXTmBYLDZzmG-hWzzhHE,4751
76
+ mlrun/data_types/data_types.py,sha256=3dmmIxJ2_uKzf-dbbgOwbYJx8cvUYrPiQan40vcSqJo,4948
76
77
  mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
77
78
  mlrun/data_types/spark.py,sha256=xfcr6lcaLcHepnrHavx_vacMJK7BC8FWsUKjwrjjn6w,9509
78
79
  mlrun/data_types/to_pandas.py,sha256=-ZbJBg00x4xxyqqqu3AVbEh-HaO2--DrChyPuedRhHA,11215
79
80
  mlrun/datastore/__init__.py,sha256=8WvgHF245fvU9u98ctRqosvEmQ9iAKKIIS_dSgj_fmU,4153
80
81
  mlrun/datastore/alibaba_oss.py,sha256=-RMA4vCE4rar-D57Niy3tY_6bXKHLFpMp28z5YR7-jI,4888
81
82
  mlrun/datastore/azure_blob.py,sha256=9qkgrEMXGiuYYcc6b6HkuHlRHDbl0p7tIzeWxAAcEVs,12724
82
- mlrun/datastore/base.py,sha256=4GWgPB7t1wHYxdfc3mdpbL5Lq9W-ahCgy0ckgMUP6DI,26215
83
+ mlrun/datastore/base.py,sha256=2tGtl1S59SVkk3ZaIZ_Fm2UgAdHtByXUWu3cR36aAYk,26231
83
84
  mlrun/datastore/datastore.py,sha256=F2i8XI2hkQwf51OjqdFZ8179oHvDfQtaT5pvfkvMV9U,9389
84
85
  mlrun/datastore/datastore_profile.py,sha256=ZCU-brdRNXNE8EnknzFljtWjciEJ9sGZnoahFxbdEt4,18940
85
86
  mlrun/datastore/dbfs_store.py,sha256=mylyl-evK3CVe5fx6rwawITxPIc2YVbw5WHGbL24jtM,6516
@@ -88,13 +89,13 @@ mlrun/datastore/google_cloud_storage.py,sha256=Lkr3jud2REXAf-ohI3Or7bbTKbb_MCKOW
88
89
  mlrun/datastore/hdfs.py,sha256=TfL1zUWVRxEHF9kswZtOzrMdDmhSfiSVIAjz7fxWyVw,1876
89
90
  mlrun/datastore/inmem.py,sha256=d2dIvHlOQylhc-i4B5Kk9e9ayXnF7DICc5yUlHcNwqs,2873
90
91
  mlrun/datastore/redis.py,sha256=vTjqtn8l6AvVXqjN0DroumnYFxlMhzVnqsW96p15c-0,5630
91
- mlrun/datastore/s3.py,sha256=I7C-2jU59U1XPTAAMe63MjClzLCQq6BfY3nQ_6vV3vk,8747
92
+ mlrun/datastore/s3.py,sha256=CBBgZlZDX_PyvQBbJRjY4gSaLpGWMygt_fG8n-xY28c,8994
92
93
  mlrun/datastore/snowflake_utils.py,sha256=Wohvnlmq8j1d98RCaknll-iWdZZpSlCrKhUOEy0_-CA,1483
93
94
  mlrun/datastore/sources.py,sha256=op90ksx95wqaBtoiORpHnqEgw4iGEDPsJ3_lI8ftS-E,48801
94
95
  mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
95
96
  mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
96
97
  mlrun/datastore/store_resources.py,sha256=rcLoG506AMmR8qPJU_gE-G5d34VJVV_vNlZ3VHqho6c,6869
97
- mlrun/datastore/storeytargets.py,sha256=a7a_fmp5JiSOO-f0fB9hx0aeaGsLGs4SvlRQ4sA564g,5018
98
+ mlrun/datastore/storeytargets.py,sha256=t1TCqeXr2GZ-w_tgKhPyubOtlFRcYAnvXXR3peR0T-8,5015
98
99
  mlrun/datastore/targets.py,sha256=TkG2HG4h7SaQ3qG2sKAHAuJJyj_gnE-eChaIsyjlq1o,80450
99
100
  mlrun/datastore/utils.py,sha256=l9dLZb_VCbHs_htqMFRv4qiestZ8z8K-4eY1MxHS8wE,7720
100
101
  mlrun/datastore/v3io.py,sha256=HxP6mygiYM6leDAbQ9KdTxObLCt9yGMro0YhfdU6KUo,8157
@@ -102,12 +103,12 @@ mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev
102
103
  mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
103
104
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
104
105
  mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
105
- mlrun/db/base.py,sha256=VztBik6tUYFKGRVXIsXZE7HrALx0hO_sgpCcE2O0cLU,24156
106
+ mlrun/db/base.py,sha256=lUfJrCWbuRUErIrUUXAKI2sSlrwfB-dHDz-Ck_cnZHU,24297
106
107
  mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
107
- mlrun/db/httpdb.py,sha256=YUU0wxentN5d7_HbquYIqc7xrnUCn9on8QWNQahHmh8,184246
108
- mlrun/db/nopdb.py,sha256=d7vSk_2sfwZGY24w7ucSkoq88fLPDLF137IXabongXU,20791
108
+ mlrun/db/httpdb.py,sha256=5-xdym1Ls6iaR_5DD4Iv805fQAKH0Zx-4oc4n9Z6p8Y,184623
109
+ mlrun/db/nopdb.py,sha256=1oCZR2EmQQDkwXUgmyI3SB76zvOwA6Ml3Lk_xvuwHfc,21620
109
110
  mlrun/feature_store/__init__.py,sha256=FhHRc8NdqL_HWpCs7A8dKruxJS5wEm55Gs3dcgBiRUg,1522
110
- mlrun/feature_store/api.py,sha256=NZJ7Qp5L-0X08oI_xHTX6PukGq9Mt_9uU_KmVMbFB6s,49941
111
+ mlrun/feature_store/api.py,sha256=SWBbFD4KU2U4TUaAbD2hRLSquFWxX46mZGCToI0GfFQ,49994
111
112
  mlrun/feature_store/common.py,sha256=mSlfEj_LIbtM-pNiIWUGIdX0Z0y5ZoH5nKow7KMc5VQ,12673
112
113
  mlrun/feature_store/feature_set.py,sha256=qD8RqkeoJFbJMMK5-zjs-27DC4UXQiQSokkt4pdMzkw,56027
113
114
  mlrun/feature_store/feature_vector.py,sha256=HAhAX9peGdTBT_rbWRJyAnMM836OImMI3q7RbU7urjE,44169
@@ -118,15 +119,15 @@ mlrun/feature_store/retrieval/base.py,sha256=zgDsRsYQz8eqReKBEeTP0O4UoLoVYjWpO1o
118
119
  mlrun/feature_store/retrieval/dask_merger.py,sha256=t60xciYp6StUQLEyFyI4JK5NpWkdBy2MGCs6beimaWU,5575
119
120
  mlrun/feature_store/retrieval/job.py,sha256=xNIe3fAZ-wQ_sVLG2iTMLrnWSRIJ3EbDR10mnUUiSKE,8593
120
121
  mlrun/feature_store/retrieval/local_merger.py,sha256=jM-8ta44PeNUc1cKMPs-TxrO9t8pXbwu_Tw8MZrLxUY,4513
121
- mlrun/feature_store/retrieval/spark_merger.py,sha256=n3WxFlrY0y5mJ-7U8GJJlv9QulG4WSUSdHY0xJjHzhY,10552
122
+ mlrun/feature_store/retrieval/spark_merger.py,sha256=PM7BXSfhAngcMGN8Vjhbnw6TSes63nGPg2IlNaBlC_A,10662
122
123
  mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
123
124
  mlrun/frameworks/__init__.py,sha256=qRHe_nUfxpoLaSASAkIxcW6IyunMtxq5LXhjzZMO_1E,743
124
- mlrun/frameworks/parallel_coordinates.py,sha256=AJ3TuvffAC4_zN-RVcyTkq1T3lomDqgeNf7hVBmscEw,11517
125
+ mlrun/frameworks/parallel_coordinates.py,sha256=XY2C1Q29VWxcWIsIhcluUivpEHglr8PcZHCMs2MH4GM,11485
125
126
  mlrun/frameworks/_common/__init__.py,sha256=7afutDCDVp999gyWSWQZMJRKGuW3VP3MFil8cobRsyg,962
126
127
  mlrun/frameworks/_common/artifacts_library.py,sha256=f0rtDRQI3BYT2ZvXR4drSXZPYPJG19Sbej-_ru-i0II,8497
127
128
  mlrun/frameworks/_common/mlrun_interface.py,sha256=HbnE1jtApNjMog3fhd40Ayq6mos_vFUx5ICGEgFzNEA,20999
128
129
  mlrun/frameworks/_common/model_handler.py,sha256=OkC4CZP2F7XME58bO6a0mMvCf1qb8j95JM5Su4YXeeo,55312
129
- mlrun/frameworks/_common/plan.py,sha256=vUdA07TJ3wT3mQBugprgH7rWp438JR08WFN_c1-SXEU,3445
130
+ mlrun/frameworks/_common/plan.py,sha256=Yr98b5lkCV0K0u_krnU8gZJiXj14xfrFjJ6xD6QJdn0,3444
130
131
  mlrun/frameworks/_common/producer.py,sha256=OMRrV-auRIzdUbxp612QE7zTwkik1nBRvP4gBS7kvLo,5727
131
132
  mlrun/frameworks/_common/utils.py,sha256=NqoKbgj6UGPMBNhpK6mkKK4GOt5ko1lDqExFhQm9oEc,9131
132
133
  mlrun/frameworks/_dl_common/__init__.py,sha256=t4GWqonje9xSOPKTxFBjiOaK57l06ALmIXi4EJsG9LM,750
@@ -140,7 +141,7 @@ mlrun/frameworks/_ml_common/__init__.py,sha256=0Tf6dl15IuJ41aokIpDmcGbV_aczHniZ1
140
141
  mlrun/frameworks/_ml_common/artifacts_library.py,sha256=eHCrc43NjLYSOcixiW31SQ-SoxAvBBNf2W5Xb-4W48U,3145
141
142
  mlrun/frameworks/_ml_common/model_handler.py,sha256=3iDzjCooqKJutXAa4B2sgaUArV_f1KzWPJDn7k4l7Zs,16885
142
143
  mlrun/frameworks/_ml_common/pkl_model_server.py,sha256=NbaEveUcpNXsiJIlc7kdeYfjcVPsTs9blsygxtAXB0k,2717
143
- mlrun/frameworks/_ml_common/plan.py,sha256=_dEE620hjZ1Lgg-RidFH2NZN0OEM-6dJVm7AivB25og,4869
144
+ mlrun/frameworks/_ml_common/plan.py,sha256=B1jiFpGAZeYDLEXlY5dne_GCoF4os4E0TtnfELsFNsc,4864
144
145
  mlrun/frameworks/_ml_common/producer.py,sha256=5sCFmr38zg_ZTZUvukVti0-z2VP6d-vBhQbIOEPwJf0,4061
145
146
  mlrun/frameworks/_ml_common/utils.py,sha256=_PGPTG4uqk4tYjtu-X-0qInMgYEiN_UxYDG4GsPplYo,10477
146
147
  mlrun/frameworks/_ml_common/loggers/__init__.py,sha256=AWw6H8xG4237XGzqNKIhO-wbzBRREHaY_AXF-NRLBNo,737
@@ -206,47 +207,47 @@ mlrun/frameworks/xgboost/model_handler.py,sha256=e7IwdrmAaQ5Yy_fqOirN7oi-xEJgg_G
206
207
  mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
207
208
  mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
208
209
  mlrun/launcher/base.py,sha256=ud1qc2v66-84haAVBuQ2e0IsOzvd_bleSVVImwNWhwE,16461
209
- mlrun/launcher/client.py,sha256=kgju2mvGuVlvJWRk8sL8qTKF0lf_cSPK2nqYz1oZy3E,6196
210
+ mlrun/launcher/client.py,sha256=FXzQQqrSVE9oapLjjUYvx5qhZPG1r4ynUjUUFZVPekE,6228
210
211
  mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
211
212
  mlrun/launcher/local.py,sha256=pP9-ZrNL8OnNDEiXTAKAZQnmLpS_mCc2v-mJw329eks,11269
212
213
  mlrun/launcher/remote.py,sha256=tGICSfWtvUHeR31mbzy6gqHejmDxjPUgjtxXTWhRubg,7699
213
214
  mlrun/model_monitoring/__init__.py,sha256=dm5_j0_pwqrdzFwTaEtGnKfv2nVpNaM56nBI-oqLbNU,879
214
215
  mlrun/model_monitoring/api.py,sha256=L5f4mum-zv-4kMTqJDHWWzNnVcoGYDxf3zvpS-U4rQc,28596
215
216
  mlrun/model_monitoring/application.py,sha256=RJ8HeAPfGO3P2A_dEZYNg60c1wKTADh2YSv8BQ5embg,745
216
- mlrun/model_monitoring/controller.py,sha256=HFyVNNikoxEd3X5aL3y88rLktH_gZtbCOqPs7qdUsCg,27969
217
+ mlrun/model_monitoring/controller.py,sha256=ZKp3mWMhj6irCuREs-OH1MYYh5DzqNEDe04kVPVrZzw,27971
217
218
  mlrun/model_monitoring/evidently_application.py,sha256=iOc42IVjj8m6PDBmVcKIMWm46Bu0EdO9SDcH40Eqhyo,769
218
219
  mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
219
- mlrun/model_monitoring/helpers.py,sha256=GY36xkOSL6opdjBLMvkN3xx24DX7H1JI83C3eSNykKU,12789
220
+ mlrun/model_monitoring/helpers.py,sha256=zoUfwo0IMOBa71p-DQgxS2lnpX3STcCv-XgClnBqWOU,12770
220
221
  mlrun/model_monitoring/model_endpoint.py,sha256=7VX0cBATqLsA4sSinDzouf41ndxqh2mf5bO9BW0G5Z4,4017
221
222
  mlrun/model_monitoring/stream_processing.py,sha256=0eu1Gq1Obq87LFno6eIZ55poXoFaeloqYTLiQgyfd0k,38687
222
223
  mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
223
- mlrun/model_monitoring/writer.py,sha256=cLhxAwVfCWEx16vhhXCwxf1do9SbHjDtVUSOtJuX9Rg,10119
224
+ mlrun/model_monitoring/writer.py,sha256=TrBwngRmdwr67De71UCcCFsJOfcqQe8jDp0vkBvGf0o,10177
224
225
  mlrun/model_monitoring/applications/__init__.py,sha256=i793GqYee01mRh_KD6GShvX7UbPBgdJDO4qf9Z3BXEQ,970
225
226
  mlrun/model_monitoring/applications/_application_steps.py,sha256=fvZbtat7eXe5mo927_jyhq4BqWCapKZn7OVjptepIAI,7055
226
227
  mlrun/model_monitoring/applications/base.py,sha256=snr3xYdqv6Po19yS0Z1VktyoLrbl88lljSFQyjnKjR0,11616
227
228
  mlrun/model_monitoring/applications/context.py,sha256=jTZaRdPZBc2m8-rcC3gKFkSsaQByWn6ZCQuqCOOWdWo,12747
228
229
  mlrun/model_monitoring/applications/evidently_base.py,sha256=6hzfO6s0jEVHj4R_pujcn_p6LvdkKUDb9S4B6j2XEUY,8024
229
230
  mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=OOPojE-KIP9rAPZ6va6uJOjqJOb3c8K_VAmITXZd918,13341
230
- mlrun/model_monitoring/applications/results.py,sha256=VVlu9Si7Tj2LNJzPQrp4_Qeyh9mxOVMu1Jwb5K2LfvY,3577
231
+ mlrun/model_monitoring/applications/results.py,sha256=B0YuLig4rgBzBs3OAh01yLavhtNgj8Oz1RD8UfEkENU,3590
231
232
  mlrun/model_monitoring/db/__init__.py,sha256=6Ic-X3Fh9XLPYMytmevGNSs-Hii1rAjLLoFTSPwTguw,736
232
233
  mlrun/model_monitoring/db/stores/__init__.py,sha256=m6Z6rPQyaufq5oXF3HVUYGDN34biAX1JE1F6OxLN9B8,4752
233
234
  mlrun/model_monitoring/db/stores/base/__init__.py,sha256=JufJETW3BXzPhFwbRa8dMf7BFGGZKceIWIMgr5x9n9c,599
234
235
  mlrun/model_monitoring/db/stores/base/store.py,sha256=xaiaUwXDYYV1z6e17Ny9IiE3a7pSiEFg8nffdWHSq0A,7517
235
236
  mlrun/model_monitoring/db/stores/sqldb/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
236
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=B8VZXX1DcMyzL9N9vV0Lrp4x7Bj01b2PCu_w_hCnLQI,25619
237
+ mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=9YjYqLue1GV1K4G2VRLVFObySEaIDnGqivvvXDM29to,26154
237
238
  mlrun/model_monitoring/db/stores/sqldb/models/__init__.py,sha256=lCiGw9WKPtHAIgrtNS2jyvM5OZvZvogBh76iurNYblg,2453
238
239
  mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=V2B5WdQM0KHKq0FNDq61q7tkNJ9fNRbxfnxrholKgjk,5352
239
240
  mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=4SfjS0Rz6hSvZwU4s_weQ1jk5IPvaCU1HLum459U5ig,3192
240
241
  mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=yJJZppbKj3PsOANS_DXAQFFHKX4cQcm6Pz2DoxRiXMk,1104
241
242
  mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
242
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=zmN7MtxJnZUtBLGFNFVhQejZjLfxziymjUi7OHxS9H0,26819
243
+ mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=LWVXKTVWAnDHNlbAw7lSQ-J0uq2bclzhmfVOvbGXYUo,27169
243
244
  mlrun/model_monitoring/db/tsdb/__init__.py,sha256=Zqh_27I2YAEHk9nl0Z6lUxP7VEfrgrpnwhmHsbi4jnA,4055
244
245
  mlrun/model_monitoring/db/tsdb/base.py,sha256=X89X763sDrShfRXE1N-p8k97E8NBs7O1QJFiO-CffLM,18583
245
246
  mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
246
247
  mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
247
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=dlb4DHtA6_5ZWKjRh9N-sFZZu8VCsg8LjKPRLm19woY,10506
248
+ mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=SujUl_Bu_dvZD_tn7yxYstp_uuVTkE5Uc8aYKdqs90w,10508
248
249
  mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Hb0vcCBP-o0ET78mU4P32fnhUL65QZv-pMuv2lnCby4,1586
249
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=CaBTBi-skQzM9kvLjYWNc_I3yrAtvsaN3dAOefanh04,18489
250
+ mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=H3Jl8TNZA17yrsHtJdsxNezYPg6J3JlwV8BjDupX9Ho,18665
250
251
  mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
251
252
  mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=mbmhN4f_F58ptVjhwoMF6ifZSdnZWhK7x8eNsWS39IA,6217
252
253
  mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=1H-IBXPNJPRAaxDMGWpUU25QqfR87LpZbJ03vaJkICs,32858
@@ -273,17 +274,17 @@ mlrun/platforms/__init__.py,sha256=ggSGF7inITs6S-vj9u4S9X_5psgbA0G3GVqf7zu8qYc,2
273
274
  mlrun/platforms/iguazio.py,sha256=1h5BpdAEQJBg2vIt7ySjUADU0ip5OkaMYr0_VREi9ys,13084
274
275
  mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
275
276
  mlrun/projects/operations.py,sha256=UEpiW4bDscth4pwWcLWF1xz-IU7bnZfckPR7sXp3O-g,19441
276
- mlrun/projects/pipelines.py,sha256=iFa0iy4iYk3yUH4Nx-sq7VVJhXW8LlR3Hsbjx_KLL5Y,40019
277
- mlrun/projects/project.py,sha256=qJXhB78CtIAxyT6SNZByWhL6Q2-nn4_HLLK2hYSJ6bw,189067
277
+ mlrun/projects/pipelines.py,sha256=tFqmE_diKiGURwZPCHVPZmwEKza_gyfpr7F8bLS3plA,40173
278
+ mlrun/projects/project.py,sha256=rw0QQ2XtBUevW3cv8baCGDGsqISxsHYYziPcOABLOpg,190604
278
279
  mlrun/runtimes/__init__.py,sha256=egLM94cDMUyQ1GVABdFGXUQcDhU70lP3k7qSnM_UnHY,9008
279
280
  mlrun/runtimes/base.py,sha256=JXWmTIcm3b0klGUOHDlyFNa3bUgsNzQIgWhUQpSZoE0,37692
280
- mlrun/runtimes/daskjob.py,sha256=JfK8rSPY-0SYnLJdtp_ts3oKyad0pA98th-2VntYzK0,19387
281
+ mlrun/runtimes/daskjob.py,sha256=Ka_xqim8LkCYjp-M_WgteJy6ZN_3qfmLLHvXs7N6pa4,19411
281
282
  mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
282
283
  mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51PFr8Q4mg,4918
283
284
  mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
284
- mlrun/runtimes/kubejob.py,sha256=ptBnMTIjukbEznkdixmbGvBqzujXrRzqNfP7ze6M76M,8660
285
+ mlrun/runtimes/kubejob.py,sha256=ZhOCfykKI6Z4p5uBDCGTVilgBrLDfo91ySEylNPCQz8,8747
285
286
  mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
286
- mlrun/runtimes/pod.py,sha256=yNgfluaS5ZcyPGGdFhn9js9E8NXtpuVFzci9uBWZ_3Y,63325
287
+ mlrun/runtimes/pod.py,sha256=d65UiHsaTx2BOkjTCSeb4MWwMYeR-73hlxgQ9RTAFKk,63829
287
288
  mlrun/runtimes/remotesparkjob.py,sha256=3ggRVNod67TRnsM2-Ilr9Sw5OWqkRwHWaiBkGvmWU2c,7357
288
289
  mlrun/runtimes/utils.py,sha256=9RnfpZxZEuE2bFVLSaUxBxi2IWsnKoaWF-eljP2FpbA,15637
289
290
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
@@ -294,12 +295,12 @@ mlrun/runtimes/mpijob/__init__.py,sha256=V_1gQD1VHa0Qvjqgyv8RLouH27Sy9YTwj2ZG62o
294
295
  mlrun/runtimes/mpijob/abstract.py,sha256=kDWo-IY1FKLZhI30j38Xx9HMhlUvHezfd1DT2ShoxZY,9161
295
296
  mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
296
297
  mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
297
- mlrun/runtimes/nuclio/api_gateway.py,sha256=ZMCImXsdz7ZzrsdNmjBpe6gF0ZYR1_ZE8labxx6nupQ,26478
298
- mlrun/runtimes/nuclio/function.py,sha256=tK7INPTtYFOJRCzKLUELd0mE_U9w-wt5nCA0HaeY1rM,50509
298
+ mlrun/runtimes/nuclio/api_gateway.py,sha256=2sHtkVHSS3L1DuV2KNWatJJRxvoGSBOjB6tnqv6SA5w,26730
299
+ mlrun/runtimes/nuclio/function.py,sha256=TQt6RyxK_iyzNJr2r57BRtVXuy2GMrhdeFOlFjb2AZg,52106
299
300
  mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
300
301
  mlrun/runtimes/nuclio/serving.py,sha256=X0fYJnidH0S5xrupoTC74OhZz7Tym34iw6hFSzahMCk,29720
301
302
  mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
302
- mlrun/runtimes/nuclio/application/application.py,sha256=PVuzcuC7pWG4KJmC1Gi2E5oVANRZgaBGCcpiTamzhUg,29007
303
+ mlrun/runtimes/nuclio/application/application.py,sha256=5XFIg7tgU9kKWwGdMFwB1OJpw79BWwlWUdGiHlDo4AY,29055
303
304
  mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=JIIYae6bXzCLf3jXuu49KWPQYoXr_FDQ2Rbo1OWKAd0,3150
304
305
  mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
305
306
  mlrun/runtimes/sparkjob/spark3job.py,sha256=RuwO9Pk1IFaUCFz8zoYLaK3pYT7w07uAjoucYDVtwL8,41327
@@ -307,7 +308,7 @@ mlrun/serving/__init__.py,sha256=-SMRV3q_5cGVPDxRslXPU0zGYZIygs0cSj7WKlOJJUc,116
307
308
  mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
308
309
  mlrun/serving/remote.py,sha256=MrFByphQWmIsKXqw-MOwl2Q1hbtWReYVRKvlcKj9pfw,17980
309
310
  mlrun/serving/routers.py,sha256=el3-pfh7jXdnobt229jbMagD4WA-elp_ejX54VZQg6k,55347
310
- mlrun/serving/server.py,sha256=vdlkCpyvQLkILqql7NXcgx9udJ6gZtVLo0Lcq7HeH1M,22051
311
+ mlrun/serving/server.py,sha256=m1HzUDconjowDtheQ71HEKbV7e9A-TUtaCdoqxTH2Pw,22092
311
312
  mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
312
313
  mlrun/serving/states.py,sha256=e4QGSAnNq_eLPDoojxkMkw7fLgUST5ea_BQTO7jWsTA,60228
313
314
  mlrun/serving/utils.py,sha256=lej7XcUPX1MmHkEOi_0KZRGSpfbmpnE0GK_Sn4zLkHY,4025
@@ -324,7 +325,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
324
325
  mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
325
326
  mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
326
327
  mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
327
- mlrun/utils/helpers.py,sha256=6Ds8trOm4AEZtD2gUO4rwzAYeS394LIlcPTNqqmuWT0,59662
328
+ mlrun/utils/helpers.py,sha256=112XTi14zIQwqyb0KeDcwLa4vAIm8kG1rBaypjXCffY,59716
328
329
  mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
329
330
  mlrun/utils/logger.py,sha256=cag2J30-jynIHmHZ2J8RYmVMNhYBGgAoimc5sbk-A1U,10016
330
331
  mlrun/utils/regex.py,sha256=b0AUa2THS-ELzJj0grl5b8Stq609F2XomTZkD9SB1fQ,4900
@@ -342,11 +343,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT
342
343
  mlrun/utils/notifications/notification/slack.py,sha256=wqpFGr5BTvFO5KuUSzFfxsgmyU1Ohq7fbrGeNe9TXOk,7006
343
344
  mlrun/utils/notifications/notification/webhook.py,sha256=cb9w1Mc8ENfJBdgan7iiVHK9eVls4-R3tUxmXM-P-8I,4746
344
345
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
345
- mlrun/utils/version/version.json,sha256=n_L3px_MlIp2dW2njEFmMLcqoSQpwpmC7RlrOEtxtCg,89
346
+ mlrun/utils/version/version.json,sha256=3ANNtWXY4UEFE6BhIv4ABsKlhsIrlpcWJJSvuIvg-Iw,89
346
347
  mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
347
- mlrun-1.7.0rc43.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
348
- mlrun-1.7.0rc43.dist-info/METADATA,sha256=LNIpVyKhu5PFy26lN3HB0fZ_SZzt_i2mnw1ETL7Bvfo,19939
349
- mlrun-1.7.0rc43.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
350
- mlrun-1.7.0rc43.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
351
- mlrun-1.7.0rc43.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
352
- mlrun-1.7.0rc43.dist-info/RECORD,,
348
+ mlrun-1.7.0rc46.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
349
+ mlrun-1.7.0rc46.dist-info/METADATA,sha256=nd09TI_C22BOpwpkzrcZJiCi8F6k8lzfqwDIgeTnDB0,19943
350
+ mlrun-1.7.0rc46.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
351
+ mlrun-1.7.0rc46.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
352
+ mlrun-1.7.0rc46.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
353
+ mlrun-1.7.0rc46.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.1.2)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5