mlrun 1.7.0rc6__py3-none-any.whl → 1.7.0rc8__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 (70) hide show
  1. mlrun/__main__.py +2 -0
  2. mlrun/common/constants.py +6 -0
  3. mlrun/common/schemas/__init__.py +3 -0
  4. mlrun/common/schemas/api_gateway.py +8 -1
  5. mlrun/common/schemas/model_monitoring/__init__.py +4 -0
  6. mlrun/common/schemas/model_monitoring/constants.py +35 -18
  7. mlrun/common/schemas/project.py +1 -0
  8. mlrun/common/types.py +7 -1
  9. mlrun/config.py +34 -10
  10. mlrun/data_types/data_types.py +4 -0
  11. mlrun/datastore/alibaba_oss.py +130 -0
  12. mlrun/datastore/azure_blob.py +4 -5
  13. mlrun/datastore/base.py +22 -16
  14. mlrun/datastore/datastore.py +4 -0
  15. mlrun/datastore/datastore_profile.py +7 -0
  16. mlrun/datastore/google_cloud_storage.py +1 -1
  17. mlrun/datastore/sources.py +2 -3
  18. mlrun/datastore/targets.py +6 -1
  19. mlrun/db/base.py +14 -6
  20. mlrun/db/httpdb.py +61 -56
  21. mlrun/db/nopdb.py +3 -0
  22. mlrun/frameworks/tf_keras/callbacks/logging_callback.py +6 -1
  23. mlrun/frameworks/tf_keras/mlrun_interface.py +20 -8
  24. mlrun/kfpops.py +2 -5
  25. mlrun/model.py +1 -0
  26. mlrun/model_monitoring/__init__.py +1 -1
  27. mlrun/model_monitoring/api.py +104 -295
  28. mlrun/model_monitoring/controller.py +25 -25
  29. mlrun/model_monitoring/db/__init__.py +16 -0
  30. mlrun/model_monitoring/{stores → db/stores}/__init__.py +43 -34
  31. mlrun/model_monitoring/db/stores/base/__init__.py +15 -0
  32. mlrun/model_monitoring/{stores/model_endpoint_store.py → db/stores/base/store.py} +47 -6
  33. mlrun/model_monitoring/db/stores/sqldb/__init__.py +13 -0
  34. mlrun/model_monitoring/db/stores/sqldb/models/__init__.py +49 -0
  35. mlrun/model_monitoring/{stores → db/stores/sqldb}/models/base.py +76 -3
  36. mlrun/model_monitoring/db/stores/sqldb/models/mysql.py +68 -0
  37. mlrun/model_monitoring/{stores → db/stores/sqldb}/models/sqlite.py +13 -1
  38. mlrun/model_monitoring/db/stores/sqldb/sql_store.py +662 -0
  39. mlrun/model_monitoring/db/stores/v3io_kv/__init__.py +13 -0
  40. mlrun/model_monitoring/{stores/kv_model_endpoint_store.py → db/stores/v3io_kv/kv_store.py} +134 -3
  41. mlrun/model_monitoring/helpers.py +3 -3
  42. mlrun/model_monitoring/stream_processing.py +41 -9
  43. mlrun/model_monitoring/tracking_policy.py +7 -1
  44. mlrun/model_monitoring/writer.py +4 -36
  45. mlrun/projects/pipelines.py +14 -2
  46. mlrun/projects/project.py +118 -103
  47. mlrun/run.py +5 -1
  48. mlrun/runtimes/base.py +6 -0
  49. mlrun/runtimes/nuclio/api_gateway.py +218 -65
  50. mlrun/runtimes/nuclio/function.py +3 -0
  51. mlrun/runtimes/nuclio/serving.py +28 -32
  52. mlrun/runtimes/pod.py +26 -0
  53. mlrun/serving/routers.py +4 -3
  54. mlrun/serving/server.py +4 -6
  55. mlrun/serving/states.py +34 -14
  56. mlrun/serving/v2_serving.py +4 -3
  57. mlrun/utils/helpers.py +34 -0
  58. mlrun/utils/http.py +1 -1
  59. mlrun/utils/retryer.py +1 -0
  60. mlrun/utils/version/version.json +2 -2
  61. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc8.dist-info}/METADATA +25 -16
  62. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc8.dist-info}/RECORD +66 -62
  63. mlrun/model_monitoring/batch.py +0 -933
  64. mlrun/model_monitoring/stores/models/__init__.py +0 -27
  65. mlrun/model_monitoring/stores/models/mysql.py +0 -34
  66. mlrun/model_monitoring/stores/sql_model_endpoint_store.py +0 -382
  67. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc8.dist-info}/LICENSE +0 -0
  68. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc8.dist-info}/WHEEL +0 -0
  69. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc8.dist-info}/entry_points.txt +0 -0
  70. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc8.dist-info}/top_level.txt +0 -0
mlrun/serving/states.py CHANGED
@@ -14,7 +14,6 @@
14
14
 
15
15
  __all__ = ["TaskStep", "RouterStep", "RootFlowStep", "ErrorStep"]
16
16
 
17
- import asyncio
18
17
  import os
19
18
  import pathlib
20
19
  import traceback
@@ -591,7 +590,7 @@ class RouterStep(TaskStep):
591
590
 
592
591
  kind = "router"
593
592
  default_shape = "doubleoctagon"
594
- _dict_fields = _task_step_fields + ["routes"]
593
+ _dict_fields = _task_step_fields + ["routes", "engine"]
595
594
  _default_class = "mlrun.serving.ModelRouter"
596
595
 
597
596
  def __init__(
@@ -604,6 +603,7 @@ class RouterStep(TaskStep):
604
603
  function: str = None,
605
604
  input_path: str = None,
606
605
  result_path: str = None,
606
+ engine: str = None,
607
607
  ):
608
608
  super().__init__(
609
609
  class_name,
@@ -616,6 +616,8 @@ class RouterStep(TaskStep):
616
616
  )
617
617
  self._routes: ObjectDict = None
618
618
  self.routes = routes
619
+ self.engine = engine
620
+ self._controller = None
619
621
 
620
622
  def get_children(self):
621
623
  """get child steps (routes)"""
@@ -685,6 +687,33 @@ class RouterStep(TaskStep):
685
687
  self._set_error_handler()
686
688
  self._post_init(mode)
687
689
 
690
+ if self.engine == "async":
691
+ self._build_async_flow()
692
+ self._run_async_flow()
693
+
694
+ def _build_async_flow(self):
695
+ """initialize and build the async/storey DAG"""
696
+
697
+ self.respond()
698
+ source, self._wait_for_result = _init_async_objects(self.context, [self])
699
+ source.to(self.async_object)
700
+
701
+ self._async_flow = source
702
+
703
+ def _run_async_flow(self):
704
+ self._controller = self._async_flow.run()
705
+
706
+ def run(self, event, *args, **kwargs):
707
+ if self._controller:
708
+ # async flow (using storey)
709
+ event._awaitable_result = None
710
+ resp = self._controller.emit(
711
+ event, return_awaitable_result=self._wait_for_result
712
+ )
713
+ return resp.await_result()
714
+
715
+ return super().run(event, *args, **kwargs)
716
+
688
717
  def __getitem__(self, name):
689
718
  return self._routes[name]
690
719
 
@@ -1205,18 +1234,9 @@ class FlowStep(BaseStep):
1205
1234
  """wait for completion of run in async flows"""
1206
1235
 
1207
1236
  if self._controller:
1208
- if asyncio.iscoroutinefunction(self._controller.await_termination):
1209
-
1210
- async def terminate_and_await_termination():
1211
- if hasattr(self._controller, "terminate"):
1212
- await self._controller.terminate()
1213
- return await self._controller.await_termination()
1214
-
1215
- return terminate_and_await_termination()
1216
- else:
1217
- if hasattr(self._controller, "terminate"):
1218
- self._controller.terminate()
1219
- return self._controller.await_termination()
1237
+ if hasattr(self._controller, "terminate"):
1238
+ self._controller.terminate()
1239
+ return self._controller.await_termination()
1220
1240
 
1221
1241
  def plot(self, filename=None, format=None, source=None, targets=None, **kw):
1222
1242
  """plot/save graph using graphviz
@@ -21,6 +21,7 @@ import mlrun.common.model_monitoring
21
21
  import mlrun.common.schemas.model_monitoring
22
22
  from mlrun.artifacts import ModelArtifact # noqa: F401
23
23
  from mlrun.config import config
24
+ from mlrun.errors import err_to_str
24
25
  from mlrun.utils import logger, now_date
25
26
 
26
27
  from ..common.helpers import parse_versioned_object_uri
@@ -523,7 +524,7 @@ def _init_endpoint_record(
523
524
  graph_server.function_uri
524
525
  )
525
526
  except Exception as e:
526
- logger.error("Failed to parse function URI", exc=e)
527
+ logger.error("Failed to parse function URI", exc=err_to_str(e))
527
528
  return None
528
529
 
529
530
  # Generating version model value based on the model name and model version
@@ -576,9 +577,9 @@ def _init_endpoint_record(
576
577
  )
577
578
 
578
579
  except Exception as e:
579
- logger.error("Failed to create endpoint record", exc=e)
580
+ logger.error("Failed to create endpoint record", exc=err_to_str(e))
580
581
 
581
582
  except Exception as e:
582
- logger.error("Failed to retrieve model endpoint object", exc=e)
583
+ logger.error("Failed to retrieve model endpoint object", exc=err_to_str(e))
583
584
 
584
585
  return uid
mlrun/utils/helpers.py CHANGED
@@ -1405,6 +1405,18 @@ def as_number(field_name, field_value):
1405
1405
 
1406
1406
 
1407
1407
  def filter_warnings(action, category):
1408
+ """
1409
+ Decorator to filter warnings
1410
+
1411
+ Example::
1412
+ @filter_warnings("ignore", FutureWarning)
1413
+ def my_function():
1414
+ pass
1415
+
1416
+ :param action: one of "error", "ignore", "always", "default", "module", or "once"
1417
+ :param category: a class that the warning must be a subclass of
1418
+ """
1419
+
1408
1420
  def decorator(function):
1409
1421
  def wrapper(*args, **kwargs):
1410
1422
  # context manager that copies and, upon exit, restores the warnings filter and the showwarning() function.
@@ -1562,3 +1574,25 @@ def is_safe_path(base, filepath, is_symlink=False):
1562
1574
  os.path.abspath(filepath) if not is_symlink else os.path.realpath(filepath)
1563
1575
  )
1564
1576
  return base == os.path.commonpath((base, resolved_filepath))
1577
+
1578
+
1579
+ def get_serving_spec():
1580
+ data = None
1581
+
1582
+ # we will have the serving spec in either mounted config map
1583
+ # or env depending on the size of the spec and configuration
1584
+
1585
+ try:
1586
+ with open(mlrun.common.constants.MLRUN_SERVING_SPEC_PATH) as f:
1587
+ data = f.read()
1588
+ except FileNotFoundError:
1589
+ pass
1590
+
1591
+ if data is None:
1592
+ data = os.environ.get("SERVING_SPEC_ENV", "")
1593
+ if not data:
1594
+ raise mlrun.errors.MLRunInvalidArgumentError(
1595
+ "Failed to find serving spec in env var or config file"
1596
+ )
1597
+ spec = json.loads(data)
1598
+ return spec
mlrun/utils/http.py CHANGED
@@ -122,7 +122,7 @@ class HTTPSessionWithRetry(requests.Session):
122
122
 
123
123
  self._logger.warning(
124
124
  "Error during request handling, retrying",
125
- exc=str(exc),
125
+ exc=err_to_str(exc),
126
126
  retry_count=retry_count,
127
127
  url=url,
128
128
  method=method,
mlrun/utils/retryer.py CHANGED
@@ -138,6 +138,7 @@ class Retryer:
138
138
  except mlrun.errors.MLRunFatalFailureError as exc:
139
139
  raise exc.original_exception
140
140
  except Exception as exc:
141
+ self.last_exception = exc
141
142
  return (
142
143
  None,
143
144
  self.last_exception,
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "cbfd1ee5f41bee97ff90efbce14bac0a56b58dce",
3
- "version": "1.7.0-rc6"
2
+ "git_commit": "cc1ff1e98ef6b7951710f45c3d297d0d0b4319c0",
3
+ "version": "1.7.0-rc8"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.7.0rc6
3
+ Version: 1.7.0rc8
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -36,21 +36,24 @@ Requires-Dist: pyarrow <15,>=10.0
36
36
  Requires-Dist: pyyaml ~=5.1
37
37
  Requires-Dist: requests ~=2.31
38
38
  Requires-Dist: tabulate ~=0.8.6
39
- Requires-Dist: v3io ~=0.6.2
40
- Requires-Dist: pydantic >=1.10.8,~=1.10
39
+ Requires-Dist: v3io ~=0.6.4
40
+ Requires-Dist: pydantic <1.10.15,>=1.10.8
41
41
  Requires-Dist: mergedeep ~=1.3
42
42
  Requires-Dist: v3io-frames ~=0.10.12
43
43
  Requires-Dist: semver ~=3.0
44
44
  Requires-Dist: dependency-injector ~=4.41
45
- Requires-Dist: fsspec ==2023.9.2
45
+ Requires-Dist: fsspec <2024.4,>=2023.9.2
46
46
  Requires-Dist: v3iofs ~=0.1.17
47
- Requires-Dist: storey ~=1.7.5
47
+ Requires-Dist: storey ~=1.7.6
48
48
  Requires-Dist: inflection ~=0.5.0
49
49
  Requires-Dist: python-dotenv ~=0.17.0
50
50
  Requires-Dist: setuptools ~=69.1
51
51
  Requires-Dist: deprecated ~=1.2
52
52
  Requires-Dist: jinja2 >=3.1.3,~=3.1
53
- Requires-Dist: orjson ~=3.9
53
+ Requires-Dist: orjson <4,>=3.9.15
54
+ Provides-Extra: alibaba-oss
55
+ Requires-Dist: ossfs ==2023.12.0 ; extra == 'alibaba-oss'
56
+ Requires-Dist: oss2 ==2.18.1 ; extra == 'alibaba-oss'
54
57
  Provides-Extra: all
55
58
  Requires-Dist: adlfs ==2023.9.0 ; extra == 'all'
56
59
  Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 'all'
@@ -63,7 +66,7 @@ Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 'all'
63
66
  Requires-Dist: dask ~=2023.9.0 ; extra == 'all'
64
67
  Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'all'
65
68
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'all'
66
- Requires-Dist: gcsfs ==2023.9.2 ; extra == 'all'
69
+ Requires-Dist: gcsfs <2024.4,>=2023.9.2 ; extra == 'all'
67
70
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'all'
68
71
  Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'all'
69
72
  Requires-Dist: google-cloud ==0.34 ; extra == 'all'
@@ -71,17 +74,19 @@ Requires-Dist: graphviz ~=0.20.0 ; extra == 'all'
71
74
  Requires-Dist: kafka-python ~=2.0 ; extra == 'all'
72
75
  Requires-Dist: mlflow ~=2.8 ; extra == 'all'
73
76
  Requires-Dist: msrest ~=0.6.21 ; extra == 'all'
77
+ Requires-Dist: oss2 ==2.18.1 ; extra == 'all'
78
+ Requires-Dist: ossfs ==2023.12.0 ; extra == 'all'
74
79
  Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'all'
75
80
  Requires-Dist: pyopenssl >=23 ; extra == 'all'
76
81
  Requires-Dist: redis ~=4.3 ; extra == 'all'
77
- Requires-Dist: s3fs ==2023.9.2 ; extra == 'all'
82
+ Requires-Dist: s3fs <2024.4,>=2023.9.2 ; extra == 'all'
78
83
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'all'
79
84
  Provides-Extra: api
80
85
  Requires-Dist: uvicorn ~=0.27.1 ; extra == 'api'
81
86
  Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'api'
82
87
  Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'api'
83
88
  Requires-Dist: objgraph ~=3.6 ; extra == 'api'
84
- Requires-Dist: igz-mgmt ~=0.1.0 ; extra == 'api'
89
+ Requires-Dist: igz-mgmt ~=0.1.1 ; extra == 'api'
85
90
  Requires-Dist: humanfriendly ~=10.0 ; extra == 'api'
86
91
  Requires-Dist: fastapi ~=0.110.0 ; extra == 'api'
87
92
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'api'
@@ -110,16 +115,18 @@ Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 'complete'
110
115
  Requires-Dist: dask ~=2023.9.0 ; extra == 'complete'
111
116
  Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete'
112
117
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete'
113
- Requires-Dist: gcsfs ==2023.9.2 ; extra == 'complete'
118
+ Requires-Dist: gcsfs <2024.4,>=2023.9.2 ; extra == 'complete'
114
119
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete'
115
120
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete'
116
121
  Requires-Dist: kafka-python ~=2.0 ; extra == 'complete'
117
122
  Requires-Dist: mlflow ~=2.8 ; extra == 'complete'
118
123
  Requires-Dist: msrest ~=0.6.21 ; extra == 'complete'
124
+ Requires-Dist: oss2 ==2.18.1 ; extra == 'complete'
125
+ Requires-Dist: ossfs ==2023.12.0 ; extra == 'complete'
119
126
  Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete'
120
127
  Requires-Dist: pyopenssl >=23 ; extra == 'complete'
121
128
  Requires-Dist: redis ~=4.3 ; extra == 'complete'
122
- Requires-Dist: s3fs ==2023.9.2 ; extra == 'complete'
129
+ Requires-Dist: s3fs <2024.4,>=2023.9.2 ; extra == 'complete'
123
130
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete'
124
131
  Provides-Extra: complete-api
125
132
  Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete-api'
@@ -136,20 +143,22 @@ Requires-Dist: dask ~=2023.9.0 ; extra == 'complete-api'
136
143
  Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete-api'
137
144
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete-api'
138
145
  Requires-Dist: fastapi ~=0.110.0 ; extra == 'complete-api'
139
- Requires-Dist: gcsfs ==2023.9.2 ; extra == 'complete-api'
146
+ Requires-Dist: gcsfs <2024.4,>=2023.9.2 ; extra == 'complete-api'
140
147
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete-api'
141
148
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete-api'
142
149
  Requires-Dist: humanfriendly ~=10.0 ; extra == 'complete-api'
143
- Requires-Dist: igz-mgmt ~=0.1.0 ; extra == 'complete-api'
150
+ Requires-Dist: igz-mgmt ~=0.1.1 ; extra == 'complete-api'
144
151
  Requires-Dist: kafka-python ~=2.0 ; extra == 'complete-api'
145
152
  Requires-Dist: mlflow ~=2.8 ; extra == 'complete-api'
146
153
  Requires-Dist: msrest ~=0.6.21 ; extra == 'complete-api'
147
154
  Requires-Dist: objgraph ~=3.6 ; extra == 'complete-api'
155
+ Requires-Dist: oss2 ==2.18.1 ; extra == 'complete-api'
156
+ Requires-Dist: ossfs ==2023.12.0 ; extra == 'complete-api'
148
157
  Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete-api'
149
158
  Requires-Dist: pymysql ~=1.0 ; extra == 'complete-api'
150
159
  Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
151
160
  Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
152
- Requires-Dist: s3fs ==2023.9.2 ; extra == 'complete-api'
161
+ Requires-Dist: s3fs <2024.4,>=2023.9.2 ; extra == 'complete-api'
153
162
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete-api'
154
163
  Requires-Dist: timelength ~=1.1 ; extra == 'complete-api'
155
164
  Requires-Dist: uvicorn ~=0.27.1 ; extra == 'complete-api'
@@ -165,7 +174,7 @@ Requires-Dist: google-cloud ==0.34 ; extra == 'google-cloud'
165
174
  Provides-Extra: google-cloud-bigquery
166
175
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'google-cloud-bigquery'
167
176
  Provides-Extra: google-cloud-storage
168
- Requires-Dist: gcsfs ==2023.9.2 ; extra == 'google-cloud-storage'
177
+ Requires-Dist: gcsfs <2024.4,>=2023.9.2 ; extra == 'google-cloud-storage'
169
178
  Provides-Extra: graphviz
170
179
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'graphviz'
171
180
  Provides-Extra: kafka
@@ -180,7 +189,7 @@ Requires-Dist: redis ~=4.3 ; extra == 'redis'
180
189
  Provides-Extra: s3
181
190
  Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 's3'
182
191
  Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 's3'
183
- Requires-Dist: s3fs ==2023.9.2 ; extra == 's3'
192
+ Requires-Dist: s3fs <2024.4,>=2023.9.2 ; extra == 's3'
184
193
  Provides-Extra: sqlalchemy
185
194
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'sqlalchemy'
186
195
 
@@ -1,15 +1,15 @@
1
1
  mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
2
- mlrun/__main__.py,sha256=vg-HMhJqQ3OYt31YmijjBh6-6AZQVe4FvDYn4MwEpYs,49229
3
- mlrun/config.py,sha256=DMwxalJOY6E5_JyygKq1LFKUN2vL_sop3gssHm4LWyg,62775
2
+ mlrun/__main__.py,sha256=LKskOWulg04o0IFm33Pfmokuxo6P9wLSl3ZHkiS9eZc,49326
3
+ mlrun/config.py,sha256=7HGuYhgeCLETYxNxqjSgtSFfNMQ5PcAPaWmtBRX-uoo,63992
4
4
  mlrun/errors.py,sha256=HmOAdfpL0bCDisZMUoJPOumneq71ko49Ph-XBL-A4xA,7080
5
5
  mlrun/execution.py,sha256=meZ_qSdTmnpqW7DKv7LdBmuE1Ut34E1RbK2kO0MD_QM,40866
6
6
  mlrun/features.py,sha256=nPDvy8tJuxwbRr843oWcnLBrqMJDPUanzn2Sb3BBi6w,15569
7
7
  mlrun/k8s_utils.py,sha256=YyFZT2WNZrJkcZoqxrkduQgzQ1X-7195O0mmEqvaIug,7023
8
- mlrun/kfpops.py,sha256=nVQUjLVBhXqkL2OTWJUo4qFIfNVEXUKIXJmRpBW0MVU,30481
8
+ mlrun/kfpops.py,sha256=bCHfvzz9E_fOSM8ASPqBcbG4pGRo8Sq5IMvGIYiEYRI,30446
9
9
  mlrun/lists.py,sha256=ev-gLBPc_az03yQEHrKyDPq_Bjosa4D_XFiVbRIpmRY,8286
10
- mlrun/model.py,sha256=e9tJG8-wP3gPywDu7wJMNsusLTGpVA9WpBbILFwR5Ns,70583
10
+ mlrun/model.py,sha256=BkPHhOQZJUQI4YB74FE8gEBOHwY1rpEhiEBcjzWIJtw,70641
11
11
  mlrun/render.py,sha256=aMH3U2z7ELpW8MwYEGOrqLdEUwMX29shqy6V6-KbgiM,13009
12
- mlrun/run.py,sha256=br2oHhmDvcMSwEEuEBWITTRqGXiFaaIEzNYG21RVhKc,42822
12
+ mlrun/run.py,sha256=38xMRfYQU7qpEtWjzFOul-gYLzL6vrnolXDmQU4eB7s,42968
13
13
  mlrun/secrets.py,sha256=Nl_7ZNSErd-AOH19vVx_PjrLg9bJM9L-BvEYoPolB1c,7776
14
14
  mlrun/api/schemas/__init__.py,sha256=LhfO3myrnLVxC0MYCAc1_LTuqhRlYV3H7BwJkjOu3dQ,14211
15
15
  mlrun/artifacts/__init__.py,sha256=LxEWcMYPawJYvNOl6H2_UvrxdLTNYfKeZcMEKFZnGgA,1187
@@ -19,16 +19,16 @@ mlrun/artifacts/manager.py,sha256=p6CmIJH91vm9DsEZHgHxKYTHU2BvF9IwpLv85cqoHNs,14
19
19
  mlrun/artifacts/model.py,sha256=DXT24CH1ZgQLz9HcWBfjRAEhCBfznoa7-pB52N9qMOI,25205
20
20
  mlrun/artifacts/plots.py,sha256=RPJxfzS_3dKAXiY2N1LchS7c9LsrJMg42OAVyDn0mK0,15860
21
21
  mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
22
- mlrun/common/constants.py,sha256=OwcN3HroG3l94Kx1B-247cp1UyqC0IVLc_TCFGWmrg4,745
22
+ mlrun/common/constants.py,sha256=7SLxtvq1VGO9ed0xQ87jM09ScTKMuv_2qx_IBE6hybg,991
23
23
  mlrun/common/helpers.py,sha256=BAhyuUnZvD_BT43i0_1EszuSbKgZx7bFy2KRIWP0XeA,1087
24
24
  mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
25
- mlrun/common/types.py,sha256=V_jCEFCJZcycFVsPzEToCRQja5bqW0zRAAVaGN_QYxQ,790
25
+ mlrun/common/types.py,sha256=nNqNqNpn-xl4xliy-ofBAWVX02q5NFh6wxmvOnD4wW8,949
26
26
  mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
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/schemas/__init__.py,sha256=PKOeaerKRHOIWCmaIhCYdlieOZhZDDf8cubNOWlJQaM,4935
31
- mlrun/common/schemas/api_gateway.py,sha256=lDXnA0mE9PCyeB0p7VSoj7TN0xSF-e6XUrTYJjLqbbQ,2344
30
+ mlrun/common/schemas/__init__.py,sha256=kMQDBUWtuJxBhCUakS8knGUyZa_izTAJpMOFJrivkjM,5005
31
+ mlrun/common/schemas/api_gateway.py,sha256=mw47rpTBAVIRV6TdMQ_A6rIgnEHOUweU7iT3VbINvBE,2519
32
32
  mlrun/common/schemas/artifact.py,sha256=d6srME_eWn2MpGuqvPQZtePRFkjDfNJgQ6JDd51qVrI,2796
33
33
  mlrun/common/schemas/auth.py,sha256=KOQfABIXTrcMh3Us5vlmnN4w3bJB7Rl3Xd5GTAFpr-g,5970
34
34
  mlrun/common/schemas/background_task.py,sha256=2qZxib2qrF_nPZj0ncitCG-2jxz2hg1qj0hFc8eswWQ,1707
@@ -48,7 +48,7 @@ mlrun/common/schemas/memory_reports.py,sha256=tpS3fpvxa6VcBpzCRzcZTt0fCF0h6ReUet
48
48
  mlrun/common/schemas/notification.py,sha256=Ge7eWNGf_XUFkjOnUkyUOubdEbmXh9z_OSGcSturt4w,1768
49
49
  mlrun/common/schemas/object.py,sha256=VleJSUmDJMl92knLgaDE8SWCi3ky0UaHcwcwOIapPQ8,1980
50
50
  mlrun/common/schemas/pipeline.py,sha256=GhrIsf5tRUQtQYboZ2feXdMjpFelVvduM-SIQoV5TZw,1177
51
- mlrun/common/schemas/project.py,sha256=OsWVDDShfgKnNMFXHep7EhbL75_hZmfwKbED10HCRZg,4277
51
+ mlrun/common/schemas/project.py,sha256=TvzqyNtWtSdj373_Wm6gQTIZXMPmBgny0_Wco_wot4g,4340
52
52
  mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
53
53
  mlrun/common/schemas/runs.py,sha256=H9QhaN83cFUN42eE9TLgi1gs6Xdq11oQSZ96ESM94mI,745
54
54
  mlrun/common/schemas/runtime_resource.py,sha256=2rSuYL-9JkESSomlnU91mYDbfV-IkqZeXx6OHuMmDxs,1554
@@ -56,42 +56,43 @@ mlrun/common/schemas/schedule.py,sha256=e9nAeRkZkyk37Ws1cBNseHVKPOQqmWV16rt-zr_e
56
56
  mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
57
57
  mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
58
58
  mlrun/common/schemas/workflow.py,sha256=eRoaOBFiWbvP0iwZ6Aof5JmheV81A0-0PGi8L4vuXmI,1823
59
- mlrun/common/schemas/model_monitoring/__init__.py,sha256=aBpxCS3CqAuhzSIdlqLEfRBneOW0FtID701C00J1L0Q,1415
60
- mlrun/common/schemas/model_monitoring/constants.py,sha256=qEZfe3DabmiDIoTDuYZiKEqXtaIjm19sN91ly0iK_KA,7822
59
+ mlrun/common/schemas/model_monitoring/__init__.py,sha256=SH3RBljBadT43eEyWttG1-gJCsYMjbfGVno1jYy8UEU,1501
60
+ mlrun/common/schemas/model_monitoring/constants.py,sha256=gJg4SI2R7lHNcKydC6qZua4ktE11X7dCBK3jZ45wJDA,8322
61
61
  mlrun/common/schemas/model_monitoring/grafana.py,sha256=aiNK8iL_fIzDVO_bj4fted9P6fAwaymcPC2OnRk36po,1431
62
62
  mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=ct8Jd-08KwrFw2uVjdwO_jmNrbhYmQvHBAPLO7AVpn4,12000
63
63
  mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
64
- mlrun/data_types/data_types.py,sha256=qgRIdlSl9X-rAnwOW-F0hwPbDKOZI05JlSzV1O8ReaU,4647
64
+ mlrun/data_types/data_types.py,sha256=hWiL5TPOj9EK7_nd1yttLBUhXTmBYLDZzmG-hWzzhHE,4751
65
65
  mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
66
66
  mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,9457
67
67
  mlrun/data_types/to_pandas.py,sha256=_8_M9WclYNkPeHLo0eXhrnLE6SiLkvNTreeqfJ9G5yY,9945
68
68
  mlrun/datastore/__init__.py,sha256=bsRzu39UOocQAAl_nOKCbhxrZhWUEXrAc8WV3zs0VyI,4118
69
- mlrun/datastore/azure_blob.py,sha256=W8mR9t3WChITQHJ3oY3DEfFDKKx1wjFNMzB07wf8Il0,9168
70
- mlrun/datastore/base.py,sha256=XsjmFOeLzkTnokkoEJLYtWdcy1m9V7i1PuE8zHUj9X4,24175
71
- mlrun/datastore/datastore.py,sha256=yEdiPzMx69zTCMtY4fZ7aQafyAMHynQs2papTQ-Sc0E,9018
72
- mlrun/datastore/datastore_profile.py,sha256=JSfZaxP1DZRnbRUTu00FEYp-C4bCKJziNgd5xRGrBaI,15985
69
+ mlrun/datastore/alibaba_oss.py,sha256=OfQ9AbsJNBFF9DFgUdq38TvKw6qwnHmEcnH-nze6ZZg,4827
70
+ mlrun/datastore/azure_blob.py,sha256=NpkEoIie7mH171tOwlrwpEwzRYGoo9SF3FAAegEENhU,9019
71
+ mlrun/datastore/base.py,sha256=QNiYoeyMRnZiyp7HRT68sfjWeSyu0zLLGfzTkTdkyl8,24421
72
+ mlrun/datastore/datastore.py,sha256=GGo8XPnKVWWgY0b-18D93V1g8DJgeBNafa6knnHEabw,9111
73
+ mlrun/datastore/datastore_profile.py,sha256=yRQA7UmiaBvkROOakjlkgMPBzu9WCQMEBuSNYix93UU,16175
73
74
  mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
74
75
  mlrun/datastore/filestore.py,sha256=nS3Ie6jG41NDiW_as9tF8Nu5maaSVEKYKUr1IQtPhuA,3767
75
- mlrun/datastore/google_cloud_storage.py,sha256=ri5bTqTNLij3ujlPoKlptDPi7oN6JgqIiVGWYoEmgsE,6112
76
+ mlrun/datastore/google_cloud_storage.py,sha256=Du5qYYUCSkLt9acQDeQ-PgEjttsE7D2eAoLebO43kiw,6110
76
77
  mlrun/datastore/hdfs.py,sha256=jCuuPbnITezNYug9iYNLEJW87GGXSqW6H-UiqAynfdw,1674
77
78
  mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,622
78
79
  mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
79
80
  mlrun/datastore/redis.py,sha256=yJ8xYHAR4DyYzsAMLQmsdzO-VVUTQABkIxcWhVHeUFI,5575
80
81
  mlrun/datastore/s3.py,sha256=EIPAXJGZ9kpQVbb_utFFZskDM21fAGz4m6QEAGecABU,8110
81
- mlrun/datastore/sources.py,sha256=1cQ697He_2avwLH6_6bMB2LBl1arBvSfdL-cYmH3UP8,40160
82
+ mlrun/datastore/sources.py,sha256=3BgqVgJzdiK7OWbbSJiGBnIY1OnP4W9lLEdk--RGruQ,40125
82
83
  mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
83
84
  mlrun/datastore/spark_utils.py,sha256=50rllp6xXpXY__1LbU7aTXUU5ca8dKAfoskPre3npZo,1611
84
85
  mlrun/datastore/store_resources.py,sha256=dfMdFy2urilECtlwLJr5CSG12MA645b-NPYDnbr5s1A,6839
85
- mlrun/datastore/targets.py,sha256=YjjvXnaEEj0ojxiOxoRSuIrbzAvuRSpFxX-9_zJFaZ0,70714
86
+ mlrun/datastore/targets.py,sha256=wTnPDuYvWkfz6zqEbJfWYQ9Zzf2NlzSb-SW8P9qfg8k,70949
86
87
  mlrun/datastore/utils.py,sha256=YKK9q1C0LmveQFnbh1Dkb8LwA4WbOYFTsNxziC8d0E4,5227
87
88
  mlrun/datastore/v3io.py,sha256=oCAMpST6sKnjm5CaNsTrcwqk3bvUFzuKBvNFmUJpPfw,9252
88
89
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
89
90
  mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
90
91
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
91
- mlrun/db/base.py,sha256=d6J2g2uFvJh8CcAYoFR4DxPvKsAjByKxLqGENWDoluc,18906
92
+ mlrun/db/base.py,sha256=Qrh0RqYRvmE4ZfmMXCg2xyxFeBQfzpNib7sOWFCQ5uA,19171
92
93
  mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
93
- mlrun/db/httpdb.py,sha256=JtVbbetPzhpZNYb5meXMevPIRGkGu2KBbb9QTADYvLs,158600
94
- mlrun/db/nopdb.py,sha256=FoEFMfnh1aSs-mcXlwA8GnnbQCIoTtFkflbFpUF5bMY,14814
94
+ mlrun/db/httpdb.py,sha256=kR8sfnIv9W6S3FrFTPrTmNKIdIQh-Q7n3W6LmT8wxls,158765
95
+ mlrun/db/nopdb.py,sha256=LM7rmx6TnSLFi6ASWs4XUsQhoAVRkIvKRPj85IztNOA,14882
95
96
  mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
96
97
  mlrun/feature_store/api.py,sha256=bO5I_lkIPLv8j3AXYOAseSBI8RrsGwQ9m7isepuADkw,49480
97
98
  mlrun/feature_store/common.py,sha256=DKmoRk04NCS1gv7qZuEUa2-g8WsfR6IWjYctcrqKVlg,12853
@@ -179,12 +180,12 @@ mlrun/frameworks/sklearn/mlrun_interface.py,sha256=y4RsG_RI4KfPrPADU4Lsr8PF95_VR
179
180
  mlrun/frameworks/sklearn/model_handler.py,sha256=h2fZGq8y_0okTq9ygsRtVwE3IduNYcUTf8OJyNA2xww,4695
180
181
  mlrun/frameworks/sklearn/utils.py,sha256=Cg_pSxUMvKe8vBSLQor6JM8u9_ccKJg4Rk5EPDzTsVo,1209
181
182
  mlrun/frameworks/tf_keras/__init__.py,sha256=ZHK6lXdu-DY3yRsP4RPAXlkSbQiDdHHIr3ed6cO0Y7E,10447
182
- mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=L-tPpHmR9mEea6fqkNcbGLgrqdU-_sgCKZewXmD_7Bc,16610
183
+ mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=lJsfctAxkdLSiTNzedTdF4KbiPW_nJdnUNUMhk7S2I8,16901
183
184
  mlrun/frameworks/tf_keras/model_handler.py,sha256=2BFrYc7mKLKmEdgPAzBa8c_OnvSHqO9HXv7At3onrlo,28102
184
185
  mlrun/frameworks/tf_keras/model_server.py,sha256=64x0nWFGdEONrye5F1socl8KXhMiia_neAoMzXcPF8A,9529
185
186
  mlrun/frameworks/tf_keras/utils.py,sha256=_QWk1YmdRybbUB54vsQFE2_WMuAK0g7eR1ozVbMk0Go,4284
186
187
  mlrun/frameworks/tf_keras/callbacks/__init__.py,sha256=ufH33gxHF4erP9RCiM8O2YaXLG6btLIU98gCS_MGFjI,844
187
- mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=5GjK4cfq_5gmyl9L9nJSk8qTwaVH0eGkTnZinE5jjtQ,21855
188
+ mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=_ADceS3uylZQFV0ZwQhA3bnTpCyW3_ayJV_-_8Zaa6c,21993
188
189
  mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py,sha256=RuR4tuPNCAeUC_6z6MEdMc_OzejFs3lEMSxvO5k5mUo,8701
189
190
  mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py,sha256=bdhMM6ZaCQObhzGry8Sg-uVJ89P7U2nr6RnIQoNDy_Q,28419
190
191
  mlrun/frameworks/xgboost/__init__.py,sha256=opkcSxdS4y-FF6EO2KHHmtEqpACk06RU2y6ilnFK-Zc,10276
@@ -197,32 +198,35 @@ mlrun/launcher/client.py,sha256=q3bmydSpO2x2Fbgy18W1uvaLbtxzJFlj1Uq6YNVndUU,6048
197
198
  mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
198
199
  mlrun/launcher/local.py,sha256=6E83lCJ8Ma4WPCQYzo3P6c4tvpIipJsokZ3zMrCORbk,10909
199
200
  mlrun/launcher/remote.py,sha256=2DGInyx0um5BRUEA5DYcnLXzVKTIv8JxeXogWdxl48o,7469
200
- mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
201
- mlrun/model_monitoring/api.py,sha256=urggp5P_lpfLO1RO4YVdT_jDhIMF8Xqr22H3OYhRZnw,36535
201
+ mlrun/model_monitoring/__init__.py,sha256=fS93sGyotiurc2lf1x49JiM3MaN8zm4YxKYN42Ecc4U,859
202
+ mlrun/model_monitoring/api.py,sha256=_prcm5Z3YhENwwFnfTNvWKkLn1eK51jiwyaz687n2z4,29276
202
203
  mlrun/model_monitoring/application.py,sha256=w87IuSgkIUXV5T6HpMiWWCsxFoikD6Mk8JpoyoefUCg,12504
203
- mlrun/model_monitoring/batch.py,sha256=nVEj-NtgqE4m9-LPMiWht-ZEbw4YY24jjaskuTcsPqs,38184
204
- mlrun/model_monitoring/controller.py,sha256=OUqrZkYuCP2_t5pSEZ4gOemejWbjnNLTcdMEAKTBths,27925
204
+ mlrun/model_monitoring/controller.py,sha256=DtrEOHGOlBm2PYPESjo5ea4ubHgUD7eEy0A1YMQPGEY,27745
205
205
  mlrun/model_monitoring/controller_handler.py,sha256=J9Y9ppLsQaxyYRl21165Rr7QuI9EM-mk-5veAqs4Bi0,1336
206
206
  mlrun/model_monitoring/evidently_application.py,sha256=o9PsDsjyRfcbuC1X1gb2ww5nzWCsR_KheabtpxKZ5yY,4824
207
207
  mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
208
- mlrun/model_monitoring/helpers.py,sha256=OsMBvRS_kSFe4cdarwVrrlwGeRDOesUm8zmasfRcfQg,9013
208
+ mlrun/model_monitoring/helpers.py,sha256=gEgj5rCU1q8NRtmpFBpzfpOaeDmdf1Aa0WPiHKtnjfo,9095
209
209
  mlrun/model_monitoring/model_endpoint.py,sha256=BBtxdY5ciormI_al4zshmIp0GN7hGhOCn-hLgpCXek0,3938
210
210
  mlrun/model_monitoring/prometheus.py,sha256=cUR4y73GutJB_pA_VCBDl9YtK4PcIJp2wj2rnLVmYi4,7578
211
- mlrun/model_monitoring/stream_processing.py,sha256=XKj9ToKj7VgF_Yxb6I27r1AoVU64EwflGC1966oIUaQ,48198
212
- mlrun/model_monitoring/tracking_policy.py,sha256=9P0oRjFMfoqKY7Zv2rv7abKgnKkiepFJfimWx-LOm0M,5283
213
- mlrun/model_monitoring/writer.py,sha256=IWPzPenoAkfIxlvn0IdcdB19Nxqmg4mjbo3-RnYWw9A,8669
211
+ mlrun/model_monitoring/stream_processing.py,sha256=A2dKK2XJAkGnVWK6MawsSRN4nR_ZgFCKILyHgj8LJhw,49317
212
+ mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
213
+ mlrun/model_monitoring/writer.py,sha256=wXfGh9_b5huZF-rqOkAnPuxB62aABHHDB2ja9ncd4fk,7309
214
214
  mlrun/model_monitoring/applications/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
215
215
  mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=IG1qRXs316OdjcLLEHeKGH4t6WZabt8o92RLk-iB9e4,11647
216
+ mlrun/model_monitoring/db/__init__.py,sha256=sXYc6CF2I_HMJyUoY_4VueQf3OL-vhEAuWHxQvuoGRs,662
217
+ mlrun/model_monitoring/db/stores/__init__.py,sha256=G3g1ZclwVWfdtFsuTAW1O2A2ndR4ku9xU9TivnIb4yk,4305
218
+ mlrun/model_monitoring/db/stores/base/__init__.py,sha256=JufJETW3BXzPhFwbRa8dMf7BFGGZKceIWIMgr5x9n9c,599
219
+ mlrun/model_monitoring/db/stores/base/store.py,sha256=nOWEwL1zDxYQ09QBALXK57k9FNFIuYg9H0Z_ntW-Xs8,7073
220
+ mlrun/model_monitoring/db/stores/sqldb/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
221
+ mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=tTZKprKc975t5KnuF8cTZ5oomxVN8pX8Nr1k27agf6g,27104
222
+ mlrun/model_monitoring/db/stores/sqldb/models/__init__.py,sha256=359IyQfnBqe4MXrKe4wCPAM2-ntqjUYCx1n_djSdNYg,2196
223
+ mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=h40tZoHuf0Id7_9gD4D5rcHRT6u7GF74O5tbuNSl3lU,4413
224
+ mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=IQxnupQAVnAu_J2aENRyKuRJuOc5EcfVtWBRCEpOwzA,2022
225
+ mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=S45CfdLSq_XJVKz3ZtdA8imsWWnuKdHb696HjDktLTU,994
226
+ mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
227
+ mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=4xsAUYJau97DoNHIrxpGJpec7r184GLGuOQhlz38UEE,27471
216
228
  mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
217
229
  mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
218
- mlrun/model_monitoring/stores/__init__.py,sha256=adU_G07jkD3JUT8__d0jAxs9nNomL7igKmd6uVM9L50,4525
219
- mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=SVHoaG4cfwntPfQMj6ZEzL5lGDYG67orCIAIb5-G9SE,22222
220
- mlrun/model_monitoring/stores/model_endpoint_store.py,sha256=stinaLq9W1iq2UJiTbPnk28Mvaeail7gwcJYHbrVjfE,5590
221
- mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=S5SA2P2BfLeg5lXCrEnMutghFffdmE59SCnQUiEjP7w,16139
222
- mlrun/model_monitoring/stores/models/__init__.py,sha256=5Djb73mfM9PxWE5EFUzrpLVLkuGaA34APibi_l-lu8k,1111
223
- mlrun/model_monitoring/stores/models/base.py,sha256=yC2_u8wTNoP9JHHewYQgWgarP400OgzlqYWpS-N1V4s,2801
224
- mlrun/model_monitoring/stores/models/mysql.py,sha256=9UYG5FuoVJQoAXP_xrCnbwmTVAm8ba6Bu54R9yg5BJs,1131
225
- mlrun/model_monitoring/stores/models/sqlite.py,sha256=9c5Tw4YuuRiD4GBoQdWGPUzm_6rC-u6zCg962g99lO0,765
226
230
  mlrun/package/__init__.py,sha256=uWILzN42bcq5vFRk6ptxEmn1I5uBWAnhaJr7e4H834w,7082
227
231
  mlrun/package/context_handler.py,sha256=Z8v7cXAZXa5l3Tgg6IiEVm74Qbp5cOxx30jvkAY3dwo,14589
228
232
  mlrun/package/errors.py,sha256=LKF8SSaRIdbkB7JQz6b9U4mZV42Ebnf6ZHu4wKuWqK4,1204
@@ -245,10 +249,10 @@ mlrun/platforms/iguazio.py,sha256=M89zXuCd1bbcIANSy4ec-9evXIs7nPRVo3D0YhKvEtE,19
245
249
  mlrun/platforms/other.py,sha256=T1BibmEBNggM62YJ6oejRmcVv_1besfH5DDHhCaDkRg,11828
246
250
  mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
247
251
  mlrun/projects/operations.py,sha256=SiDHd7cqh9u23AVpETbkJE6WmOnB434zBrwM-StZLQY,18538
248
- mlrun/projects/pipelines.py,sha256=SMXBmIeuopwPpU0o2VFvaPXgbmaj-2WfCJryN6mZvZY,40124
249
- mlrun/projects/project.py,sha256=S8nL7it4E92OUWGE6PSjoQQsGNV22Q5bnRsaI2LEL2E,165058
252
+ mlrun/projects/pipelines.py,sha256=7XsVg13Y2bPK_6SCLC5e22PMnU2DUjscJX2LctSKXN8,40579
253
+ mlrun/projects/project.py,sha256=J9koTyjGvP82xlgXHYJbZnLjtTE9uJElw-8LMQwfujs,166182
250
254
  mlrun/runtimes/__init__.py,sha256=tTDfia4cr0gUy2rEtLTj4Nz6M_JJd6utzkFi-ogDvXg,8289
251
- mlrun/runtimes/base.py,sha256=pXZAuE5kzOwdSBUjscdXzgfjdfzW4PxLq9d3Mf0IQbI,36572
255
+ mlrun/runtimes/base.py,sha256=prqlbGq5fbgQ8atBMjsXhdRY5UqS1egpHtOPaAjhVyI,36683
252
256
  mlrun/runtimes/constants.py,sha256=oP3OxdYCpbvadJ3zP1JGkqGBKaBheNkCnJISWha9x58,9513
253
257
  mlrun/runtimes/daskjob.py,sha256=xvN8ajs3-_voqxrfz6b3rh_idNw4ypRAkPRWGOnDMGA,19149
254
258
  mlrun/runtimes/funcdoc.py,sha256=FHwnLfFzoD6yGlsAJXAl_3VTtudgg4fTrsw_XqLOkC0,10508
@@ -256,7 +260,7 @@ mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51P
256
260
  mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
257
261
  mlrun/runtimes/kubejob.py,sha256=UfSm7hiPLAtM0TfIE5nbBdSvrbsKWCZfvKP-SZhGyAk,12500
258
262
  mlrun/runtimes/local.py,sha256=u9MhASzF7VRt_yT6_mZPze_hDvAaBxonPk_KafRG3Gg,21783
259
- mlrun/runtimes/pod.py,sha256=id1mxg6lCIWQA55x0Yk3-fLwtnR9MisRkwRoIW0rWCE,58664
263
+ mlrun/runtimes/pod.py,sha256=tLnsGln3bmPAK-Mmr4fXfZ4P7IJ9R30Z-zaNhxSk-oE,59908
260
264
  mlrun/runtimes/remotesparkjob.py,sha256=ORkKmZRz_V3YiNE1NF7JIa_hI_LWbKEyI15Qb6R6g5I,7326
261
265
  mlrun/runtimes/utils.py,sha256=G4t29elE2PBT7WQZmrEOTIFAJUmeu6zXGEWwgz533vg,16004
262
266
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
@@ -268,10 +272,10 @@ mlrun/runtimes/mpijob/abstract.py,sha256=AqIb-nEKZaRO7x1GxJea6cXg_Tn3Dr4WiWZUz3y
268
272
  mlrun/runtimes/mpijob/v1.py,sha256=_RUlFo_3NcFf7x-QpUNVm8f7qNbRDIdUmPf_ijrv54U,3206
269
273
  mlrun/runtimes/mpijob/v1alpha1.py,sha256=w_971wwL03hW_ksgHJXdjTdjhxCs9KJ0zNqHSQ9whIM,1034
270
274
  mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
271
- mlrun/runtimes/nuclio/api_gateway.py,sha256=t4im6F8f-zPYYXrHXCFr46Rw6sGgvydIpxpgxncTUMQ,10277
272
- mlrun/runtimes/nuclio/function.py,sha256=bCK_EVrLe2NfAelVpKtQrOYVnsPMiT91sB2_aJzLP_o,48990
275
+ mlrun/runtimes/nuclio/api_gateway.py,sha256=1fHCHqR5ABlVKJ0al12iIYDSMy2bOTIxnLJPvb4KE9M,15894
276
+ mlrun/runtimes/nuclio/function.py,sha256=7Ax0u760z-ex0yRlztJRrUZcKGXeJNvsXcUAJqjc26w,49044
273
277
  mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
274
- mlrun/runtimes/nuclio/serving.py,sha256=hzkXKCVgU6uXLYfO3H15ZWJIQiSbcKY2M_WLybHW1hM,30363
278
+ mlrun/runtimes/nuclio/serving.py,sha256=e0VdJ6zbkurEl9ZlYqGzUaWRUM_US2bE7fpV6RZ83as,29745
275
279
  mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
276
280
  mlrun/runtimes/nuclio/application/application.py,sha256=IxBvE7XcQKgtPWJqib32v6ANigxbK0-yfKC3vq0mjG4,9678
277
281
  mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=RDR2BuO7E87Ek9DYjvEaF5manuxcuVaVY7eZX986GFI,2920
@@ -280,13 +284,13 @@ mlrun/runtimes/sparkjob/spark3job.py,sha256=yU-PxEI2pDJK5LHXTTcmrdjmO1Jwrj5Zyf8N
280
284
  mlrun/serving/__init__.py,sha256=_6HRAOuS2Ehjo3vwx5h1aI_-JppxEAsl4VfEERAbGFE,1078
281
285
  mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
282
286
  mlrun/serving/remote.py,sha256=jLFjMfgPx_PwJkpRHYbKrB9EQZcD4gZ-iczzHl1o0zs,18010
283
- mlrun/serving/routers.py,sha256=YN8k6eWWraqWOU3SqYFda7ky-oV_O0--zAuPEGwKdPI,54976
284
- mlrun/serving/server.py,sha256=42wWLtMb1AWeXtSXzSv0bKfQkxAQreqxs40Q0C_Bc-c,21161
287
+ mlrun/serving/routers.py,sha256=gI4NU41ft16aD8jagI9sUzfHWMknHq8FSt5zxEhAvmQ,55048
288
+ mlrun/serving/server.py,sha256=gs3FATCkCv6Ngke70vNaCWGhONH6IMI4eiuvRwLLMdY,21055
285
289
  mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
286
- mlrun/serving/states.py,sha256=EUkltwQlNNU6mjsUc8f3Rq65SGiAICkCAxbHw2jUqBk,55773
290
+ mlrun/serving/states.py,sha256=7_nvFobvT-PIJoegkfXYrMlDD0CC4T66y8TvUytkEGo,56265
287
291
  mlrun/serving/utils.py,sha256=WO0n_YTO0YVPTjp_90zxRl4vey4flDgw5vaOHK5p_qY,3871
288
292
  mlrun/serving/v1_serving.py,sha256=by4myxlnwyZ0ijQ5fURilGCK1sUpdQL2Il1VR3Xqpxg,11805
289
- mlrun/serving/v2_serving.py,sha256=z1jTy0ObRFpV5nxMk-FGL2PoTQf-L01sYjfdA6_NqJc,23559
293
+ mlrun/serving/v2_serving.py,sha256=_iFo8uY1n7xZp_YFVgsL6yn9HofY_49A1Bc3cmbL30s,23631
290
294
  mlrun/track/__init__.py,sha256=LWRUHJt8JyFW17FyNPOVyWd-NXTf1iptzsK9KFj5fuY,765
291
295
  mlrun/track/tracker.py,sha256=y-UdhC2nzM6r-yHCwvrfiHRr93xsr4JRsZTxDrTTRJo,3541
292
296
  mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
@@ -298,11 +302,11 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
298
302
  mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
299
303
  mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
300
304
  mlrun/utils/db.py,sha256=KEa-vzicUhzIwo1wBXax2ZuXtYgf5to7wnsY3CYCiOQ,1713
301
- mlrun/utils/helpers.py,sha256=guQSdMvQT8KdS2_LHXe0C9pTEC56XtsWNMliSI0i5CQ,51162
302
- mlrun/utils/http.py,sha256=mQqnCsdsg9_q2WIbgoEKGQpMesslb0ErvbwYV-htarw,8700
305
+ mlrun/utils/helpers.py,sha256=k69jVSFghCWS_UyScr76reHl5AxNq1TKBOK7dfnYY7Q,52095
306
+ mlrun/utils/http.py,sha256=l_JCPrCq8bfYUcUcAFWUPvb9Xu-93bLGIhV-H-XCU9s,8707
303
307
  mlrun/utils/logger.py,sha256=6-XMv1ucg9NqTstLpiji9qb06XHpx2LvNA8JxU1J5Tk,8133
304
308
  mlrun/utils/regex.py,sha256=Nd7xnDHU9PEOsse6rFwLNVgU4AaYCyuwMmQ9qgx2-Vw,4581
305
- mlrun/utils/retryer.py,sha256=BsST2dbGCHcY46wyGG3zWel_O9YquO0c57P3rcBxXU0,7522
309
+ mlrun/utils/retryer.py,sha256=TFdnh5bEjeNW-n0upzXi1Ni4jcjNKdl7jj8y0VtncJ0,7560
306
310
  mlrun/utils/singleton.py,sha256=p1Y-X0mPSs_At092GS-pZCA8CTR62HOqPU07_ZH6-To,869
307
311
  mlrun/utils/v3io_clients.py,sha256=7eReciHBPLuLW6b5DIc8emnmrjh4D8hXPuqZDooR6HQ,1284
308
312
  mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
@@ -316,11 +320,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=d47s-fW4TgqOJZOSdmzBQvd
316
320
  mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
317
321
  mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
318
322
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
319
- mlrun/utils/version/version.json,sha256=ILF1rc0HYdLIjaV0EoivXDa8o11QVEm_vR_0HbZkVBA,88
323
+ mlrun/utils/version/version.json,sha256=xDSX9YaznNhRyrGomc1_tfWTpIgN3RYMWgZyvWebdI8,88
320
324
  mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
321
- mlrun-1.7.0rc6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
322
- mlrun-1.7.0rc6.dist-info/METADATA,sha256=aTGZl-fqFbpXsw_iPz64qD7nl2dBrtDqZuuxItHHQ3Q,18263
323
- mlrun-1.7.0rc6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
324
- mlrun-1.7.0rc6.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
325
- mlrun-1.7.0rc6.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
326
- mlrun-1.7.0rc6.dist-info/RECORD,,
325
+ mlrun-1.7.0rc8.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
326
+ mlrun-1.7.0rc8.dist-info/METADATA,sha256=5byWUNhTGutxXLa0EZduzJTgQIWsetUN15lEyF57N4E,18799
327
+ mlrun-1.7.0rc8.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
328
+ mlrun-1.7.0rc8.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
329
+ mlrun-1.7.0rc8.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
330
+ mlrun-1.7.0rc8.dist-info/RECORD,,