mlrun 1.10.0rc9__tar.gz → 1.10.0rc10__tar.gz

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 (393) hide show
  1. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/LICENSE +1 -1
  2. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/Makefile +10 -20
  3. {mlrun-1.10.0rc9/mlrun.egg-info → mlrun-1.10.0rc10}/PKG-INFO +1 -2
  4. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/dependencies.py +0 -4
  5. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/constants.py +1 -0
  6. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/__init__.py +1 -0
  7. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/workflow.py +7 -0
  8. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/db/base.py +17 -0
  9. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/db/nopdb.py +9 -0
  10. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/tf_keras/mlrun_interface.py +1 -1
  11. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/tf_keras/model_handler.py +21 -12
  12. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/projects/__init__.py +1 -0
  13. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/projects/pipelines.py +34 -0
  14. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/routers.py +17 -13
  15. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/system_steps.py +2 -1
  16. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/v2_serving.py +2 -2
  17. mlrun-1.10.0rc10/mlrun/utils/version/version.json +4 -0
  18. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10/mlrun.egg-info}/PKG-INFO +1 -2
  19. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/pyproject.toml +3 -0
  20. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/setup.py +0 -2
  21. mlrun-1.10.0rc9/mlrun/utils/version/version.json +0 -4
  22. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/MANIFEST.in +0 -0
  23. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/README.md +0 -0
  24. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/dev-requirements.txt +0 -0
  25. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/dockerfiles/mlrun-api/requirements.txt +0 -0
  26. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/archive.zip +0 -0
  27. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/function.py +0 -0
  28. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/handler.py +0 -0
  29. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/infile.txt +0 -0
  30. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/load-project.ipynb +0 -0
  31. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/mlrun_basics.ipynb +0 -0
  32. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/mlrun_dask.ipynb +0 -0
  33. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/mlrun_db.ipynb +0 -0
  34. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/mlrun_export_import.ipynb +0 -0
  35. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/mlrun_jobs.ipynb +0 -0
  36. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/mlrun_sparkk8s.ipynb +0 -0
  37. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/mlrun_vault.ipynb +0 -0
  38. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/model.bst +0 -0
  39. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/new-project.ipynb +0 -0
  40. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/nulltst.py +0 -0
  41. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/params.csv +0 -0
  42. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/remote-spark.ipynb +0 -0
  43. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/secrets.txt +0 -0
  44. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/spark-function.py +0 -0
  45. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/training.py +0 -0
  46. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/v2_model_server.ipynb +0 -0
  47. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/examples/xgb_serving.ipynb +0 -0
  48. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/extras-requirements.txt +0 -0
  49. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/__init__.py +0 -0
  50. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/__main__.py +0 -0
  51. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/alerts/__init__.py +0 -0
  52. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/alerts/alert.py +0 -0
  53. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/api/schemas/__init__.py +0 -0
  54. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/artifacts/__init__.py +0 -0
  55. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/artifacts/base.py +0 -0
  56. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/artifacts/dataset.py +0 -0
  57. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/artifacts/document.py +0 -0
  58. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/artifacts/helpers.py +0 -0
  59. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/artifacts/llm_prompt.py +0 -0
  60. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/artifacts/manager.py +0 -0
  61. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/artifacts/model.py +0 -0
  62. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/artifacts/plots.py +0 -0
  63. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/__init__.py +0 -0
  64. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/db/__init__.py +0 -0
  65. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/db/dialects.py +0 -0
  66. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/formatters/__init__.py +0 -0
  67. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/formatters/artifact.py +0 -0
  68. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/formatters/base.py +0 -0
  69. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/formatters/feature_set.py +0 -0
  70. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/formatters/function.py +0 -0
  71. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/formatters/model_endpoint.py +0 -0
  72. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/formatters/pipeline.py +0 -0
  73. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/formatters/project.py +0 -0
  74. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/formatters/run.py +0 -0
  75. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/helpers.py +0 -0
  76. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/model_monitoring/__init__.py +0 -0
  77. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/model_monitoring/helpers.py +0 -0
  78. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/runtimes/constants.py +0 -0
  79. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/alert.py +0 -0
  80. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/api_gateway.py +0 -0
  81. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/artifact.py +0 -0
  82. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/auth.py +0 -0
  83. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/background_task.py +0 -0
  84. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/client_spec.py +0 -0
  85. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/clusterization_spec.py +0 -0
  86. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/common.py +0 -0
  87. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/constants.py +0 -0
  88. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/datastore_profile.py +0 -0
  89. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/events.py +0 -0
  90. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/feature_store.py +0 -0
  91. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/frontend_spec.py +0 -0
  92. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/function.py +0 -0
  93. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/http.py +0 -0
  94. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/hub.py +0 -0
  95. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/k8s.py +0 -0
  96. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/memory_reports.py +0 -0
  97. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/model_monitoring/__init__.py +0 -0
  98. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/model_monitoring/constants.py +0 -0
  99. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/model_monitoring/functions.py +0 -0
  100. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/model_monitoring/grafana.py +0 -0
  101. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/model_monitoring/model_endpoints.py +0 -0
  102. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/notification.py +0 -0
  103. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/object.py +0 -0
  104. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/pagination.py +0 -0
  105. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/partition.py +0 -0
  106. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/pipeline.py +0 -0
  107. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/project.py +0 -0
  108. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/regex.py +0 -0
  109. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/runs.py +0 -0
  110. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/runtime_resource.py +0 -0
  111. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/schedule.py +0 -0
  112. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/secret.py +0 -0
  113. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/serving.py +0 -0
  114. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/schemas/tag.py +0 -0
  115. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/secrets.py +0 -0
  116. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/common/types.py +0 -0
  117. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/config.py +0 -0
  118. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/data_types/__init__.py +0 -0
  119. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/data_types/data_types.py +0 -0
  120. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/data_types/infer.py +0 -0
  121. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/data_types/spark.py +0 -0
  122. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/data_types/to_pandas.py +0 -0
  123. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/__init__.py +0 -0
  124. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/alibaba_oss.py +0 -0
  125. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/azure_blob.py +0 -0
  126. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/base.py +0 -0
  127. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/datastore.py +0 -0
  128. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/datastore_profile.py +0 -0
  129. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/dbfs_store.py +0 -0
  130. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/filestore.py +0 -0
  131. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/google_cloud_storage.py +0 -0
  132. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/hdfs.py +0 -0
  133. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/inmem.py +0 -0
  134. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/redis.py +0 -0
  135. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/s3.py +0 -0
  136. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/snowflake_utils.py +0 -0
  137. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/sources.py +0 -0
  138. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/spark_udf.py +0 -0
  139. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/spark_utils.py +0 -0
  140. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/store_resources.py +0 -0
  141. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/storeytargets.py +0 -0
  142. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/targets.py +0 -0
  143. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/utils.py +0 -0
  144. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/v3io.py +0 -0
  145. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/vectorstore.py +0 -0
  146. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/wasbfs/__init__.py +0 -0
  147. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/datastore/wasbfs/fs.py +0 -0
  148. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/db/__init__.py +0 -0
  149. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/db/auth_utils.py +0 -0
  150. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/db/factory.py +0 -0
  151. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/db/httpdb.py +0 -0
  152. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/db/sql_types.py +0 -0
  153. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/errors.py +0 -0
  154. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/execution.py +0 -0
  155. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/__init__.py +0 -0
  156. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/api.py +0 -0
  157. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/common.py +0 -0
  158. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/feature_set.py +0 -0
  159. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/feature_vector.py +0 -0
  160. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/feature_vector_utils.py +0 -0
  161. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/ingestion.py +0 -0
  162. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/retrieval/__init__.py +0 -0
  163. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/retrieval/base.py +0 -0
  164. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/retrieval/dask_merger.py +0 -0
  165. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/retrieval/job.py +0 -0
  166. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/retrieval/local_merger.py +0 -0
  167. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/retrieval/spark_merger.py +0 -0
  168. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/retrieval/storey_merger.py +0 -0
  169. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/feature_store/steps.py +0 -0
  170. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/features.py +0 -0
  171. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/__init__.py +0 -0
  172. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_common/__init__.py +0 -0
  173. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_common/artifacts_library.py +0 -0
  174. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_common/mlrun_interface.py +0 -0
  175. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_common/model_handler.py +0 -0
  176. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_common/plan.py +0 -0
  177. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_common/producer.py +0 -0
  178. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_common/utils.py +0 -0
  179. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_dl_common/__init__.py +0 -0
  180. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_dl_common/loggers/__init__.py +0 -0
  181. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_dl_common/loggers/logger.py +0 -0
  182. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_dl_common/loggers/mlrun_logger.py +0 -0
  183. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py +0 -0
  184. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_dl_common/model_handler.py +0 -0
  185. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_dl_common/utils.py +0 -0
  186. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/__init__.py +0 -0
  187. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/artifacts_library.py +0 -0
  188. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/loggers/__init__.py +0 -0
  189. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/loggers/logger.py +0 -0
  190. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/loggers/mlrun_logger.py +0 -0
  191. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/model_handler.py +0 -0
  192. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/pkl_model_server.py +0 -0
  193. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/plan.py +0 -0
  194. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/plans/__init__.py +0 -0
  195. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/plans/calibration_curve_plan.py +0 -0
  196. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/plans/confusion_matrix_plan.py +0 -0
  197. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/plans/dataset_plan.py +0 -0
  198. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/plans/feature_importance_plan.py +0 -0
  199. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/plans/roc_curve_plan.py +0 -0
  200. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/producer.py +0 -0
  201. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/_ml_common/utils.py +0 -0
  202. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/auto_mlrun/__init__.py +0 -0
  203. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/auto_mlrun/auto_mlrun.py +0 -0
  204. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/huggingface/__init__.py +0 -0
  205. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/huggingface/model_server.py +0 -0
  206. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/__init__.py +0 -0
  207. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/callbacks/__init__.py +0 -0
  208. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/callbacks/callback.py +0 -0
  209. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/callbacks/logging_callback.py +0 -0
  210. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/callbacks/mlrun_logging_callback.py +0 -0
  211. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/mlrun_interfaces/__init__.py +0 -0
  212. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/mlrun_interfaces/booster_mlrun_interface.py +0 -0
  213. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py +0 -0
  214. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/mlrun_interfaces/model_mlrun_interface.py +0 -0
  215. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/model_handler.py +0 -0
  216. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/model_server.py +0 -0
  217. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/lgbm/utils.py +0 -0
  218. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/onnx/__init__.py +0 -0
  219. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/onnx/dataset.py +0 -0
  220. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/onnx/mlrun_interface.py +0 -0
  221. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/onnx/model_handler.py +0 -0
  222. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/onnx/model_server.py +0 -0
  223. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/parallel_coordinates.py +0 -0
  224. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/__init__.py +0 -0
  225. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/callbacks/__init__.py +0 -0
  226. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/callbacks/callback.py +0 -0
  227. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/callbacks/logging_callback.py +0 -0
  228. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py +0 -0
  229. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py +0 -0
  230. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/callbacks_handler.py +0 -0
  231. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/mlrun_interface.py +0 -0
  232. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/model_handler.py +0 -0
  233. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/model_server.py +0 -0
  234. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/pytorch/utils.py +0 -0
  235. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/sklearn/__init__.py +0 -0
  236. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/sklearn/estimator.py +0 -0
  237. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/sklearn/metric.py +0 -0
  238. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/sklearn/metrics_library.py +0 -0
  239. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/sklearn/mlrun_interface.py +0 -0
  240. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/sklearn/model_handler.py +0 -0
  241. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/sklearn/utils.py +0 -0
  242. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/tf_keras/__init__.py +0 -0
  243. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/tf_keras/callbacks/__init__.py +0 -0
  244. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/tf_keras/callbacks/logging_callback.py +0 -0
  245. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py +0 -0
  246. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py +0 -0
  247. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/tf_keras/model_server.py +0 -0
  248. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/tf_keras/utils.py +0 -0
  249. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/xgboost/__init__.py +0 -0
  250. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/xgboost/mlrun_interface.py +0 -0
  251. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/xgboost/model_handler.py +0 -0
  252. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/frameworks/xgboost/utils.py +0 -0
  253. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/k8s_utils.py +0 -0
  254. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/launcher/__init__.py +0 -0
  255. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/launcher/base.py +0 -0
  256. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/launcher/client.py +0 -0
  257. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/launcher/factory.py +0 -0
  258. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/launcher/local.py +0 -0
  259. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/launcher/remote.py +0 -0
  260. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/lists.py +0 -0
  261. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model.py +0 -0
  262. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/__init__.py +0 -0
  263. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/api.py +0 -0
  264. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/applications/__init__.py +0 -0
  265. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/applications/_application_steps.py +0 -0
  266. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/applications/base.py +0 -0
  267. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/applications/context.py +0 -0
  268. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/applications/evidently/__init__.py +0 -0
  269. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/applications/evidently/base.py +0 -0
  270. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/applications/histogram_data_drift.py +0 -0
  271. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/applications/results.py +0 -0
  272. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/controller.py +0 -0
  273. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/__init__.py +0 -0
  274. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/_schedules.py +0 -0
  275. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/_stats.py +0 -0
  276. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/__init__.py +0 -0
  277. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/base.py +0 -0
  278. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/helpers.py +0 -0
  279. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/tdengine/__init__.py +0 -0
  280. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +0 -0
  281. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py +0 -0
  282. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py +0 -0
  283. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +0 -0
  284. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/v3io/__init__.py +0 -0
  285. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +0 -0
  286. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +0 -0
  287. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/features_drift_table.py +0 -0
  288. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/helpers.py +0 -0
  289. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/metrics/__init__.py +0 -0
  290. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/metrics/histogram_distance.py +0 -0
  291. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/stream_processing.py +0 -0
  292. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/model_monitoring/writer.py +0 -0
  293. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/__init__.py +0 -0
  294. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/context_handler.py +0 -0
  295. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/errors.py +0 -0
  296. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/packager.py +0 -0
  297. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/packagers/__init__.py +0 -0
  298. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/packagers/default_packager.py +0 -0
  299. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/packagers/numpy_packagers.py +0 -0
  300. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/packagers/pandas_packagers.py +0 -0
  301. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/packagers/python_standard_library_packagers.py +0 -0
  302. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/packagers_manager.py +0 -0
  303. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/utils/__init__.py +0 -0
  304. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/utils/_archiver.py +0 -0
  305. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/utils/_formatter.py +0 -0
  306. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/utils/_pickler.py +0 -0
  307. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/utils/_supported_format.py +0 -0
  308. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/utils/log_hint_utils.py +0 -0
  309. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/package/utils/type_hint_utils.py +0 -0
  310. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/platforms/__init__.py +0 -0
  311. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/platforms/iguazio.py +0 -0
  312. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/projects/operations.py +0 -0
  313. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/projects/project.py +0 -0
  314. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/render.py +0 -0
  315. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/run.py +0 -0
  316. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/__init__.py +0 -0
  317. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/base.py +0 -0
  318. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/daskjob.py +0 -0
  319. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/databricks_job/__init__.py +0 -0
  320. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/databricks_job/databricks_cancel_task.py +0 -0
  321. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/databricks_job/databricks_runtime.py +0 -0
  322. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/databricks_job/databricks_wrapper.py +0 -0
  323. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/funcdoc.py +0 -0
  324. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/function_reference.py +0 -0
  325. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/generators.py +0 -0
  326. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/kubejob.py +0 -0
  327. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/local.py +0 -0
  328. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/mounts.py +0 -0
  329. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/mpijob/__init__.py +0 -0
  330. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/mpijob/abstract.py +0 -0
  331. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/mpijob/v1.py +0 -0
  332. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/nuclio/__init__.py +0 -0
  333. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/nuclio/api_gateway.py +0 -0
  334. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/nuclio/application/__init__.py +0 -0
  335. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/nuclio/application/application.py +0 -0
  336. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/nuclio/application/reverse_proxy.go +0 -0
  337. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/nuclio/function.py +0 -0
  338. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/nuclio/nuclio.py +0 -0
  339. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/nuclio/serving.py +0 -0
  340. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/pod.py +0 -0
  341. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/remotesparkjob.py +0 -0
  342. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/sparkjob/__init__.py +0 -0
  343. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/sparkjob/spark3job.py +0 -0
  344. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/runtimes/utils.py +0 -0
  345. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/secrets.py +0 -0
  346. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/__init__.py +0 -0
  347. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/merger.py +0 -0
  348. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/remote.py +0 -0
  349. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/server.py +0 -0
  350. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/serving_wrapper.py +0 -0
  351. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/states.py +0 -0
  352. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/utils.py +0 -0
  353. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/serving/v1_serving.py +0 -0
  354. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/track/__init__.py +0 -0
  355. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/track/tracker.py +0 -0
  356. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/track/tracker_manager.py +0 -0
  357. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/track/trackers/__init__.py +0 -0
  358. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/track/trackers/mlflow_tracker.py +0 -0
  359. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/__init__.py +0 -0
  360. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/async_http.py +0 -0
  361. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/azure_vault.py +0 -0
  362. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/clones.py +0 -0
  363. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/condition_evaluator.py +0 -0
  364. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/db.py +0 -0
  365. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/helpers.py +0 -0
  366. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/http.py +0 -0
  367. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/logger.py +0 -0
  368. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/notifications/__init__.py +0 -0
  369. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/notifications/notification/__init__.py +0 -0
  370. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/notifications/notification/base.py +0 -0
  371. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/notifications/notification/console.py +0 -0
  372. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/notifications/notification/git.py +0 -0
  373. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/notifications/notification/ipython.py +0 -0
  374. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/notifications/notification/mail.py +0 -0
  375. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/notifications/notification/slack.py +0 -0
  376. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/notifications/notification/webhook.py +0 -0
  377. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/notifications/notification_pusher.py +0 -0
  378. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/regex.py +0 -0
  379. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/retryer.py +0 -0
  380. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/singleton.py +0 -0
  381. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/v3io_clients.py +0 -0
  382. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/vault.py +0 -0
  383. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/version/__init__.py +0 -0
  384. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun/utils/version/version.py +0 -0
  385. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun.egg-info/SOURCES.txt +0 -0
  386. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun.egg-info/dependency_links.txt +0 -0
  387. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun.egg-info/entry_points.txt +0 -0
  388. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun.egg-info/not-zip-safe +0 -0
  389. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun.egg-info/requires.txt +0 -0
  390. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/mlrun.egg-info/top_level.txt +0 -0
  391. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/packages.py +0 -0
  392. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/requirements.txt +0 -0
  393. {mlrun-1.10.0rc9 → mlrun-1.10.0rc10}/setup.cfg +0 -0
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright [yyyy] [name of copyright owner]
189
+ Copyright 2020 Iguazio
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ PYTHON_VERSION ?= $(shell python --version)
35
35
  MLRUN_SKIP_COMPILE_SCHEMAS ?=
36
36
  INCLUDE_PYTHON_VERSION_SUFFIX ?=
37
37
  MLRUN_PIP_VERSION ?= 25.0.0
38
- MLRUN_UV_VERSION ?= 0.7.12
38
+ MLRUN_UV_VERSION ?= 0.7.14
39
39
  MLRUN_UV_IMAGE ?= ghcr.io/astral-sh/uv:$(MLRUN_UV_VERSION)
40
40
  MLRUN_CACHE_DATE ?= $(shell date +%s)
41
41
  # empty by default, can be set to something like "tag-name" which will cause to:
@@ -936,19 +936,9 @@ ifdef MLRUN_DOCKER_CACHE_FROM_TAG
936
936
  done;
937
937
  endif
938
938
 
939
- .PHONY: verify-uv-version
940
- verify-uv-version:
941
- @{ \
942
- uv_version=$$(uv self version | cut -d' ' -f2); \
943
- result=$$(python -m semver compare $$uv_version $(MLRUN_UV_VERSION)); \
944
- if [ "$$result" -eq -1 ]; then \
945
- echo "Error: The running uv version ($$uv_version) is outdated. Upgrade uv to version $(MLRUN_UV_VERSION)."; \
946
- exit 1; \
947
- fi; \
948
- }
949
939
 
950
940
  .PHONY: upgrade-mlrun-api-deps-lock
951
- upgrade-mlrun-api-deps-lock: verify-uv-version ## Upgrade mlrun-api locked requirements file
941
+ upgrade-mlrun-api-deps-lock: ## Upgrade mlrun-api locked requirements file
952
942
  uv pip compile \
953
943
  requirements.txt \
954
944
  extras-requirements.txt \
@@ -958,7 +948,7 @@ upgrade-mlrun-api-deps-lock: verify-uv-version ## Upgrade mlrun-api locked requi
958
948
  --output-file dockerfiles/mlrun-api/locked-requirements.txt
959
949
 
960
950
  .PHONY: upgrade-mlrun-mlrun-deps-lock
961
- upgrade-mlrun-mlrun-deps-lock: verify-uv-version ## Upgrade mlrun-mlrun locked requirements file
951
+ upgrade-mlrun-mlrun-deps-lock: ## Upgrade mlrun-mlrun locked requirements file
962
952
  uv pip compile \
963
953
  requirements.txt \
964
954
  extras-requirements.txt \
@@ -967,7 +957,7 @@ upgrade-mlrun-mlrun-deps-lock: verify-uv-version ## Upgrade mlrun-mlrun locked r
967
957
  --output-file dockerfiles/mlrun/locked-requirements.txt
968
958
 
969
959
  .PHONY: upgrade-mlrun-gpu-deps-lock
970
- upgrade-mlrun-gpu-deps-lock: verify-uv-version ## Upgrade mlrun-gpu locked requirements file
960
+ upgrade-mlrun-gpu-deps-lock: ## Upgrade mlrun-gpu locked requirements file
971
961
  uv pip compile \
972
962
  requirements.txt \
973
963
  extras-requirements.txt \
@@ -976,7 +966,7 @@ upgrade-mlrun-gpu-deps-lock: verify-uv-version ## Upgrade mlrun-gpu locked requi
976
966
  --output-file dockerfiles/gpu/locked-requirements.txt
977
967
 
978
968
  .PHONY: upgrade-mlrun-jupyter-deps-lock
979
- upgrade-mlrun-jupyter-deps-lock: verify-uv-version ## Upgrade mlrun-jupyter locked requirements file
969
+ upgrade-mlrun-jupyter-deps-lock: ## Upgrade mlrun-jupyter locked requirements file
980
970
  uv pip compile \
981
971
  requirements.txt \
982
972
  extras-requirements.txt \
@@ -986,7 +976,7 @@ upgrade-mlrun-jupyter-deps-lock: verify-uv-version ## Upgrade mlrun-jupyter lock
986
976
  --output-file dockerfiles/jupyter/locked-requirements.txt
987
977
 
988
978
  .PHONY: upgrade-mlrun-test-deps-lock
989
- upgrade-mlrun-test-deps-lock: verify-uv-version ## Upgrade mlrun test locked requirements file
979
+ upgrade-mlrun-test-deps-lock: ## Upgrade mlrun test locked requirements file
990
980
  uv pip compile \
991
981
  requirements.txt \
992
982
  extras-requirements.txt \
@@ -997,7 +987,7 @@ upgrade-mlrun-test-deps-lock: verify-uv-version ## Upgrade mlrun test locked req
997
987
  --output-file dockerfiles/test/locked-requirements.txt
998
988
 
999
989
  .PHONY: upgrade-mlrun-system-test-deps-lock
1000
- upgrade-mlrun-system-test-deps-lock: verify-uv-version ## Upgrade mlrun system test locked requirements file
990
+ upgrade-mlrun-system-test-deps-lock: ## Upgrade mlrun system test locked requirements file
1001
991
  uv pip compile \
1002
992
  requirements.txt \
1003
993
  extras-requirements.txt \
@@ -1007,8 +997,7 @@ upgrade-mlrun-system-test-deps-lock: verify-uv-version ## Upgrade mlrun system t
1007
997
  $(MLRUN_UV_UPGRADE_FLAG) \
1008
998
  --output-file dockerfiles/test-system/locked-requirements.txt
1009
999
 
1010
-
1011
- upgrade-mlrun-kfp-deps-lock: verify-uv-version ## Upgrade mlrun-kfp locked requirements file
1000
+ upgrade-mlrun-kfp-deps-lock: ## Upgrade mlrun-kfp locked requirements file
1012
1001
  uv pip compile \
1013
1002
  requirements.txt \
1014
1003
  dockerfiles/mlrun-kfp/requirements.txt \
@@ -1017,7 +1006,7 @@ upgrade-mlrun-kfp-deps-lock: verify-uv-version ## Upgrade mlrun-kfp locked requi
1017
1006
  --output-file dockerfiles/mlrun-kfp/locked-requirements.txt
1018
1007
 
1019
1008
  .PHONY: upgrade-mlrun-deps-lock
1020
- upgrade-mlrun-deps-lock: verify-uv-version ## Upgrade mlrun-* locked requirements file
1009
+ upgrade-mlrun-deps-lock: ## Upgrade mlrun-* locked requirements file
1021
1010
  @$(MAKE) -j \
1022
1011
  upgrade-mlrun-mlrun-deps-lock \
1023
1012
  upgrade-mlrun-api-deps-lock \
@@ -1027,6 +1016,7 @@ upgrade-mlrun-deps-lock: verify-uv-version ## Upgrade mlrun-* locked requirement
1027
1016
  upgrade-mlrun-test-deps-lock \
1028
1017
  upgrade-mlrun-system-test-deps-lock
1029
1018
 
1019
+
1030
1020
  .PHONY: coverage-combine
1031
1021
  coverage-combine: ## Combine all coverage reports, ignoring errors like missing or corrupted source files
1032
1022
  rm -f tests/coverage_reports/combined.coverage; \
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlrun
3
- Version: 1.10.0rc9
3
+ Version: 1.10.0rc10
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -9,7 +9,6 @@ License: Apache License 2.0
9
9
  Keywords: mlrun,mlops,data-science,machine-learning,experiment-tracking
10
10
  Classifier: Development Status :: 4 - Beta
11
11
  Classifier: Intended Audience :: Developers
12
- Classifier: License :: OSI Approved :: Apache Software License
13
12
  Classifier: Operating System :: POSIX :: Linux
14
13
  Classifier: Operating System :: Microsoft :: Windows
15
14
  Classifier: Operating System :: MacOS
@@ -19,10 +19,6 @@ def base_requirements() -> list[str]:
19
19
  return list(_load_dependencies_from_file("requirements.txt"))
20
20
 
21
21
 
22
- def dev_requirements() -> list[str]:
23
- return list(_load_dependencies_from_file("dev-requirements.txt"))
24
-
25
-
26
22
  def extra_requirements() -> dict[str, list[str]]:
27
23
  # NOTE:
28
24
  # - These are tested in `automation/package_test/test.py`. If you modify these, make sure to change the
@@ -76,6 +76,7 @@ class MLRunInternalLabels:
76
76
  kind = "kind"
77
77
  component = "component"
78
78
  mlrun_type = "mlrun__type"
79
+ original_workflow_id = "original-workflow-id"
79
80
 
80
81
  owner = "owner"
81
82
  v3io_user = "v3io_user"
@@ -218,6 +218,7 @@ from .serving import ModelRunnerStepData, MonitoringData
218
218
  from .tag import Tag, TagObjects
219
219
  from .workflow import (
220
220
  GetWorkflowResponse,
221
+ RerunWorkflowRequest,
221
222
  WorkflowRequest,
222
223
  WorkflowResponse,
223
224
  WorkflowSpec,
@@ -46,6 +46,13 @@ class WorkflowRequest(pydantic.v1.BaseModel):
46
46
  notifications: typing.Optional[list[Notification]] = None
47
47
 
48
48
 
49
+ class RerunWorkflowRequest(pydantic.v1.BaseModel):
50
+ run_name: typing.Optional[str] = (None,)
51
+ run_id: typing.Optional[str] = (None,)
52
+ notifications: typing.Optional[list[Notification]] = None
53
+ workflow_runner_node_selector: typing.Optional[dict[str, str]] = None
54
+
55
+
49
56
  class WorkflowResponse(pydantic.v1.BaseModel):
50
57
  project: str = None
51
58
  name: str = None
@@ -638,6 +638,16 @@ class RunDBInterface(ABC):
638
638
  ):
639
639
  pass
640
640
 
641
+ @abstractmethod
642
+ def retry_pipeline(
643
+ self,
644
+ run_id: str,
645
+ project: str,
646
+ namespace: Optional[str] = None,
647
+ timeout: int = 30,
648
+ ):
649
+ pass
650
+
641
651
  @abstractmethod
642
652
  def list_project_secrets(
643
653
  self,
@@ -1034,6 +1044,13 @@ class RunDBInterface(ABC):
1034
1044
  ):
1035
1045
  pass
1036
1046
 
1047
+ def get_project_background_task(
1048
+ self,
1049
+ project: str,
1050
+ name: str,
1051
+ ) -> mlrun.common.schemas.BackgroundTask:
1052
+ pass
1053
+
1037
1054
  @abstractmethod
1038
1055
  def submit_workflow(
1039
1056
  self,
@@ -524,6 +524,15 @@ class NopDB(RunDBInterface):
524
524
  ):
525
525
  pass
526
526
 
527
+ def retry_pipeline(
528
+ self,
529
+ run_id: str,
530
+ project: str,
531
+ namespace: Optional[str] = None,
532
+ timeout: int = 30,
533
+ ):
534
+ pass
535
+
527
536
  def list_pipelines(
528
537
  self,
529
538
  project: str,
@@ -280,7 +280,7 @@ class TFKerasMLRunInterface(MLRunInterface, ABC):
280
280
  print(f"Horovod worker #{self._hvd.rank()} is using CPU")
281
281
 
282
282
  # Adjust learning rate based on the number of GPUs:
283
- if hasattr(self.optimizer, "lr"):
283
+ if hasattr(optimizer, "lr"):
284
284
  optimizer.lr *= self._hvd.size()
285
285
  else:
286
286
  optimizer.learning_rate *= self._hvd.size()
@@ -518,7 +518,6 @@ class TFKerasModelHandler(DLModelHandler):
518
518
  )
519
519
 
520
520
  # Read additional files according to the model format used:
521
- # # ModelFormats.SAVED_MODEL - Unzip the SavedModel archive:
522
521
  if self._model_format == TFKerasModelHandler.ModelFormats.SAVED_MODEL:
523
522
  # Unzip the SavedModel directory:
524
523
  with zipfile.ZipFile(self._model_file, "r") as zip_file:
@@ -528,21 +527,17 @@ class TFKerasModelHandler(DLModelHandler):
528
527
  os.path.dirname(self._model_file), self._model_name
529
528
  )
530
529
  elif self._model_format == TFKerasModelHandler.ModelFormats.KERAS:
531
- # When keras tried to load it, it validates the suffix. The `artifacts.model.get_model` function is
532
- # downloading the keras file to a temp file with a `pkl` suffix, so it needs to be replaced:
533
- self._model_file = self._model_file.rsplit(".pkl", 1)[0] + ".keras"
530
+ # Rename the model file suffix:
531
+ self._rename_model_file_suffix(suffix="keras")
534
532
  elif self._model_format == TFKerasModelHandler.ModelFormats.H5:
535
- # When keras tried to load it, it validates the suffix. The `artifacts.model.get_model` function is
536
- # downloading the keras file to a temp file with a `pkl` suffix, so it needs to be replaced:
537
- self._model_file = self._model_file.rsplit(".pkl", 1)[0] + ".h5"
538
- # # ModelFormats.JSON_ARCHITECTURE_H5_WEIGHTS - Get the weights file:
539
- elif (
533
+ # Rename the model file suffix:
534
+ self._rename_model_file_suffix(suffix="h5")
535
+ elif ( # ModelFormats.JSON_ARCHITECTURE_H5_WEIGHTS
540
536
  self._model_format
541
537
  == TFKerasModelHandler.ModelFormats.JSON_ARCHITECTURE_H5_WEIGHTS
542
538
  ):
543
- # When keras tried to load it, it validates the suffix. The `artifacts.model.get_model` function is
544
- # downloading the keras file to a temp file with a `pkl` suffix, so it needs to be replaced:
545
- self._model_file = self._model_file.rsplit(".pkl", 1)[0] + ".json"
539
+ # Rename the model file suffix:
540
+ self._rename_model_file_suffix(suffix="json")
546
541
  # Get the weights file:
547
542
  self._weights_file = self._extra_data[
548
543
  self._get_weights_file_artifact_name()
@@ -551,6 +546,20 @@ class TFKerasModelHandler(DLModelHandler):
551
546
  # Continue collecting from abstract class:
552
547
  super()._collect_files_from_store_object()
553
548
 
549
+ def _rename_model_file_suffix(self, suffix: str):
550
+ """
551
+ Rename the model file suffix to the given one.
552
+
553
+ This is used for the case of loading a model from a store object that was saved with a different suffix as when
554
+ keras tries to load it, it validates the suffix. The `artifacts.model.get_model` function is downloading the
555
+ file to a temp file with a `pkl` suffix, so it needs to be replaced:than the one keras expects.
556
+
557
+ :param suffix: The suffix to rename the model file to (without the trailing dot).
558
+ """
559
+ new_name = self._model_file.rsplit(".", 1)[0] + f".{suffix}"
560
+ os.rename(self._model_file, new_name)
561
+ self._model_file = new_name
562
+
554
563
  def _collect_files_from_local_path(self):
555
564
  """
556
565
  If the model path given is of a local path, search for the needed model files and collect them into this handler
@@ -32,6 +32,7 @@ from .pipelines import (
32
32
  load_and_run_workflow,
33
33
  load_and_run,
34
34
  pipeline_context,
35
+ rerun_workflow,
35
36
  ) # noqa
36
37
  from .project import (
37
38
  MlrunProject,
@@ -1070,6 +1070,40 @@ def github_webhook(request):
1070
1070
  return {"msg": "pushed"}
1071
1071
 
1072
1072
 
1073
+ def rerun_workflow(
1074
+ context: mlrun.execution.MLClientCtx, run_uid: str, project_name: str
1075
+ ):
1076
+ """
1077
+ Re-run a workflow by retrying a previously failed KFP pipeline.
1078
+
1079
+ :param context: MLRun context.
1080
+ :param run_uid: The run UID of the original workflow to retry.
1081
+ :param project_name: The project name.
1082
+ """
1083
+
1084
+ try:
1085
+ # TODO in followups: handle start and running notifications
1086
+
1087
+ # Retry the pipeline - TODO: add submit-direct flag when created
1088
+ db = mlrun.get_run_db()
1089
+ new_pipeline_id = db.retry_pipeline(run_uid, project_name)
1090
+
1091
+ # Store result for observability
1092
+ context.set_label("workflow-id", new_pipeline_id)
1093
+ context.log_result("workflow_id", new_pipeline_id)
1094
+
1095
+ # wait for pipeline completion so monitor will push terminal notifications
1096
+ wait_for_pipeline_completion(
1097
+ new_pipeline_id,
1098
+ project=project_name,
1099
+ )
1100
+
1101
+ # Temporary exception
1102
+ except Exception as exc:
1103
+ context.logger.error("Failed to rerun workflow", exc=err_to_str(exc))
1104
+ raise
1105
+
1106
+
1073
1107
  def load_and_run(context, *args, **kwargs):
1074
1108
  """
1075
1109
  This function serves as an alias to `load_and_run_workflow`,
@@ -80,10 +80,16 @@ class BaseModelRouter(RouterToDict):
80
80
  self._input_path = input_path
81
81
  self._result_path = result_path
82
82
  self._background_task_check_timestamp = None
83
- self._background_task_terminate = False
84
83
  self._background_task_current_state = None
85
84
  self.kwargs = kwargs
86
85
 
86
+ @property
87
+ def background_task_reached_terminal_state(self):
88
+ return (
89
+ self._background_task_current_state
90
+ and self._background_task_current_state != "running"
91
+ )
92
+
87
93
  def parse_event(self, event):
88
94
  parsed_event = {}
89
95
  try:
@@ -185,35 +191,33 @@ class BaseModelRouter(RouterToDict):
185
191
  background_task.status.state
186
192
  in mlrun.common.schemas.BackgroundTaskState.terminal_states()
187
193
  ):
188
- logger.debug(
194
+ logger.info(
189
195
  f"Model endpoint creation task completed with state {background_task.status.state}"
190
196
  )
191
- self._background_task_terminate = True
192
197
  else: # in progress
193
- logger.debug(
198
+ logger.info(
194
199
  f"Model endpoint creation task is still in progress with the current state: "
195
- f"{background_task.status.state}. Events will not be monitored for the next 15 seconds",
200
+ f"{background_task.status.state}. Events will not be monitored for the next "
201
+ f"{mlrun.mlconf.model_endpoint_monitoring.model_endpoint_creation_check_period} seconds",
196
202
  name=self.name,
197
203
  background_task_check_timestamp=self._background_task_check_timestamp.isoformat(),
198
204
  )
199
205
  return background_task.status.state
200
206
  else:
201
- logger.debug(
202
- "Model endpoint creation task name not provided",
207
+ logger.error(
208
+ "Model endpoint creation task name not provided. This function is not being monitored.",
203
209
  )
204
210
  elif self.context.monitoring_mock:
205
- self._background_task_terminate = (
206
- True # If mock monitoring we return success and terminate task check.
207
- )
208
211
  return mlrun.common.schemas.BackgroundTaskState.succeeded
209
- self._background_task_terminate = True # If mock without monitoring we return failed and terminate task check.
210
212
  return mlrun.common.schemas.BackgroundTaskState.failed
211
213
 
212
214
  def _update_background_task_state(self, event):
213
- if not self._background_task_terminate and (
215
+ if not self.background_task_reached_terminal_state and (
214
216
  self._background_task_check_timestamp is None
215
217
  or now_date() - self._background_task_check_timestamp
216
- >= timedelta(seconds=15)
218
+ >= timedelta(
219
+ seconds=mlrun.mlconf.model_endpoint_monitoring.model_endpoint_creation_check_period
220
+ )
217
221
  ):
218
222
  self._background_task_current_state = self._get_background_task_status()
219
223
  if event.body:
@@ -314,7 +314,8 @@ class BackgroundTaskStatus(storey.MapClass):
314
314
  else: # in progress
315
315
  logger.info(
316
316
  f"Model endpoint creation task is still in progress with the current state: "
317
- f"{background_task_state}. Events will not be monitored for the next 15 seconds",
317
+ f"{background_task_state}. Events will not be monitored for the next "
318
+ f"{mlrun.mlconf.model_endpoint_monitoring.model_endpoint_creation_check_period} seconds",
318
319
  name=self.name,
319
320
  background_task_check_timestamp=self._background_task_check_timestamp.isoformat(),
320
321
  )
@@ -508,8 +508,8 @@ class V2ModelServer(StepToDict):
508
508
  name=self.name,
509
509
  )
510
510
  else:
511
- logger.debug(
512
- "Model endpoint creation task name not provided",
511
+ logger.error(
512
+ "Model endpoint creation task name not provided. This function is not being monitored.",
513
513
  )
514
514
 
515
515
 
@@ -0,0 +1,4 @@
1
+ {
2
+ "git_commit": "7711525d2af418d6991128a0d3253094584ddedc",
3
+ "version": "1.10.0-rc10"
4
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlrun
3
- Version: 1.10.0rc9
3
+ Version: 1.10.0rc10
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -9,7 +9,6 @@ License: Apache License 2.0
9
9
  Keywords: mlrun,mlops,data-science,machine-learning,experiment-tracking
10
10
  Classifier: Development Status :: 4 - Beta
11
11
  Classifier: Intended Audience :: Developers
12
- Classifier: License :: OSI Approved :: Apache Software License
13
12
  Classifier: Operating System :: POSIX :: Linux
14
13
  Classifier: Operating System :: Microsoft :: Windows
15
14
  Classifier: Operating System :: MacOS
@@ -39,6 +39,9 @@ author = "Iguazio"
39
39
  [tool.ruff.format]
40
40
  docstring-code-format = true
41
41
 
42
+ [tool.uv]
43
+ required-version = ">=0.7.14"
44
+
42
45
  [tool.uv.pip]
43
46
  python-version = "3.9" # TODO: change to 3.11 when 3.9 is no longer supported
44
47
  generate-hashes = true
@@ -69,12 +69,10 @@ setup(
69
69
  ],
70
70
  python_requires=">=3.9, <3.12",
71
71
  install_requires=dependencies.base_requirements(),
72
- tests_require=dependencies.dev_requirements(),
73
72
  extras_require=dependencies.extra_requirements(),
74
73
  classifiers=[
75
74
  "Development Status :: 4 - Beta",
76
75
  "Intended Audience :: Developers",
77
- "License :: OSI Approved :: Apache Software License",
78
76
  "Operating System :: POSIX :: Linux",
79
77
  "Operating System :: Microsoft :: Windows",
80
78
  "Operating System :: MacOS",
@@ -1,4 +0,0 @@
1
- {
2
- "git_commit": "15a29118a80d3da0d4438ad82c31f14af981fccc",
3
- "version": "1.10.0-rc9"
4
- }
File without changes
File without changes
File without changes
File without changes
File without changes