mlrun 1.6.0rc7__py3-none-any.whl → 1.6.0rc8__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (38) hide show
  1. mlrun/__main__.py +27 -27
  2. mlrun/common/schemas/auth.py +2 -0
  3. mlrun/config.py +2 -2
  4. mlrun/datastore/dbfs_store.py +0 -3
  5. mlrun/datastore/sources.py +12 -2
  6. mlrun/datastore/targets.py +3 -0
  7. mlrun/db/httpdb.py +15 -0
  8. mlrun/feature_store/feature_set.py +5 -2
  9. mlrun/feature_store/retrieval/spark_merger.py +7 -1
  10. mlrun/kfpops.py +1 -1
  11. mlrun/launcher/client.py +1 -6
  12. mlrun/launcher/remote.py +5 -3
  13. mlrun/model.py +1 -1
  14. mlrun/model_monitoring/batch_application.py +48 -85
  15. mlrun/package/packager.py +115 -89
  16. mlrun/package/packagers/default_packager.py +66 -65
  17. mlrun/package/packagers/numpy_packagers.py +109 -62
  18. mlrun/package/packagers/pandas_packagers.py +12 -23
  19. mlrun/package/packagers/python_standard_library_packagers.py +35 -57
  20. mlrun/package/packagers_manager.py +16 -13
  21. mlrun/package/utils/_pickler.py +8 -18
  22. mlrun/package/utils/_supported_format.py +1 -1
  23. mlrun/projects/pipelines.py +11 -6
  24. mlrun/projects/project.py +11 -4
  25. mlrun/runtimes/__init__.py +6 -0
  26. mlrun/runtimes/base.py +8 -0
  27. mlrun/runtimes/daskjob.py +73 -5
  28. mlrun/runtimes/local.py +9 -9
  29. mlrun/runtimes/remotesparkjob.py +1 -0
  30. mlrun/runtimes/utils.py +1 -1
  31. mlrun/utils/notifications/notification_pusher.py +1 -1
  32. mlrun/utils/version/version.json +2 -2
  33. {mlrun-1.6.0rc7.dist-info → mlrun-1.6.0rc8.dist-info}/METADATA +2 -2
  34. {mlrun-1.6.0rc7.dist-info → mlrun-1.6.0rc8.dist-info}/RECORD +38 -38
  35. {mlrun-1.6.0rc7.dist-info → mlrun-1.6.0rc8.dist-info}/WHEEL +1 -1
  36. {mlrun-1.6.0rc7.dist-info → mlrun-1.6.0rc8.dist-info}/LICENSE +0 -0
  37. {mlrun-1.6.0rc7.dist-info → mlrun-1.6.0rc8.dist-info}/entry_points.txt +0 -0
  38. {mlrun-1.6.0rc7.dist-info → mlrun-1.6.0rc8.dist-info}/top_level.txt +0 -0
mlrun/runtimes/daskjob.py CHANGED
@@ -16,6 +16,7 @@ import inspect
16
16
  import socket
17
17
  import time
18
18
  from os import environ
19
+ from typing import Callable, Dict, List, Optional, Union
19
20
 
20
21
  import mlrun.common.schemas
21
22
  import mlrun.errors
@@ -230,7 +231,7 @@ class DaskCluster(KubejobRuntime):
230
231
  if db_func and "status" in db_func:
231
232
  self.status = db_func["status"]
232
233
  if self.kfp:
233
- logger.info(f"dask status: {db_func['status']}")
234
+ logger.info(f"Dask status: {db_func['status']}")
234
235
  return "scheduler_address" in db_func["status"]
235
236
 
236
237
  return False
@@ -311,7 +312,7 @@ class DaskCluster(KubejobRuntime):
311
312
  if self.spec.service_type == "NodePort":
312
313
  dash = f"{config.remote_host}:{self.status.node_ports.get('dashboard')}"
313
314
  else:
314
- logger.info("to get a dashboard link, use NodePort service_type")
315
+ logger.info("To get a dashboard link, use NodePort service_type")
315
316
 
316
317
  return addr, dash
317
318
 
@@ -325,12 +326,12 @@ class DaskCluster(KubejobRuntime):
325
326
 
326
327
  if self.status.scheduler_address:
327
328
  addr, dash = self._remote_addresses()
328
- logger.info(f"trying dask client at: {addr}")
329
+ logger.info(f"Trying dask client at: {addr}")
329
330
  try:
330
331
  client = Client(addr)
331
332
  except OSError as exc:
332
333
  logger.warning(
333
- f"remote scheduler at {addr} not ready, will try to restart {err_to_str(exc)}"
334
+ f"Remote scheduler at {addr} not ready, will try to restart {err_to_str(exc)}"
334
335
  )
335
336
 
336
337
  status = self.get_status()
@@ -340,7 +341,7 @@ class DaskCluster(KubejobRuntime):
340
341
  client = Client(addr)
341
342
 
342
343
  logger.info(
343
- f"using remote dask scheduler ({self.status.cluster_name}) at: {addr}"
344
+ f"Using remote dask scheduler ({self.status.cluster_name}) at: {addr}"
344
345
  )
345
346
  if dash:
346
347
  ipython_display(
@@ -457,6 +458,73 @@ class DaskCluster(KubejobRuntime):
457
458
  """
458
459
  self.spec._verify_and_set_requests("worker_resources", mem, cpu, patch=patch)
459
460
 
461
+ def set_state_thresholds(
462
+ self,
463
+ state_thresholds: Dict[str, str],
464
+ patch: bool = True,
465
+ ):
466
+ raise NotImplementedError(
467
+ "State thresholds is not supported for Dask runtime yet, use spec.scheduler_timeout instead.",
468
+ )
469
+
470
+ def run(
471
+ self,
472
+ runspec: Optional[
473
+ Union["mlrun.run.RunTemplate", "mlrun.run.RunObject", dict]
474
+ ] = None,
475
+ handler: Optional[Union[str, Callable]] = None,
476
+ name: Optional[str] = "",
477
+ project: Optional[str] = "",
478
+ params: Optional[dict] = None,
479
+ inputs: Optional[Dict[str, str]] = None,
480
+ out_path: Optional[str] = "",
481
+ workdir: Optional[str] = "",
482
+ artifact_path: Optional[str] = "",
483
+ watch: Optional[bool] = True,
484
+ schedule: Optional[Union[str, mlrun.common.schemas.ScheduleCronTrigger]] = None,
485
+ hyperparams: Optional[Dict[str, list]] = None,
486
+ hyper_param_options: Optional[mlrun.model.HyperParamOptions] = None,
487
+ verbose: Optional[bool] = None,
488
+ scrape_metrics: Optional[bool] = None,
489
+ local: Optional[bool] = False,
490
+ local_code_path: Optional[str] = None,
491
+ auto_build: Optional[bool] = None,
492
+ param_file_secrets: Optional[Dict[str, str]] = None,
493
+ notifications: Optional[List[mlrun.model.Notification]] = None,
494
+ returns: Optional[List[Union[str, Dict[str, str]]]] = None,
495
+ state_thresholds: Optional[Dict[str, int]] = None,
496
+ **launcher_kwargs,
497
+ ) -> RunObject:
498
+ if state_thresholds:
499
+ raise mlrun.errors.MLRunInvalidArgumentError(
500
+ "State thresholds is not supported for Dask runtime yet, use spec.scheduler_timeout instead."
501
+ )
502
+ return super().run(
503
+ runspec=runspec,
504
+ handler=handler,
505
+ name=name,
506
+ project=project,
507
+ params=params,
508
+ inputs=inputs,
509
+ out_path=out_path,
510
+ workdir=workdir,
511
+ artifact_path=artifact_path,
512
+ watch=watch,
513
+ schedule=schedule,
514
+ hyperparams=hyperparams,
515
+ hyper_param_options=hyper_param_options,
516
+ verbose=verbose,
517
+ scrape_metrics=scrape_metrics,
518
+ local=local,
519
+ local_code_path=local_code_path,
520
+ auto_build=auto_build,
521
+ param_file_secrets=param_file_secrets,
522
+ notifications=notifications,
523
+ returns=returns,
524
+ state_thresholds=state_thresholds,
525
+ **launcher_kwargs,
526
+ )
527
+
460
528
  def _run(self, runobj: RunObject, execution):
461
529
 
462
530
  handler = runobj.spec.handler
mlrun/runtimes/local.py CHANGED
@@ -104,13 +104,13 @@ class ParallelRunner:
104
104
  num_errors += 1
105
105
  results.append(resp)
106
106
  if num_errors > generator.max_errors:
107
- logger.error("max errors reached, stopping iterations!")
107
+ logger.error("Max errors reached, stopping iterations!")
108
108
  return True
109
109
  run_results = resp["status"].get("results", {})
110
110
  stop = generator.eval_stop_condition(run_results)
111
111
  if stop:
112
112
  logger.info(
113
- f"reached early stop condition ({generator.options.stop_condition}), stopping iterations!"
113
+ f"Reached early stop condition ({generator.options.stop_condition}), stopping iterations!"
114
114
  )
115
115
  return stop
116
116
 
@@ -140,7 +140,7 @@ class ParallelRunner:
140
140
 
141
141
  client.close()
142
142
  if function_name and generator.options.teardown_dask:
143
- logger.info("tearing down the dask cluster..")
143
+ logger.info("Tearing down the dask cluster..")
144
144
  mlrun.get_run_db().delete_runtime_resources(
145
145
  kind="dask", object_id=function_name, force=True
146
146
  )
@@ -278,7 +278,7 @@ class LocalRuntime(BaseRuntime, ParallelRunner):
278
278
 
279
279
  handler = runobj.spec.handler
280
280
  handler_str = handler or "main"
281
- logger.debug(f"starting local run: {self.spec.command} # {handler_str}")
281
+ logger.debug(f"Starting local run: {self.spec.command} # {handler_str}")
282
282
  pythonpath = self.spec.pythonpath
283
283
 
284
284
  if handler:
@@ -317,13 +317,13 @@ class LocalRuntime(BaseRuntime, ParallelRunner):
317
317
  context.set_state(error=err_to_str(exc), commit=True)
318
318
  logger.error(f"run error, {traceback.format_exc()}")
319
319
  raise RunError(
320
- "failed on pre-loading / post-running of the function"
320
+ "Failed on pre-loading / post-running of the function"
321
321
  ) from exc
322
322
 
323
323
  else:
324
324
  command = self.spec.command
325
325
  command = command.format(**runobj.spec.parameters)
326
- logger.info(f"handler was not provided running main ({command})")
326
+ logger.info(f"Handler was not provided running main ({command})")
327
327
  arg_list = command.split()
328
328
  if self.spec.mode == "pass":
329
329
  cmd = arg_list
@@ -360,9 +360,9 @@ class LocalRuntime(BaseRuntime, ParallelRunner):
360
360
  if resp:
361
361
  run_obj_dict = json.loads(resp)
362
362
  else:
363
- logger.error("empty context tmp file")
363
+ logger.debug("Empty context tmp file")
364
364
  else:
365
- logger.info("no context file found")
365
+ logger.info("No context file found")
366
366
 
367
367
  # If trackers where used, this is where we log all data collected to MLRun
368
368
  run_obj_dict = trackers_manager.post_run(run_obj_dict)
@@ -396,7 +396,7 @@ def run_exec(cmd, args, env=None, cwd=None):
396
396
  cmd += args
397
397
  if env and "SYSTEMROOT" in os.environ:
398
398
  env["SYSTEMROOT"] = os.environ["SYSTEMROOT"]
399
- print("running:", cmd)
399
+ print("Running:", cmd)
400
400
  process = Popen(
401
401
  cmd, stdout=PIPE, stderr=PIPE, env=os.environ, cwd=cwd, universal_newlines=True
402
402
  )
@@ -205,6 +205,7 @@ class RemoteSparkRuntime(KubejobRuntime):
205
205
  mlrun_version_specifier=mlrun_version_specifier,
206
206
  builder_env=builder_env,
207
207
  show_on_failure=show_on_failure,
208
+ force_build=force_build,
208
209
  )
209
210
 
210
211
 
mlrun/runtimes/utils.py CHANGED
@@ -138,7 +138,7 @@ def add_code_metadata(path=""):
138
138
  ValueError,
139
139
  ) as exc:
140
140
  logger.warning(
141
- "Failed to add git metadata, ignore if path is not part of a git repo.",
141
+ "Failed to add git metadata, ignore if path is not part of a git repo",
142
142
  path=path,
143
143
  error=err_to_str(exc),
144
144
  )
@@ -549,7 +549,7 @@ class CustomNotificationPusher(_NotificationPusherBase):
549
549
  runs_list.append(run.to_dict())
550
550
  run._notified = True
551
551
 
552
- text = "pipeline run finished"
552
+ text = "Pipeline run finished"
553
553
  if had_errors:
554
554
  text += f" with {had_errors} errors"
555
555
  if state:
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "93faebe6c541891ab913f456770352ac4c3d2a5d",
3
- "version": "1.6.0-rc7"
2
+ "git_commit": "e82173e46d6033c06227c2dfd3edb12b529e714d",
3
+ "version": "1.6.0-rc8"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.6.0rc7
3
+ Version: 1.6.0rc8
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -26,7 +26,7 @@ Requires-Dist: GitPython >=3.1.30,~=3.1
26
26
  Requires-Dist: aiohttp <3.8.4,~=3.8
27
27
  Requires-Dist: aiohttp-retry ~=2.8
28
28
  Requires-Dist: click ~=8.1
29
- Requires-Dist: kfp <1.8.14,~=1.8.0
29
+ Requires-Dist: kfp ~=1.8
30
30
  Requires-Dist: nest-asyncio ~=1.0
31
31
  Requires-Dist: ipython ~=8.10
32
32
  Requires-Dist: nuclio-jupyter ~=0.9.13
@@ -1,13 +1,13 @@
1
1
  mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
2
- mlrun/__main__.py,sha256=cYwCzvJsDpZrCR6jH6K69LUBEroojDyfDwAIdOTy2_M,49065
3
- mlrun/config.py,sha256=wjjD23SPdkWdPVVX1aye6GXvwADcBtJnfmelEoK07JA,60594
2
+ mlrun/__main__.py,sha256=_fEf6dPbiYVB4yOur_M3MJj2vjxpePVw2sF1XJl0tpM,49066
3
+ mlrun/config.py,sha256=fD_27tukinrXMhbSd4emSQwz5tjRUBgBj0Ya8nFazYY,60613
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
7
7
  mlrun/k8s_utils.py,sha256=UJTo0uHTphDi-o305l7R-oeyDfqVVfoYbk0EW6cm38Q,5382
8
- mlrun/kfpops.py,sha256=oO2xc71GX8yzRbf6wFA9nM2VLeMnc2sziYQTeS8s0Wo,30412
8
+ mlrun/kfpops.py,sha256=L7YyQ5HBmTWFCmj3isOqRX2nbNwV2GElkYpDZyXPZk4,30412
9
9
  mlrun/lists.py,sha256=lMbcVvtS5MLI40JPtT5ithTojX8xUZx4RkZX0-L9zUE,8390
10
- mlrun/model.py,sha256=wQatQjeG5r4WC-JdRvgE7mjjP4Mc5zoiStTRUXWD4sA,63183
10
+ mlrun/model.py,sha256=L_q9wiwgeycjcFyEftzLkE1yAttIudh-ytQUnlNqRvc,63183
11
11
  mlrun/render.py,sha256=a_s-kzQ35bJg7e7cBxk3MCnoIK4qvDS2dGO8RzHgI1c,13016
12
12
  mlrun/run.py,sha256=cCgWwgq5AFcwt4DbYlOzO8-1XsXmwIJVAEeUumQIK-I,42536
13
13
  mlrun/secrets.py,sha256=hr2Ia9kLkoMM3KoxijXqO6AIJOUrrLxvz4Q7Xk39d4Y,7783
@@ -28,7 +28,7 @@ mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ
28
28
  mlrun/common/model_monitoring/helpers.py,sha256=FTp6tDHhi7oqbgAz-cu7DpcSKSxOtTgJY2v2B_tnkf8,3955
29
29
  mlrun/common/schemas/__init__.py,sha256=CyhrKVCvj8M-c5gpu-YJ_a4fco7Y5bB6jGumkubq6GY,4590
30
30
  mlrun/common/schemas/artifact.py,sha256=vbXaY8eHxKt7YHKksD_PYEC-47eguxVb6wRAtMAW7Bk,1923
31
- mlrun/common/schemas/auth.py,sha256=CZgqGDVNk4rnpVzEsTrNtOoBbYVj-G2o88s3eTonAlc,5879
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
34
34
  mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
@@ -67,17 +67,17 @@ mlrun/datastore/azure_blob.py,sha256=8j3cZuQ8pqnPx48JAJvjtqSqufyNlqXROGrMGD8h3wM
67
67
  mlrun/datastore/base.py,sha256=oiNNiv5d8kzDE4O7ro_fGhcrFANULHxqWf8gMrvZ4kM,24909
68
68
  mlrun/datastore/datastore.py,sha256=RsgViisGlQvwPxtnHTCSNKuqujaz6dJ6z643S2ooAZE,9234
69
69
  mlrun/datastore/datastore_profile.py,sha256=YpVkJXE_4zoj5uFqUqNdeOkMlYnAQ34aqI1-xkIDKN8,11878
70
- mlrun/datastore/dbfs_store.py,sha256=DmDfHegq8JK9NdsMLe1D3-cweaD-_qStERYLDOsOfyg,6666
70
+ mlrun/datastore/dbfs_store.py,sha256=mF4XHxy2nh6eIz2ZDNXbLWCEY804LR-fpEJzIGZeENI,6542
71
71
  mlrun/datastore/filestore.py,sha256=o4ex777XyxyV1CQBP7M2JyyssCVVAc4H3JrvNC9eryM,3791
72
72
  mlrun/datastore/google_cloud_storage.py,sha256=Y_X4ODhvvBeknE_Aqaky_Fdi0-EY5waZAglmAttgFgY,5114
73
73
  mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,622
74
74
  mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
75
75
  mlrun/datastore/redis.py,sha256=UaQyMkNbmXZ0B8h-d_u6G88L2hfiEX6o9hBx60Tspj8,5515
76
76
  mlrun/datastore/s3.py,sha256=3EZREO4wppnQKlmTW-S4RS17WZFxGi8wPl5Y0I_cUK8,7452
77
- mlrun/datastore/sources.py,sha256=cmUGoz_hwtxkrMr8Rr4lduZzcZiVE2mv8tX0jJL9390,38256
77
+ mlrun/datastore/sources.py,sha256=wpSre3oQTTi5imUFDBkmUfE0koOFtkIEtatZCyX1YKE,38642
78
78
  mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
79
79
  mlrun/datastore/store_resources.py,sha256=SUY9oJieq3r8PEq8G661XxmXem_e-CxDoy2AJ7dpXBk,6906
80
- mlrun/datastore/targets.py,sha256=zrkk7ph_XzQB1Ny4lrcb2UVGvEglGlXYABbKOsyuhkU,68488
80
+ mlrun/datastore/targets.py,sha256=2KvlLCmRP3u2QlR4yP_EI_RbJ5Fck0BKpYNYNjglrDk,68626
81
81
  mlrun/datastore/utils.py,sha256=HWX9SfCsBk4Mx-0xp5kwshTZnm32fHdy3gRdVaYSt0Y,5805
82
82
  mlrun/datastore/v3io.py,sha256=ywd-rrB5Uicdk7KGMk-nJ4mKPjvg2z5w6TVx5Bo5jIo,8099
83
83
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
@@ -85,12 +85,12 @@ mlrun/datastore/wasbfs/fs.py,sha256=FfKli7rBwres1pg8AxDlyyg1D5WukBEKb8Mi1SF5HqY,
85
85
  mlrun/db/__init__.py,sha256=Wy3NbZwgAneRHXCIKygQE-68tnAhvF7lVxrFSh9G6Y4,1145
86
86
  mlrun/db/base.py,sha256=VqEu40H9aJOT5egr0Ygm3v32AgHmPh4VTgYqEZyYkys,17043
87
87
  mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
88
- mlrun/db/httpdb.py,sha256=OHizu2370GCy5mAxcKM3P6EDXXh8Eeo3cpQhigBPaV8,146981
88
+ mlrun/db/httpdb.py,sha256=BcQwDU8ltNNCrx8UGo7PkNp1cEnape66uDaIxEqMCoA,147665
89
89
  mlrun/db/nopdb.py,sha256=wD3kgOENlS6Pi9kBzjeyShN2hvqMeX5rFJiNfhAid8E,14006
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
- mlrun/feature_store/feature_set.py,sha256=5QJabhRTZHQq6zDVMa54njO-H0S08L3Mpf-4DtnjO84,46749
93
+ mlrun/feature_store/feature_set.py,sha256=0Xz4xGNTnpTEi5CDIrLED_5AeWXUGa5oYpnxGKrSA3c,46896
94
94
  mlrun/feature_store/feature_vector.py,sha256=3v0MFS4LvcFQ7cJA6-vPoa1tJ-qMIejnDuJhHGY7J5k,35012
95
95
  mlrun/feature_store/ingestion.py,sha256=GZkrke5_JJfA_PGOFc6ekbHKujHgMgqr6t4vop5n_bg,11210
96
96
  mlrun/feature_store/steps.py,sha256=jleXgtUbR_BDk0Q060vHYwfBwX01VoU3Y1s5S6QF8mo,29028
@@ -99,7 +99,7 @@ mlrun/feature_store/retrieval/base.py,sha256=gzY7sesiy2sMQa6VtG2nSpscEIjcrsLm5Qg
99
99
  mlrun/feature_store/retrieval/dask_merger.py,sha256=4KQhP2ScBn0L--pR_lhCP9tgqDKQLsMna3H6GqMpSTY,5272
100
100
  mlrun/feature_store/retrieval/job.py,sha256=udrpAf8Q1uNhGj3ATvoEV7M8hlZr3dW_P0T5MqKc1Dc,8262
101
101
  mlrun/feature_store/retrieval/local_merger.py,sha256=M0R2FWc-kuLVvyAYbawrxAJvqjshtaRK2gQqF6DjgxM,4218
102
- mlrun/feature_store/retrieval/spark_merger.py,sha256=Xo01NsVYr9qdPQ37b52-qqhJyVNxKMZ4q2qHt8GJJHI,10789
102
+ mlrun/feature_store/retrieval/spark_merger.py,sha256=zevhXt6SJeMbV8xORaYwo5kfeVC9b9RF3tF8K5vjkB4,11073
103
103
  mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
104
104
  mlrun/frameworks/__init__.py,sha256=qRHe_nUfxpoLaSASAkIxcW6IyunMtxq5LXhjzZMO_1E,743
105
105
  mlrun/frameworks/parallel_coordinates.py,sha256=8buVHWA-mD1R5R9jm71XN5fvDyz9Bkp7D1xD4vFYHTE,11466
@@ -187,15 +187,15 @@ mlrun/frameworks/xgboost/model_handler.py,sha256=XV8xndGhQsPkOX9djqiNVYFB0xiZPuj
187
187
  mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
188
188
  mlrun/launcher/__init__.py,sha256=pZgS6ZN126aJme4z5spCX-RmdchShxMnQeCPya8AsQI,577
189
189
  mlrun/launcher/base.py,sha256=xCg9jti8b_2MYG3eitYEHZQt1UJ1pZgcEEyk18R0W_Q,16372
190
- mlrun/launcher/client.py,sha256=gjohCJrxtvIwpGdB3T8Q4ntCo-Nbu6oDfS0urJDzfO4,6266
190
+ mlrun/launcher/client.py,sha256=DrMf7P-G371SINO4RAZOol9RIOb5WwJj3zc8ByzwgL4,6120
191
191
  mlrun/launcher/factory.py,sha256=tk6foFWox7f_xaeTgkWTx9ht_5fv0XzLDR8ucdb8oTE,2344
192
192
  mlrun/launcher/local.py,sha256=iSPQjnAeBmIz-oWprDmQqD9TUkz85h9aaJIbybcT1R0,10930
193
- mlrun/launcher/remote.py,sha256=qraP0hVNuqQJjccQFSi5nRq4TMN16MOM5cXqTsALmnQ,6887
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=MyS6dmFv2w9X-kGEPV4Z-Sn2Sihx85hmSe8Yd-NRQgI,34624
196
196
  mlrun/model_monitoring/application.py,sha256=nwKWg_LNWBmXWjvwtMuio9dKWxyUdfuTVSAdcMti_DI,12251
197
197
  mlrun/model_monitoring/batch.py,sha256=7Iq0LNbuG6yAzaZ3ut1qFMZTP2ODvGd57cufrP84wtg,43286
198
- mlrun/model_monitoring/batch_application.py,sha256=32PGNi9FhS2HwzZ1wjWGOsUlQeZtk-RpbG-yNweTVlI,22050
198
+ mlrun/model_monitoring/batch_application.py,sha256=r0O5nfKAsQrRoGh3tGfqHazLqgqfGt5sn0FF1AKeqS4,20371
199
199
  mlrun/model_monitoring/batch_application_handler.py,sha256=6I3XmganxCfI-IUFEvFpdsUFiw3OiIMq58BS-XARIMs,1046
200
200
  mlrun/model_monitoring/evidently_application.py,sha256=vlua7ikl736bFKwigCz3Qh4KV4CoWaqJ1ZVPbwCac90,3792
201
201
  mlrun/model_monitoring/features_drift_table.py,sha256=2r51W4xQ8gNq3PXt73IfsYu4l4mjwD-dLfRVAvKplTE,24209
@@ -216,18 +216,18 @@ mlrun/model_monitoring/stores/models/sqlite.py,sha256=9c5Tw4YuuRiD4GBoQdWGPUzm_6
216
216
  mlrun/package/__init__.py,sha256=4A1houoObsq46gc4eSeaEanoJKTpund00KZomyciN2I,7101
217
217
  mlrun/package/context_handler.py,sha256=xB3FntZFfoV6TP5GAXgplnUReQVveBjJ29hLXXfkPbY,15404
218
218
  mlrun/package/errors.py,sha256=LKF8SSaRIdbkB7JQz6b9U4mZV42Ebnf6ZHu4wKuWqK4,1204
219
- mlrun/package/packager.py,sha256=lRMraBz_bAL6wOgaMLzJOcbeZXIjWK3n884audYxqPo,13725
220
- mlrun/package/packagers_manager.py,sha256=G5vlKwSqXHDepe44rQ3_xVOMYRmjRn2es4XSQ2tBZzs,37273
219
+ mlrun/package/packager.py,sha256=cAjzU1vmnbwys6nhKw50nCfQaC_PWPAfhO_MlqTcBoQ,15083
220
+ mlrun/package/packagers_manager.py,sha256=Ps34YUUPpYu0ZFFlWVrKCPk9YJzuMvMMiqxdaue0REY,37399
221
221
  mlrun/package/packagers/__init__.py,sha256=rpxpuATMoxCMgHDaVamm0uwocy71e0CSXm85Q5X9tkU,769
222
- mlrun/package/packagers/default_packager.py,sha256=t6es8lxS8gRnpLOo1luzYk0nlIeqZ1Oru_lVqdjrrdk,26416
223
- mlrun/package/packagers/numpy_packagers.py,sha256=bVRYS6ly0k2mZkcw0KTbdSAjCkkyz9sewh6z0qGKAOQ,22927
224
- mlrun/package/packagers/pandas_packagers.py,sha256=shWlNIeWGcrkDS-2oBxukNrBQ9XrSoeY5Mtvc8zAMIg,35951
225
- mlrun/package/packagers/python_standard_library_packagers.py,sha256=wLcXaeYRYQ4s9bzoz_6Jt4JB3h7_a0hZxry7rZtAYbI,22787
222
+ mlrun/package/packagers/default_packager.py,sha256=ecUaodnSfhKY3prigqALI61bj5WyyCM1xfhRNUHw5vc,26644
223
+ mlrun/package/packagers/numpy_packagers.py,sha256=a6Pmu_g-fBaWyQ8LB69ijAWkCi46iuXuO4m8oOpmT00,25620
224
+ mlrun/package/packagers/pandas_packagers.py,sha256=0clr8klM24W1S2Q9H3mRt2r7gBR5M5Uqw96FmvHNP3E,35772
225
+ mlrun/package/packagers/python_standard_library_packagers.py,sha256=BxVb4u3N_gAIky8SyW__OMqlZJb7WkQ-49Ag54nj7OQ,22335
226
226
  mlrun/package/utils/__init__.py,sha256=RXkhPH-zFLFFvOjMRJUVgVT33rusK5J4eTVLJ7bjN6k,1722
227
227
  mlrun/package/utils/_archiver.py,sha256=EF9r6BBwrFq7o8ig5nFlOnXJ-JsBnvSFTQphYuoGGAM,7567
228
228
  mlrun/package/utils/_formatter.py,sha256=EgdSMrJMgt-35myGuwfIOOKAe4jBi6QU7ssw1G0cacY,6393
229
- mlrun/package/utils/_pickler.py,sha256=S8UcTZ3XD68yqfY6ebD-loNC-C5goKfBR4cS5GOGbBI,10926
230
- mlrun/package/utils/_supported_format.py,sha256=fvwD1icALyV0wJUcRori6voH10j6KR3NN8n5o8HVw2E,2379
229
+ mlrun/package/utils/_pickler.py,sha256=cqqcSo2V0Ky086s-wLrJw0moD0XEU-DNOYefdRUHbPY,10354
230
+ mlrun/package/utils/_supported_format.py,sha256=Svmfcqc4X7Kq-7pmyzGyI6PgDBaJ3zTT-au0beLZYS8,2375
231
231
  mlrun/package/utils/log_hint_utils.py,sha256=ie7opnHlhVdh1mBkvYDFyWyFIjHn8Lm2FcxkiCmL9Z8,3709
232
232
  mlrun/package/utils/type_hint_utils.py,sha256=f-1AeFv2vwljH0ymXA4JmcIkH1lEf7HfsJ2A62H-X4A,14825
233
233
  mlrun/platforms/__init__.py,sha256=ArWn_iZiEE6qz7hvY_1RqMkFnHGuKjP3k5xYKnfKA58,2352
@@ -235,23 +235,23 @@ 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=ew_wGc6GVWjX1upsh7kBMZHtWyjKglxWPFQ0Tg9o5OI,18134
238
- mlrun/projects/pipelines.py,sha256=NYgRMn3-d7nptBcRwZgIu0bwb2G91Os1JSyWf2IYF-w,38990
239
- mlrun/projects/project.py,sha256=QunPb9kqOwhfn3O4BKul6kYPCIRrBzyiP8GA_H_BYjY,142931
240
- mlrun/runtimes/__init__.py,sha256=rk8ME5Owcj4GBsXFW_fdLGL1jHsP5vKzahOioZFFugA,6728
241
- mlrun/runtimes/base.py,sha256=HdqfJUtyClIrKietyt3OFRGJxbyYHsFTgmSLiLe0kP4,35303
238
+ mlrun/projects/pipelines.py,sha256=qVlG5ZxdcXxdgtxeht-r6QHDUMw7DUkDPv-yuvui3Rk,39297
239
+ mlrun/projects/project.py,sha256=lYyOYro6wlewR0VX3_YrcixENjQdE5OHB8lhU2HrCfw,143235
240
+ mlrun/runtimes/__init__.py,sha256=kmL7w1z9UTy8oVKBhpk0RN15vHv0Khh-oya1RF33E24,6917
241
+ mlrun/runtimes/base.py,sha256=056I8Oh1KX-qD5hFSVmiuB2bX0ZhOztohOkomMoJ9s8,35525
242
242
  mlrun/runtimes/constants.py,sha256=Y7ZETb5-sD1m6H0dqEHmPrtvhqrwYf-uYcKgMxHFYhw,8657
243
- mlrun/runtimes/daskjob.py,sha256=GjihFztwZ7tJvZci1EShO7H9Nd5f212k4SU-o5Zh7Qc,16473
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=P44Add7IPmTQTRQTYrkRqFlTYrCgs5ksvyEq67MvNso,47057
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=ojmFYLdECGZJbyAXMdee_U3VSkB2393AqyRIWAOrygM,12088
249
- mlrun/runtimes/local.py,sha256=r-N2jtk_NArCT2kz0U3AUWBpnf5VG2uSTS4oeGRYVkU,21160
249
+ mlrun/runtimes/local.py,sha256=wF2WZ_NyG6OKdte05Hkr085AFxJr1COI4fJfsJeHbdI,21160
250
250
  mlrun/runtimes/nuclio.py,sha256=hwk4dUaZefI-Qbb4s289vQpt1h0nAucxf6eINzVI-d8,2908
251
251
  mlrun/runtimes/pod.py,sha256=TNM8fee1lSSVHrfig0aPQRV2Vp6ICH09DhFoA6nTO-U,56312
252
- mlrun/runtimes/remotesparkjob.py,sha256=Z_M6_tuaKW7NXwkuBz8JbqC7iGCZMsNgPZEo723bFQg,7297
252
+ mlrun/runtimes/remotesparkjob.py,sha256=W7WqlPbyqE6FjOZ2EFeOzlL1jLGWAWe61jOH0Umy3F4,7334
253
253
  mlrun/runtimes/serving.py,sha256=IKAv5gHrk7GXkWaVW_tvF7uPtXcdPyQnETJRVj7wXEw,30338
254
- mlrun/runtimes/utils.py,sha256=Fuucwa0SmPQN5eDCnfkzY7JDoaYAoL6X54fTdW1cokk,15325
254
+ mlrun/runtimes/utils.py,sha256=eEbWJLC7vl2vG6bRTxsKhvbRBJuPHsf4hfM5cGHcd08,15324
255
255
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
256
256
  mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=lYItecKYdWkvmuE0gCLqx2OkBfC6JFp4PE3dW6WXHsI,2249
257
257
  mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=3FpmWoSsRRYwLJlWJ-aTCG3UOWtX3Mqi-UvhIgLgfC8,8307
@@ -291,7 +291,7 @@ mlrun/utils/singleton.py,sha256=UUTQiBTXyzmjeYzsvTUsSxqyLJHOtesqif9GNfZO9rc,883
291
291
  mlrun/utils/v3io_clients.py,sha256=HL7Hma-pxaQBXMKcEnWqGLCpFgykwnszlabzeOHC9-E,1319
292
292
  mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
293
293
  mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
294
- mlrun/utils/notifications/notification_pusher.py,sha256=t355TB05IYrtCfFFVCsjP7vz0UhUty0MYUCeKI2bP-I,21583
294
+ mlrun/utils/notifications/notification_pusher.py,sha256=oEp4ScghAQRH99ahFPAKyegyFSLTM4nLdIeDs9_aL1M,21583
295
295
  mlrun/utils/notifications/notification/__init__.py,sha256=v2ULfsoGLlgBKS90ezou9wooBX7fo0NJgDsNdr51YEk,2113
296
296
  mlrun/utils/notifications/notification/base.py,sha256=t1sxExL2i2tJr3UuiQ9NTDONrpXcGBsrnxtAdemog2s,2293
297
297
  mlrun/utils/notifications/notification/console.py,sha256=leZrjwu3fFA1sCYsTxDXEGZ02SWTUk4GNzp7tT2uaCc,2532
@@ -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=t6HIAW0bfngiiVkmbGBKxXfYR_nBOMfJqDjcJV84cmc,88
303
+ mlrun/utils/version/version.json,sha256=IkJb029Bmvw9FBE87Dn38jmED3xMIy3H__mZ6t9jEVo,88
304
304
  mlrun/utils/version/version.py,sha256=HMwseV8xjTQ__6T6yUWojx_z6yUj7Io7O4NcCCH_sz8,1970
305
- mlrun-1.6.0rc7.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
306
- mlrun-1.6.0rc7.dist-info/METADATA,sha256=yq-rLH1L4BKvU4sWA-XZsaEauALytxofaMcuUidpJ9M,18594
307
- mlrun-1.6.0rc7.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
308
- mlrun-1.6.0rc7.dist-info/entry_points.txt,sha256=ZbXmb36B9JmK7EaleP8MIAbZSOQXQV0iwKR6si0HUWk,47
309
- mlrun-1.6.0rc7.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
310
- mlrun-1.6.0rc7.dist-info/RECORD,,
305
+ mlrun-1.6.0rc8.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
306
+ mlrun-1.6.0rc8.dist-info/METADATA,sha256=7LKDQBFx18N74EJe5McMHcuCHq8OM-8ozHoapdigwJA,18584
307
+ mlrun-1.6.0rc8.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
308
+ mlrun-1.6.0rc8.dist-info/entry_points.txt,sha256=ZbXmb36B9JmK7EaleP8MIAbZSOQXQV0iwKR6si0HUWk,47
309
+ mlrun-1.6.0rc8.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
310
+ mlrun-1.6.0rc8.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.3)
2
+ Generator: bdist_wheel (0.42.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5