mlrun 1.7.0rc48__py3-none-any.whl → 1.7.0rc52__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 (32) hide show
  1. mlrun/common/formatters/run.py +3 -0
  2. mlrun/common/schemas/auth.py +3 -0
  3. mlrun/common/schemas/model_monitoring/constants.py +0 -7
  4. mlrun/common/schemas/workflow.py +9 -2
  5. mlrun/data_types/data_types.py +1 -1
  6. mlrun/db/httpdb.py +11 -4
  7. mlrun/execution.py +37 -6
  8. mlrun/feature_store/retrieval/spark_merger.py +0 -4
  9. mlrun/model.py +17 -0
  10. mlrun/model_monitoring/api.py +1 -12
  11. mlrun/model_monitoring/applications/__init__.py +1 -2
  12. mlrun/model_monitoring/applications/base.py +2 -182
  13. mlrun/model_monitoring/applications/context.py +2 -9
  14. mlrun/model_monitoring/applications/evidently_base.py +0 -74
  15. mlrun/model_monitoring/applications/histogram_data_drift.py +2 -2
  16. mlrun/model_monitoring/controller.py +45 -208
  17. mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +10 -9
  18. mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +38 -29
  19. mlrun/projects/operations.py +11 -8
  20. mlrun/projects/pipelines.py +16 -11
  21. mlrun/projects/project.py +1 -4
  22. mlrun/runtimes/nuclio/api_gateway.py +6 -0
  23. mlrun/utils/helpers.py +40 -0
  24. mlrun/utils/version/version.json +2 -2
  25. {mlrun-1.7.0rc48.dist-info → mlrun-1.7.0rc52.dist-info}/METADATA +107 -25
  26. {mlrun-1.7.0rc48.dist-info → mlrun-1.7.0rc52.dist-info}/RECORD +30 -32
  27. mlrun/model_monitoring/application.py +0 -19
  28. mlrun/model_monitoring/evidently_application.py +0 -20
  29. {mlrun-1.7.0rc48.dist-info → mlrun-1.7.0rc52.dist-info}/LICENSE +0 -0
  30. {mlrun-1.7.0rc48.dist-info → mlrun-1.7.0rc52.dist-info}/WHEEL +0 -0
  31. {mlrun-1.7.0rc48.dist-info → mlrun-1.7.0rc52.dist-info}/entry_points.txt +0 -0
  32. {mlrun-1.7.0rc48.dist-info → mlrun-1.7.0rc52.dist-info}/top_level.txt +0 -0
@@ -1,20 +0,0 @@
1
- # Copyright 2023 Iguazio
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
- # TODO : delete this file in 1.9.0
16
- from mlrun.model_monitoring.applications import ( # noqa: F401
17
- _HAS_EVIDENTLY,
18
- SUPPORTED_EVIDENTLY_VERSION,
19
- EvidentlyModelMonitoringApplicationBase,
20
- )