mlrun 1.10.0rc40__py3-none-any.whl → 1.11.0rc16__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.
- mlrun/__init__.py +3 -2
- mlrun/__main__.py +0 -4
- mlrun/artifacts/dataset.py +2 -2
- mlrun/artifacts/plots.py +1 -1
- mlrun/{model_monitoring/db/tsdb/tdengine → auth}/__init__.py +2 -3
- mlrun/auth/nuclio.py +89 -0
- mlrun/auth/providers.py +429 -0
- mlrun/auth/utils.py +415 -0
- mlrun/common/constants.py +7 -0
- mlrun/common/model_monitoring/helpers.py +41 -4
- mlrun/common/runtimes/constants.py +28 -0
- mlrun/common/schemas/__init__.py +13 -3
- mlrun/common/schemas/alert.py +2 -2
- mlrun/common/schemas/api_gateway.py +3 -0
- mlrun/common/schemas/auth.py +10 -10
- mlrun/common/schemas/client_spec.py +4 -0
- mlrun/common/schemas/constants.py +25 -0
- mlrun/common/schemas/frontend_spec.py +1 -8
- mlrun/common/schemas/function.py +24 -0
- mlrun/common/schemas/hub.py +3 -2
- mlrun/common/schemas/model_monitoring/__init__.py +1 -1
- mlrun/common/schemas/model_monitoring/constants.py +2 -2
- mlrun/common/schemas/secret.py +17 -2
- mlrun/common/secrets.py +95 -1
- mlrun/common/types.py +10 -10
- mlrun/config.py +53 -15
- mlrun/data_types/infer.py +2 -2
- mlrun/datastore/__init__.py +2 -3
- mlrun/datastore/base.py +274 -10
- mlrun/datastore/datastore.py +1 -1
- mlrun/datastore/datastore_profile.py +49 -17
- mlrun/datastore/model_provider/huggingface_provider.py +6 -2
- mlrun/datastore/model_provider/model_provider.py +2 -2
- mlrun/datastore/model_provider/openai_provider.py +2 -2
- mlrun/datastore/s3.py +15 -16
- mlrun/datastore/sources.py +1 -1
- mlrun/datastore/store_resources.py +4 -4
- mlrun/datastore/storeytargets.py +16 -10
- mlrun/datastore/targets.py +1 -1
- mlrun/datastore/utils.py +16 -3
- mlrun/datastore/v3io.py +1 -1
- mlrun/db/base.py +36 -12
- mlrun/db/httpdb.py +316 -101
- mlrun/db/nopdb.py +29 -11
- mlrun/errors.py +4 -2
- mlrun/execution.py +11 -12
- mlrun/feature_store/api.py +1 -1
- mlrun/feature_store/common.py +1 -1
- mlrun/feature_store/feature_vector_utils.py +1 -1
- mlrun/feature_store/steps.py +8 -6
- mlrun/frameworks/_common/utils.py +3 -3
- mlrun/frameworks/_dl_common/loggers/logger.py +1 -1
- mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py +2 -1
- mlrun/frameworks/_ml_common/loggers/mlrun_logger.py +1 -1
- mlrun/frameworks/_ml_common/utils.py +2 -1
- mlrun/frameworks/auto_mlrun/auto_mlrun.py +4 -3
- mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py +2 -1
- mlrun/frameworks/onnx/dataset.py +2 -1
- mlrun/frameworks/onnx/mlrun_interface.py +2 -1
- mlrun/frameworks/pytorch/callbacks/logging_callback.py +5 -4
- mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py +2 -1
- mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py +2 -1
- mlrun/frameworks/pytorch/utils.py +2 -1
- mlrun/frameworks/sklearn/metric.py +2 -1
- mlrun/frameworks/tf_keras/callbacks/logging_callback.py +5 -4
- mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py +2 -1
- mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py +2 -1
- mlrun/hub/__init__.py +37 -0
- mlrun/hub/base.py +142 -0
- mlrun/hub/module.py +67 -76
- mlrun/hub/step.py +113 -0
- mlrun/launcher/base.py +2 -1
- mlrun/launcher/local.py +2 -1
- mlrun/model.py +12 -2
- mlrun/model_monitoring/__init__.py +0 -1
- mlrun/model_monitoring/api.py +2 -2
- mlrun/model_monitoring/applications/base.py +20 -6
- mlrun/model_monitoring/applications/context.py +1 -0
- mlrun/model_monitoring/controller.py +7 -17
- mlrun/model_monitoring/db/_schedules.py +2 -16
- mlrun/model_monitoring/db/_stats.py +2 -13
- mlrun/model_monitoring/db/tsdb/__init__.py +9 -7
- mlrun/model_monitoring/db/tsdb/base.py +2 -4
- mlrun/model_monitoring/db/tsdb/preaggregate.py +234 -0
- mlrun/model_monitoring/db/tsdb/stream_graph_steps.py +63 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_metrics_queries.py +414 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_predictions_queries.py +376 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_results_queries.py +590 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_connection.py +434 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_connector.py +541 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_operations.py +808 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_schema.py +502 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_stream.py +163 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_stream_graph_steps.py +60 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/utils/timescaledb_dataframe_processor.py +141 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/utils/timescaledb_query_builder.py +585 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/writer_graph_steps.py +73 -0
- mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +4 -6
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +147 -79
- mlrun/model_monitoring/features_drift_table.py +2 -1
- mlrun/model_monitoring/helpers.py +2 -1
- mlrun/model_monitoring/stream_processing.py +18 -16
- mlrun/model_monitoring/writer.py +4 -3
- mlrun/package/__init__.py +2 -1
- mlrun/platforms/__init__.py +0 -44
- mlrun/platforms/iguazio.py +1 -1
- mlrun/projects/operations.py +11 -10
- mlrun/projects/project.py +81 -82
- mlrun/run.py +4 -7
- mlrun/runtimes/__init__.py +2 -204
- mlrun/runtimes/base.py +89 -21
- mlrun/runtimes/constants.py +225 -0
- mlrun/runtimes/daskjob.py +4 -2
- mlrun/runtimes/databricks_job/databricks_runtime.py +2 -1
- mlrun/runtimes/mounts.py +5 -0
- mlrun/runtimes/nuclio/__init__.py +12 -8
- mlrun/runtimes/nuclio/api_gateway.py +36 -6
- mlrun/runtimes/nuclio/application/application.py +200 -32
- mlrun/runtimes/nuclio/function.py +154 -49
- mlrun/runtimes/nuclio/serving.py +55 -42
- mlrun/runtimes/pod.py +59 -10
- mlrun/secrets.py +46 -2
- mlrun/serving/__init__.py +2 -0
- mlrun/serving/remote.py +5 -5
- mlrun/serving/routers.py +3 -3
- mlrun/serving/server.py +46 -43
- mlrun/serving/serving_wrapper.py +6 -2
- mlrun/serving/states.py +554 -207
- mlrun/serving/steps.py +1 -1
- mlrun/serving/system_steps.py +42 -33
- mlrun/track/trackers/mlflow_tracker.py +29 -31
- mlrun/utils/helpers.py +89 -16
- mlrun/utils/http.py +9 -2
- mlrun/utils/notifications/notification/git.py +1 -1
- mlrun/utils/notifications/notification/mail.py +39 -16
- mlrun/utils/notifications/notification_pusher.py +2 -2
- mlrun/utils/version/version.json +2 -2
- mlrun/utils/version/version.py +3 -4
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/METADATA +39 -49
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/RECORD +144 -130
- mlrun/db/auth_utils.py +0 -152
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +0 -343
- mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py +0 -75
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py +0 -281
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +0 -1368
- mlrun/model_monitoring/db/tsdb/tdengine/writer_graph_steps.py +0 -51
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/WHEEL +0 -0
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/entry_points.txt +0 -0
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/top_level.txt +0 -0
|
@@ -1,31 +1,35 @@
|
|
|
1
|
-
mlrun/__init__.py,sha256=
|
|
2
|
-
mlrun/__main__.py,sha256=
|
|
3
|
-
mlrun/config.py,sha256=
|
|
4
|
-
mlrun/errors.py,sha256=
|
|
5
|
-
mlrun/execution.py,sha256
|
|
1
|
+
mlrun/__init__.py,sha256=i2u7OUvZX08YjqYNU4CcilBuAfYWDs9PVIm3WWc6wUM,8150
|
|
2
|
+
mlrun/__main__.py,sha256=5TC4M3wrgOzy0-3Id4LVCEHH6n5vx7hjTZVQDj88-ig,48144
|
|
3
|
+
mlrun/config.py,sha256=NQMg-KAT9hXnUSZHFfoA9oQnITNtJ-s5t8ZzvN0bPU4,75143
|
|
4
|
+
mlrun/errors.py,sha256=bV32YCM3e77wiDS6yvmhKWtWwqGl8Hp1WXYWASOgHZ0,9134
|
|
5
|
+
mlrun/execution.py,sha256=-bVDEYVbk9wPFWkMyyMYo7AMWbcSKjNaxYriYK27fq0,58688
|
|
6
6
|
mlrun/features.py,sha256=jMEXo6NB36A6iaxNEJWzdtYwUmglYD90OIKTIEeWhE8,15841
|
|
7
7
|
mlrun/k8s_utils.py,sha256=zIacVyvsXrXVO-DdxAoGQOGEDWOGJEFJzYPhPVnn3z8,24548
|
|
8
8
|
mlrun/lists.py,sha256=OlaV2QIFUzmenad9kxNJ3k4whlDyxI3zFbGwr6vpC5Y,8561
|
|
9
|
-
mlrun/model.py,sha256
|
|
9
|
+
mlrun/model.py,sha256=-0vzlSOvLH8fkwMPBmM4nuSWkQfhZMuot7WgxqCCQ_U,89386
|
|
10
10
|
mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
|
|
11
|
-
mlrun/run.py,sha256=
|
|
12
|
-
mlrun/secrets.py,sha256=
|
|
11
|
+
mlrun/run.py,sha256=FVsnz6D3S5RLRPjjuJ39iSe4cQXCxtmSu83rHzcdrBg,49686
|
|
12
|
+
mlrun/secrets.py,sha256=O5xicIi2ji-RWX7aXUvvGiHSOpPuYYhvnEX1byiIyFA,11498
|
|
13
13
|
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
14
|
mlrun/alerts/alert.py,sha256=QQFZGydQbx9RvAaSiaH-ALQZVcDKQX5lgizqj_rXW2k,15948
|
|
15
15
|
mlrun/artifacts/__init__.py,sha256=ZrEUNto7tGdnBGteCp9zOyO8b78z7O3xgcpzUt9UHE4,1240
|
|
16
16
|
mlrun/artifacts/base.py,sha256=6x_2KPMNOciiNNUsiKgJ-b6ejxAHm_Ro22xODLoTc44,28559
|
|
17
|
-
mlrun/artifacts/dataset.py,sha256=
|
|
17
|
+
mlrun/artifacts/dataset.py,sha256=H_qTxmkqwdXfT1Hm1FgpVuHoNYo2T9cjtqFKCgKPm3Q,16421
|
|
18
18
|
mlrun/artifacts/document.py,sha256=VYoWcFUB45B-z_nhbedFCpiorZsDBxkTNRLWjYvri0Q,17585
|
|
19
19
|
mlrun/artifacts/helpers.py,sha256=ejTEC9vkI2w5FHn5Gopw3VEIxuni0bazWUnR6BBWZfU,1662
|
|
20
20
|
mlrun/artifacts/llm_prompt.py,sha256=pshXzYXPDBAe6C0vecn9MyRNyPdxrah3c80oZUKkYWA,9840
|
|
21
21
|
mlrun/artifacts/manager.py,sha256=_cDNCS7wwmFIsucJ2uOgHxZQECmIGb8Wye64b6oLgKU,16642
|
|
22
22
|
mlrun/artifacts/model.py,sha256=9yU9NZlxxY_ifSyXOgMnPi_RMDmawY9A-rLi-_VJs4c,25662
|
|
23
|
-
mlrun/artifacts/plots.py,sha256=
|
|
23
|
+
mlrun/artifacts/plots.py,sha256=pNHqBo8y1O1mNUf_TAHpbKoJcuGB3Jt9dhgRGikDoTI,4237
|
|
24
|
+
mlrun/auth/__init__.py,sha256=lbuFrcMxfPKhGjHjVwFuYDw6O4clrJ5-vlv9_JBeuEo,657
|
|
25
|
+
mlrun/auth/nuclio.py,sha256=xa_vhZ5d606iJ9vbrbdWppRdaJXseQdB7KhXbB8sP3U,3132
|
|
26
|
+
mlrun/auth/providers.py,sha256=qiW3u8chyGvCSOXQ_JhOJ6U-zbl57CuzWZYmUbdCbV0,15094
|
|
27
|
+
mlrun/auth/utils.py,sha256=UiKDot0iC1SDdfi-KW-WMvmKeA4dg69QJKXvImRoLe0,15989
|
|
24
28
|
mlrun/common/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
25
|
-
mlrun/common/constants.py,sha256=
|
|
29
|
+
mlrun/common/constants.py,sha256=ymy3jqBd1zttqvqtQaYUmXli_v_ZBBmC60_Oqn2x0Ek,4540
|
|
26
30
|
mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
|
|
27
|
-
mlrun/common/secrets.py,sha256=
|
|
28
|
-
mlrun/common/types.py,sha256=
|
|
31
|
+
mlrun/common/secrets.py,sha256=aEgvQqJhH_PZotXEahrRfs3A5AGjCzl8o5KihWQSsvQ,7789
|
|
32
|
+
mlrun/common/types.py,sha256=OoeScW1KpsVQzcXj3IWzXdr3zCn-glt3wVNX9gNQafE,996
|
|
29
33
|
mlrun/common/db/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
30
34
|
mlrun/common/db/dialects.py,sha256=QN9bx7CTo32IIdJ2J3ZrsX8IUdp_BPxBtl0LyjMEC9g,868
|
|
31
35
|
mlrun/common/formatters/__init__.py,sha256=au7S3M3wa9964RpQhFSvflk5-i5SWMeb3kek8Gvt4kg,889
|
|
@@ -38,25 +42,25 @@ mlrun/common/formatters/pipeline.py,sha256=bMjW0lDZWozuq4B3WtzZtXncvKHcPF7cdN_Ym
|
|
|
38
42
|
mlrun/common/formatters/project.py,sha256=4cxC5B6PKvpL2SYxxqg9vpEhoaWtart6iCIr2A85lE0,2100
|
|
39
43
|
mlrun/common/formatters/run.py,sha256=LlqhhVY4dAp5y17k_sWBtHaJogdNdtJWF0iO9sX-bUw,1059
|
|
40
44
|
mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
41
|
-
mlrun/common/model_monitoring/helpers.py,sha256=
|
|
42
|
-
mlrun/common/runtimes/constants.py,sha256=
|
|
43
|
-
mlrun/common/schemas/__init__.py,sha256=
|
|
44
|
-
mlrun/common/schemas/alert.py,sha256=
|
|
45
|
-
mlrun/common/schemas/api_gateway.py,sha256=
|
|
45
|
+
mlrun/common/model_monitoring/helpers.py,sha256=m54WvxDMrFYhw1jFoZMCv2R2pSDavmEWfcEZAYszxaI,7813
|
|
46
|
+
mlrun/common/runtimes/constants.py,sha256=WQnJ1k-3a6pIM5PHXtEJNNNkIgpSI6N-j9dZ8kUQIds,13019
|
|
47
|
+
mlrun/common/schemas/__init__.py,sha256=U8gMVKHXF7WLj3E0_4n3l8U97IJpEKBlI3mlvzpYy00,5675
|
|
48
|
+
mlrun/common/schemas/alert.py,sha256=Ti-MpFRlWzsm-PEPBbFDmb5ZfBMkpZc-O2Wh6h7KyBA,10182
|
|
49
|
+
mlrun/common/schemas/api_gateway.py,sha256=jIqhi6nMMgn3oNUdPxsUNBoxdBCLQYjtMQYY66lIkV8,7228
|
|
46
50
|
mlrun/common/schemas/artifact.py,sha256=JojMRRa4n0Rge2olGOpUyp348hkTGsMEnvUBRSoo4oE,4310
|
|
47
|
-
mlrun/common/schemas/auth.py,sha256=
|
|
51
|
+
mlrun/common/schemas/auth.py,sha256=O3kq7RhGXc2rzgEy5XLCWVNn3jqgpQ4lD0EQOP_1RWQ,6812
|
|
48
52
|
mlrun/common/schemas/background_task.py,sha256=nE4Y_0uceSHfuYwGjOEklnQqlH3kJ8GG3tP81pn-3YU,1839
|
|
49
|
-
mlrun/common/schemas/client_spec.py,sha256
|
|
53
|
+
mlrun/common/schemas/client_spec.py,sha256=LiIBi_xPuu_ESwk9rJhPt3OcJ1OOzNte5o6nVqFED0E,3084
|
|
50
54
|
mlrun/common/schemas/clusterization_spec.py,sha256=fBhXFnaXXo_Wy96Y9SVofuFjTSn7uQGFnLd0uaKDWT0,893
|
|
51
55
|
mlrun/common/schemas/common.py,sha256=3GcfkT7yOWmrieCSrjOJ_4aXkiUWwLd_kxqMDP1-_hw,3540
|
|
52
|
-
mlrun/common/schemas/constants.py,sha256=
|
|
56
|
+
mlrun/common/schemas/constants.py,sha256=jALtSoqgL-zoMmOCQYLCQEBuR5cewzIqwccFjoBKrmA,7971
|
|
53
57
|
mlrun/common/schemas/datastore_profile.py,sha256=jDva-_XTCU0EyExs5uB2PVR7-Tj4g4ZDRm-RTpNsq9A,751
|
|
54
58
|
mlrun/common/schemas/events.py,sha256=LjAU7t-aNhkECbF_o2mzXiZ5mn4299d-_HOd20Xv6iQ,1025
|
|
55
59
|
mlrun/common/schemas/feature_store.py,sha256=Kz7AWQ1RCPA8sTL9cGRZnfUBhWf4MX_5yyYswtCOcCk,4802
|
|
56
|
-
mlrun/common/schemas/frontend_spec.py,sha256=
|
|
57
|
-
mlrun/common/schemas/function.py,sha256=
|
|
60
|
+
mlrun/common/schemas/frontend_spec.py,sha256=qPvVvqUmLd5bAIF6uo-F2vyNwe2eNUR5_WhrqPNSKN8,2487
|
|
61
|
+
mlrun/common/schemas/function.py,sha256=NIOqZOIrRu_28gvFquNu0iSOeQ8YQONlGMHuXpo2eh8,5836
|
|
58
62
|
mlrun/common/schemas/http.py,sha256=KozLgGV1vpNXQ8Qptr_Zm6BEbc2VcU42hSphe_ffe_A,704
|
|
59
|
-
mlrun/common/schemas/hub.py,sha256=
|
|
63
|
+
mlrun/common/schemas/hub.py,sha256=a3rj1LRhsu2-gYbmGs1Z3J9XgtxAfmIKgOk3kg6xvPA,4281
|
|
60
64
|
mlrun/common/schemas/k8s.py,sha256=YgyDK7KNt29GHCOxd1vw-jnl_757cIPLzViCTNT1Zcc,1403
|
|
61
65
|
mlrun/common/schemas/memory_reports.py,sha256=Q6w7xofQlMD-iqjE8uK9yU5ijLPkht_EsXJCMad_TQo,899
|
|
62
66
|
mlrun/common/schemas/notification.py,sha256=Q-tBaU_V7YZiuj3ankuACf3_-hb874_osxq0eaW90Ww,5549
|
|
@@ -69,26 +73,26 @@ mlrun/common/schemas/regex.py,sha256=r-phg_9ge1lFraPCQd_wpnYGQ1oOCj3xChycJxZtIQY
|
|
|
69
73
|
mlrun/common/schemas/runs.py,sha256=yKY29ByTS4SruWQyPpDNFGulMrcT9Ms-3lnwBUDp3us,751
|
|
70
74
|
mlrun/common/schemas/runtime_resource.py,sha256=TybJmCHJXmm1z3s5J1dd89TeFE6lG5t7vjcrf1R9YfE,1568
|
|
71
75
|
mlrun/common/schemas/schedule.py,sha256=L7z9Lp06-xmFmdp0q5PypCU_DCl6zZIyQTVoJa01gfM,4291
|
|
72
|
-
mlrun/common/schemas/secret.py,sha256=
|
|
76
|
+
mlrun/common/schemas/secret.py,sha256=LVoW6h8ZHVWBcQY0Z_5TjDYDS8f4pISn45nBS37x-nk,1757
|
|
73
77
|
mlrun/common/schemas/serving.py,sha256=4ek9JZDagkdeXyfkX6P6xp4deUNSf_kqXUaXcKSuv-g,1391
|
|
74
78
|
mlrun/common/schemas/tag.py,sha256=1wqEiAujsElojWb3qmuyfcaLFjXSNAAQdafkDx7fkn0,891
|
|
75
79
|
mlrun/common/schemas/workflow.py,sha256=Y-FHJnxs5c86yetuOAPdEJPkne__tLPCxjSXSb4lrjo,2541
|
|
76
|
-
mlrun/common/schemas/model_monitoring/__init__.py,sha256=
|
|
77
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
80
|
+
mlrun/common/schemas/model_monitoring/__init__.py,sha256=IlUzLpidp6mIhruYuy3rtG2XJP3dqpKIN2nFsqneiCs,1954
|
|
81
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=8Zb3Qh18QUTXocqJj-W0joiLH540oKEyUtGlMZmenrc,13909
|
|
78
82
|
mlrun/common/schemas/model_monitoring/functions.py,sha256=Ej8ChjmMZq1HP32THNABoktQHN1mdlkSqKbofxu10i4,2536
|
|
79
83
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=THQlLfPBevBksta8p5OaIsBaJtsNSXexLvHrDxOaVns,2095
|
|
80
84
|
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=aevkfKWRbRj2cxabeUrVka49lJ2SRDA7I8rD-Fihr2Q,13648
|
|
81
85
|
mlrun/data_types/__init__.py,sha256=wdxGS1PTnaKXiNZ7PYGxxo86OifHH7NYoArIjDJksLA,1054
|
|
82
86
|
mlrun/data_types/data_types.py,sha256=0_oKLC6-sXL2_nnaDMP_HSXB3fD1nJAG4J2Jq6sGNNw,4998
|
|
83
|
-
mlrun/data_types/infer.py,sha256=
|
|
87
|
+
mlrun/data_types/infer.py,sha256=1qLH61D7HGlnd_kdUM_neOUXFFlqquwBZV3mG_gSmlk,6476
|
|
84
88
|
mlrun/data_types/spark.py,sha256=I5JC887dT9RGs5Tqz5zaRxlCMyhMeFmwuNbExQoyW0E,9625
|
|
85
89
|
mlrun/data_types/to_pandas.py,sha256=KOy0FLXPJirsgH6szcC5BI6t70yVDCjuo6LmuYHNTuI,11429
|
|
86
|
-
mlrun/datastore/__init__.py,sha256=
|
|
90
|
+
mlrun/datastore/__init__.py,sha256=Ce67-qHOxuin-8Vcvc9t9MdXEmPBjcsgFKXQaeslMes,6081
|
|
87
91
|
mlrun/datastore/alibaba_oss.py,sha256=E0t0-e9Me2t2Mux2LWdC9riOG921TgNjhoy897JJX7o,4932
|
|
88
92
|
mlrun/datastore/azure_blob.py,sha256=LQZ3p0MEe1G5oNwCUo5xA4_xLhykMtnlV0aA5tWuzdA,17978
|
|
89
|
-
mlrun/datastore/base.py,sha256=
|
|
90
|
-
mlrun/datastore/datastore.py,sha256=
|
|
91
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
93
|
+
mlrun/datastore/base.py,sha256=8uhAn73cPBiwyUpf2TtSqrGjeqJmy4PZ7RVY5ZfqGY4,34783
|
|
94
|
+
mlrun/datastore/datastore.py,sha256=2M7FKJng4CYM9Kmo7Q_hD55DDK7YtGldDeCS-MhLCJ4,13411
|
|
95
|
+
mlrun/datastore/datastore_profile.py,sha256=KYUL28w_AUcyVKRN90hKsSTnYU-TYcGpJ57kPgIE_JQ,26205
|
|
92
96
|
mlrun/datastore/dbfs_store.py,sha256=CJwst1598qxiu63-Qa0c3e5E8LjeCv1XbMyWI7A6irY,6560
|
|
93
97
|
mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
|
|
94
98
|
mlrun/datastore/google_cloud_storage.py,sha256=NREwZT7BCI0HfmOGkjpy5S3psiL_rgQSi43MaazJcKk,8711
|
|
@@ -96,38 +100,37 @@ mlrun/datastore/hdfs.py,sha256=NhxvPojQQDEm0xzB6RcvnD4uLZOxfHHKYWV4gwzG7D4,1928
|
|
|
96
100
|
mlrun/datastore/inmem.py,sha256=IsM83nn-3CqmGdLzim7i9ZmJwG6ZGhBZGN6_hszWZnE,2951
|
|
97
101
|
mlrun/datastore/redis.py,sha256=yzkVU8c9glXsjVW48RXKzEXaHPrCfQFHabFa4SJ0pN0,5567
|
|
98
102
|
mlrun/datastore/remote_client.py,sha256=235UhdsSu31s95EEEICJYHnjj2GadR7wZ6tiDAAJ1gs,2370
|
|
99
|
-
mlrun/datastore/s3.py,sha256=
|
|
103
|
+
mlrun/datastore/s3.py,sha256=qFvXtQENUNo2DUsk4KDRNmTudRgllgnpHQF_TTTsGH0,10702
|
|
100
104
|
mlrun/datastore/snowflake_utils.py,sha256=KBbIN8REEuQyk1tVIW33rpwORzbC0Wmj0pm43h-dInA,1481
|
|
101
|
-
mlrun/datastore/sources.py,sha256=
|
|
105
|
+
mlrun/datastore/sources.py,sha256=8R2V3G2P8WL1CCxF_Sr5UQuSaGmh_zvYLlH-AaNhflQ,49066
|
|
102
106
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
103
107
|
mlrun/datastore/spark_utils.py,sha256=dn0RWpYzee-M8UZw-NVuHAdqlNAZ7VO-fNtI8ZiDkyM,2864
|
|
104
|
-
mlrun/datastore/store_resources.py,sha256=
|
|
105
|
-
mlrun/datastore/storeytargets.py,sha256=
|
|
106
|
-
mlrun/datastore/targets.py,sha256=
|
|
107
|
-
mlrun/datastore/utils.py,sha256=
|
|
108
|
-
mlrun/datastore/v3io.py,sha256=
|
|
108
|
+
mlrun/datastore/store_resources.py,sha256=2vCPCFl1W6tNLnU0R9C0fjrS93X7aShaQt-lcEiAxmc,6843
|
|
109
|
+
mlrun/datastore/storeytargets.py,sha256=RmSW0ytdIZiYizVLrAi-h-rRX8P_d9fKGoTUMx4OKIQ,6857
|
|
110
|
+
mlrun/datastore/targets.py,sha256=Jh_Z4mKvBUgKXo1Tt20Zg6fuowFg7ea5-tcIKGSIAl0,79164
|
|
111
|
+
mlrun/datastore/utils.py,sha256=UPo6Y75ICPQaeue1HHNyaQziatoSr4VASQr8E5PN1wQ,12663
|
|
112
|
+
mlrun/datastore/v3io.py,sha256=ss686lIdHeM278wcDmaXPjS94Zrln-BI2IhQt-6RTOs,8230
|
|
109
113
|
mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
|
|
110
114
|
mlrun/datastore/model_provider/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
111
|
-
mlrun/datastore/model_provider/huggingface_provider.py,sha256=
|
|
115
|
+
mlrun/datastore/model_provider/huggingface_provider.py,sha256=i9Cg3uY8B0zKz-WjTxHdu-IpHsYRDTlxpyX6v9QrUxs,16444
|
|
112
116
|
mlrun/datastore/model_provider/mock_model_provider.py,sha256=uIgGP3yZtLDLS-2WMyH20SGfrpodpyxyIw4WYTpHhUg,3059
|
|
113
|
-
mlrun/datastore/model_provider/model_provider.py,sha256=
|
|
114
|
-
mlrun/datastore/model_provider/openai_provider.py,sha256=
|
|
117
|
+
mlrun/datastore/model_provider/model_provider.py,sha256=aLl_JgECC66Av78c5ujpF3ODifXkuxgpswxhwcMNKhk,14096
|
|
118
|
+
mlrun/datastore/model_provider/openai_provider.py,sha256=ZhX-oOyec7f8Z_46choewUetKbvQPSRjzzLw1JYc_9c,15565
|
|
115
119
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
116
120
|
mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
|
|
117
121
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
118
|
-
mlrun/db/
|
|
119
|
-
mlrun/db/base.py,sha256=8K0KlVfsGce1LgoB7pVOQCmQ2ceBnDz13PJlba1xuSw,32461
|
|
122
|
+
mlrun/db/base.py,sha256=_SgUu4T1TU3bmO4bSLAio_ENoni9bTMPVMxgkFw81Jw,33060
|
|
120
123
|
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
121
|
-
mlrun/db/httpdb.py,sha256=
|
|
122
|
-
mlrun/db/nopdb.py,sha256=
|
|
124
|
+
mlrun/db/httpdb.py,sha256=CLADbdJOLwvGvCjmP44cwyiS0u47OVTS6vmObliehKY,247644
|
|
125
|
+
mlrun/db/nopdb.py,sha256=W1VaQyHKE6W9LhzXdUb6MUTnKJ0TpMPDfn_6ZZ6S9Jw,29331
|
|
123
126
|
mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
|
|
124
|
-
mlrun/feature_store/api.py,sha256=
|
|
125
|
-
mlrun/feature_store/common.py,sha256=
|
|
127
|
+
mlrun/feature_store/api.py,sha256=_B5tpSVhwO5jr-2Er5RDrw-mko-MBPIE-UC0ZZdw_cI,32167
|
|
128
|
+
mlrun/feature_store/common.py,sha256=Ytahifq2NMKH9ZMTr_OqXDYFiiKwNE8kku7W50zCVRw,12818
|
|
126
129
|
mlrun/feature_store/feature_set.py,sha256=HNLZ9pAzS16dgMMQzwTUsIh0dqpa08-fRX4PEwUbmNc,55785
|
|
127
130
|
mlrun/feature_store/feature_vector.py,sha256=OCPgHkvPNwKUYgjGBP0S-NRJvm0vnvrcyIWMJxz1JVk,31117
|
|
128
|
-
mlrun/feature_store/feature_vector_utils.py,sha256=
|
|
131
|
+
mlrun/feature_store/feature_vector_utils.py,sha256=Ls3AKULHcT20dIUbEr8pLOiMA_IWFRQJcXzhLNRhYnc,17188
|
|
129
132
|
mlrun/feature_store/ingestion.py,sha256=kT3Hbz1PBjsJd-GPBm2ap0sg9-fiXxaSXoEIo-dOXpU,11361
|
|
130
|
-
mlrun/feature_store/steps.py,sha256=
|
|
133
|
+
mlrun/feature_store/steps.py,sha256=Hcu5bvqvpLhL1YEtZs_jbZ612cHLhNwq_ilXgDzhh60,29390
|
|
131
134
|
mlrun/feature_store/retrieval/__init__.py,sha256=bwA4copPpLQi8fyoUAYtOyrlw0-6f3-Knct8GbJSvRg,1282
|
|
132
135
|
mlrun/feature_store/retrieval/base.py,sha256=9RQoD3FKZ7BYfvhGCtWnkze_kbOBnZbnQeaPKB5qjls,30433
|
|
133
136
|
mlrun/feature_store/retrieval/dask_merger.py,sha256=Z0EoRjGlqs-kysdA333ethE771O9c-BhggPwn_qcCKw,5574
|
|
@@ -143,24 +146,24 @@ mlrun/frameworks/_common/mlrun_interface.py,sha256=raVhrEf18z76KrUuGxG4RgiuTtcrK
|
|
|
143
146
|
mlrun/frameworks/_common/model_handler.py,sha256=6XmUjSEK8UwpBeGfG0F7QdIDUik-rMRK2KqOLTT-9G0,55529
|
|
144
147
|
mlrun/frameworks/_common/plan.py,sha256=Yr98b5lkCV0K0u_krnU8gZJiXj14xfrFjJ6xD6QJdn0,3444
|
|
145
148
|
mlrun/frameworks/_common/producer.py,sha256=hvROnYIieo739eSUeaWPepwN4sXFX4xKlir_3QpoiPk,5764
|
|
146
|
-
mlrun/frameworks/_common/utils.py,sha256=
|
|
149
|
+
mlrun/frameworks/_common/utils.py,sha256=ClPiZzB8cnUt8N9kqkxpi-5ApN5dspFXzYgWB9Hdia0,9130
|
|
147
150
|
mlrun/frameworks/_dl_common/__init__.py,sha256=bwGbKOynYW1Ohl7890yKH32Nr5GqX55P5nzLKMJDJiI,648
|
|
148
151
|
mlrun/frameworks/_dl_common/model_handler.py,sha256=jsHRwATt1sjRT_wUMeK3QKYndvhzBIPMqciO0NwFj7k,1150
|
|
149
152
|
mlrun/frameworks/_dl_common/utils.py,sha256=nYzcvqXB1QVxAXfXStYmeYmLCUzkpZUtlbp3j8OmXXg,995
|
|
150
153
|
mlrun/frameworks/_dl_common/loggers/__init__.py,sha256=ey4GGD6wm03ri70pGX7Ow-S-NU8UBA3vKa9FBh1d1d0,685
|
|
151
|
-
mlrun/frameworks/_dl_common/loggers/logger.py,sha256=
|
|
154
|
+
mlrun/frameworks/_dl_common/loggers/logger.py,sha256=s00VJT4t9Mfcj80iECY-nkum1f9MwNXVEJno21qsyFo,11476
|
|
152
155
|
mlrun/frameworks/_dl_common/loggers/mlrun_logger.py,sha256=okIidfYdcH_FsZgFtAurN3wFhsCs2gpJdlHkW-p6Obw,14787
|
|
153
|
-
mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py,sha256=
|
|
156
|
+
mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py,sha256=CQlldkdy2Ag77gATL6H4T0NK8L8Q_n0vu0su9z782CA,27902
|
|
154
157
|
mlrun/frameworks/_ml_common/__init__.py,sha256=kXyw4g8e8qU0OWElHo6lmIpN16vhIqayb6nVDC9tr50,854
|
|
155
158
|
mlrun/frameworks/_ml_common/artifacts_library.py,sha256=3JjTAM3GiM2o8GWN24wvkW5EiAGU6O6UJPJw-HLggI8,3144
|
|
156
159
|
mlrun/frameworks/_ml_common/model_handler.py,sha256=wydZVvZHkOPy_-ku1PGfOAOLeC24xI6B38I4UmSQwKg,17094
|
|
157
160
|
mlrun/frameworks/_ml_common/pkl_model_server.py,sha256=tQLSEvuZojG7JWKK2wVLN06LKuKdecbv56l3nAFIfvA,2716
|
|
158
161
|
mlrun/frameworks/_ml_common/plan.py,sha256=7guWRBmZ16EvIl8CWtlQK7q9J8iAgLf0wsy80jKywH8,4863
|
|
159
162
|
mlrun/frameworks/_ml_common/producer.py,sha256=_b8HxSOoNPe8BpVbkbKErhG-EuPH8EIgtIyoXm_hgFU,4060
|
|
160
|
-
mlrun/frameworks/_ml_common/utils.py,sha256=
|
|
163
|
+
mlrun/frameworks/_ml_common/utils.py,sha256=8AhfLcfBa9Vr61UjblwE7YbG1R_wnpV9QXfV_iovtYY,10503
|
|
161
164
|
mlrun/frameworks/_ml_common/loggers/__init__.py,sha256=guo4L6Dntr_M-hzm2fPh1DoGkL2wmCuxqytKHf-rYAw,635
|
|
162
165
|
mlrun/frameworks/_ml_common/loggers/logger.py,sha256=yAur8XUDZrUYHKT5gRglH_mLoqCNzjpvMG5uaXIqx2k,5628
|
|
163
|
-
mlrun/frameworks/_ml_common/loggers/mlrun_logger.py,sha256=
|
|
166
|
+
mlrun/frameworks/_ml_common/loggers/mlrun_logger.py,sha256=FsfOGQXt0Ls-SpPS3pHO-m3niG1v44sYVBcpEq3IGxE,6406
|
|
164
167
|
mlrun/frameworks/_ml_common/plans/__init__.py,sha256=qasoseYqCf_dxne9kywLtpASBqd6831gtl4g5VjkjHM,820
|
|
165
168
|
mlrun/frameworks/_ml_common/plans/calibration_curve_plan.py,sha256=5htF8KUXW9gVfA18Mj-1zgqBzq5DmOAz-iw2OoN4IZE,4892
|
|
166
169
|
mlrun/frameworks/_ml_common/plans/confusion_matrix_plan.py,sha256=A5qPoKfKul69SNn95Q02T3dZAtBd_-R8AMFioDgMlXg,6067
|
|
@@ -168,7 +171,7 @@ mlrun/frameworks/_ml_common/plans/dataset_plan.py,sha256=Z5vLPIppisM0bM3SZkqjzdK
|
|
|
168
171
|
mlrun/frameworks/_ml_common/plans/feature_importance_plan.py,sha256=mTZqNjcCZApk9Ml2kKfBqNNwWVBYLXjvLOew1dUsIH0,5284
|
|
169
172
|
mlrun/frameworks/_ml_common/plans/roc_curve_plan.py,sha256=baS2b3kKMzal13BxplZy8b4fvqGfnURZ9RbtzeFan6Q,7002
|
|
170
173
|
mlrun/frameworks/auto_mlrun/__init__.py,sha256=lhk2SpPecVQ1jOuEnViKWQeXK_LLWUUg1MAkoBrNm60,604
|
|
171
|
-
mlrun/frameworks/auto_mlrun/auto_mlrun.py,sha256=
|
|
174
|
+
mlrun/frameworks/auto_mlrun/auto_mlrun.py,sha256=QGxoxsAgAtbjwXa-umBEg54oLcyE-D1hNE6vRRdUtGI,24217
|
|
172
175
|
mlrun/frameworks/huggingface/__init__.py,sha256=tFhuz2Q6FgBpWUpRfl5dqhFDTdUYV3EZW4RNVs55V34,619
|
|
173
176
|
mlrun/frameworks/huggingface/model_server.py,sha256=aSNL3Qd3C4WBIiS9apv9aKwHQk4k083PyKHY11h8kpY,6133
|
|
174
177
|
mlrun/frameworks/lgbm/__init__.py,sha256=5JaF-fsfdqE_4hzcub9k9uvV6DpbvnzUn8B4rdt59R4,16192
|
|
@@ -181,11 +184,11 @@ mlrun/frameworks/lgbm/callbacks/logging_callback.py,sha256=K5uSdeo_93N3D9O3XJ_ML
|
|
|
181
184
|
mlrun/frameworks/lgbm/callbacks/mlrun_logging_callback.py,sha256=QnFJl-SDSm_dMeno6XmiTgdmFXVfogpp5Z-XCh6J074,4108
|
|
182
185
|
mlrun/frameworks/lgbm/mlrun_interfaces/__init__.py,sha256=Lm_n_c0VLFRz8E4L9nQjJEPk7W9RYjjyLt2m9h2KlOo,740
|
|
183
186
|
mlrun/frameworks/lgbm/mlrun_interfaces/booster_mlrun_interface.py,sha256=7WauBHLb5dXPv-qKAp52fgLG--jeVQlvYTR4xsvJjNk,1530
|
|
184
|
-
mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py,sha256=
|
|
187
|
+
mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py,sha256=ZA8ZtyzMDxHAJUMvILNGdWl037ZtydHevnuuXs9slbI,14297
|
|
185
188
|
mlrun/frameworks/lgbm/mlrun_interfaces/model_mlrun_interface.py,sha256=Z7kCE90HzVyMdtpiECYf-9na0QukL1-CXnFKXQ2YUT0,1332
|
|
186
189
|
mlrun/frameworks/onnx/__init__.py,sha256=OXClzprUne4d5cIq7YyWCH8FGdzMlQYrMtmn8RqkwKw,689
|
|
187
|
-
mlrun/frameworks/onnx/dataset.py,sha256=
|
|
188
|
-
mlrun/frameworks/onnx/mlrun_interface.py,sha256=
|
|
190
|
+
mlrun/frameworks/onnx/dataset.py,sha256=wphvuS5dxA-CPRBbeKy_2hc_dGum8SCOGzC2dgqYCSQ,6141
|
|
191
|
+
mlrun/frameworks/onnx/mlrun_interface.py,sha256=MGMZwc8zI9U4ivcAriXqCdWPL6zvVUr3pEiwVQuTzi0,2445
|
|
189
192
|
mlrun/frameworks/onnx/model_handler.py,sha256=rTv1pk4bw18wQxvm1zzz8ZLRR1ltv0McHwPCy6hxu6k,6188
|
|
190
193
|
mlrun/frameworks/onnx/model_server.py,sha256=lxNC2hjNF5MxMIFKKJboidHoXGey_5TTOtZTR65ewrk,7102
|
|
191
194
|
mlrun/frameworks/pytorch/__init__.py,sha256=iuQxBeHs58oGty2rza1QfdwOHLxjDqONR7085d2wi_A,22147
|
|
@@ -193,15 +196,15 @@ mlrun/frameworks/pytorch/callbacks_handler.py,sha256=WE4q9Dc0VgiwcVqHSWV0TcMCk2t
|
|
|
193
196
|
mlrun/frameworks/pytorch/mlrun_interface.py,sha256=yzgkMooIwH_-Vj0Rr4wqiupPGBSp4DxYW-9v7J8IbuQ,44790
|
|
194
197
|
mlrun/frameworks/pytorch/model_handler.py,sha256=0mlks7CPMhual0gXTxfl6f5HAtYYdxrxC4SGzTfxiOo,22503
|
|
195
198
|
mlrun/frameworks/pytorch/model_server.py,sha256=ZsIIi9dOKi7NNvdErQLCQPc8N8bykbCRNP2as7SZciU,10227
|
|
196
|
-
mlrun/frameworks/pytorch/utils.py,sha256=
|
|
199
|
+
mlrun/frameworks/pytorch/utils.py,sha256=eDZv3z35aZ6NLwn8P2IBfkE7f__T5zjDDWAql_YUEcQ,4541
|
|
197
200
|
mlrun/frameworks/pytorch/callbacks/__init__.py,sha256=6fknB2bdTg2SgY48DbdeRKd6oio5IPjzHOPwXL3tZ50,794
|
|
198
201
|
mlrun/frameworks/pytorch/callbacks/callback.py,sha256=PDVvXihQXhs4GVZMU4XupXr6rPqWW4Esmy4M8HOKkDE,11537
|
|
199
|
-
mlrun/frameworks/pytorch/callbacks/logging_callback.py,sha256=
|
|
200
|
-
mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py,sha256=
|
|
201
|
-
mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py,sha256=
|
|
202
|
+
mlrun/frameworks/pytorch/callbacks/logging_callback.py,sha256=b9ckXJzfcfz96LhYSxAVEuCQzsLvyKi3Q-0yz0PAg1g,23321
|
|
203
|
+
mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py,sha256=3WFaUHIfnsTzGZ5XgT6mNasbKmM7mmJlhTvfb5YfeL4,9464
|
|
204
|
+
mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py,sha256=SZHDs2L29LDdnSkPdXNmsNKP9PF5iJEuXanbKIQjRTA,26554
|
|
202
205
|
mlrun/frameworks/sklearn/__init__.py,sha256=l0jTFf71rPOBINw0jx7_Un6nVcfwxJsZvCK4aS6T6zY,10385
|
|
203
206
|
mlrun/frameworks/sklearn/estimator.py,sha256=7FT6Wce1D4TpReNbKINDQ0wvAsSgFml1OqCclfIIcvw,5859
|
|
204
|
-
mlrun/frameworks/sklearn/metric.py,sha256=
|
|
207
|
+
mlrun/frameworks/sklearn/metric.py,sha256=UNppkuXF1e7KL3cv0qvxxp2bbesU55i2zZkT-V2Qhk4,7145
|
|
205
208
|
mlrun/frameworks/sklearn/metrics_library.py,sha256=ETbsBgp1hHjw0Vzhejz3NccE-EgRwIWGQ-5yPeOXZIc,12270
|
|
206
209
|
mlrun/frameworks/sklearn/mlrun_interface.py,sha256=Lk1MKzP7d72R6_1PTWO5pKY1VUEHcUaXQ4ZHQ_c4x7g,14338
|
|
207
210
|
mlrun/frameworks/sklearn/model_handler.py,sha256=m7ohGO8sphuVU0vZAzVNBATY0WNUpQb_SmaO6xkZx8U,4752
|
|
@@ -212,54 +215,64 @@ mlrun/frameworks/tf_keras/model_handler.py,sha256=jBTBAS8CtftwFkXwt7mLbJNw_Lbfw3
|
|
|
212
215
|
mlrun/frameworks/tf_keras/model_server.py,sha256=60iJRl_9ZYPCzxdfiJM_-BtECKZZTOKWBJ36O-GLjEc,9652
|
|
213
216
|
mlrun/frameworks/tf_keras/utils.py,sha256=Z8hA1CgpSJWLC_T6Ay7xZKVyWlX9B85MSmQr2biXRag,4582
|
|
214
217
|
mlrun/frameworks/tf_keras/callbacks/__init__.py,sha256=sd8aWG2jO9mO_noZca0ReVf8X6fSCqO_di1Z-mT8FH8,742
|
|
215
|
-
mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=
|
|
216
|
-
mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py,sha256=
|
|
217
|
-
mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py,sha256=
|
|
218
|
+
mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=85uksRGHj1eY8fy0jE6fga-hIYUsOUuEQRTHWzhMJcA,22348
|
|
219
|
+
mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py,sha256=C3pZAJ-V6KK29SP7SyvJNUdk9ZawoxnOB3Vc7vAaOFE,8864
|
|
220
|
+
mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py,sha256=R-Tk1lwDRHB3-6rg2zxaYhhPQcD05ttaTBYaM2gONmI,28642
|
|
218
221
|
mlrun/frameworks/xgboost/__init__.py,sha256=NyFRxu5v5z8oegbJP05PFUmfJL3I3JeN1PYHjIbfXpo,10335
|
|
219
222
|
mlrun/frameworks/xgboost/mlrun_interface.py,sha256=KINOf0udbY75raTewjEFGNlIRyE0evpoJAWQrSVu17Y,877
|
|
220
223
|
mlrun/frameworks/xgboost/model_handler.py,sha256=bJq4D1VK3rzhALovqIV5mS0LvGiTlsgAkHanD25pU2c,11663
|
|
221
224
|
mlrun/frameworks/xgboost/utils.py,sha256=4rShiFChzDbWJ4HoTo4qV_lj-Z89pHBAp6Z1yHmU8wA,1068
|
|
222
|
-
mlrun/hub/__init__.py,sha256=
|
|
223
|
-
mlrun/hub/
|
|
225
|
+
mlrun/hub/__init__.py,sha256=kNzqWwZ9tYw3wNxgLx98sd0DDZw6sUI5pNkaa-jT6nE,1912
|
|
226
|
+
mlrun/hub/base.py,sha256=GXYDRtgeVT0_Ly-mk0CnsSatmj_n0Mg2P3W2THohr6A,5580
|
|
227
|
+
mlrun/hub/module.py,sha256=lS--lUHggvvFYQFGx7SVRTAIAYYSgCPo1sitYNOodVc,6445
|
|
228
|
+
mlrun/hub/step.py,sha256=BPtNjVsYN-IkK0ldpmZESADpAKOvEPab7_YdMaeyq7Q,3925
|
|
224
229
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
225
|
-
mlrun/launcher/base.py,sha256=
|
|
230
|
+
mlrun/launcher/base.py,sha256=lX0Lu4QgpXke5aFy4tQeyZ7oYcXJ2pR8wTijbNOU9wM,17405
|
|
226
231
|
mlrun/launcher/client.py,sha256=cl40ZdF2fU1QbUKdl4Xnucb1u2h-8_dn095qIUyxbuM,6402
|
|
227
232
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
228
|
-
mlrun/launcher/local.py,sha256=
|
|
233
|
+
mlrun/launcher/local.py,sha256=UHnkMFCuiHNcE_xReEeW_flF3yGFRT0DZhfQpXykmGQ,12245
|
|
229
234
|
mlrun/launcher/remote.py,sha256=zFXE52Cq_7EkC8lfNKT0ceIbye0CfFiundF7O1YU4Xw,7810
|
|
230
|
-
mlrun/model_monitoring/__init__.py,sha256=
|
|
231
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
232
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
233
|
-
mlrun/model_monitoring/features_drift_table.py,sha256=
|
|
234
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
235
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
236
|
-
mlrun/model_monitoring/writer.py,sha256=
|
|
235
|
+
mlrun/model_monitoring/__init__.py,sha256=2zigVN5JUnOhRcqGBd4gj0ctubVlyEvxmxXix0De5GQ,709
|
|
236
|
+
mlrun/model_monitoring/api.py,sha256=FSCjI7nM1vJAf2AuredsR1TQL3Q6XMojX-dJh7VbwMY,27781
|
|
237
|
+
mlrun/model_monitoring/controller.py,sha256=rtb3VLkps3wHdkpkH7xMXEzUrLCnsBrC7Shpx36jPss,43668
|
|
238
|
+
mlrun/model_monitoring/features_drift_table.py,sha256=0XnclaEOQoqSXpSL_0IsRrYYsTkpqU8DdUI0TEJ9TgU,25335
|
|
239
|
+
mlrun/model_monitoring/helpers.py,sha256=dAEBBT0luEnXe13B-4wQkX3ukgNU249mXdmo-QrO9qQ,24694
|
|
240
|
+
mlrun/model_monitoring/stream_processing.py,sha256=SVlRAKkuseD5K3YB2cSqpwxfOgInmN5ITDExail25Ko,34755
|
|
241
|
+
mlrun/model_monitoring/writer.py,sha256=6nL1pO7_Kc_0h8VNjczBVmgGkOTTjNi2EIi_rJE0Q7Q,16395
|
|
237
242
|
mlrun/model_monitoring/applications/__init__.py,sha256=BwlmRELlFJf2b2YMyv5kUSHNe8--OyqWhDgRlT8a_8g,779
|
|
238
243
|
mlrun/model_monitoring/applications/_application_steps.py,sha256=t9LDIqQUGE10cyjyhlg0QqN1yVx0apD1HpERYLJfm8U,7409
|
|
239
|
-
mlrun/model_monitoring/applications/base.py,sha256=
|
|
240
|
-
mlrun/model_monitoring/applications/context.py,sha256=
|
|
244
|
+
mlrun/model_monitoring/applications/base.py,sha256=up8aHrjE0SMtztHi4-DHmp3H_p4vI0tRfZwRQjLFLZc,51991
|
|
245
|
+
mlrun/model_monitoring/applications/context.py,sha256=oBYtCoMG6jvOowrPPDogZ_IjWaPIZ-Jqj5IdUlSzEzY,17040
|
|
241
246
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
|
|
242
247
|
mlrun/model_monitoring/applications/results.py,sha256=LfBQOmkpKGvVGNrcj5QiXsRIG2IRgcv_Xqe4QJBmauk,5699
|
|
243
248
|
mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
|
|
244
249
|
mlrun/model_monitoring/applications/evidently/base.py,sha256=shH9YwuFrGNWy1IDAbv622l-GE4o1z_u1bqhqTyTHDA,5661
|
|
245
250
|
mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
|
|
246
|
-
mlrun/model_monitoring/db/_schedules.py,sha256=
|
|
247
|
-
mlrun/model_monitoring/db/_stats.py,sha256=
|
|
248
|
-
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=
|
|
249
|
-
mlrun/model_monitoring/db/tsdb/base.py,sha256=
|
|
251
|
+
mlrun/model_monitoring/db/_schedules.py,sha256=PYWg8GyxGo8gOwM4XgvavyQRVXR18QXxgD7yW2fj08I,11436
|
|
252
|
+
mlrun/model_monitoring/db/_stats.py,sha256=Gkp22iHiw3H1mxbdGk8atEtyLlOu7gNTiLFLB9ckOr8,6576
|
|
253
|
+
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=KdvYeMNXqsBXqMaAdD1jKK0cG9KIRZ19YES1IDpj550,4673
|
|
254
|
+
mlrun/model_monitoring/db/tsdb/base.py,sha256=WLlz2j01OceE6S0JetWIZykZFEhx4tFfl1fnqFWiJx4,33909
|
|
250
255
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
251
|
-
mlrun/model_monitoring/db/tsdb/
|
|
252
|
-
mlrun/model_monitoring/db/tsdb/
|
|
253
|
-
mlrun/model_monitoring/db/tsdb/
|
|
254
|
-
mlrun/model_monitoring/db/tsdb/
|
|
255
|
-
mlrun/model_monitoring/db/tsdb/
|
|
256
|
-
mlrun/model_monitoring/db/tsdb/
|
|
256
|
+
mlrun/model_monitoring/db/tsdb/preaggregate.py,sha256=rKwdSw0h_9tAygYF74arCZD2rW3qmSoX3Tede10gklg,8824
|
|
257
|
+
mlrun/model_monitoring/db/tsdb/stream_graph_steps.py,sha256=PpxMC4A2debrDE1GOSZZ5tBc0LVEdR4PPNqdZfLa_7A,2494
|
|
258
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_connection.py,sha256=Dc3f17hKkISPJdGWORdIxk4sFp992MG0GjPou9ZmXKM,17328
|
|
259
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_connector.py,sha256=8618Lra4ZrcUce8nf743RmB0Hk9tBQH9WECLEbKZSU0,22074
|
|
260
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_operations.py,sha256=pq0-JR-g5A7ILxtevGwsTTGq-aFJfdqf1O5JKmyASr0,31574
|
|
261
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_schema.py,sha256=qjfS2LuL_4qsVr5AaPdBwrgFhp76GA-7rOmpaz1Y2A4,19186
|
|
262
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_stream.py,sha256=-sOz_AChv1utPY-sHpR-JJfpKbkRtLuKbzOdMSYj6wM,6301
|
|
263
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_stream_graph_steps.py,sha256=4hoDSLANph18wUUAhSbIiBWWhso1NPFFMLA4B1Di3aA,2204
|
|
264
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/writer_graph_steps.py,sha256=41Y9M_WdTrIlR-BrVtmTsTnDKg4dvGOuHntkfHt0BG8,3027
|
|
265
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_metrics_queries.py,sha256=i_sX5DH_hImxhu3eekCd5y0TnprV3M7-m-EQ73V3bBQ,15832
|
|
266
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_predictions_queries.py,sha256=Pyk61ZPGWeH0Kx8eb7EtrZH8L-uQHVRQZ4w2R53rpbk,14952
|
|
267
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_results_queries.py,sha256=ROr8cUjthq63WcHVHk7Qv83yLhqATthFoQCtxDHVntU,23721
|
|
268
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/utils/timescaledb_dataframe_processor.py,sha256=-EIJIdL8XzOa01ZfZSO_JpHJtFoLNp-8IJs7xY7J7zc,5250
|
|
269
|
+
mlrun/model_monitoring/db/tsdb/timescaledb/utils/timescaledb_query_builder.py,sha256=oKrsmbG2i7ecoJphJwDISvYw_GvACqRwP-AxUtEgc0Y,22327
|
|
257
270
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
258
|
-
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=
|
|
259
|
-
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=
|
|
271
|
+
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=26VBghkQX0CMlt4WogHdIi_BIrwk5fGCRm_KmFAQuGk,6763
|
|
272
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=Lss0EpYlg1X_bgP_2c7S4fxvUDVYIh21Vx5q7aB6WBY,66121
|
|
260
273
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
261
274
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
262
|
-
mlrun/package/__init__.py,sha256=
|
|
275
|
+
mlrun/package/__init__.py,sha256=vTTIFdFkYAfsBQB1l6u__dRGHGmlUM_LuZy20mn-LAQ,7035
|
|
263
276
|
mlrun/package/context_handler.py,sha256=M3jtI_DOA99W0IOeufIzfaRKxolwDGReA2K-C06e5cc,14588
|
|
264
277
|
mlrun/package/errors.py,sha256=cbLEH-GYdoZj2wFyBhQsw_sMofoMKFy_kM3RLlr9eHA,1203
|
|
265
278
|
mlrun/package/packager.py,sha256=Lmm8bmaIoS_LUl2lYW_YeF1a-tj0Z55H3Rm3J-HqAbs,15188
|
|
@@ -276,50 +289,51 @@ mlrun/package/utils/_pickler.py,sha256=nyEubm6jze22zLuoQjOqode_FkfQMTOKaWLQ0ES2N
|
|
|
276
289
|
mlrun/package/utils/_supported_format.py,sha256=tuHLPyahFitxoQkZ5dC0dymwc5zxCMVW-_yqa6LSgUY,2356
|
|
277
290
|
mlrun/package/utils/log_hint_utils.py,sha256=oFUrzcJ-AHocXSGIiMP6Yq3IYBgUfnrB-ri7EmXMDvg,3695
|
|
278
291
|
mlrun/package/utils/type_hint_utils.py,sha256=Ic3A7C9KnbfdLe-nUgzGoefBnsvOJJP9ipfuscA8MLU,14694
|
|
279
|
-
mlrun/platforms/__init__.py,sha256=
|
|
280
|
-
mlrun/platforms/iguazio.py,sha256=
|
|
292
|
+
mlrun/platforms/__init__.py,sha256=8ZlTaMSP5VSALWXSkFLHHvmyLXFExM1AQYGTHak4NeI,2117
|
|
293
|
+
mlrun/platforms/iguazio.py,sha256=w3cCje8Wffu7gSmKr9fFJIa5kT2TyO8CQPU-LiLTc1A,13847
|
|
281
294
|
mlrun/projects/__init__.py,sha256=hdCOA6_fp8X4qGGGT7Bj7sPbkM1PayWuaVZL0DkpuZw,1240
|
|
282
|
-
mlrun/projects/operations.py,sha256=
|
|
295
|
+
mlrun/projects/operations.py,sha256=tzILBP3xx4iMqcq13mzRYT0EKk_ZChoMD8MVD8z-yuQ,21128
|
|
283
296
|
mlrun/projects/pipelines.py,sha256=ZOfuIEHOXfuc4qAkuWvbWhCjP6kqpLkv-yBBaY9RXhg,52219
|
|
284
|
-
mlrun/projects/project.py,sha256=
|
|
285
|
-
mlrun/runtimes/__init__.py,sha256=
|
|
286
|
-
mlrun/runtimes/base.py,sha256=
|
|
287
|
-
mlrun/runtimes/
|
|
297
|
+
mlrun/projects/project.py,sha256=MSE55bKXEENcBbR55h13jKPfQ7VJGr0Slzz6rPfXnsM,257538
|
|
298
|
+
mlrun/runtimes/__init__.py,sha256=aG73NltqEtgkXH9zRXw6k0q98xtfU2v6gRrso0jwvEk,3357
|
|
299
|
+
mlrun/runtimes/base.py,sha256=RGfjLMLZyVA_3mpvBSGki52RCS2p2L227TwvM80Spsw,41445
|
|
300
|
+
mlrun/runtimes/constants.py,sha256=TmBGnKSVqInIZNlBgpdDE4a2SlH1Io8OaC4ur-A7Bv4,7483
|
|
301
|
+
mlrun/runtimes/daskjob.py,sha256=4HEr4L1pqrS6A6BtZQYH7KZbolEa3XR20X4DwFbileo,20209
|
|
288
302
|
mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
|
|
289
303
|
mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
|
|
290
304
|
mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
|
|
291
305
|
mlrun/runtimes/kubejob.py,sha256=wadCzmSgjv9OU_Ax8CQNHfXLo0v-ev9ZGHUFGcNc9Qw,8577
|
|
292
306
|
mlrun/runtimes/local.py,sha256=sbIFQdU-GBfAwESJGU06hiqXUiwjP6IVvbCieIPGQn4,22311
|
|
293
|
-
mlrun/runtimes/mounts.py,sha256=
|
|
294
|
-
mlrun/runtimes/pod.py,sha256=
|
|
307
|
+
mlrun/runtimes/mounts.py,sha256=fc3iYXjlnJZbm0PcCTrGBFQJ548WtFGnepK-pc4wSAM,19441
|
|
308
|
+
mlrun/runtimes/pod.py,sha256=HIEG2p5laAjDPlOFS9jcw3lugzddRDuvG0124MPalq4,59891
|
|
295
309
|
mlrun/runtimes/remotesparkjob.py,sha256=BalAea66GleaKeoYTw6ZL1Qr4wf1yRxfgk1-Fkc9Pqg,7864
|
|
296
310
|
mlrun/runtimes/utils.py,sha256=b0T5Qm0WmbHk_I4d14ikzhhjymjIVedaifBi-ymKwOc,17733
|
|
297
311
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
298
312
|
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=ufjcLKA5E6FSDF5CXm5l8uP_mUSFppwr5krLHln1kAU,2243
|
|
299
|
-
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=
|
|
313
|
+
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=ExWQ51WPFbogXuJp2odESJkUr2PdU1wUA3poLyIRrfI,12901
|
|
300
314
|
mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=jD1T36pRmSFRGgJVGRzccYJxwYH8eVze_FJrF2aSS-g,8682
|
|
301
315
|
mlrun/runtimes/mpijob/__init__.py,sha256=6sUPQRFwigi4mqjDVZmRE-qgaLw2ILY5NbneVUuMKto,947
|
|
302
316
|
mlrun/runtimes/mpijob/abstract.py,sha256=QjAG4OZ6JEQ58w5-qYNd6hUGwvaW8ynLtlr9jNfAHIk,9408
|
|
303
317
|
mlrun/runtimes/mpijob/v1.py,sha256=zSlRkiWHz4B3yht66sVf4mlfDs8YT9EnP9DfBLn5VNs,3372
|
|
304
|
-
mlrun/runtimes/nuclio/__init__.py,sha256=
|
|
305
|
-
mlrun/runtimes/nuclio/api_gateway.py,sha256=
|
|
306
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
318
|
+
mlrun/runtimes/nuclio/__init__.py,sha256=51FzSFa7xoKuTp9TZF3mkWRKkbTWhfde46NFLMvA7EE,1220
|
|
319
|
+
mlrun/runtimes/nuclio/api_gateway.py,sha256=Eg9O4STnCA6xYwKCuzoVKeupOVod9f7pE28sS2EHUbc,27970
|
|
320
|
+
mlrun/runtimes/nuclio/function.py,sha256=KQFGR_X3s4BAM7tB84Vcc-UGK21mXpnsrpx0vCbTO6o,59871
|
|
307
321
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
308
|
-
mlrun/runtimes/nuclio/serving.py,sha256=
|
|
322
|
+
mlrun/runtimes/nuclio/serving.py,sha256=qn5bD8uO2JbRMF-oNguHPUPJ4cblYtMxFBMomHYsRU8,39611
|
|
309
323
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
310
|
-
mlrun/runtimes/nuclio/application/application.py,sha256=
|
|
324
|
+
mlrun/runtimes/nuclio/application/application.py,sha256=rADApfNu1Zk5zjb3Hj_KKL4kJ2qRDQRN7_kkkaJiV4U,41386
|
|
311
325
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
|
|
312
326
|
mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
|
|
313
327
|
mlrun/runtimes/sparkjob/spark3job.py,sha256=3dW7RG2T58F2dsUw0TsRvE3SIFcekx3CerLdcaG1f50,41458
|
|
314
|
-
mlrun/serving/__init__.py,sha256=
|
|
328
|
+
mlrun/serving/__init__.py,sha256=iXWpWw9bYgcIcuaQkEwUFrcD89vJcK8n8rjFfUzTGPY,1444
|
|
315
329
|
mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
|
|
316
|
-
mlrun/serving/remote.py,sha256=
|
|
317
|
-
mlrun/serving/routers.py,sha256=
|
|
318
|
-
mlrun/serving/server.py,sha256=
|
|
319
|
-
mlrun/serving/serving_wrapper.py,sha256=
|
|
320
|
-
mlrun/serving/states.py,sha256=
|
|
321
|
-
mlrun/serving/steps.py,sha256=
|
|
322
|
-
mlrun/serving/system_steps.py,sha256=
|
|
330
|
+
mlrun/serving/remote.py,sha256=tzEspk_lBLjJcXckQQ7Yd2WL2xfJ36DXSFjbcLkNiNA,22077
|
|
331
|
+
mlrun/serving/routers.py,sha256=tO_WwqHyVy8esJzUCzbxjyyMPaA0PUyhtBlNZHU2q2Q,52886
|
|
332
|
+
mlrun/serving/server.py,sha256=0-ZLWGV99-k62sBBuzMBL7PwPuf-Dbl-apykBtrcfZc,42532
|
|
333
|
+
mlrun/serving/serving_wrapper.py,sha256=jSNtPrG2AKufRSyctJFvh5HIBqqcSQp_0JLdpWD8Omg,940
|
|
334
|
+
mlrun/serving/states.py,sha256=TDX9xneFgvhTi9vnGVWI6svNE8oh--hzJnQ7xI883Ks,154151
|
|
335
|
+
mlrun/serving/steps.py,sha256=RdoxOZd3IBYU_9NW8bNQ6Q-i4uFa3eDSJABsoP1L1Q8,2193
|
|
336
|
+
mlrun/serving/system_steps.py,sha256=DkIPxkXRM96NC-0OWugo-P7NEJ8cqNQt7-J0-b1PSYQ,20418
|
|
323
337
|
mlrun/serving/utils.py,sha256=Zbfqm8TKNcTE8zRBezVBzpvR2WKeKeIRN7otNIaiYEc,4170
|
|
324
338
|
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
325
339
|
mlrun/serving/v2_serving.py,sha256=FbN5QAurWL_KoKMUgRLV7b227PpnvntY5tPNE36J42E,25270
|
|
@@ -327,14 +341,14 @@ mlrun/track/__init__.py,sha256=yVXbT52fXvGKRlc_ByHqIVt7-9L3DRE634RSeQwgXtU,665
|
|
|
327
341
|
mlrun/track/tracker.py,sha256=CyTU6Qd3_5GGEJ_hpocOj71wvV65EuFYUjaYEUKAL6Q,3575
|
|
328
342
|
mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
|
|
329
343
|
mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
|
|
330
|
-
mlrun/track/trackers/mlflow_tracker.py,sha256=
|
|
344
|
+
mlrun/track/trackers/mlflow_tracker.py,sha256=t47tYwt42AjCHTVLZHHObeP2eq3ADBarIhlGVellpzU,23462
|
|
331
345
|
mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
|
|
332
346
|
mlrun/utils/async_http.py,sha256=8Olx8TNNeXB07nEGwlqhEgFgnFAD71vBU_bqaA9JW-w,12245
|
|
333
347
|
mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
|
|
334
348
|
mlrun/utils/clones.py,sha256=qbAGyEbSvlewn3Tw_DpQZP9z6MGzFhSaZfI1CblX8Fg,7515
|
|
335
349
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
336
|
-
mlrun/utils/helpers.py,sha256=
|
|
337
|
-
mlrun/utils/http.py,sha256=
|
|
350
|
+
mlrun/utils/helpers.py,sha256=zHzBguAz6iSnAyjnh3gr0IUmF4hqBwTmBMqwfQ4huzI,89482
|
|
351
|
+
mlrun/utils/http.py,sha256=g8wwyRu8DaLxodBw03qplFLpU6H7LXbiuCDiIchoG6s,9063
|
|
338
352
|
mlrun/utils/logger.py,sha256=uaCgI_ezzaXf7nJDCy-1Nrjds8vSXqDbzmjmb3IyCQo,14864
|
|
339
353
|
mlrun/utils/regex.py,sha256=FcRwWD8x9X3HLhCCU2F0AVKTFah784Pr7ZAe3a02jw8,5199
|
|
340
354
|
mlrun/utils/retryer.py,sha256=SHddxyNdUjIyvNJ3idTDyBzXARihCSuo3zWlZj6fqB0,7852
|
|
@@ -342,21 +356,21 @@ mlrun/utils/singleton.py,sha256=fNOfAUtha6OPCV_M1umWnGD0iabnnRwBke9otIspv30,868
|
|
|
342
356
|
mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1294
|
|
343
357
|
mlrun/utils/vault.py,sha256=-36b_PG0Fk9coPJiX6F704NF1nmKDdCH9Bg17wep88w,10446
|
|
344
358
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
345
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
359
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=__98Ws8m_rQ4yT_uPrq66OOb3ZU2qB-T_yGU2QofUNo,27338
|
|
346
360
|
mlrun/utils/notifications/notification/__init__.py,sha256=9Rfy6Jm8n0LaEDO1VAQb6kIbr7_uVuQhK1pS_abELIY,2581
|
|
347
361
|
mlrun/utils/notifications/notification/base.py,sha256=xrKdA5-a6eGWXogmSAtgJS0cKqb6znh4M-EpuYhziX0,5967
|
|
348
362
|
mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
|
|
349
|
-
mlrun/utils/notifications/notification/git.py,sha256=
|
|
363
|
+
mlrun/utils/notifications/notification/git.py,sha256=rS0CoiD7jfDujCs4y3atjqc03lmeagpOYxdUp_0-ZA0,6342
|
|
350
364
|
mlrun/utils/notifications/notification/ipython.py,sha256=9uZvI1uOLFaNuAsfJPXmL3l6dOzFoWdBK5GYNYFAfks,2282
|
|
351
|
-
mlrun/utils/notifications/notification/mail.py,sha256=
|
|
365
|
+
mlrun/utils/notifications/notification/mail.py,sha256=_QB_atAsLq2eMIFGp-dku1b53m_27osWa-7JTV9N3Ok,7079
|
|
352
366
|
mlrun/utils/notifications/notification/slack.py,sha256=wSu_7W0EnGLBNwIgWCYEeTP8j9SPAMPDBnfUcPnVZYA,7299
|
|
353
367
|
mlrun/utils/notifications/notification/webhook.py,sha256=FM5-LQAKAVJKp37MRzR3SsejalcnpM6r_9Oe7znxZEA,5313
|
|
354
368
|
mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
|
|
355
|
-
mlrun/utils/version/version.json,sha256=
|
|
356
|
-
mlrun/utils/version/version.py,sha256=
|
|
357
|
-
mlrun-1.
|
|
358
|
-
mlrun-1.
|
|
359
|
-
mlrun-1.
|
|
360
|
-
mlrun-1.
|
|
361
|
-
mlrun-1.
|
|
362
|
-
mlrun-1.
|
|
369
|
+
mlrun/utils/version/version.json,sha256=elXWFffn5XxjfGXH4HLeyEEPiGWH2CM6YlyeGJ4LDXY,90
|
|
370
|
+
mlrun/utils/version/version.py,sha256=wnh-y-HshexlncavRJj-AJ-obR0LPbqM4d2L70Wer9U,1904
|
|
371
|
+
mlrun-1.11.0rc16.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
|
|
372
|
+
mlrun-1.11.0rc16.dist-info/METADATA,sha256=RJZfyGwUvRK-uHALJDDWXNGYR-HT7jliSmo3D7cOgKo,24678
|
|
373
|
+
mlrun-1.11.0rc16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
374
|
+
mlrun-1.11.0rc16.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
375
|
+
mlrun-1.11.0rc16.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
376
|
+
mlrun-1.11.0rc16.dist-info/RECORD,,
|