mlrun 1.6.0rc13__py3-none-any.whl → 1.6.0rc15__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mlrun might be problematic. Click here for more details.

Files changed (37) hide show
  1. mlrun/__main__.py +7 -2
  2. mlrun/artifacts/__init__.py +7 -1
  3. mlrun/artifacts/base.py +38 -3
  4. mlrun/artifacts/dataset.py +1 -1
  5. mlrun/artifacts/manager.py +5 -5
  6. mlrun/artifacts/model.py +1 -1
  7. mlrun/common/schemas/__init__.py +8 -1
  8. mlrun/common/schemas/artifact.py +36 -1
  9. mlrun/config.py +11 -0
  10. mlrun/datastore/azure_blob.py +37 -79
  11. mlrun/datastore/datastore_profile.py +2 -1
  12. mlrun/datastore/store_resources.py +2 -3
  13. mlrun/datastore/targets.py +3 -3
  14. mlrun/db/base.py +8 -5
  15. mlrun/db/httpdb.py +151 -71
  16. mlrun/db/nopdb.py +6 -3
  17. mlrun/feature_store/feature_vector.py +1 -1
  18. mlrun/feature_store/steps.py +2 -2
  19. mlrun/frameworks/_common/model_handler.py +1 -1
  20. mlrun/frameworks/lgbm/mlrun_interfaces/booster_mlrun_interface.py +0 -1
  21. mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py +1 -1
  22. mlrun/frameworks/sklearn/metric.py +0 -1
  23. mlrun/frameworks/tf_keras/mlrun_interface.py +1 -2
  24. mlrun/model_monitoring/application.py +20 -27
  25. mlrun/projects/pipelines.py +5 -5
  26. mlrun/projects/project.py +3 -3
  27. mlrun/runtimes/constants.py +10 -0
  28. mlrun/runtimes/local.py +2 -3
  29. mlrun/utils/db.py +6 -5
  30. mlrun/utils/helpers.py +53 -9
  31. mlrun/utils/version/version.json +2 -2
  32. {mlrun-1.6.0rc13.dist-info → mlrun-1.6.0rc15.dist-info}/METADATA +26 -30
  33. {mlrun-1.6.0rc13.dist-info → mlrun-1.6.0rc15.dist-info}/RECORD +37 -37
  34. {mlrun-1.6.0rc13.dist-info → mlrun-1.6.0rc15.dist-info}/LICENSE +0 -0
  35. {mlrun-1.6.0rc13.dist-info → mlrun-1.6.0rc15.dist-info}/WHEEL +0 -0
  36. {mlrun-1.6.0rc13.dist-info → mlrun-1.6.0rc15.dist-info}/entry_points.txt +0 -0
  37. {mlrun-1.6.0rc13.dist-info → mlrun-1.6.0rc15.dist-info}/top_level.txt +0 -0
@@ -45,11 +45,11 @@ def get_workflow_engine(engine_kind, local=False):
45
45
  if pipeline_context.is_run_local(local):
46
46
  if engine_kind == "kfp":
47
47
  logger.warning(
48
- "running kubeflow pipeline locally, note some ops may not run locally!"
48
+ "Running kubeflow pipeline locally, note some ops may not run locally!"
49
49
  )
50
50
  elif engine_kind == "remote":
51
51
  raise mlrun.errors.MLRunInvalidArgumentError(
52
- "cannot run a remote pipeline locally using `kind='remote'` and `local=True`. "
52
+ "Cannot run a remote pipeline locally using `kind='remote'` and `local=True`. "
53
53
  "in order to run a local pipeline remotely, please use `engine='remote:local'` instead"
54
54
  )
55
55
  return _LocalRunner
@@ -481,7 +481,7 @@ class _PipelineRunner(abc.ABC):
481
481
  @abc.abstractmethod
482
482
  def save(cls, project, workflow_spec: WorkflowSpec, target, artifact_path=None):
483
483
  raise NotImplementedError(
484
- f"save operation not supported in {cls.engine} pipeline engine"
484
+ f"Save operation not supported in {cls.engine} pipeline engine"
485
485
  )
486
486
 
487
487
  @classmethod
@@ -747,7 +747,7 @@ class _LocalRunner(_PipelineRunner):
747
747
  state = mlrun.run.RunStatuses.succeeded
748
748
  except Exception as exc:
749
749
  err = exc
750
- logger.exception("workflow run failed")
750
+ logger.exception("Workflow run failed")
751
751
  project.notifiers.push(
752
752
  f":x: Workflow {workflow_id} run failed!, error: {err_to_str(exc)}",
753
753
  mlrun.common.schemas.NotificationSeverity.ERROR,
@@ -879,7 +879,7 @@ class _RemoteRunner(_PipelineRunner):
879
879
 
880
880
  except Exception as exc:
881
881
  err = exc
882
- logger.exception("workflow run failed")
882
+ logger.exception("Workflow run failed")
883
883
  project.notifiers.push(
884
884
  f":x: Workflow {workflow_name} run failed!, error: {err_to_str(exc)}",
885
885
  mlrun.common.schemas.NotificationSeverity.ERROR,
mlrun/projects/project.py CHANGED
@@ -2648,12 +2648,12 @@ class MlrunProject(ModelObj):
2648
2648
  )
2649
2649
  workflow_spec.clear_tmp()
2650
2650
  if (timeout or watch) and not workflow_spec.schedule:
2651
+ status_engine = run._engine
2651
2652
  # run's engine gets replaced with inner engine if engine is remote,
2652
2653
  # so in that case we need to get the status from the remote engine manually
2653
- if engine == "remote":
2654
+ # TODO: support watch for remote:local
2655
+ if engine == "remote" and status_engine.engine != "local":
2654
2656
  status_engine = _RemoteRunner
2655
- else:
2656
- status_engine = run._engine
2657
2657
 
2658
2658
  status_engine.get_run_status(project=self, run=run, timeout=timeout)
2659
2659
  return run
@@ -134,6 +134,7 @@ class RunStates(object):
134
134
  pending = "pending"
135
135
  unknown = "unknown"
136
136
  aborted = "aborted"
137
+ aborting = "aborting"
137
138
 
138
139
  @staticmethod
139
140
  def all():
@@ -145,6 +146,7 @@ class RunStates(object):
145
146
  RunStates.pending,
146
147
  RunStates.unknown,
147
148
  RunStates.aborted,
149
+ RunStates.aborting,
148
150
  ]
149
151
 
150
152
  @staticmethod
@@ -159,6 +161,14 @@ class RunStates(object):
159
161
  def non_terminal_states():
160
162
  return list(set(RunStates.all()) - set(RunStates.terminal_states()))
161
163
 
164
+ @staticmethod
165
+ def not_allowed_for_deletion_states():
166
+ return [
167
+ RunStates.running,
168
+ RunStates.pending,
169
+ # TODO: add aborting state once we have it
170
+ ]
171
+
162
172
 
163
173
  class SparkApplicationStates:
164
174
  """
mlrun/runtimes/local.py CHANGED
@@ -516,9 +516,8 @@ def get_func_arg(handler, runobj: RunObject, context: MLClientCtx, is_nuclio=Fal
516
516
  input_obj = context.get_input(input_key, inputs[input_key])
517
517
  # If there is no type hint annotation but there is a default value and its type is string, point the data
518
518
  # item to local downloaded file path (`local()` returns the downloaded temp path string):
519
- if (
520
- args[input_key].annotation is inspect.Parameter.empty
521
- and type(args[input_key].default) is str
519
+ if args[input_key].annotation is inspect.Parameter.empty and isinstance(
520
+ args[input_key].default, str
522
521
  ):
523
522
  return input_obj.local()
524
523
  else:
mlrun/utils/db.py CHANGED
@@ -26,11 +26,12 @@ class BaseModel:
26
26
  exclude = exclude or []
27
27
  mapper = class_mapper(self.__class__)
28
28
  columns = [column.key for column in mapper.columns if column.key not in exclude]
29
- get_key_value = (
30
- lambda c: (c, getattr(self, c).isoformat())
31
- if isinstance(getattr(self, c), datetime)
32
- else (c, getattr(self, c))
33
- )
29
+
30
+ def get_key_value(c):
31
+ if isinstance(getattr(self, c), datetime):
32
+ return c, getattr(self, c).isoformat()
33
+ return c, getattr(self, c)
34
+
34
35
  return dict(map(get_key_value, columns))
35
36
 
36
37
 
mlrun/utils/helpers.py CHANGED
@@ -125,7 +125,7 @@ def get_artifact_target(item: dict, project=None):
125
125
  if kind in ["dataset", "model", "artifact"] and db_key:
126
126
  target = f"{DB_SCHEMA}://{StorePrefix.Artifact}/{project_str}/{db_key}"
127
127
  if tree:
128
- target = f"{target}:{tree}"
128
+ target = f"{target}@{tree}"
129
129
  return target
130
130
 
131
131
  return (
@@ -359,7 +359,7 @@ def verify_dict_items_type(
359
359
  expected_values_types: list = None,
360
360
  ):
361
361
  if dictionary:
362
- if type(dictionary) != dict:
362
+ if not isinstance(dictionary, dict):
363
363
  raise mlrun.errors.MLRunInvalidArgumentTypeError(
364
364
  f"'{name}' expected to be of type dict, got type: {type(dictionary)}"
365
365
  )
@@ -522,14 +522,14 @@ def match_labels(labels, conditions):
522
522
 
523
523
  for condition in conditions:
524
524
  if "~=" in condition:
525
- l, val = splitter("~=", condition)
526
- match = match and val in l
525
+ left, val = splitter("~=", condition)
526
+ match = match and val in left
527
527
  elif "!=" in condition:
528
- l, val = splitter("!=", condition)
529
- match = match and val != l
528
+ left, val = splitter("!=", condition)
529
+ match = match and val != left
530
530
  elif "=" in condition:
531
- l, val = splitter("=", condition)
532
- match = match and val == l
531
+ left, val = splitter("=", condition)
532
+ match = match and val == left
533
533
  else:
534
534
  match = match and (condition.strip() in labels)
535
535
  return match
@@ -695,12 +695,14 @@ def generate_object_uri(project, name, tag=None, hash_key=None):
695
695
  return uri
696
696
 
697
697
 
698
- def generate_artifact_uri(project, key, tag=None, iter=None):
698
+ def generate_artifact_uri(project, key, tag=None, iter=None, tree=None):
699
699
  artifact_uri = f"{project}/{key}"
700
700
  if iter is not None:
701
701
  artifact_uri = f"{artifact_uri}#{iter}"
702
702
  if tag is not None:
703
703
  artifact_uri = f"{artifact_uri}:{tag}"
704
+ if tree is not None:
705
+ artifact_uri = f"{artifact_uri}@{tree}"
704
706
  return artifact_uri
705
707
 
706
708
 
@@ -930,6 +932,7 @@ def fill_object_hash(object_dict, uid_property_name, tag=""):
930
932
  object_dict["status"] = None
931
933
  object_dict["metadata"]["updated"] = None
932
934
  object_created_timestamp = object_dict["metadata"].pop("created", None)
935
+
933
936
  # Note the usage of default=str here, which means everything not JSON serializable (for example datetime) will be
934
937
  # converted to string when dumping to JSON. This is not safe for de-serializing (since it won't know we
935
938
  # originated from a datetime, for example), but since this is a one-way dump only for hash calculation,
@@ -938,6 +941,8 @@ def fill_object_hash(object_dict, uid_property_name, tag=""):
938
941
  h = hashlib.sha1()
939
942
  h.update(data)
940
943
  uid = h.hexdigest()
944
+
945
+ # restore original values
941
946
  object_dict["metadata"]["tag"] = tag
942
947
  object_dict["metadata"][uid_property_name] = uid
943
948
  object_dict["status"] = status
@@ -946,6 +951,36 @@ def fill_object_hash(object_dict, uid_property_name, tag=""):
946
951
  return uid
947
952
 
948
953
 
954
+ def fill_artifact_object_hash(object_dict, iteration=None, producer_id=None):
955
+
956
+ # remove artifact related fields before calculating hash
957
+ object_dict.setdefault("metadata", {})
958
+ labels = object_dict["metadata"].pop("labels", None)
959
+ object_updated_timestamp = object_dict["metadata"].pop("updated", None)
960
+
961
+ # if the artifact is first created, it will not have a db_key, so we need to pop it from the spec
962
+ # so further updates of the artifacts will have the same hash
963
+ db_key = object_dict.get("spec", {}).pop("db_key", None)
964
+
965
+ # make sure we have a key, producer_id and iteration, as they determine the artifact uniqueness
966
+ if not object_dict["metadata"].get("key"):
967
+ raise ValueError("artifact key is not set")
968
+ object_dict["metadata"]["iter"] = iteration or object_dict["metadata"].get("iter")
969
+ object_dict["metadata"]["tree"] = object_dict["metadata"].get("tree") or producer_id
970
+
971
+ # calc hash and fill
972
+ uid = fill_object_hash(object_dict, "uid")
973
+
974
+ # restore original values
975
+ if labels:
976
+ object_dict["metadata"]["labels"] = labels
977
+ if object_updated_timestamp:
978
+ object_dict["metadata"]["updated"] = object_updated_timestamp
979
+ if db_key:
980
+ object_dict.setdefault("spec", {})["db_key"] = db_key
981
+ return uid
982
+
983
+
949
984
  def fill_function_hash(function_dict, tag=""):
950
985
  return fill_object_hash(function_dict, "hash", tag)
951
986
 
@@ -1336,6 +1371,15 @@ def is_legacy_artifact(artifact):
1336
1371
  return not hasattr(artifact, "metadata")
1337
1372
 
1338
1373
 
1374
+ def is_link_artifact(artifact):
1375
+ if isinstance(artifact, dict):
1376
+ return (
1377
+ artifact.get("kind") == mlrun.common.schemas.ArtifactCategories.link.value
1378
+ )
1379
+ else:
1380
+ return artifact.kind == mlrun.common.schemas.ArtifactCategories.link.value
1381
+
1382
+
1339
1383
  def format_run(run: dict, with_project=False) -> dict:
1340
1384
  fields = [
1341
1385
  "id",
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "abca3cad961e987ec75d8ecfcdf0b6856dc9b7d1",
3
- "version": "1.6.0-rc13"
2
+ "git_commit": "42e6b3f87d0da8af39127d19a4d7435ea7009322",
3
+ "version": "1.6.0-rc15"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.6.0rc13
3
+ Version: 1.6.0rc15
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -42,9 +42,9 @@ Requires-Dist: mergedeep ~=1.3
42
42
  Requires-Dist: v3io-frames ~=0.10.7
43
43
  Requires-Dist: semver ~=3.0
44
44
  Requires-Dist: dependency-injector ~=4.41
45
- Requires-Dist: fsspec <=2023.9.1,>=2023.9
45
+ Requires-Dist: fsspec ==2023.9.2
46
46
  Requires-Dist: v3iofs ~=0.1.17
47
- Requires-Dist: storey ~=1.6.10
47
+ Requires-Dist: storey ~=1.6.11
48
48
  Requires-Dist: inflection ~=0.5.0
49
49
  Requires-Dist: python-dotenv ~=0.17.0
50
50
  Requires-Dist: setuptools ~=68.2
@@ -59,16 +59,15 @@ Requires-Dist: avro ~=1.11 ; extra == 'all'
59
59
  Requires-Dist: azure-core ~=1.24 ; extra == 'all'
60
60
  Requires-Dist: azure-identity ~=1.5 ; extra == 'all'
61
61
  Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'all'
62
- Requires-Dist: azure-storage-blob !=12.18.0,>=12.13 ; extra == 'all'
63
62
  Requires-Dist: bokeh >=2.4.2,~=2.4 ; extra == 'all'
64
63
  Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 'all'
65
64
  Requires-Dist: dask ~=2023.9.0 ; extra == 'all'
66
- Requires-Dist: databricks-sdk ~=0.3.0 ; extra == 'all'
65
+ Requires-Dist: databricks-sdk ~=0.15.0 ; extra == 'all'
67
66
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'all'
68
- Requires-Dist: gcsfs ==2023.9.1 ; extra == 'all'
69
- Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ~=3.2 ; extra == 'all'
70
- Requires-Dist: google-cloud-storage ~=1.20 ; extra == 'all'
71
- Requires-Dist: google-cloud ~=0.34 ; extra == 'all'
67
+ Requires-Dist: gcsfs ==2023.9.2 ; extra == 'all'
68
+ Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'all'
69
+ Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'all'
70
+ Requires-Dist: google-cloud ==0.34 ; extra == 'all'
72
71
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'all'
73
72
  Requires-Dist: kafka-python ~=2.0 ; extra == 'all'
74
73
  Requires-Dist: mlflow ~=2.8 ; extra == 'all'
@@ -76,7 +75,7 @@ Requires-Dist: msrest ~=0.6.21 ; extra == 'all'
76
75
  Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'all'
77
76
  Requires-Dist: pyopenssl >=23 ; extra == 'all'
78
77
  Requires-Dist: redis ~=4.3 ; extra == 'all'
79
- Requires-Dist: s3fs ==2023.9.1 ; extra == 'all'
78
+ Requires-Dist: s3fs ==2023.9.2 ; extra == 'all'
80
79
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'all'
81
80
  Provides-Extra: api
82
81
  Requires-Dist: uvicorn ~=0.23.2 ; extra == 'api'
@@ -94,7 +93,6 @@ Requires-Dist: timelength ~=1.1 ; extra == 'api'
94
93
  Provides-Extra: azure-blob-storage
95
94
  Requires-Dist: msrest ~=0.6.21 ; extra == 'azure-blob-storage'
96
95
  Requires-Dist: azure-core ~=1.24 ; extra == 'azure-blob-storage'
97
- Requires-Dist: azure-storage-blob !=12.18.0,>=12.13 ; extra == 'azure-blob-storage'
98
96
  Requires-Dist: adlfs ==2023.9.0 ; extra == 'azure-blob-storage'
99
97
  Requires-Dist: pyopenssl >=23 ; extra == 'azure-blob-storage'
100
98
  Provides-Extra: azure-key-vault
@@ -110,13 +108,12 @@ Requires-Dist: avro ~=1.11 ; extra == 'complete'
110
108
  Requires-Dist: azure-core ~=1.24 ; extra == 'complete'
111
109
  Requires-Dist: azure-identity ~=1.5 ; extra == 'complete'
112
110
  Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete'
113
- Requires-Dist: azure-storage-blob !=12.18.0,>=12.13 ; extra == 'complete'
114
111
  Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 'complete'
115
112
  Requires-Dist: dask ~=2023.9.0 ; extra == 'complete'
116
- Requires-Dist: databricks-sdk ~=0.3.0 ; extra == 'complete'
113
+ Requires-Dist: databricks-sdk ~=0.15.0 ; extra == 'complete'
117
114
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete'
118
- Requires-Dist: gcsfs ==2023.9.1 ; extra == 'complete'
119
- Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ~=3.2 ; extra == 'complete'
115
+ Requires-Dist: gcsfs ==2023.9.2 ; extra == 'complete'
116
+ Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete'
120
117
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete'
121
118
  Requires-Dist: kafka-python ~=2.0 ; extra == 'complete'
122
119
  Requires-Dist: mlflow ~=2.8 ; extra == 'complete'
@@ -124,7 +121,7 @@ Requires-Dist: msrest ~=0.6.21 ; extra == 'complete'
124
121
  Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete'
125
122
  Requires-Dist: pyopenssl >=23 ; extra == 'complete'
126
123
  Requires-Dist: redis ~=4.3 ; extra == 'complete'
127
- Requires-Dist: s3fs ==2023.9.1 ; extra == 'complete'
124
+ Requires-Dist: s3fs ==2023.9.2 ; extra == 'complete'
128
125
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete'
129
126
  Provides-Extra: complete-api
130
127
  Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete-api'
@@ -135,15 +132,14 @@ Requires-Dist: avro ~=1.11 ; extra == 'complete-api'
135
132
  Requires-Dist: azure-core ~=1.24 ; extra == 'complete-api'
136
133
  Requires-Dist: azure-identity ~=1.5 ; extra == 'complete-api'
137
134
  Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete-api'
138
- Requires-Dist: azure-storage-blob !=12.18.0,>=12.13 ; extra == 'complete-api'
139
135
  Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 'complete-api'
140
136
  Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'complete-api'
141
137
  Requires-Dist: dask ~=2023.9.0 ; extra == 'complete-api'
142
- Requires-Dist: databricks-sdk ~=0.3.0 ; extra == 'complete-api'
138
+ Requires-Dist: databricks-sdk ~=0.15.0 ; extra == 'complete-api'
143
139
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete-api'
144
140
  Requires-Dist: fastapi ~=0.103.2 ; extra == 'complete-api'
145
- Requires-Dist: gcsfs ==2023.9.1 ; extra == 'complete-api'
146
- Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ~=3.2 ; extra == 'complete-api'
141
+ Requires-Dist: gcsfs ==2023.9.2 ; extra == 'complete-api'
142
+ Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete-api'
147
143
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete-api'
148
144
  Requires-Dist: humanfriendly ~=9.2 ; extra == 'complete-api'
149
145
  Requires-Dist: igz-mgmt ~=0.0.10 ; extra == 'complete-api'
@@ -155,7 +151,7 @@ Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete-api'
155
151
  Requires-Dist: pymysql ~=1.0 ; extra == 'complete-api'
156
152
  Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
157
153
  Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
158
- Requires-Dist: s3fs ==2023.9.1 ; extra == 'complete-api'
154
+ Requires-Dist: s3fs ==2023.9.2 ; extra == 'complete-api'
159
155
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete-api'
160
156
  Requires-Dist: sqlite3-to-mysql ~=1.4 ; extra == 'complete-api'
161
157
  Requires-Dist: timelength ~=1.1 ; extra == 'complete-api'
@@ -164,15 +160,15 @@ Provides-Extra: dask
164
160
  Requires-Dist: dask ~=2023.9.0 ; extra == 'dask'
165
161
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'dask'
166
162
  Provides-Extra: databricks-sdk
167
- Requires-Dist: databricks-sdk ~=0.3.0 ; extra == 'databricks-sdk'
163
+ Requires-Dist: databricks-sdk ~=0.15.0 ; extra == 'databricks-sdk'
168
164
  Provides-Extra: google-cloud
169
- Requires-Dist: google-cloud-storage ~=1.20 ; extra == 'google-cloud'
170
- Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ~=3.2 ; extra == 'google-cloud'
171
- Requires-Dist: google-cloud ~=0.34 ; extra == 'google-cloud'
165
+ Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'google-cloud'
166
+ Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'google-cloud'
167
+ Requires-Dist: google-cloud ==0.34 ; extra == 'google-cloud'
172
168
  Provides-Extra: google-cloud-bigquery
173
- Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ~=3.2 ; extra == 'google-cloud-bigquery'
169
+ Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'google-cloud-bigquery'
174
170
  Provides-Extra: google-cloud-storage
175
- Requires-Dist: gcsfs ==2023.9.1 ; extra == 'google-cloud-storage'
171
+ Requires-Dist: gcsfs ==2023.9.2 ; extra == 'google-cloud-storage'
176
172
  Provides-Extra: graphviz
177
173
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'graphviz'
178
174
  Provides-Extra: kafka
@@ -187,7 +183,7 @@ Requires-Dist: redis ~=4.3 ; extra == 'redis'
187
183
  Provides-Extra: s3
188
184
  Requires-Dist: boto3 <1.29.0,>=1.28.0 ; extra == 's3'
189
185
  Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 's3'
190
- Requires-Dist: s3fs ==2023.9.1 ; extra == 's3'
186
+ Requires-Dist: s3fs ==2023.9.2 ; extra == 's3'
191
187
  Provides-Extra: sqlalchemy
192
188
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'sqlalchemy'
193
189
 
@@ -230,10 +226,10 @@ See: **Docs:** [Projects and Automation](https://docs.mlrun.org/en/latest/projec
230
226
 
231
227
  ### Ingest and process data
232
228
 
233
- MLRun provides abstract interfaces to various offline and online [**data sources**](https://docs.mlrun.org/en/latest/concepts/data-feature-store.html), supports batch or realtime data processing at scale, data lineage and versioning, structured and unstructured data, and more.
229
+ MLRun provides abstract interfaces to various offline and online [**data sources**](./store/datastore.html), supports batch or realtime data processing at scale, data lineage and versioning, structured and unstructured data, and more.
234
230
  In addition, the MLRun [**Feature Store**](https://docs.mlrun.org/en/latest/feature-store/feature-store.html) automates the collection, transformation, storage, catalog, serving, and monitoring of data features across the ML lifecycle and enables feature reuse and sharing.
235
231
 
236
- See: **Docs:** [Ingest and process data](https://docs.mlrun.org/en/latest/data-prep/index.html), [Feature Store](https://docs.mlrun.org/en/latest/feature-store/feature-store.html), [Data & Artifacts](https://docs.mlrun.org/en/latest/concepts/data-feature-store.html); **Tutorials:** [Quick start](https://docs.mlrun.org/en/latest/tutorials/01-mlrun-basics.html), [Feature Store](https://docs.mlrun.org/en/latest/feature-store/basic-demo.html).
232
+ See: **Docs:** [Ingest and process data](https://docs.mlrun.org/en/latest/data-prep/index.html), [Feature Store](https://docs.mlrun.org/en/latest/feature-store/feature-store.html), [Data & Artifacts](https://docs.mlrun.org/en/latest/concepts/data.html); **Tutorials:** [Quick start](https://docs.mlrun.org/en/latest/tutorials/01-mlrun-basics.html), [Feature Store](https://docs.mlrun.org/en/latest/feature-store/basic-demo.html).
237
233
 
238
234
  ### Develop and train models
239
235
 
@@ -1,6 +1,6 @@
1
1
  mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
2
- mlrun/__main__.py,sha256=QdVcqPRIzc1_em8nXiO7PLkGZYvzqyQKSNoaN9Czk6Y,49066
3
- mlrun/config.py,sha256=aXeKVEIGbsPnwIP_CVWEFCuN4S4jWr9IYRbFTvf2ZtY,60736
2
+ mlrun/__main__.py,sha256=zd-o0SkFH69HhIWKhqXnNURsrtpIcOJYYq50JfAxW7k,49234
3
+ mlrun/config.py,sha256=TfnYyO1xqP9ZaDTosBneiVE2vkE3YB2Srth8OS7OYtI,61297
4
4
  mlrun/errors.py,sha256=pYZZtJsMqkFktG6T8iTyfyESrrhOLfKvB3U_jUDHMo8,6780
5
5
  mlrun/execution.py,sha256=dWus2hBaT7qj5CwsVlmNSjFYopcWW1q9ceU3AoDNW80,39708
6
6
  mlrun/features.py,sha256=UQQ2uh5Xh9XsMGiYBqh3bKgDhOHANjv1gQgWyId9qQE,15624
@@ -11,11 +11,11 @@ mlrun/model.py,sha256=L_q9wiwgeycjcFyEftzLkE1yAttIudh-ytQUnlNqRvc,63183
11
11
  mlrun/render.py,sha256=a_s-kzQ35bJg7e7cBxk3MCnoIK4qvDS2dGO8RzHgI1c,13016
12
12
  mlrun/run.py,sha256=H3Kp-zQ36OLbApGKXT6HX96T3iDZ6YR235p8WLvT-4I,42418
13
13
  mlrun/secrets.py,sha256=hr2Ia9kLkoMM3KoxijXqO6AIJOUrrLxvz4Q7Xk39d4Y,7783
14
- mlrun/artifacts/__init__.py,sha256=gLuGdv-6oSl_ePf3LT7hiaNNGTFSbI6X4_FJiOE8Y1Q,1123
15
- mlrun/artifacts/base.py,sha256=Nk9pIj_Yh52HtjSZMdm4yEu6KAOgR-IfxOJo501VILc,31071
16
- mlrun/artifacts/dataset.py,sha256=ChumBc1srtpLDlYLDZvNU0yrIF6aHk3t7VaArjMGLJo,20615
17
- mlrun/artifacts/manager.py,sha256=rwObKPDAhltpT6k9rmpB8gacBgyIU1lI2bEQaeFcc-s,12827
18
- mlrun/artifacts/model.py,sha256=vl_GuXGRRUpAtKRvMIigVSEoOUUthJ9oZk0FvtLa-yA,24590
14
+ mlrun/artifacts/__init__.py,sha256=LxEWcMYPawJYvNOl6H2_UvrxdLTNYfKeZcMEKFZnGgA,1187
15
+ mlrun/artifacts/base.py,sha256=QSiI_cz6_L6EipIhg0ALsik3fdNE_lTfLhp_GmjUBh0,32203
16
+ mlrun/artifacts/dataset.py,sha256=vgTms0PREQKhpRY10R0R4A1cUZjjPaq6hQklYu2uAV8,20620
17
+ mlrun/artifacts/manager.py,sha256=j6vLM8aQvz0JQ41O-GqAdxg-LZXWr3Zf4KEvGbV9gRA,12853
18
+ mlrun/artifacts/model.py,sha256=1Lb41pUFfqkrgcqFNUEzwgj0PV9Kl_k4Mr719lzMgOQ,24595
19
19
  mlrun/artifacts/plots.py,sha256=bbqRjPau72UVonIzf3jFmm9K56Nd-XWhAufjHKOdpK8,15717
20
20
  mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
21
21
  mlrun/common/constants.py,sha256=NpBgZV-ReSvPeMKPFp3DKzNWgiVebjGZrZ19pG_ZfRE,660
@@ -26,8 +26,8 @@ mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,5
26
26
  mlrun/common/db/sql_session.py,sha256=iWR8DWyziN2DSDiBgc5Wj3O7iVWDwfd0nJklAKwjoRM,2542
27
27
  mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
28
28
  mlrun/common/model_monitoring/helpers.py,sha256=FTp6tDHhi7oqbgAz-cu7DpcSKSxOtTgJY2v2B_tnkf8,3955
29
- mlrun/common/schemas/__init__.py,sha256=CyhrKVCvj8M-c5gpu-YJ_a4fco7Y5bB6jGumkubq6GY,4590
30
- mlrun/common/schemas/artifact.py,sha256=vbXaY8eHxKt7YHKksD_PYEC-47eguxVb6wRAtMAW7Bk,1923
29
+ mlrun/common/schemas/__init__.py,sha256=JNSJLFrfPiLdAlkZiN_QcTsi4uw8cM2OdqycsCjmmPo,4661
30
+ mlrun/common/schemas/artifact.py,sha256=DaJYX54tq74nu2nBiAzRmGBkBYgtZiT-IKjQI11i8F4,2824
31
31
  mlrun/common/schemas/auth.py,sha256=hojz3QQfLm55_rv-7J_vHzeuvmVvWVBiXubU2vKat6E,6007
32
32
  mlrun/common/schemas/background_task.py,sha256=xc-GY3PjRzYonojB9T0XGDkLbV6wr3Hwf-9TZ2POuRY,1585
33
33
  mlrun/common/schemas/client_spec.py,sha256=_fuzFghpvI49Aun76T_-Cqpx196ooDxnJbjE_8GlXuw,2948
@@ -63,10 +63,10 @@ mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,613
63
63
  mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,9457
64
64
  mlrun/data_types/to_pandas.py,sha256=Ui250Pbpkj0-DB4wNFecJfsmOwl6lhqcQR5eHMsOVyk,9995
65
65
  mlrun/datastore/__init__.py,sha256=bsRzu39UOocQAAl_nOKCbhxrZhWUEXrAc8WV3zs0VyI,4118
66
- mlrun/datastore/azure_blob.py,sha256=VcPuN1xih512Lu8_RnlzXA0E9pj-cX665kwuV_c7Nfc,7251
66
+ mlrun/datastore/azure_blob.py,sha256=CAXIx8Hq-JJl9I6vR5XW5WHG4ahthpqYoL5o3ZJUktg,5393
67
67
  mlrun/datastore/base.py,sha256=vXPLfnQCF2GflsBa_OrlrBH4M9f38I5e14CIav8LEjw,24961
68
68
  mlrun/datastore/datastore.py,sha256=RsgViisGlQvwPxtnHTCSNKuqujaz6dJ6z643S2ooAZE,9234
69
- mlrun/datastore/datastore_profile.py,sha256=dYZHPxlXgR8nSVY1NYxZZPMrPzZjdQZkHrP9-sZ7rbo,14274
69
+ mlrun/datastore/datastore_profile.py,sha256=IbmYr94mai7ABlz0_DUoux_0H4dgjxjLzTfrjK9pHO8,14319
70
70
  mlrun/datastore/dbfs_store.py,sha256=jXfTDXihloRy9EjaX_1_Lbh3P-4aagtESqCORvIcADs,6643
71
71
  mlrun/datastore/filestore.py,sha256=o4ex777XyxyV1CQBP7M2JyyssCVVAc4H3JrvNC9eryM,3791
72
72
  mlrun/datastore/google_cloud_storage.py,sha256=8yBIJNo6b_MrMfvXpzLF93LZ1sKr87DxLZFVRTA6Eq4,6132
@@ -76,24 +76,24 @@ mlrun/datastore/redis.py,sha256=UaQyMkNbmXZ0B8h-d_u6G88L2hfiEX6o9hBx60Tspj8,5515
76
76
  mlrun/datastore/s3.py,sha256=9X5_uwzPwklDHUNZ3G4LkX1law4Z-weTDCTYz8PBplk,8064
77
77
  mlrun/datastore/sources.py,sha256=3P2Q7CUP9e76BqYLv5LlVGLCp6tUsys4fs-txgh5ac8,39493
78
78
  mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
79
- mlrun/datastore/store_resources.py,sha256=SUY9oJieq3r8PEq8G661XxmXem_e-CxDoy2AJ7dpXBk,6906
80
- mlrun/datastore/targets.py,sha256=-sI5DTpPCuXTsayoyxu700iabaKFyg7u9UNubKPXxjw,69817
79
+ mlrun/datastore/store_resources.py,sha256=NXoY9G_HGzNkrQsivLJ3ojAE7rPJDDOYo9nqNZljyTk,6910
80
+ mlrun/datastore/targets.py,sha256=h7lPKdEZhV7MQyhVPqaL-JHS3lG1JPNK0SNBJab0eOE,69825
81
81
  mlrun/datastore/utils.py,sha256=vuuNFM1ystkvpOlvI8QJL5i8ZPKxvSO0wPv8s4W1raE,5768
82
82
  mlrun/datastore/v3io.py,sha256=ywd-rrB5Uicdk7KGMk-nJ4mKPjvg2z5w6TVx5Bo5jIo,8099
83
83
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
84
84
  mlrun/datastore/wasbfs/fs.py,sha256=FfKli7rBwres1pg8AxDlyyg1D5WukBEKb8Mi1SF5HqY,6152
85
85
  mlrun/db/__init__.py,sha256=Wy3NbZwgAneRHXCIKygQE-68tnAhvF7lVxrFSh9G6Y4,1145
86
- mlrun/db/base.py,sha256=VqEu40H9aJOT5egr0Ygm3v32AgHmPh4VTgYqEZyYkys,17043
86
+ mlrun/db/base.py,sha256=mPhXSTGPrq6CSp3phNhTDb4cCDyk_U7UvQ2Z-KQDx9k,17151
87
87
  mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
88
- mlrun/db/httpdb.py,sha256=zgxDYIvcYceUlQZBJQ-MXlfFIOg6--cIHbX6Y_Np3Vw,148947
89
- mlrun/db/nopdb.py,sha256=wD3kgOENlS6Pi9kBzjeyShN2hvqMeX5rFJiNfhAid8E,14006
88
+ mlrun/db/httpdb.py,sha256=74AwTiWb3yFNmEvB6WYAp2WyzoM8BCdyLY8rn6cIIN0,151593
89
+ mlrun/db/nopdb.py,sha256=fpmm1vYYxCCFtPr6yBRpdbeDTcPCfxkJSKqpVmu3C58,14104
90
90
  mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
91
91
  mlrun/feature_store/api.py,sha256=zDqMRfYMpks4dSiQqpgqUFFI4k9Rn1jXQbKzOUsQB9M,46076
92
92
  mlrun/feature_store/common.py,sha256=w74ETyTjw5xpzxNqFGggcu9Akjy_VT7mnTpC5KWTL14,12867
93
93
  mlrun/feature_store/feature_set.py,sha256=woSVZhhSxD9HoeNQqcHptnsxIqaLm5Rp7FNuqWTQ0eY,48144
94
- mlrun/feature_store/feature_vector.py,sha256=hbEk5BzCEFxUyJPA3jefTlE95whD9c8a3f9xN94YHCs,36729
94
+ mlrun/feature_store/feature_vector.py,sha256=myPMGmFmcWA8n0phLTLoe9tVH5BBlxWB71y2EfbgH70,36733
95
95
  mlrun/feature_store/ingestion.py,sha256=GZkrke5_JJfA_PGOFc6ekbHKujHgMgqr6t4vop5n_bg,11210
96
- mlrun/feature_store/steps.py,sha256=Xsvq6TGWraLeN_OC7T3ZTrJP8WhVNjDC12VSNACRePE,29118
96
+ mlrun/feature_store/steps.py,sha256=5YOQDrzO93DlYyUTpxUDIP97zcYsTQ6ZaCr2kXWpEWI,29118
97
97
  mlrun/feature_store/retrieval/__init__.py,sha256=bwA4copPpLQi8fyoUAYtOyrlw0-6f3-Knct8GbJSvRg,1282
98
98
  mlrun/feature_store/retrieval/base.py,sha256=e7n-z3LMYMD2J13oWqgvOthnhOMpq8_MIIMuW8ZBWKg,31724
99
99
  mlrun/feature_store/retrieval/dask_merger.py,sha256=_AiEu0iRPi9nKt97EhlXqXCYfq4LgHsdpG7ZzpycReM,5491
@@ -106,7 +106,7 @@ mlrun/frameworks/parallel_coordinates.py,sha256=8buVHWA-mD1R5R9jm71XN5fvDyz9Bkp7
106
106
  mlrun/frameworks/_common/__init__.py,sha256=7afutDCDVp999gyWSWQZMJRKGuW3VP3MFil8cobRsyg,962
107
107
  mlrun/frameworks/_common/artifacts_library.py,sha256=se6gpxwidTIjPo3lY2LmmX16AUg3qUPnTYOkllnqPxQ,8515
108
108
  mlrun/frameworks/_common/mlrun_interface.py,sha256=_5nUwKid4I6WrzgncoIL0U38uaKDIrI59JPYQ1Abh-g,21018
109
- mlrun/frameworks/_common/model_handler.py,sha256=BmdABncjj2o4bNDSyxltGDlOW44cMXJ5_qn5f1Bx_fQ,55376
109
+ mlrun/frameworks/_common/model_handler.py,sha256=XUKx5IBLm1YPFBijfgEgOiaJcyJpWryK9_RHm_bpiUw,55361
110
110
  mlrun/frameworks/_common/plan.py,sha256=NxRlH6bNCtK_qOu75c6fNsFrRP5GlFxOwbLC_focuyk,3469
111
111
  mlrun/frameworks/_common/producer.py,sha256=nwTSIEn5VyO-glr3OeeKWbAzkXGABhz187y5F2W_OcQ,5757
112
112
  mlrun/frameworks/_common/utils.py,sha256=zToAzdectwxT4HD5BfbBn8sK0PI1ArFYXu4LE1C3Ruc,9150
@@ -146,7 +146,7 @@ mlrun/frameworks/lgbm/callbacks/callback.py,sha256=BWwpTug8p8s0kYF4v1NxZthTrLioa
146
146
  mlrun/frameworks/lgbm/callbacks/logging_callback.py,sha256=zjhpC8-HeYcxPQI7c-MbV4-_UW4p5GRyLraVYVxy39c,5156
147
147
  mlrun/frameworks/lgbm/callbacks/mlrun_logging_callback.py,sha256=4DWjCqyZlqsCGrmfPm0_XGaKGs3VmQIu2UVU86LWJZk,4137
148
148
  mlrun/frameworks/lgbm/mlrun_interfaces/__init__.py,sha256=5xZZJnYaRAQi53WzKnvYZgs8UgNbBvCnIkx7a2_dCi4,842
149
- mlrun/frameworks/lgbm/mlrun_interfaces/booster_mlrun_interface.py,sha256=TL14PfD2UK_EJ5RnTQ8l4v1ycnEJxC4T60ii-ILnejk,1624
149
+ mlrun/frameworks/lgbm/mlrun_interfaces/booster_mlrun_interface.py,sha256=GCU7FIHDqbiqpiLR9oquBlb47mP9682LCMjn4beT0Vg,1583
150
150
  mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py,sha256=NvEwOotPE2V2WP3XgOJH87CJOuAmy7_dlnSGwX86vwY,14256
151
151
  mlrun/frameworks/lgbm/mlrun_interfaces/model_mlrun_interface.py,sha256=xZbzQSgHZ6GhlpgaW543wE3c-GAw0BAinrfXa106AVo,1333
152
152
  mlrun/frameworks/onnx/__init__.py,sha256=BouzKRGKM4UJYTmDEJkPtEn1EslusX8Q2DMkjcbDmuc,791
@@ -164,16 +164,16 @@ mlrun/frameworks/pytorch/callbacks/__init__.py,sha256=HcQaboA3T62ngrexy78Erc9q5A
164
164
  mlrun/frameworks/pytorch/callbacks/callback.py,sha256=2kNQHtWzoBC9EeoU3IWrKRNcfeiJmIIe192WQYiSv1Y,11524
165
165
  mlrun/frameworks/pytorch/callbacks/logging_callback.py,sha256=knZMbNTRCrYEQ-K-e36UCdBF1HYyE_l3Eu8aXy-o3Mg,23166
166
166
  mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py,sha256=M2ZTVLuSKQfxFALKyQuUsehVTFnr6G6PdBH4HCliX-M,9310
167
- mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py,sha256=LnRcDbZIWBlIkFRT3u_sVL3o-ACK23uBzyUhAWcDyII,26661
167
+ mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py,sha256=-eve61J4tlCFVM7e4UUJ5lQJ_o-yTwplHQfj2MCWxxw,26669
168
168
  mlrun/frameworks/sklearn/__init__.py,sha256=u3KcQR84QkVttnWO-yQlA749QOu78WCREVLb3a0cw3E,10892
169
169
  mlrun/frameworks/sklearn/estimator.py,sha256=wLsGshFTOLdaGDziyiL03JdaVCoI8DKZ64UdXJskV5o,5852
170
- mlrun/frameworks/sklearn/metric.py,sha256=8Zcs5EYRxccaxHoR-ZhsIsHWoUboN6yhRgvUrMZOq00,7117
170
+ mlrun/frameworks/sklearn/metric.py,sha256=Yk-8mpy40_RUu9fbg5IaiELvr4TddPDBDnkVSHXvFOY,7088
171
171
  mlrun/frameworks/sklearn/metrics_library.py,sha256=rbxt37AaAfUXmcP1fx_0VrTrU_CiX7UOjUtGNbgW8UM,12215
172
172
  mlrun/frameworks/sklearn/mlrun_interface.py,sha256=2NSV8gUYL9eNmwR3q8gLZKAsOza2JPoWxRQmrOHFzQ4,14126
173
173
  mlrun/frameworks/sklearn/model_handler.py,sha256=uV-SaCU15PW_S79syfrGxlpT9ZPjoKccPNax53sG4O0,4745
174
174
  mlrun/frameworks/sklearn/utils.py,sha256=Cg_pSxUMvKe8vBSLQor6JM8u9_ccKJg4Rk5EPDzTsVo,1209
175
175
  mlrun/frameworks/tf_keras/__init__.py,sha256=P2H2qJp5UmdDR8TXOM6Df9NbkvTEsw3egxldrRZVPS4,10455
176
- mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=NpHUPjvakqNzMuZ4gnw0EJF5yQdv8FggPrp01I6h1tA,16627
176
+ mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=bmGEtmn185jTh-QHUtzsD0HTN1C7g2oSQTg8-A59WXA,16593
177
177
  mlrun/frameworks/tf_keras/model_handler.py,sha256=OazNSoAVjvja6yrfx9VL8FYfQjEurJExNYqEHvVaqIQ,28247
178
178
  mlrun/frameworks/tf_keras/model_server.py,sha256=JTOq5W1-g32VTAmAYTcJ_7nocReVI7pcU9PmFrTHD8A,9565
179
179
  mlrun/frameworks/tf_keras/utils.py,sha256=_QWk1YmdRybbUB54vsQFE2_WMuAK0g7eR1ozVbMk0Go,4284
@@ -193,7 +193,7 @@ mlrun/launcher/local.py,sha256=iSPQjnAeBmIz-oWprDmQqD9TUkz85h9aaJIbybcT1R0,10930
193
193
  mlrun/launcher/remote.py,sha256=e7orva_ozrtmvEE-QihoFi8MKNCAHxzeUNQpqwQbEoQ,7007
194
194
  mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
195
195
  mlrun/model_monitoring/api.py,sha256=7aB6EbLHeH8PMQYp8mZQfDCxZeaD391Kb-tUVhS9hSs,36674
196
- mlrun/model_monitoring/application.py,sha256=fgsSOLwWJWbiFV_hCOpYVTTOnZLIUDTQ0fHIeGvhMWw,12370
196
+ mlrun/model_monitoring/application.py,sha256=eZDBmzcfUCDPZJAAWUBxTw1DxRK8o8Z8TsNewCHceZA,12338
197
197
  mlrun/model_monitoring/batch.py,sha256=7Iq0LNbuG6yAzaZ3ut1qFMZTP2ODvGd57cufrP84wtg,43286
198
198
  mlrun/model_monitoring/controller.py,sha256=B5PNThwgjYVhjb1t1Xy2m_UIOykLF0CZHMw5mTsevew,26483
199
199
  mlrun/model_monitoring/controller_handler.py,sha256=Yk8urHYKSU_RUhO0B375VO5YWd41yvPW_SMFpO-C8vg,1095
@@ -235,18 +235,18 @@ mlrun/platforms/iguazio.py,sha256=LU1d33ll5EKIyp2zitCffZIbq-3fRwNSNO9MK2cIsHc,21
235
235
  mlrun/platforms/other.py,sha256=z4pWqxXkVVuMLk-MbNb0Y_ZR5pmIsUm0R8vHnqpEnew,11852
236
236
  mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
237
237
  mlrun/projects/operations.py,sha256=Qn7V-ixdUDD_u21U1IwshKhAe6fTbXGruU3Ekx5-8ls,18744
238
- mlrun/projects/pipelines.py,sha256=qVlG5ZxdcXxdgtxeht-r6QHDUMw7DUkDPv-yuvui3Rk,39297
239
- mlrun/projects/project.py,sha256=vWv-tOFWjy6OSoG0n97BHo6eAVDLXPxugQY2KMANNNY,146079
238
+ mlrun/projects/pipelines.py,sha256=XHk0mpl06sibL-WRlk30B7ETjN9YOY3himPvICD4djY,39297
239
+ mlrun/projects/project.py,sha256=qr4PBWRGCSkzxbyiIzZuVk-MeJyU7iN9zt8U9GxoloU,146144
240
240
  mlrun/runtimes/__init__.py,sha256=_93Hbsamu5NDC4HTuZl6UCOQN23dJQ7CwNbkT4GAMF8,7028
241
241
  mlrun/runtimes/base.py,sha256=056I8Oh1KX-qD5hFSVmiuB2bX0ZhOztohOkomMoJ9s8,35525
242
- mlrun/runtimes/constants.py,sha256=Y7ZETb5-sD1m6H0dqEHmPrtvhqrwYf-uYcKgMxHFYhw,8657
242
+ mlrun/runtimes/constants.py,sha256=c_D2myCL28yoQPL4thdvkqfHbCwXhZWKzjZMtG8Vk6I,8921
243
243
  mlrun/runtimes/daskjob.py,sha256=EoTnCeQgOupl90Tg6IrQjo8Fc2I2ZwdTFMq8HD9r8Qw,19100
244
244
  mlrun/runtimes/funcdoc.py,sha256=FHwnLfFzoD6yGlsAJXAl_3VTtudgg4fTrsw_XqLOkC0,10508
245
245
  mlrun/runtimes/function.py,sha256=bA5-FojJXn91l8kQV6KhFzqIlwHgiaC812ne64vfsTU,47535
246
246
  mlrun/runtimes/function_reference.py,sha256=SJ0J-4ww0FQdijmdnUwGUKhMb-h5wtzqCPItTWKIL40,4911
247
247
  mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
248
248
  mlrun/runtimes/kubejob.py,sha256=BiSnLOvcm_YvpayADtxDtqyUmuYSwdAlVo6TlHfoqus,12386
249
- mlrun/runtimes/local.py,sha256=wF2WZ_NyG6OKdte05Hkr085AFxJr1COI4fJfsJeHbdI,21160
249
+ mlrun/runtimes/local.py,sha256=ewLmb51HVCrNC8DX8NB_7JUkAzVj7Hldv7Hj_CT7b3w,21150
250
250
  mlrun/runtimes/nuclio.py,sha256=hwk4dUaZefI-Qbb4s289vQpt1h0nAucxf6eINzVI-d8,2908
251
251
  mlrun/runtimes/pod.py,sha256=TNM8fee1lSSVHrfig0aPQRV2Vp6ICH09DhFoA6nTO-U,56312
252
252
  mlrun/runtimes/remotesparkjob.py,sha256=W7WqlPbyqE6FjOZ2EFeOzlL1jLGWAWe61jOH0Umy3F4,7334
@@ -282,8 +282,8 @@ mlrun/utils/async_http.py,sha256=KyWRfVn-bznXzLkHElsCFDuOjM4H63M-MO6b1OoErgU,111
282
282
  mlrun/utils/azure_vault.py,sha256=VNs2fz0XlFrV5Ggz3T0mR7mOWHefEcC14wM7QpsbY44,3456
283
283
  mlrun/utils/clones.py,sha256=QG2ka65-ysfrOaoziudEjJqGgAxJvFKZOXkiD9WZGN4,7386
284
284
  mlrun/utils/condition_evaluator.py,sha256=oR-GjryAg76D4G79G-DzVkx631D6Gd4jJgbr_d3Btnw,1920
285
- mlrun/utils/db.py,sha256=2pdIYKIA0GiwwuWLW0PJ_bPu9M1rd7ESBqnMr5wWuW4,1662
286
- mlrun/utils/helpers.py,sha256=lsV5lTHbqfuFXXKCBV_89kPCx1I8ao3KvHznXNEoi6M,50098
285
+ mlrun/utils/db.py,sha256=fp9p2_z7XW3DhsceJEObWKh-e5zKjPiCM55kSGNkZD8,1658
286
+ mlrun/utils/helpers.py,sha256=-xq3d6RCPn1rt9NXw9K2bnrU1kksl4EFHEXO2JI1I3I,51805
287
287
  mlrun/utils/http.py,sha256=_3pJPuDPz7M9pU4uRN-NPUmCyaANCQsAWAIrlVLZPiY,8733
288
288
  mlrun/utils/logger.py,sha256=ZVT9vnDGeuMKsbiEHTN3AXyF_hvUgpv4jGa1lgwFXJU,7049
289
289
  mlrun/utils/regex.py,sha256=V0kaw1-zuehkN20g_Pq6SgkJTBLRdBqNkXOGN_2TJEw,4430
@@ -300,11 +300,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=qrBmtECiRG6sZpCIVMg7RZc
300
300
  mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
301
301
  mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
302
302
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
303
- mlrun/utils/version/version.json,sha256=9jck-PA2eA74HRX-no59aljy7jDHijdOjUqFpYQaFiM,89
303
+ mlrun/utils/version/version.json,sha256=MdKQYIvL6pKv_nepz2RycPhlbiz_aYsJuVd-ZOi5WgQ,89
304
304
  mlrun/utils/version/version.py,sha256=HMwseV8xjTQ__6T6yUWojx_z6yUj7Io7O4NcCCH_sz8,1970
305
- mlrun-1.6.0rc13.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
306
- mlrun-1.6.0rc13.dist-info/METADATA,sha256=Hz1qTXPT7RuursgzNl78eUHM7ecNT6SlnCBkjkCdQ6Y,18614
307
- mlrun-1.6.0rc13.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
308
- mlrun-1.6.0rc13.dist-info/entry_points.txt,sha256=ZbXmb36B9JmK7EaleP8MIAbZSOQXQV0iwKR6si0HUWk,47
309
- mlrun-1.6.0rc13.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
310
- mlrun-1.6.0rc13.dist-info/RECORD,,
305
+ mlrun-1.6.0rc15.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
306
+ mlrun-1.6.0rc15.dist-info/METADATA,sha256=DAQ7hP5K-ytLOI3B3tDJpsxEmOGr-P2vHoAfnLwnPJU,18266
307
+ mlrun-1.6.0rc15.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
308
+ mlrun-1.6.0rc15.dist-info/entry_points.txt,sha256=ZbXmb36B9JmK7EaleP8MIAbZSOQXQV0iwKR6si0HUWk,47
309
+ mlrun-1.6.0rc15.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
310
+ mlrun-1.6.0rc15.dist-info/RECORD,,