mlrun 1.7.0rc4__py3-none-any.whl → 1.7.0rc20__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 (200) hide show
  1. mlrun/__init__.py +11 -1
  2. mlrun/__main__.py +25 -111
  3. mlrun/{datastore/helpers.py → alerts/__init__.py} +2 -5
  4. mlrun/alerts/alert.py +144 -0
  5. mlrun/api/schemas/__init__.py +4 -3
  6. mlrun/artifacts/__init__.py +8 -3
  7. mlrun/artifacts/base.py +38 -254
  8. mlrun/artifacts/dataset.py +9 -190
  9. mlrun/artifacts/manager.py +41 -47
  10. mlrun/artifacts/model.py +30 -158
  11. mlrun/artifacts/plots.py +23 -380
  12. mlrun/common/constants.py +68 -0
  13. mlrun/common/formatters/__init__.py +19 -0
  14. mlrun/{model_monitoring/stores/models/sqlite.py → common/formatters/artifact.py} +6 -8
  15. mlrun/common/formatters/base.py +78 -0
  16. mlrun/common/formatters/function.py +41 -0
  17. mlrun/common/formatters/pipeline.py +53 -0
  18. mlrun/common/formatters/project.py +51 -0
  19. mlrun/{runtimes → common/runtimes}/constants.py +32 -4
  20. mlrun/common/schemas/__init__.py +25 -4
  21. mlrun/common/schemas/alert.py +203 -0
  22. mlrun/common/schemas/api_gateway.py +148 -0
  23. mlrun/common/schemas/artifact.py +15 -5
  24. mlrun/common/schemas/auth.py +8 -2
  25. mlrun/common/schemas/client_spec.py +2 -0
  26. mlrun/common/schemas/frontend_spec.py +1 -0
  27. mlrun/common/schemas/function.py +4 -0
  28. mlrun/common/schemas/hub.py +7 -9
  29. mlrun/common/schemas/model_monitoring/__init__.py +19 -3
  30. mlrun/common/schemas/model_monitoring/constants.py +96 -26
  31. mlrun/common/schemas/model_monitoring/grafana.py +9 -5
  32. mlrun/common/schemas/model_monitoring/model_endpoints.py +86 -2
  33. mlrun/{runtimes/mpijob/v1alpha1.py → common/schemas/pagination.py} +10 -13
  34. mlrun/common/schemas/pipeline.py +0 -9
  35. mlrun/common/schemas/project.py +22 -21
  36. mlrun/common/types.py +7 -1
  37. mlrun/config.py +87 -19
  38. mlrun/data_types/data_types.py +4 -0
  39. mlrun/data_types/to_pandas.py +9 -9
  40. mlrun/datastore/__init__.py +5 -8
  41. mlrun/datastore/alibaba_oss.py +130 -0
  42. mlrun/datastore/azure_blob.py +4 -5
  43. mlrun/datastore/base.py +69 -30
  44. mlrun/datastore/datastore.py +10 -2
  45. mlrun/datastore/datastore_profile.py +90 -6
  46. mlrun/datastore/google_cloud_storage.py +1 -1
  47. mlrun/datastore/hdfs.py +5 -0
  48. mlrun/datastore/inmem.py +2 -2
  49. mlrun/datastore/redis.py +2 -2
  50. mlrun/datastore/s3.py +5 -0
  51. mlrun/datastore/snowflake_utils.py +43 -0
  52. mlrun/datastore/sources.py +172 -44
  53. mlrun/datastore/store_resources.py +7 -7
  54. mlrun/datastore/targets.py +285 -41
  55. mlrun/datastore/utils.py +68 -5
  56. mlrun/datastore/v3io.py +27 -50
  57. mlrun/db/auth_utils.py +152 -0
  58. mlrun/db/base.py +149 -14
  59. mlrun/db/factory.py +1 -1
  60. mlrun/db/httpdb.py +608 -178
  61. mlrun/db/nopdb.py +191 -7
  62. mlrun/errors.py +11 -0
  63. mlrun/execution.py +37 -20
  64. mlrun/feature_store/__init__.py +0 -2
  65. mlrun/feature_store/api.py +21 -52
  66. mlrun/feature_store/feature_set.py +48 -23
  67. mlrun/feature_store/feature_vector.py +2 -1
  68. mlrun/feature_store/ingestion.py +7 -6
  69. mlrun/feature_store/retrieval/base.py +9 -4
  70. mlrun/feature_store/retrieval/conversion.py +9 -9
  71. mlrun/feature_store/retrieval/dask_merger.py +2 -0
  72. mlrun/feature_store/retrieval/job.py +9 -3
  73. mlrun/feature_store/retrieval/local_merger.py +2 -0
  74. mlrun/feature_store/retrieval/spark_merger.py +34 -24
  75. mlrun/feature_store/steps.py +30 -19
  76. mlrun/features.py +4 -13
  77. mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py +7 -12
  78. mlrun/frameworks/auto_mlrun/auto_mlrun.py +2 -2
  79. mlrun/frameworks/lgbm/__init__.py +1 -1
  80. mlrun/frameworks/lgbm/callbacks/callback.py +2 -4
  81. mlrun/frameworks/lgbm/model_handler.py +1 -1
  82. mlrun/frameworks/parallel_coordinates.py +2 -1
  83. mlrun/frameworks/pytorch/__init__.py +2 -2
  84. mlrun/frameworks/sklearn/__init__.py +1 -1
  85. mlrun/frameworks/tf_keras/__init__.py +5 -2
  86. mlrun/frameworks/tf_keras/callbacks/logging_callback.py +1 -1
  87. mlrun/frameworks/tf_keras/mlrun_interface.py +2 -2
  88. mlrun/frameworks/xgboost/__init__.py +1 -1
  89. mlrun/k8s_utils.py +10 -11
  90. mlrun/launcher/__init__.py +1 -1
  91. mlrun/launcher/base.py +6 -5
  92. mlrun/launcher/client.py +8 -6
  93. mlrun/launcher/factory.py +1 -1
  94. mlrun/launcher/local.py +9 -3
  95. mlrun/launcher/remote.py +9 -3
  96. mlrun/lists.py +6 -2
  97. mlrun/model.py +58 -19
  98. mlrun/model_monitoring/__init__.py +1 -1
  99. mlrun/model_monitoring/api.py +127 -301
  100. mlrun/model_monitoring/application.py +5 -296
  101. mlrun/model_monitoring/applications/__init__.py +11 -0
  102. mlrun/model_monitoring/applications/_application_steps.py +157 -0
  103. mlrun/model_monitoring/applications/base.py +282 -0
  104. mlrun/model_monitoring/applications/context.py +214 -0
  105. mlrun/model_monitoring/applications/evidently_base.py +211 -0
  106. mlrun/model_monitoring/applications/histogram_data_drift.py +224 -93
  107. mlrun/model_monitoring/applications/results.py +99 -0
  108. mlrun/model_monitoring/controller.py +30 -36
  109. mlrun/model_monitoring/db/__init__.py +18 -0
  110. mlrun/model_monitoring/{stores → db/stores}/__init__.py +43 -36
  111. mlrun/model_monitoring/db/stores/base/__init__.py +15 -0
  112. mlrun/model_monitoring/{stores/model_endpoint_store.py → db/stores/base/store.py} +58 -32
  113. mlrun/model_monitoring/db/stores/sqldb/__init__.py +13 -0
  114. mlrun/model_monitoring/db/stores/sqldb/models/__init__.py +71 -0
  115. mlrun/model_monitoring/{stores → db/stores/sqldb}/models/base.py +109 -5
  116. mlrun/model_monitoring/db/stores/sqldb/models/mysql.py +88 -0
  117. mlrun/model_monitoring/{stores/models/mysql.py → db/stores/sqldb/models/sqlite.py} +19 -13
  118. mlrun/model_monitoring/db/stores/sqldb/sql_store.py +684 -0
  119. mlrun/model_monitoring/db/stores/v3io_kv/__init__.py +13 -0
  120. mlrun/model_monitoring/{stores/kv_model_endpoint_store.py → db/stores/v3io_kv/kv_store.py} +302 -155
  121. mlrun/model_monitoring/db/tsdb/__init__.py +100 -0
  122. mlrun/model_monitoring/db/tsdb/base.py +329 -0
  123. mlrun/model_monitoring/db/tsdb/helpers.py +30 -0
  124. mlrun/model_monitoring/db/tsdb/tdengine/__init__.py +15 -0
  125. mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +240 -0
  126. mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py +45 -0
  127. mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +397 -0
  128. mlrun/model_monitoring/db/tsdb/v3io/__init__.py +15 -0
  129. mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +117 -0
  130. mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +630 -0
  131. mlrun/model_monitoring/evidently_application.py +6 -118
  132. mlrun/model_monitoring/features_drift_table.py +34 -22
  133. mlrun/model_monitoring/helpers.py +100 -7
  134. mlrun/model_monitoring/model_endpoint.py +3 -2
  135. mlrun/model_monitoring/stream_processing.py +93 -228
  136. mlrun/model_monitoring/tracking_policy.py +7 -1
  137. mlrun/model_monitoring/writer.py +152 -124
  138. mlrun/package/packagers_manager.py +1 -0
  139. mlrun/package/utils/_formatter.py +2 -2
  140. mlrun/platforms/__init__.py +11 -10
  141. mlrun/platforms/iguazio.py +21 -202
  142. mlrun/projects/operations.py +30 -16
  143. mlrun/projects/pipelines.py +92 -99
  144. mlrun/projects/project.py +757 -268
  145. mlrun/render.py +15 -14
  146. mlrun/run.py +160 -162
  147. mlrun/runtimes/__init__.py +55 -3
  148. mlrun/runtimes/base.py +33 -19
  149. mlrun/runtimes/databricks_job/databricks_wrapper.py +1 -1
  150. mlrun/runtimes/funcdoc.py +0 -28
  151. mlrun/runtimes/kubejob.py +28 -122
  152. mlrun/runtimes/local.py +5 -2
  153. mlrun/runtimes/mpijob/__init__.py +0 -20
  154. mlrun/runtimes/mpijob/abstract.py +8 -8
  155. mlrun/runtimes/mpijob/v1.py +1 -1
  156. mlrun/runtimes/nuclio/__init__.py +1 -0
  157. mlrun/runtimes/nuclio/api_gateway.py +709 -0
  158. mlrun/runtimes/nuclio/application/__init__.py +15 -0
  159. mlrun/runtimes/nuclio/application/application.py +523 -0
  160. mlrun/runtimes/nuclio/application/reverse_proxy.go +95 -0
  161. mlrun/runtimes/nuclio/function.py +98 -58
  162. mlrun/runtimes/nuclio/serving.py +36 -42
  163. mlrun/runtimes/pod.py +196 -45
  164. mlrun/runtimes/remotesparkjob.py +1 -1
  165. mlrun/runtimes/sparkjob/spark3job.py +1 -1
  166. mlrun/runtimes/utils.py +6 -73
  167. mlrun/secrets.py +6 -2
  168. mlrun/serving/remote.py +2 -3
  169. mlrun/serving/routers.py +7 -4
  170. mlrun/serving/server.py +7 -8
  171. mlrun/serving/states.py +73 -43
  172. mlrun/serving/v2_serving.py +8 -7
  173. mlrun/track/tracker.py +2 -1
  174. mlrun/utils/async_http.py +25 -5
  175. mlrun/utils/helpers.py +141 -75
  176. mlrun/utils/http.py +1 -1
  177. mlrun/utils/logger.py +39 -7
  178. mlrun/utils/notifications/notification/__init__.py +14 -9
  179. mlrun/utils/notifications/notification/base.py +12 -0
  180. mlrun/utils/notifications/notification/console.py +2 -0
  181. mlrun/utils/notifications/notification/git.py +3 -1
  182. mlrun/utils/notifications/notification/ipython.py +2 -0
  183. mlrun/utils/notifications/notification/slack.py +101 -21
  184. mlrun/utils/notifications/notification/webhook.py +11 -1
  185. mlrun/utils/notifications/notification_pusher.py +147 -16
  186. mlrun/utils/retryer.py +3 -2
  187. mlrun/utils/v3io_clients.py +0 -1
  188. mlrun/utils/version/version.json +2 -2
  189. {mlrun-1.7.0rc4.dist-info → mlrun-1.7.0rc20.dist-info}/METADATA +33 -18
  190. mlrun-1.7.0rc20.dist-info/RECORD +353 -0
  191. {mlrun-1.7.0rc4.dist-info → mlrun-1.7.0rc20.dist-info}/WHEEL +1 -1
  192. mlrun/kfpops.py +0 -868
  193. mlrun/model_monitoring/batch.py +0 -974
  194. mlrun/model_monitoring/stores/models/__init__.py +0 -27
  195. mlrun/model_monitoring/stores/sql_model_endpoint_store.py +0 -382
  196. mlrun/platforms/other.py +0 -305
  197. mlrun-1.7.0rc4.dist-info/RECORD +0 -321
  198. {mlrun-1.7.0rc4.dist-info → mlrun-1.7.0rc20.dist-info}/LICENSE +0 -0
  199. {mlrun-1.7.0rc4.dist-info → mlrun-1.7.0rc20.dist-info}/entry_points.txt +0 -0
  200. {mlrun-1.7.0rc4.dist-info → mlrun-1.7.0rc20.dist-info}/top_level.txt +0 -0
mlrun/platforms/other.py DELETED
@@ -1,305 +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
- # this file is based on the code from kubeflow pipelines git
16
- import os
17
-
18
- import kfp.dsl
19
-
20
- import mlrun
21
- from mlrun.config import config
22
- from mlrun.errors import MLRunInvalidArgumentError
23
- from mlrun.utils.helpers import logger
24
-
25
- from .iguazio import mount_v3io
26
-
27
-
28
- def mount_pvc(pvc_name=None, volume_name="pipeline", volume_mount_path="/mnt/pipeline"):
29
- """
30
- Modifier function to apply to a Container Op to simplify volume, volume mount addition and
31
- enable better reuse of volumes, volume claims across container ops.
32
-
33
- Usage::
34
-
35
- train = train_op(...)
36
- train.apply(mount_pvc('claim-name', 'pipeline', '/mnt/pipeline'))
37
- """
38
- if "MLRUN_PVC_MOUNT" in os.environ:
39
- mount = os.environ.get("MLRUN_PVC_MOUNT")
40
- items = mount.split(":")
41
- if len(items) != 2:
42
- raise MLRunInvalidArgumentError(
43
- "MLRUN_PVC_MOUNT should include <pvc-name>:<mount-path>"
44
- )
45
- pvc_name = items[0]
46
- volume_mount_path = items[1]
47
-
48
- if not pvc_name:
49
- raise MLRunInvalidArgumentError(
50
- "No PVC name: use the pvc_name parameter or configure the MLRUN_PVC_MOUNT environment variable"
51
- )
52
-
53
- def _mount_pvc(task):
54
- from kubernetes import client as k8s_client
55
-
56
- local_pvc = k8s_client.V1PersistentVolumeClaimVolumeSource(claim_name=pvc_name)
57
- return task.add_volume(
58
- k8s_client.V1Volume(name=volume_name, persistent_volume_claim=local_pvc)
59
- ).add_volume_mount(
60
- k8s_client.V1VolumeMount(mount_path=volume_mount_path, name=volume_name)
61
- )
62
-
63
- return _mount_pvc
64
-
65
-
66
- def auto_mount(pvc_name="", volume_mount_path="", volume_name=None):
67
- """choose the mount based on env variables and params
68
-
69
- volume will be selected by the following order:
70
- - k8s PVC volume when both pvc_name and volume_mount_path are set
71
- - k8s PVC volume when env var is set: MLRUN_PVC_MOUNT=<pvc-name>:<mount-path>
72
- - k8s PVC volume if it's configured as the auto mount type
73
- - iguazio v3io volume when V3IO_ACCESS_KEY and V3IO_USERNAME env vars are set
74
- """
75
- if pvc_name and volume_mount_path:
76
- return mount_pvc(
77
- pvc_name=pvc_name,
78
- volume_mount_path=volume_mount_path,
79
- volume_name=volume_name or "shared-persistency",
80
- )
81
- if "MLRUN_PVC_MOUNT" in os.environ:
82
- return mount_pvc(
83
- volume_name=volume_name or "shared-persistency",
84
- )
85
- # In the case of MLRun-kit when working remotely, no env variables will be defined but auto-mount
86
- # parameters may still be declared - use them in that case.
87
- if config.storage.auto_mount_type == "pvc":
88
- return mount_pvc(**config.get_storage_auto_mount_params())
89
- if "V3IO_ACCESS_KEY" in os.environ:
90
- return mount_v3io(name=volume_name or "v3io")
91
-
92
- raise ValueError("failed to auto mount, need to set env vars")
93
-
94
-
95
- def mount_secret(secret_name, mount_path, volume_name="secret", items=None):
96
- """Modifier function to mount kubernetes secret as files(s)
97
-
98
- :param secret_name: k8s secret name
99
- :param mount_path: path to mount inside the container
100
- :param volume_name: unique volume name
101
- :param items: If unspecified, each key-value pair in the Data field
102
- of the referenced Secret will be projected into the
103
- volume as a file whose name is the key and content is
104
- the value.
105
- If specified, the listed keys will be projected into
106
- the specified paths, and unlisted keys will not be
107
- present.
108
- """
109
-
110
- def _mount_secret(task):
111
- from kubernetes import client as k8s_client
112
-
113
- vol = k8s_client.V1SecretVolumeSource(secret_name=secret_name, items=items)
114
- return task.add_volume(
115
- k8s_client.V1Volume(name=volume_name, secret=vol)
116
- ).add_volume_mount(
117
- k8s_client.V1VolumeMount(mount_path=mount_path, name=volume_name)
118
- )
119
-
120
- return _mount_secret
121
-
122
-
123
- def mount_configmap(configmap_name, mount_path, volume_name="configmap", items=None):
124
- """Modifier function to mount kubernetes configmap as files(s)
125
-
126
- :param configmap_name: k8s configmap name
127
- :param mount_path: path to mount inside the container
128
- :param volume_name: unique volume name
129
- :param items: If unspecified, each key-value pair in the Data field
130
- of the referenced Configmap will be projected into the
131
- volume as a file whose name is the key and content is
132
- the value.
133
- If specified, the listed keys will be projected into
134
- the specified paths, and unlisted keys will not be
135
- present.
136
- """
137
-
138
- def _mount_configmap(task):
139
- from kubernetes import client as k8s_client
140
-
141
- vol = k8s_client.V1ConfigMapVolumeSource(name=configmap_name, items=items)
142
- return task.add_volume(
143
- k8s_client.V1Volume(name=volume_name, config_map=vol)
144
- ).add_volume_mount(
145
- k8s_client.V1VolumeMount(mount_path=mount_path, name=volume_name)
146
- )
147
-
148
- return _mount_configmap
149
-
150
-
151
- def mount_hostpath(host_path, mount_path, volume_name="hostpath"):
152
- """Modifier function to mount kubernetes configmap as files(s)
153
-
154
- :param host_path: host path
155
- :param mount_path: path to mount inside the container
156
- :param volume_name: unique volume name
157
- """
158
-
159
- def _mount_hostpath(task):
160
- from kubernetes import client as k8s_client
161
-
162
- return task.add_volume(
163
- k8s_client.V1Volume(
164
- name=volume_name,
165
- host_path=k8s_client.V1HostPathVolumeSource(path=host_path, type=""),
166
- )
167
- ).add_volume_mount(
168
- k8s_client.V1VolumeMount(mount_path=mount_path, name=volume_name)
169
- )
170
-
171
- return _mount_hostpath
172
-
173
-
174
- def mount_s3(
175
- secret_name=None,
176
- aws_access_key="",
177
- aws_secret_key="",
178
- endpoint_url=None,
179
- prefix="",
180
- aws_region=None,
181
- non_anonymous=False,
182
- ):
183
- """Modifier function to add s3 env vars or secrets to container
184
-
185
- **Warning:**
186
- Using this function to configure AWS credentials will expose these credentials in the pod spec of the runtime
187
- created. It is recommended to use the `secret_name` parameter, or set the credentials as project-secrets and avoid
188
- using this function.
189
-
190
- :param secret_name: kubernetes secret name (storing the access/secret keys)
191
- :param aws_access_key: AWS_ACCESS_KEY_ID value. If this parameter is not specified and AWS_ACCESS_KEY_ID env.
192
- variable is defined, the value will be taken from the env. variable
193
- :param aws_secret_key: AWS_SECRET_ACCESS_KEY value. If this parameter is not specified and AWS_SECRET_ACCESS_KEY
194
- env. variable is defined, the value will be taken from the env. variable
195
- :param endpoint_url: s3 endpoint address (for non AWS s3)
196
- :param prefix: string prefix to add before the env var name (for working with multiple s3 data stores)
197
- :param aws_region: amazon region
198
- :param non_anonymous: force the S3 API to use non-anonymous connection, even if no credentials are provided
199
- (for authenticating externally, such as through IAM instance-roles)
200
- """
201
-
202
- if secret_name and (aws_access_key or aws_secret_key):
203
- raise mlrun.errors.MLRunInvalidArgumentError(
204
- "can use k8s_secret for credentials or specify them (aws_access_key, aws_secret_key) not both"
205
- )
206
-
207
- if not secret_name and (
208
- aws_access_key
209
- or os.environ.get(prefix + "AWS_ACCESS_KEY_ID")
210
- or aws_secret_key
211
- or os.environ.get(prefix + "AWS_SECRET_ACCESS_KEY")
212
- ):
213
- logger.warning(
214
- "it is recommended to use k8s secret (specify secret_name), "
215
- "specifying the aws_access_key/aws_secret_key directly is unsafe"
216
- )
217
-
218
- def _use_s3_cred(container_op):
219
- from os import environ
220
-
221
- from kubernetes import client as k8s_client
222
-
223
- _access_key = aws_access_key or environ.get(prefix + "AWS_ACCESS_KEY_ID")
224
- _secret_key = aws_secret_key or environ.get(prefix + "AWS_SECRET_ACCESS_KEY")
225
- _endpoint_url = endpoint_url or environ.get(prefix + "S3_ENDPOINT_URL")
226
-
227
- container = container_op.container
228
- if _endpoint_url:
229
- container.add_env_variable(
230
- k8s_client.V1EnvVar(name=prefix + "S3_ENDPOINT_URL", value=endpoint_url)
231
- )
232
- if aws_region:
233
- container.add_env_variable(
234
- k8s_client.V1EnvVar(name=prefix + "AWS_REGION", value=aws_region)
235
- )
236
- if non_anonymous:
237
- container.add_env_variable(
238
- k8s_client.V1EnvVar(name=prefix + "S3_NON_ANONYMOUS", value="true")
239
- )
240
-
241
- if secret_name:
242
- container.add_env_variable(
243
- k8s_client.V1EnvVar(
244
- name=prefix + "AWS_ACCESS_KEY_ID",
245
- value_from=k8s_client.V1EnvVarSource(
246
- secret_key_ref=k8s_client.V1SecretKeySelector(
247
- name=secret_name, key="AWS_ACCESS_KEY_ID"
248
- )
249
- ),
250
- )
251
- ).add_env_variable(
252
- k8s_client.V1EnvVar(
253
- name=prefix + "AWS_SECRET_ACCESS_KEY",
254
- value_from=k8s_client.V1EnvVarSource(
255
- secret_key_ref=k8s_client.V1SecretKeySelector(
256
- name=secret_name, key="AWS_SECRET_ACCESS_KEY"
257
- )
258
- ),
259
- )
260
- )
261
-
262
- else:
263
- return container_op.add_env_variable(
264
- k8s_client.V1EnvVar(
265
- name=prefix + "AWS_ACCESS_KEY_ID", value=_access_key
266
- )
267
- ).add_env_variable(
268
- k8s_client.V1EnvVar(
269
- name=prefix + "AWS_SECRET_ACCESS_KEY", value=_secret_key
270
- )
271
- )
272
-
273
- return _use_s3_cred
274
-
275
-
276
- def set_env_variables(env_vars_dict: dict[str, str] = None, **kwargs):
277
- """
278
- Modifier function to apply a set of environment variables to a runtime. Variables may be passed
279
- as either a dictionary of name-value pairs, or as arguments to the function.
280
- See `KubeResource.apply` for more information on modifiers.
281
-
282
- Usage::
283
-
284
- function.apply(set_env_variables({"ENV1": "value1", "ENV2": "value2"}))
285
- or
286
- function.apply(set_env_variables(ENV1=value1, ENV2=value2))
287
-
288
- :param env_vars_dict: dictionary of env. variables
289
- :param kwargs: environment variables passed as args
290
- """
291
-
292
- env_data = env_vars_dict.copy() if env_vars_dict else {}
293
- for key, value in kwargs.items():
294
- env_data[key] = value
295
-
296
- def _set_env_variables(container_op: kfp.dsl.ContainerOp):
297
- from kubernetes import client as k8s_client
298
-
299
- for _key, _value in env_data.items():
300
- container_op.container.add_env_variable(
301
- k8s_client.V1EnvVar(name=_key, value=_value)
302
- )
303
- return container_op
304
-
305
- return _set_env_variables
@@ -1,321 +0,0 @@
1
- mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
2
- mlrun/__main__.py,sha256=vg-HMhJqQ3OYt31YmijjBh6-6AZQVe4FvDYn4MwEpYs,49229
3
- mlrun/config.py,sha256=xH1gK-yMe6PdUEyB2FCGfoNzDILHak_6H9J-1CdLwUg,62255
4
- mlrun/errors.py,sha256=HmOAdfpL0bCDisZMUoJPOumneq71ko49Ph-XBL-A4xA,7080
5
- mlrun/execution.py,sha256=meZ_qSdTmnpqW7DKv7LdBmuE1Ut34E1RbK2kO0MD_QM,40866
6
- mlrun/features.py,sha256=nPDvy8tJuxwbRr843oWcnLBrqMJDPUanzn2Sb3BBi6w,15569
7
- mlrun/k8s_utils.py,sha256=YyFZT2WNZrJkcZoqxrkduQgzQ1X-7195O0mmEqvaIug,7023
8
- mlrun/kfpops.py,sha256=nVQUjLVBhXqkL2OTWJUo4qFIfNVEXUKIXJmRpBW0MVU,30481
9
- mlrun/lists.py,sha256=ev-gLBPc_az03yQEHrKyDPq_Bjosa4D_XFiVbRIpmRY,8286
10
- mlrun/model.py,sha256=e9tJG8-wP3gPywDu7wJMNsusLTGpVA9WpBbILFwR5Ns,70583
11
- mlrun/render.py,sha256=aMH3U2z7ELpW8MwYEGOrqLdEUwMX29shqy6V6-KbgiM,13009
12
- mlrun/run.py,sha256=Xj9CdKuRFqMGTJ2fV2YTKFlTg45ZgYtrHx8Ooaljgek,42400
13
- mlrun/secrets.py,sha256=Nl_7ZNSErd-AOH19vVx_PjrLg9bJM9L-BvEYoPolB1c,7776
14
- mlrun/api/schemas/__init__.py,sha256=LhfO3myrnLVxC0MYCAc1_LTuqhRlYV3H7BwJkjOu3dQ,14211
15
- mlrun/artifacts/__init__.py,sha256=LxEWcMYPawJYvNOl6H2_UvrxdLTNYfKeZcMEKFZnGgA,1187
16
- mlrun/artifacts/base.py,sha256=qAM4Tjcduf3unCvYTVV3jzMTqDWgMhYft2O-fVv5kbQ,34970
17
- mlrun/artifacts/dataset.py,sha256=hKdKtyAJqPWUGs1yefOAxa10s_ar3o7MaO7oiiD_HqU,22360
18
- mlrun/artifacts/manager.py,sha256=p6CmIJH91vm9DsEZHgHxKYTHU2BvF9IwpLv85cqoHNs,14425
19
- mlrun/artifacts/model.py,sha256=DXT24CH1ZgQLz9HcWBfjRAEhCBfznoa7-pB52N9qMOI,25205
20
- mlrun/artifacts/plots.py,sha256=dHt7Ardo4yZWaPtlUN3b78eB8NXV8XKigPP0u0poRl0,15701
21
- mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
22
- mlrun/common/constants.py,sha256=sIec-l1aj4GHOn__iwX-2A2mbTx5YYeWMLyhMUsWNTQ,707
23
- mlrun/common/helpers.py,sha256=BAhyuUnZvD_BT43i0_1EszuSbKgZx7bFy2KRIWP0XeA,1087
24
- mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
25
- mlrun/common/types.py,sha256=V_jCEFCJZcycFVsPzEToCRQja5bqW0zRAAVaGN_QYxQ,790
26
- mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
27
- mlrun/common/db/sql_session.py,sha256=Znc8KE2oLy4lg3_vRki1sVlNx59TgDSOTCXfU561hBU,2659
28
- mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
29
- mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
30
- mlrun/common/schemas/__init__.py,sha256=JZZB7i513MJZUYQgEJ5KxMlTyEfvJJvWKyHB25meS5E,4718
31
- mlrun/common/schemas/artifact.py,sha256=d6srME_eWn2MpGuqvPQZtePRFkjDfNJgQ6JDd51qVrI,2796
32
- mlrun/common/schemas/auth.py,sha256=4aiaBy-g8iDQo41_9FQydI49Onak6j4PNsmI79s-vT4,5957
33
- mlrun/common/schemas/background_task.py,sha256=2qZxib2qrF_nPZj0ncitCG-2jxz2hg1qj0hFc8eswWQ,1707
34
- mlrun/common/schemas/client_spec.py,sha256=EFYUSstblo13-O0LTwJfnsYmxbGPAypY3idy8SHpq1c,2858
35
- mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
36
- mlrun/common/schemas/common.py,sha256=00upzVLPN7O511Q87yt-fvRcDQFbXra4j0_lqMGg6rs,1557
37
- mlrun/common/schemas/constants.py,sha256=UnnhyLeF-SSjy8KaV5a-TBw4Ws675gueYGiP1fr5NfU,6476
38
- mlrun/common/schemas/datastore_profile.py,sha256=hJ8q54A8VZKsnOvSIjcllj4MZ1bBhb_EmBgsqpwSF_Y,750
39
- mlrun/common/schemas/events.py,sha256=ROHJLo_fqYjc96pek7yhAUPpPRIuAR76lwxvNz8LIr8,1026
40
- mlrun/common/schemas/feature_store.py,sha256=577OHVRZbV3kqYei4drVdTmCcGLJU8UXSGEpfo9FTQk,3717
41
- mlrun/common/schemas/frontend_spec.py,sha256=NPQZB7-A7ERXseTsdlxxG81CDL2oEcaUIj7OG2J9qPQ,2418
42
- mlrun/common/schemas/function.py,sha256=wnsIT0UxYB-GSzDx7FJ-O-TQRnGLsq1rQtRi4cJaINw,4577
43
- mlrun/common/schemas/http.py,sha256=1PtYFhF6sqLSBRcuPMtYcUGmroBhaleqLmYidSdL9LM,705
44
- mlrun/common/schemas/hub.py,sha256=HOlUwmrlhXaigJ8H8NgFykttoktTaedpIr-SYA2XcCM,4203
45
- mlrun/common/schemas/k8s.py,sha256=nmMnhgjVMLem5jyumoG2eQKioGK9eUVhQnOSb3hG7yw,1395
46
- mlrun/common/schemas/memory_reports.py,sha256=tpS3fpvxa6VcBpzCRzcZTt0fCF0h6ReUetYs7j6kdps,892
47
- mlrun/common/schemas/notification.py,sha256=Ge7eWNGf_XUFkjOnUkyUOubdEbmXh9z_OSGcSturt4w,1768
48
- mlrun/common/schemas/object.py,sha256=VleJSUmDJMl92knLgaDE8SWCi3ky0UaHcwcwOIapPQ8,1980
49
- mlrun/common/schemas/pipeline.py,sha256=GhrIsf5tRUQtQYboZ2feXdMjpFelVvduM-SIQoV5TZw,1177
50
- mlrun/common/schemas/project.py,sha256=OsWVDDShfgKnNMFXHep7EhbL75_hZmfwKbED10HCRZg,4277
51
- mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
52
- mlrun/common/schemas/runs.py,sha256=H9QhaN83cFUN42eE9TLgi1gs6Xdq11oQSZ96ESM94mI,745
53
- mlrun/common/schemas/runtime_resource.py,sha256=2rSuYL-9JkESSomlnU91mYDbfV-IkqZeXx6OHuMmDxs,1554
54
- mlrun/common/schemas/schedule.py,sha256=e9nAeRkZkyk37Ws1cBNseHVKPOQqmWV16rt-zr_eAJU,4287
55
- mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
56
- mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
57
- mlrun/common/schemas/workflow.py,sha256=eRoaOBFiWbvP0iwZ6Aof5JmheV81A0-0PGi8L4vuXmI,1823
58
- mlrun/common/schemas/model_monitoring/__init__.py,sha256=aBpxCS3CqAuhzSIdlqLEfRBneOW0FtID701C00J1L0Q,1415
59
- mlrun/common/schemas/model_monitoring/constants.py,sha256=qEZfe3DabmiDIoTDuYZiKEqXtaIjm19sN91ly0iK_KA,7822
60
- mlrun/common/schemas/model_monitoring/grafana.py,sha256=aiNK8iL_fIzDVO_bj4fted9P6fAwaymcPC2OnRk36po,1431
61
- mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=ct8Jd-08KwrFw2uVjdwO_jmNrbhYmQvHBAPLO7AVpn4,12000
62
- mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
63
- mlrun/data_types/data_types.py,sha256=qgRIdlSl9X-rAnwOW-F0hwPbDKOZI05JlSzV1O8ReaU,4647
64
- mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
65
- mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,9457
66
- mlrun/data_types/to_pandas.py,sha256=_8_M9WclYNkPeHLo0eXhrnLE6SiLkvNTreeqfJ9G5yY,9945
67
- mlrun/datastore/__init__.py,sha256=bsRzu39UOocQAAl_nOKCbhxrZhWUEXrAc8WV3zs0VyI,4118
68
- mlrun/datastore/azure_blob.py,sha256=W8mR9t3WChITQHJ3oY3DEfFDKKx1wjFNMzB07wf8Il0,9168
69
- mlrun/datastore/base.py,sha256=XsjmFOeLzkTnokkoEJLYtWdcy1m9V7i1PuE8zHUj9X4,24175
70
- mlrun/datastore/datastore.py,sha256=yEdiPzMx69zTCMtY4fZ7aQafyAMHynQs2papTQ-Sc0E,9018
71
- mlrun/datastore/datastore_profile.py,sha256=JSfZaxP1DZRnbRUTu00FEYp-C4bCKJziNgd5xRGrBaI,15985
72
- mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
73
- mlrun/datastore/filestore.py,sha256=nS3Ie6jG41NDiW_as9tF8Nu5maaSVEKYKUr1IQtPhuA,3767
74
- mlrun/datastore/google_cloud_storage.py,sha256=ri5bTqTNLij3ujlPoKlptDPi7oN6JgqIiVGWYoEmgsE,6112
75
- mlrun/datastore/hdfs.py,sha256=jCuuPbnITezNYug9iYNLEJW87GGXSqW6H-UiqAynfdw,1674
76
- mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,622
77
- mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
78
- mlrun/datastore/redis.py,sha256=yJ8xYHAR4DyYzsAMLQmsdzO-VVUTQABkIxcWhVHeUFI,5575
79
- mlrun/datastore/s3.py,sha256=EIPAXJGZ9kpQVbb_utFFZskDM21fAGz4m6QEAGecABU,8110
80
- mlrun/datastore/sources.py,sha256=6rK3pmpQ0Mzk1p3yEvMSqiaJOpjXGsMpXOcDYlcHaP8,40060
81
- mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
82
- mlrun/datastore/spark_utils.py,sha256=50rllp6xXpXY__1LbU7aTXUU5ca8dKAfoskPre3npZo,1611
83
- mlrun/datastore/store_resources.py,sha256=dfMdFy2urilECtlwLJr5CSG12MA645b-NPYDnbr5s1A,6839
84
- mlrun/datastore/targets.py,sha256=Hei-PlXmNpbb9IJ0LOz7gGarvXoD2ca46r_47V3O9Y8,70653
85
- mlrun/datastore/utils.py,sha256=YKK9q1C0LmveQFnbh1Dkb8LwA4WbOYFTsNxziC8d0E4,5227
86
- mlrun/datastore/v3io.py,sha256=oCAMpST6sKnjm5CaNsTrcwqk3bvUFzuKBvNFmUJpPfw,9252
87
- mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
88
- mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
89
- mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
90
- mlrun/db/base.py,sha256=exhNorDB-wxRq0yRUj-cXe5NUB1hR6fe7p9grvw3sWc,18505
91
- mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
92
- mlrun/db/httpdb.py,sha256=pljaKPnFAPX4zuDHl8KcQ8-nkR-KLrEW9bcXFws4LbE,156837
93
- mlrun/db/nopdb.py,sha256=7SnfMdusNvtxM0GmFIYLCBnkB-fSnvUtM2hQoF1q--I,14514
94
- mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
95
- mlrun/feature_store/api.py,sha256=bO5I_lkIPLv8j3AXYOAseSBI8RrsGwQ9m7isepuADkw,49480
96
- mlrun/feature_store/common.py,sha256=DKmoRk04NCS1gv7qZuEUa2-g8WsfR6IWjYctcrqKVlg,12853
97
- mlrun/feature_store/feature_set.py,sha256=iIEFt85Bpc4Q0jNqNXLptVZfULpFBHT5iLSzrZVYvbY,55295
98
- mlrun/feature_store/feature_vector.py,sha256=2sGbHAXdkm92-R29HXeFxwScvZM4M2gk-t9RteaHc4c,43560
99
- mlrun/feature_store/ingestion.py,sha256=GZkrke5_JJfA_PGOFc6ekbHKujHgMgqr6t4vop5n_bg,11210
100
- mlrun/feature_store/steps.py,sha256=bx9pjdiV2teE1wNrigriT2Xp4RQ_TwC46-yboLnpQw0,28882
101
- mlrun/feature_store/retrieval/__init__.py,sha256=bwA4copPpLQi8fyoUAYtOyrlw0-6f3-Knct8GbJSvRg,1282
102
- mlrun/feature_store/retrieval/base.py,sha256=XUX4D_0CrgppwdF-Ca4zVf43rjlg4sYPlaNlSaciP7Q,30004
103
- mlrun/feature_store/retrieval/conversion.py,sha256=y7A5yNAR9CRjsGz7XytJFRt3Ngf6XNRBZys94NzSVE4,11654
104
- mlrun/feature_store/retrieval/dask_merger.py,sha256=_AiEu0iRPi9nKt97EhlXqXCYfq4LgHsdpG7ZzpycReM,5491
105
- mlrun/feature_store/retrieval/job.py,sha256=NJ1tx1YdTGGe5AAmsHIBSIwJVnOe_qD5WQcKUHz5HsI,8261
106
- mlrun/feature_store/retrieval/local_merger.py,sha256=jkzTml_umIU-d6isKFNPtmLZ5K9upqbJLWUde2DdiL8,4429
107
- mlrun/feature_store/retrieval/spark_merger.py,sha256=cp_tm52VARBjmrH6yDrzj53MiTqCPy73i6MIT9jW8Zs,11165
108
- mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
109
- mlrun/frameworks/__init__.py,sha256=qRHe_nUfxpoLaSASAkIxcW6IyunMtxq5LXhjzZMO_1E,743
110
- mlrun/frameworks/parallel_coordinates.py,sha256=9sjRaRJXKAQASb1cGuoSoGmDenZlDtE9c6ut1iA2hwQ,11487
111
- mlrun/frameworks/_common/__init__.py,sha256=7afutDCDVp999gyWSWQZMJRKGuW3VP3MFil8cobRsyg,962
112
- mlrun/frameworks/_common/artifacts_library.py,sha256=f0rtDRQI3BYT2ZvXR4drSXZPYPJG19Sbej-_ru-i0II,8497
113
- mlrun/frameworks/_common/mlrun_interface.py,sha256=HbnE1jtApNjMog3fhd40Ayq6mos_vFUx5ICGEgFzNEA,20999
114
- mlrun/frameworks/_common/model_handler.py,sha256=OkC4CZP2F7XME58bO6a0mMvCf1qb8j95JM5Su4YXeeo,55312
115
- mlrun/frameworks/_common/plan.py,sha256=vUdA07TJ3wT3mQBugprgH7rWp438JR08WFN_c1-SXEU,3445
116
- mlrun/frameworks/_common/producer.py,sha256=OMRrV-auRIzdUbxp612QE7zTwkik1nBRvP4gBS7kvLo,5727
117
- mlrun/frameworks/_common/utils.py,sha256=NqoKbgj6UGPMBNhpK6mkKK4GOt5ko1lDqExFhQm9oEc,9131
118
- mlrun/frameworks/_dl_common/__init__.py,sha256=t4GWqonje9xSOPKTxFBjiOaK57l06ALmIXi4EJsG9LM,750
119
- mlrun/frameworks/_dl_common/model_handler.py,sha256=GUAcDklhAxxH9e9xZPnqjjUGQGeXIHvSdw_SH-r9ACs,1151
120
- mlrun/frameworks/_dl_common/utils.py,sha256=eVjqSHJh2OSKq7s1BMyCVrZ9VIrkAKaD1Y0wcTA-QXU,996
121
- mlrun/frameworks/_dl_common/loggers/__init__.py,sha256=0mh4CZKKjlwsE4Boaldb0TfSyaUltwQshGLBNpwQsYA,787
122
- mlrun/frameworks/_dl_common/loggers/logger.py,sha256=wDR60HUeS7CETcTjefO8JodjqefZby9fSeZCeAtzd3U,11477
123
- mlrun/frameworks/_dl_common/loggers/mlrun_logger.py,sha256=Sv63luck4EKGseIW1fgVO2KCaSez2p5taKu9Rqg1lPY,14748
124
- mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py,sha256=POfPbW_0pnOgZl-mwdnyGQF7Pb8MpGrVUBcOrm4hh8M,27936
125
- mlrun/frameworks/_ml_common/__init__.py,sha256=0Tf6dl15IuJ41aokIpDmcGbV_aczHniZ1m3VVXJFcjY,956
126
- mlrun/frameworks/_ml_common/artifacts_library.py,sha256=eHCrc43NjLYSOcixiW31SQ-SoxAvBBNf2W5Xb-4W48U,3145
127
- mlrun/frameworks/_ml_common/model_handler.py,sha256=3iDzjCooqKJutXAa4B2sgaUArV_f1KzWPJDn7k4l7Zs,16885
128
- mlrun/frameworks/_ml_common/pkl_model_server.py,sha256=NbaEveUcpNXsiJIlc7kdeYfjcVPsTs9blsygxtAXB0k,2717
129
- mlrun/frameworks/_ml_common/plan.py,sha256=_dEE620hjZ1Lgg-RidFH2NZN0OEM-6dJVm7AivB25og,4869
130
- mlrun/frameworks/_ml_common/producer.py,sha256=5sCFmr38zg_ZTZUvukVti0-z2VP6d-vBhQbIOEPwJf0,4061
131
- mlrun/frameworks/_ml_common/utils.py,sha256=_PGPTG4uqk4tYjtu-X-0qInMgYEiN_UxYDG4GsPplYo,10477
132
- mlrun/frameworks/_ml_common/loggers/__init__.py,sha256=AWw6H8xG4237XGzqNKIhO-wbzBRREHaY_AXF-NRLBNo,737
133
- mlrun/frameworks/_ml_common/loggers/logger.py,sha256=EpC4hQQYODG4Kc5LtcRWRfyzFMv9FYVZEXPIFloAB7A,5630
134
- mlrun/frameworks/_ml_common/loggers/mlrun_logger.py,sha256=75R42-ofzdLtfxjOZToIH09nYj93Xi_6YT3ru00XVqo,6406
135
- mlrun/frameworks/_ml_common/plans/__init__.py,sha256=v1RhdMoa2iEIKpnnFzysR3yqOVWZOTv8q8AmwpqAbUQ,922
136
- mlrun/frameworks/_ml_common/plans/calibration_curve_plan.py,sha256=KRLc6qRw7qb0aQvEUCvyQ1-NB3YjR5EmkhAgmBaPHd8,4894
137
- mlrun/frameworks/_ml_common/plans/confusion_matrix_plan.py,sha256=SXO1bGTu_gzHDnT-ScJEqhkmNL3tNu6nC8A9fxRNWt0,6030
138
- mlrun/frameworks/_ml_common/plans/dataset_plan.py,sha256=O5Uh42fWMBjDhfIx-PfgF5-rOw40b4OncXYb7Gysuqc,6611
139
- mlrun/frameworks/_ml_common/plans/feature_importance_plan.py,sha256=5tT_BZNfv4ngoeGS6PE_goqNttYw2LqUZEbanrXHIHE,5285
140
- mlrun/frameworks/_ml_common/plans/roc_curve_plan.py,sha256=WMSpXm6Z2w72eOA71bT9SO4nzZQhffw2ietH-Q2x9Qo,6963
141
- mlrun/frameworks/auto_mlrun/__init__.py,sha256=vvaF4qWRVcpeb2zlo0qZFAZ9Ddji4SNRx78auLwnPnI,706
142
- mlrun/frameworks/auto_mlrun/auto_mlrun.py,sha256=J5R36ySPyhOgnqYFCQzJAV59EWcXwuZYNjs0CpEp16s,24074
143
- mlrun/frameworks/huggingface/__init__.py,sha256=hXgVSsCXYPuAi7zHIY9I7VqgnPevkf9lf4zi2jHZ_f0,721
144
- mlrun/frameworks/huggingface/model_server.py,sha256=2Wn2BWG6i9RL_5djl0GqzrM8w1H9oFRqRW8c6z0gvRM,6043
145
- mlrun/frameworks/lgbm/__init__.py,sha256=7o0kY1jcVvXwxCUTJlaKdLFFAC1NO0hij-eqlquOrbI,15873
146
- mlrun/frameworks/lgbm/model_handler.py,sha256=Qr-S6AiCCtkmcbi62W1EPMcN8trVwruuYG6dNzU9c-k,13791
147
- mlrun/frameworks/lgbm/model_server.py,sha256=T3G2TIotlYu0gSX99jVCcKXLPUDVRbNClTCl-ezOopw,9156
148
- mlrun/frameworks/lgbm/utils.py,sha256=XK7COaWwsdQiXjc4IbEaF7ezLqvb2zroTdxytGqD7Dc,8265
149
- mlrun/frameworks/lgbm/callbacks/__init__.py,sha256=yFVBxi96SBgdBngSDsapzYo89yn_2seDJjEXO_0qfmM,857
150
- mlrun/frameworks/lgbm/callbacks/callback.py,sha256=BWwpTug8p8s0kYF4v1NxZthTrLioat_cwGkU2In0JbE,4081
151
- mlrun/frameworks/lgbm/callbacks/logging_callback.py,sha256=XNshjlPOGe63-yJ4RJgjDSG-sLW1OFiHMWAfZjuVrjE,5111
152
- mlrun/frameworks/lgbm/callbacks/mlrun_logging_callback.py,sha256=dzHYz8aKS6jWoN0z_mRxhUjY6Xs5FZLemo9BmjqbDT8,4061
153
- mlrun/frameworks/lgbm/mlrun_interfaces/__init__.py,sha256=5xZZJnYaRAQi53WzKnvYZgs8UgNbBvCnIkx7a2_dCi4,842
154
- mlrun/frameworks/lgbm/mlrun_interfaces/booster_mlrun_interface.py,sha256=xRqFtTGPKA0W-G66xJL6SDN3-648Pf0r3Jv-VzwMdrg,1531
155
- mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py,sha256=kiQFWZar_wyrPcrbwRcSxmHQ4gCPd7vvNnLklztUO7M,14221
156
- mlrun/frameworks/lgbm/mlrun_interfaces/model_mlrun_interface.py,sha256=xZbzQSgHZ6GhlpgaW543wE3c-GAw0BAinrfXa106AVo,1333
157
- mlrun/frameworks/onnx/__init__.py,sha256=BouzKRGKM4UJYTmDEJkPtEn1EslusX8Q2DMkjcbDmuc,791
158
- mlrun/frameworks/onnx/dataset.py,sha256=y2CPDbqdDMJrrqR04Jt9s003FunJfiNxHXmi6gWrDZI,6085
159
- mlrun/frameworks/onnx/mlrun_interface.py,sha256=nzDiqI6MCMqtjn2nkICevgPCyArBOZnkKuq64xESQr0,2399
160
- mlrun/frameworks/onnx/model_handler.py,sha256=XoBZGhADUxPpE2_NNdDsRQpBfTBgNBPiTlOaMzRDNhQ,6125
161
- mlrun/frameworks/onnx/model_server.py,sha256=Ab8CK4rIsABFDeSaOBROBCT0kuN-odh3VMGgbSFaIv8,7021
162
- mlrun/frameworks/pytorch/__init__.py,sha256=iCDG60CCP040qi0plyw14wfQcfRu8tbSIQMuLMw0YHc,22037
163
- mlrun/frameworks/pytorch/callbacks_handler.py,sha256=Uo7nq09WA8kIMRuAHrLVM3AEmlSrPqTEPX46UJ5L16U,27885
164
- mlrun/frameworks/pytorch/mlrun_interface.py,sha256=fkjG-LNcQcGSz_IPxiTH5l3HXCfzYYS9kMER4oOFIas,44621
165
- mlrun/frameworks/pytorch/model_handler.py,sha256=24dL9yLMwNlXog6ErhgXkUBQcGqJ6XAv63BCkiQM6EM,22290
166
- mlrun/frameworks/pytorch/model_server.py,sha256=LbBhHRaDmyU1UrdA0cS_o-h2bgFBs2gGMYeAmIjS1GE,10094
167
- mlrun/frameworks/pytorch/utils.py,sha256=kjkLNgzX9lLyEnZlUiBFfoKy_E1_OWj0g-sVYJT_kPQ,4515
168
- mlrun/frameworks/pytorch/callbacks/__init__.py,sha256=HcQaboA3T62ngrexy78Erc9q5AM0xJztj4Y_qgiqjpw,896
169
- mlrun/frameworks/pytorch/callbacks/callback.py,sha256=-zYI484ro5aybAGhkaxOGJe0w8M_fEVrDKXZtbR554c,11500
170
- mlrun/frameworks/pytorch/callbacks/logging_callback.py,sha256=a8Zd9zjSAxtQ0-BEanzVAyS3OQlzpiO8bSb8aN2H3zY,23126
171
- mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py,sha256=ZtD1r_EvMhOdi3ZAPkahPI5PxBFTPS125p7zuTBK0ow,9239
172
- mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py,sha256=Fd6o7wfV0dO0zEZZvEjxcxlVsLLdhMaU2O-Qw2LtWWY,26299
173
- mlrun/frameworks/sklearn/__init__.py,sha256=-PuQ4u4F7qryBv7irbcZS7kAHu0Pt_TQXiovx4syLnQ,10880
174
- mlrun/frameworks/sklearn/estimator.py,sha256=T0SltgAqy8NQy7rkdBEItLjMOMjyN2clRfQXhimNx-o,5840
175
- mlrun/frameworks/sklearn/metric.py,sha256=57UVkkKgUz9xDGWILWfLkBqrLk8WvhsKMgwEflYrM0s,7089
176
- mlrun/frameworks/sklearn/metrics_library.py,sha256=mGMo_s4d1JpTBVm_6pfqqCRlGbpbMrPsJjyGd0a8nqE,12203
177
- mlrun/frameworks/sklearn/mlrun_interface.py,sha256=y4RsG_RI4KfPrPADU4Lsr8PF95_VRXJiUX6ez-ljrv0,14054
178
- mlrun/frameworks/sklearn/model_handler.py,sha256=h2fZGq8y_0okTq9ygsRtVwE3IduNYcUTf8OJyNA2xww,4695
179
- mlrun/frameworks/sklearn/utils.py,sha256=Cg_pSxUMvKe8vBSLQor6JM8u9_ccKJg4Rk5EPDzTsVo,1209
180
- mlrun/frameworks/tf_keras/__init__.py,sha256=ZHK6lXdu-DY3yRsP4RPAXlkSbQiDdHHIr3ed6cO0Y7E,10447
181
- mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=L-tPpHmR9mEea6fqkNcbGLgrqdU-_sgCKZewXmD_7Bc,16610
182
- mlrun/frameworks/tf_keras/model_handler.py,sha256=2BFrYc7mKLKmEdgPAzBa8c_OnvSHqO9HXv7At3onrlo,28102
183
- mlrun/frameworks/tf_keras/model_server.py,sha256=64x0nWFGdEONrye5F1socl8KXhMiia_neAoMzXcPF8A,9529
184
- mlrun/frameworks/tf_keras/utils.py,sha256=_QWk1YmdRybbUB54vsQFE2_WMuAK0g7eR1ozVbMk0Go,4284
185
- mlrun/frameworks/tf_keras/callbacks/__init__.py,sha256=ufH33gxHF4erP9RCiM8O2YaXLG6btLIU98gCS_MGFjI,844
186
- mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=5GjK4cfq_5gmyl9L9nJSk8qTwaVH0eGkTnZinE5jjtQ,21855
187
- mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py,sha256=RuR4tuPNCAeUC_6z6MEdMc_OzejFs3lEMSxvO5k5mUo,8701
188
- mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py,sha256=bdhMM6ZaCQObhzGry8Sg-uVJ89P7U2nr6RnIQoNDy_Q,28419
189
- mlrun/frameworks/xgboost/__init__.py,sha256=opkcSxdS4y-FF6EO2KHHmtEqpACk06RU2y6ilnFK-Zc,10276
190
- mlrun/frameworks/xgboost/mlrun_interface.py,sha256=QcP_mTKBjxvRyWcNnju0BlvXBDOqNH9B1XBoxvEojAk,878
191
- mlrun/frameworks/xgboost/model_handler.py,sha256=e7IwdrmAaQ5Yy_fqOirN7oi-xEJgg_Gqh83Dw1w-U34,11530
192
- mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
193
- mlrun/launcher/__init__.py,sha256=pZgS6ZN126aJme4z5spCX-RmdchShxMnQeCPya8AsQI,577
194
- mlrun/launcher/base.py,sha256=EGnfzZd0HUkS92lcFJ0c6AxTqM_Chpa-WzdGMNsPZNk,16438
195
- mlrun/launcher/client.py,sha256=pnHqTSGl3FnwzOh7FicrGl0JOWZ3naKjay3MOkbIzLI,6054
196
- mlrun/launcher/factory.py,sha256=tk6foFWox7f_xaeTgkWTx9ht_5fv0XzLDR8ucdb8oTE,2344
197
- mlrun/launcher/local.py,sha256=s6waNbLAUC6qb0bpWWHCq2aveRGUSaEbAL7x1F1cgxQ,10915
198
- mlrun/launcher/remote.py,sha256=zxPaN6yElLiZ51ABSz8qfnulNXpDFuW_xN3vNy2xiDQ,7475
199
- mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
200
- mlrun/model_monitoring/api.py,sha256=GXQNIVjjoMK-lM2MRRdQxQPnyfNhzm3ZgyxgSTcF3OM,36626
201
- mlrun/model_monitoring/application.py,sha256=Omy8t8GKqtCachQ67iovM1e0DQ24WXCH7K9QfjJ42Gw,12282
202
- mlrun/model_monitoring/batch.py,sha256=s2QCB0NW6Aiwy8JXveOb5-ULcwr5cCp4zG1z1yCkkog,39836
203
- mlrun/model_monitoring/controller.py,sha256=9HIM0Ko2c4D-1d2q4--Bebuch8r6CMZHGrtef5jVZg8,28342
204
- mlrun/model_monitoring/controller_handler.py,sha256=J9Y9ppLsQaxyYRl21165Rr7QuI9EM-mk-5veAqs4Bi0,1336
205
- mlrun/model_monitoring/evidently_application.py,sha256=o9PsDsjyRfcbuC1X1gb2ww5nzWCsR_KheabtpxKZ5yY,4824
206
- mlrun/model_monitoring/features_drift_table.py,sha256=1HrL11_0zvl8LjKSjluEaE92WlCmGwoeqoBazxYog6M,24866
207
- mlrun/model_monitoring/helpers.py,sha256=Y7X-YjIaV2LN4Aiski50IEIP0dLCv6uTfzwzS5FVisE,7302
208
- mlrun/model_monitoring/model_endpoint.py,sha256=BBtxdY5ciormI_al4zshmIp0GN7hGhOCn-hLgpCXek0,3938
209
- mlrun/model_monitoring/prometheus.py,sha256=cUR4y73GutJB_pA_VCBDl9YtK4PcIJp2wj2rnLVmYi4,7578
210
- mlrun/model_monitoring/stream_processing.py,sha256=o2EmztZH3SZTawZwcvwCsaxGwNWmoZdw3YS1-YJJG0o,48113
211
- mlrun/model_monitoring/tracking_policy.py,sha256=9P0oRjFMfoqKY7Zv2rv7abKgnKkiepFJfimWx-LOm0M,5283
212
- mlrun/model_monitoring/writer.py,sha256=IWPzPenoAkfIxlvn0IdcdB19Nxqmg4mjbo3-RnYWw9A,8669
213
- mlrun/model_monitoring/applications/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
214
- mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=FeEKXYY7ORiBOKNUI45z8Z2xXzzuIKIai1WQnPMc5bU,8005
215
- mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
216
- mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
217
- mlrun/model_monitoring/stores/__init__.py,sha256=adU_G07jkD3JUT8__d0jAxs9nNomL7igKmd6uVM9L50,4525
218
- mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=SVHoaG4cfwntPfQMj6ZEzL5lGDYG67orCIAIb5-G9SE,22222
219
- mlrun/model_monitoring/stores/model_endpoint_store.py,sha256=stinaLq9W1iq2UJiTbPnk28Mvaeail7gwcJYHbrVjfE,5590
220
- mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=S5SA2P2BfLeg5lXCrEnMutghFffdmE59SCnQUiEjP7w,16139
221
- mlrun/model_monitoring/stores/models/__init__.py,sha256=5Djb73mfM9PxWE5EFUzrpLVLkuGaA34APibi_l-lu8k,1111
222
- mlrun/model_monitoring/stores/models/base.py,sha256=yC2_u8wTNoP9JHHewYQgWgarP400OgzlqYWpS-N1V4s,2801
223
- mlrun/model_monitoring/stores/models/mysql.py,sha256=9UYG5FuoVJQoAXP_xrCnbwmTVAm8ba6Bu54R9yg5BJs,1131
224
- mlrun/model_monitoring/stores/models/sqlite.py,sha256=9c5Tw4YuuRiD4GBoQdWGPUzm_6rC-u6zCg962g99lO0,765
225
- mlrun/package/__init__.py,sha256=uWILzN42bcq5vFRk6ptxEmn1I5uBWAnhaJr7e4H834w,7082
226
- mlrun/package/context_handler.py,sha256=Z8v7cXAZXa5l3Tgg6IiEVm74Qbp5cOxx30jvkAY3dwo,14589
227
- mlrun/package/errors.py,sha256=LKF8SSaRIdbkB7JQz6b9U4mZV42Ebnf6ZHu4wKuWqK4,1204
228
- mlrun/package/packager.py,sha256=xE7U1njB2RXhmiA0kCSmA4i5j84Dd7Bt-H4Fk5OcVLk,15064
229
- mlrun/package/packagers_manager.py,sha256=POjI_dH6jji8qIg_0mWlPX-jNKzVTC0VXrXuxEn_CoM,37160
230
- mlrun/package/packagers/__init__.py,sha256=rpxpuATMoxCMgHDaVamm0uwocy71e0CSXm85Q5X9tkU,769
231
- mlrun/package/packagers/default_packager.py,sha256=QaZyxm03fRTJy5OGBeyVvSpEqnWj3-hSQVbsCjlTpLM,26625
232
- mlrun/package/packagers/numpy_packagers.py,sha256=k7Vke41LOp1ExbXCKf4FyahBIDlBqSiYrGPMeH0yI7M,25602
233
- mlrun/package/packagers/pandas_packagers.py,sha256=KPOZj1yiHxV2b1iah4hlwoNQP4JKzt95Fe9Tn9OUPs8,35761
234
- mlrun/package/packagers/python_standard_library_packagers.py,sha256=p2IK18m_8sGbw8fPOuUVna-AXI8Nyjj2tz0pROKy3TQ,22322
235
- mlrun/package/utils/__init__.py,sha256=RXkhPH-zFLFFvOjMRJUVgVT33rusK5J4eTVLJ7bjN6k,1722
236
- mlrun/package/utils/_archiver.py,sha256=EK47v44yZOx2XeM4YGidgszsnrryz2J35f9M2A47bms,7951
237
- mlrun/package/utils/_formatter.py,sha256=Y6gsFwnY1ulKpnhMNrA3_7jbgVaFCTe69TUyWInFBF0,6373
238
- mlrun/package/utils/_pickler.py,sha256=aDFbafkOK7K_n0CFn3OBRGD1cDBx7-iGN88zd5ywbWw,10341
239
- mlrun/package/utils/_supported_format.py,sha256=O3LPTvZ6A-nGi6mB2kTzJp2DQ-cCOgnlvFCiIqetPTY,2357
240
- mlrun/package/utils/log_hint_utils.py,sha256=40X7oVzCiAIGsTTSON0iYNHj-_1Y4l4SDMThTA85If8,3696
241
- mlrun/package/utils/type_hint_utils.py,sha256=JYrek6vuN3z7e6MGUD3qBLDfQ03C4puZXNTpDSj-VrM,14695
242
- mlrun/platforms/__init__.py,sha256=ArWn_iZiEE6qz7hvY_1RqMkFnHGuKjP3k5xYKnfKA58,2352
243
- mlrun/platforms/iguazio.py,sha256=M89zXuCd1bbcIANSy4ec-9evXIs7nPRVo3D0YhKvEtE,19434
244
- mlrun/platforms/other.py,sha256=T1BibmEBNggM62YJ6oejRmcVv_1besfH5DDHhCaDkRg,11828
245
- mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
246
- mlrun/projects/operations.py,sha256=SiDHd7cqh9u23AVpETbkJE6WmOnB434zBrwM-StZLQY,18538
247
- mlrun/projects/pipelines.py,sha256=SMXBmIeuopwPpU0o2VFvaPXgbmaj-2WfCJryN6mZvZY,40124
248
- mlrun/projects/project.py,sha256=fRsf7dVj9F9jpVqp7bnQ7B5fNAFY-tAcpwgMWtkuq_w,155594
249
- mlrun/runtimes/__init__.py,sha256=vsoNA9ts_VPvGN9YPYKAjkxZe1RaZu22D5t-tiMyP-4,7034
250
- mlrun/runtimes/base.py,sha256=G0OtEBza6I_6AwQPA-k4XhNkbboxwf9g3Q56kowl1V4,36355
251
- mlrun/runtimes/constants.py,sha256=oP3OxdYCpbvadJ3zP1JGkqGBKaBheNkCnJISWha9x58,9513
252
- mlrun/runtimes/daskjob.py,sha256=xvN8ajs3-_voqxrfz6b3rh_idNw4ypRAkPRWGOnDMGA,19149
253
- mlrun/runtimes/funcdoc.py,sha256=FHwnLfFzoD6yGlsAJXAl_3VTtudgg4fTrsw_XqLOkC0,10508
254
- mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51PFr8Q4mg,4918
255
- mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
256
- mlrun/runtimes/kubejob.py,sha256=UfSm7hiPLAtM0TfIE5nbBdSvrbsKWCZfvKP-SZhGyAk,12500
257
- mlrun/runtimes/local.py,sha256=u9MhASzF7VRt_yT6_mZPze_hDvAaBxonPk_KafRG3Gg,21783
258
- mlrun/runtimes/pod.py,sha256=6s-ZLNudzoILXfpvb0_DPWujMrKXaza_yc2rfId8wss,58650
259
- mlrun/runtimes/remotesparkjob.py,sha256=ORkKmZRz_V3YiNE1NF7JIa_hI_LWbKEyI15Qb6R6g5I,7326
260
- mlrun/runtimes/utils.py,sha256=G4t29elE2PBT7WQZmrEOTIFAJUmeu6zXGEWwgz533vg,16004
261
- mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
262
- mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=sIqIg5DQAf4j0wCPA-G0GoxY6vacRddxCy5KDUZszek,2245
263
- mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=a9W7A8sboteQov0Z9uVcthEU3FGYFf2cdAsi-vdjH1w,12749
264
- mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=-kzz5b3YBit6sGWojjREW_aHHRTx72zzTbxWGxvUplE,8679
265
- mlrun/runtimes/mpijob/__init__.py,sha256=jZf2uPBv6IB18Jj-dGSQ9NU5_xxni7XS4dnDZGwESFE,1583
266
- mlrun/runtimes/mpijob/abstract.py,sha256=AqIb-nEKZaRO7x1GxJea6cXg_Tn3Dr4WiWZUz3ywCjU,9161
267
- mlrun/runtimes/mpijob/v1.py,sha256=_RUlFo_3NcFf7x-QpUNVm8f7qNbRDIdUmPf_ijrv54U,3206
268
- mlrun/runtimes/mpijob/v1alpha1.py,sha256=w_971wwL03hW_ksgHJXdjTdjhxCs9KJ0zNqHSQ9whIM,1034
269
- mlrun/runtimes/nuclio/__init__.py,sha256=5V9oUtyU058xH_n9CiAXWDZJuipTyG3I1RGhBTt7T_0,758
270
- mlrun/runtimes/nuclio/function.py,sha256=glnE8K-4rQVfQB2hCeLt8OtcpG2NFwKgEB8aRClcSJ4,47402
271
- mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
272
- mlrun/runtimes/nuclio/serving.py,sha256=hzkXKCVgU6uXLYfO3H15ZWJIQiSbcKY2M_WLybHW1hM,30363
273
- mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
274
- mlrun/runtimes/sparkjob/spark3job.py,sha256=yU-PxEI2pDJK5LHXTTcmrdjmO1Jwrj5Zyf8NwPDnZyA,41189
275
- mlrun/serving/__init__.py,sha256=_6HRAOuS2Ehjo3vwx5h1aI_-JppxEAsl4VfEERAbGFE,1078
276
- mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
277
- mlrun/serving/remote.py,sha256=jLFjMfgPx_PwJkpRHYbKrB9EQZcD4gZ-iczzHl1o0zs,18010
278
- mlrun/serving/routers.py,sha256=YN8k6eWWraqWOU3SqYFda7ky-oV_O0--zAuPEGwKdPI,54976
279
- mlrun/serving/server.py,sha256=42wWLtMb1AWeXtSXzSv0bKfQkxAQreqxs40Q0C_Bc-c,21161
280
- mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
281
- mlrun/serving/states.py,sha256=Jd08eDKSeh_PmR5HEwmCDYmCinOUUUacHwWW_URnjK0,56175
282
- mlrun/serving/utils.py,sha256=WO0n_YTO0YVPTjp_90zxRl4vey4flDgw5vaOHK5p_qY,3871
283
- mlrun/serving/v1_serving.py,sha256=by4myxlnwyZ0ijQ5fURilGCK1sUpdQL2Il1VR3Xqpxg,11805
284
- mlrun/serving/v2_serving.py,sha256=z1jTy0ObRFpV5nxMk-FGL2PoTQf-L01sYjfdA6_NqJc,23559
285
- mlrun/track/__init__.py,sha256=LWRUHJt8JyFW17FyNPOVyWd-NXTf1iptzsK9KFj5fuY,765
286
- mlrun/track/tracker.py,sha256=y-UdhC2nzM6r-yHCwvrfiHRr93xsr4JRsZTxDrTTRJo,3541
287
- mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
288
- mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
289
- mlrun/track/trackers/mlflow_tracker.py,sha256=HkNO9fENOCl1DgAU72FclowVnFfmyQlZeWlj4GklvMI,23258
290
- mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
291
- mlrun/utils/async_http.py,sha256=EeTPE_iCGIAHWna-ISzxrG76WnRpvjLew2N2gDw7sk8,11092
292
- mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
293
- mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
294
- mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
295
- mlrun/utils/db.py,sha256=KEa-vzicUhzIwo1wBXax2ZuXtYgf5to7wnsY3CYCiOQ,1713
296
- mlrun/utils/helpers.py,sha256=guQSdMvQT8KdS2_LHXe0C9pTEC56XtsWNMliSI0i5CQ,51162
297
- mlrun/utils/http.py,sha256=mQqnCsdsg9_q2WIbgoEKGQpMesslb0ErvbwYV-htarw,8700
298
- mlrun/utils/logger.py,sha256=MCj18mxDbDV86CV_R2l7_8PoAWZPU-GtmkSbWFkss4w,8135
299
- mlrun/utils/regex.py,sha256=Nd7xnDHU9PEOsse6rFwLNVgU4AaYCyuwMmQ9qgx2-Vw,4581
300
- mlrun/utils/retryer.py,sha256=BsST2dbGCHcY46wyGG3zWel_O9YquO0c57P3rcBxXU0,7522
301
- mlrun/utils/singleton.py,sha256=p1Y-X0mPSs_At092GS-pZCA8CTR62HOqPU07_ZH6-To,869
302
- mlrun/utils/v3io_clients.py,sha256=7eReciHBPLuLW6b5DIc8emnmrjh4D8hXPuqZDooR6HQ,1284
303
- mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
304
- mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
305
- mlrun/utils/notifications/notification_pusher.py,sha256=yub2_MDkDGKcnWGL9kulPsiBEB1fyA6VpZkxex_EHFI,21679
306
- mlrun/utils/notifications/notification/__init__.py,sha256=Kucv9d0x1MBk-6kxpe1-3He6eKCRinPeItcbiJsdDqg,2092
307
- mlrun/utils/notifications/notification/base.py,sha256=gnmhNl59K9h4BGVAk77gVHWw-3kphchRL3Cwm-R0Cp4,2279
308
- mlrun/utils/notifications/notification/console.py,sha256=leZrjwu3fFA1sCYsTxDXEGZ02SWTUk4GNzp7tT2uaCc,2532
309
- mlrun/utils/notifications/notification/git.py,sha256=5pJs3LFzuz2h3JO9vAGo3BL00-WZFdUcCaO2XaZh-1I,5221
310
- mlrun/utils/notifications/notification/ipython.py,sha256=d47s-fW4TgqOJZOSdmzBQvdh2oDHoFw-ENLgNcAQSWU,1955
311
- mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
312
- mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
313
- mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
314
- mlrun/utils/version/version.json,sha256=gHF4gBcfnBuVhOFzc6eGMjVwEIMbyScdRcHadPcGqMA,88
315
- mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
316
- mlrun-1.7.0rc4.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
317
- mlrun-1.7.0rc4.dist-info/METADATA,sha256=cK98mzAZ6SZp3vGbvlgSuC72lt064HWhDulfYclg04Y,18263
318
- mlrun-1.7.0rc4.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
319
- mlrun-1.7.0rc4.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
320
- mlrun-1.7.0rc4.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
321
- mlrun-1.7.0rc4.dist-info/RECORD,,