mlrun 1.7.0rc38__py3-none-any.whl → 1.7.0rc40__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/alerts/alert.py +30 -27
- mlrun/common/schemas/alert.py +3 -0
- mlrun/common/schemas/notification.py +1 -0
- mlrun/datastore/alibaba_oss.py +2 -2
- mlrun/datastore/azure_blob.py +6 -3
- mlrun/datastore/base.py +1 -1
- mlrun/datastore/dbfs_store.py +2 -2
- mlrun/datastore/google_cloud_storage.py +83 -20
- mlrun/datastore/s3.py +2 -2
- mlrun/datastore/sources.py +54 -0
- mlrun/datastore/targets.py +9 -53
- mlrun/db/httpdb.py +6 -1
- mlrun/errors.py +8 -0
- mlrun/execution.py +7 -0
- mlrun/feature_store/api.py +5 -0
- mlrun/feature_store/retrieval/job.py +1 -0
- mlrun/model.py +24 -3
- mlrun/model_monitoring/api.py +9 -0
- mlrun/model_monitoring/applications/_application_steps.py +36 -0
- mlrun/model_monitoring/applications/histogram_data_drift.py +15 -13
- mlrun/model_monitoring/controller.py +15 -11
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +5 -5
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +85 -47
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +35 -7
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +3 -1
- mlrun/model_monitoring/helpers.py +16 -17
- mlrun/model_monitoring/stream_processing.py +2 -3
- mlrun/projects/pipelines.py +19 -30
- mlrun/projects/project.py +69 -51
- mlrun/run.py +8 -6
- mlrun/runtimes/__init__.py +4 -0
- mlrun/runtimes/nuclio/api_gateway.py +9 -0
- mlrun/runtimes/nuclio/application/application.py +112 -54
- mlrun/runtimes/nuclio/function.py +1 -1
- mlrun/utils/helpers.py +33 -2
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.0rc38.dist-info → mlrun-1.7.0rc40.dist-info}/METADATA +8 -11
- {mlrun-1.7.0rc38.dist-info → mlrun-1.7.0rc40.dist-info}/RECORD +42 -42
- {mlrun-1.7.0rc38.dist-info → mlrun-1.7.0rc40.dist-info}/WHEEL +1 -1
- {mlrun-1.7.0rc38.dist-info → mlrun-1.7.0rc40.dist-info}/LICENSE +0 -0
- {mlrun-1.7.0rc38.dist-info → mlrun-1.7.0rc40.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.0rc38.dist-info → mlrun-1.7.0rc40.dist-info}/top_level.txt +0 -0
|
@@ -281,34 +281,29 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
281
281
|
is_kfp=False,
|
|
282
282
|
mlrun_version_specifier=None,
|
|
283
283
|
show_on_failure: bool = False,
|
|
284
|
-
|
|
285
|
-
authentication_mode: schemas.APIGatewayAuthenticationMode = None,
|
|
286
|
-
authentication_creds: tuple[str] = None,
|
|
287
|
-
ssl_redirect: bool = None,
|
|
284
|
+
create_default_api_gateway: bool = True,
|
|
288
285
|
):
|
|
289
286
|
"""
|
|
290
287
|
Deploy function, builds the application image if required (self.requires_build()) or force_build is True,
|
|
291
288
|
Once the image is built, the function is deployed.
|
|
292
289
|
|
|
293
|
-
:param project:
|
|
294
|
-
:param tag:
|
|
295
|
-
:param verbose:
|
|
296
|
-
:param auth_info:
|
|
297
|
-
:param builder_env:
|
|
298
|
-
|
|
299
|
-
:param force_build:
|
|
300
|
-
:param with_mlrun:
|
|
301
|
-
:param skip_deployed:
|
|
302
|
-
:param is_kfp:
|
|
303
|
-
:param mlrun_version_specifier:
|
|
304
|
-
:param show_on_failure:
|
|
305
|
-
:param
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
:return: True if the function is ready (deployed)
|
|
290
|
+
:param project: Project name
|
|
291
|
+
:param tag: Function tag
|
|
292
|
+
:param verbose: Set True for verbose logging
|
|
293
|
+
:param auth_info: Service AuthInfo (deprecated and ignored)
|
|
294
|
+
:param builder_env: Env vars dict for source archive config/credentials
|
|
295
|
+
e.g. builder_env={"GIT_TOKEN": token}
|
|
296
|
+
:param force_build: Set True for force building the application image
|
|
297
|
+
:param with_mlrun: Add the current mlrun package to the container build
|
|
298
|
+
:param skip_deployed: Skip the build if we already have an image for the function
|
|
299
|
+
:param is_kfp: Deploy as part of a kfp pipeline
|
|
300
|
+
:param mlrun_version_specifier: Which mlrun package version to include (if not current)
|
|
301
|
+
:param show_on_failure: Show logs only in case of build failure
|
|
302
|
+
:param create_default_api_gateway: When deploy finishes the default API gateway will be created for the
|
|
303
|
+
application. Disabling this flag means that the application will not be
|
|
304
|
+
accessible until an API gateway is created for it.
|
|
305
|
+
|
|
306
|
+
:return: The default API gateway URL if created or True if the function is ready (deployed)
|
|
312
307
|
"""
|
|
313
308
|
if (self.requires_build() and not self.spec.image) or force_build:
|
|
314
309
|
self._fill_credentials()
|
|
@@ -328,10 +323,6 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
328
323
|
self._configure_application_sidecar()
|
|
329
324
|
|
|
330
325
|
# We only allow accessing the application via the API Gateway
|
|
331
|
-
name_tag = tag or self.metadata.tag
|
|
332
|
-
self.status.api_gateway_name = (
|
|
333
|
-
f"{self.metadata.name}-{name_tag}" if name_tag else self.metadata.name
|
|
334
|
-
)
|
|
335
326
|
self.spec.add_templated_ingress_host_mode = (
|
|
336
327
|
NuclioIngressAddTemplatedIngressModes.never
|
|
337
328
|
)
|
|
@@ -344,9 +335,7 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
344
335
|
builder_env=builder_env,
|
|
345
336
|
)
|
|
346
337
|
logger.info(
|
|
347
|
-
"Successfully deployed function
|
|
348
|
-
api_gateway_name=self.status.api_gateway_name,
|
|
349
|
-
authentication_mode=authentication_mode,
|
|
338
|
+
"Successfully deployed function.",
|
|
350
339
|
)
|
|
351
340
|
|
|
352
341
|
# Restore the source in case it was removed to make nuclio not consider it when building
|
|
@@ -354,14 +343,23 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
354
343
|
self.spec.build.source = self.status.application_source
|
|
355
344
|
self.save(versioned=False)
|
|
356
345
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
346
|
+
if create_default_api_gateway:
|
|
347
|
+
try:
|
|
348
|
+
api_gateway_name = self.resolve_default_api_gateway_name()
|
|
349
|
+
return self.create_api_gateway(api_gateway_name, set_as_default=True)
|
|
350
|
+
except Exception as exc:
|
|
351
|
+
logger.warning(
|
|
352
|
+
"Failed to create default API gateway, application may not be accessible. "
|
|
353
|
+
"Use the `create_api_gateway` method to make it accessible",
|
|
354
|
+
exc=mlrun.errors.err_to_str(exc),
|
|
355
|
+
)
|
|
356
|
+
elif not self.status.api_gateway:
|
|
357
|
+
logger.warning(
|
|
358
|
+
"Application is online but may not be accessible since default gateway creation was not requested."
|
|
359
|
+
"Use the `create_api_gateway` method to make it accessible."
|
|
360
|
+
)
|
|
361
|
+
|
|
362
|
+
return True
|
|
365
363
|
|
|
366
364
|
def with_source_archive(
|
|
367
365
|
self,
|
|
@@ -429,11 +427,38 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
429
427
|
self,
|
|
430
428
|
name: str = None,
|
|
431
429
|
path: str = None,
|
|
432
|
-
|
|
430
|
+
direct_port_access: bool = False,
|
|
433
431
|
authentication_mode: schemas.APIGatewayAuthenticationMode = None,
|
|
434
|
-
authentication_creds: tuple[str] = None,
|
|
432
|
+
authentication_creds: tuple[str, str] = None,
|
|
435
433
|
ssl_redirect: bool = None,
|
|
434
|
+
set_as_default: bool = False,
|
|
436
435
|
):
|
|
436
|
+
"""
|
|
437
|
+
Create the application API gateway. Once the application is deployed, the API gateway can be created.
|
|
438
|
+
An application without an API gateway is not accessible.
|
|
439
|
+
:param name: The name of the API gateway, defaults to <function-name>-<function-tag>
|
|
440
|
+
:param path: Optional path of the API gateway, default value is "/"
|
|
441
|
+
:param direct_port_access: Set True to allow direct port access to the application sidecar
|
|
442
|
+
:param authentication_mode: API Gateway authentication mode
|
|
443
|
+
:param authentication_creds: API Gateway basic authentication credentials as a tuple (username, password)
|
|
444
|
+
:param ssl_redirect: Set True to force SSL redirect, False to disable. Defaults to
|
|
445
|
+
mlrun.mlconf.force_api_gateway_ssl_redirect()
|
|
446
|
+
:param set_as_default: Set the API gateway as the default for the application (`status.api_gateway`)
|
|
447
|
+
|
|
448
|
+
:return: The API gateway URL
|
|
449
|
+
"""
|
|
450
|
+
if not name:
|
|
451
|
+
raise mlrun.errors.MLRunInvalidArgumentError(
|
|
452
|
+
"API gateway name must be specified."
|
|
453
|
+
)
|
|
454
|
+
|
|
455
|
+
if not set_as_default and name == self.resolve_default_api_gateway_name():
|
|
456
|
+
raise mlrun.errors.MLRunInvalidArgumentError(
|
|
457
|
+
f"Non-default API gateway cannot use the default gateway name, {name=}."
|
|
458
|
+
)
|
|
459
|
+
|
|
460
|
+
ports = self.spec.internal_application_port if direct_port_access else []
|
|
461
|
+
|
|
437
462
|
api_gateway = APIGateway(
|
|
438
463
|
APIGatewayMetadata(
|
|
439
464
|
name=name,
|
|
@@ -452,10 +477,10 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
452
477
|
if ssl_redirect is None:
|
|
453
478
|
ssl_redirect = mlrun.mlconf.force_api_gateway_ssl_redirect()
|
|
454
479
|
if ssl_redirect:
|
|
455
|
-
#
|
|
480
|
+
# Force ssl redirect so that the application is only accessible via https
|
|
456
481
|
api_gateway.with_force_ssl_redirect()
|
|
457
482
|
|
|
458
|
-
#
|
|
483
|
+
# Add authentication if required
|
|
459
484
|
authentication_mode = (
|
|
460
485
|
authentication_mode
|
|
461
486
|
or mlrun.mlconf.function.application.default_authentication_mode
|
|
@@ -469,19 +494,27 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
469
494
|
api_gateway_scheme = db.store_api_gateway(
|
|
470
495
|
api_gateway=api_gateway.to_scheme(), project=self.metadata.project
|
|
471
496
|
)
|
|
472
|
-
if not self.status.api_gateway_name:
|
|
473
|
-
self.status.api_gateway_name = api_gateway_scheme.metadata.name
|
|
474
|
-
self.status.api_gateway = APIGateway.from_scheme(api_gateway_scheme)
|
|
475
|
-
self.status.api_gateway.wait_for_readiness()
|
|
476
|
-
self.url = self.status.api_gateway.invoke_url
|
|
477
497
|
|
|
478
|
-
|
|
479
|
-
|
|
498
|
+
if set_as_default:
|
|
499
|
+
self.status.api_gateway_name = api_gateway_scheme.metadata.name
|
|
500
|
+
self.status.api_gateway = APIGateway.from_scheme(api_gateway_scheme)
|
|
501
|
+
self.status.api_gateway.wait_for_readiness()
|
|
502
|
+
self.url = self.status.api_gateway.invoke_url
|
|
503
|
+
url = self.url
|
|
504
|
+
else:
|
|
505
|
+
api_gateway = APIGateway.from_scheme(api_gateway_scheme)
|
|
506
|
+
api_gateway.wait_for_readiness()
|
|
507
|
+
url = api_gateway.invoke_url
|
|
508
|
+
# Update application status (enriches invocation url)
|
|
509
|
+
self._get_state(raise_on_exception=False)
|
|
510
|
+
|
|
511
|
+
logger.info("Successfully created API gateway", url=url)
|
|
512
|
+
return url
|
|
480
513
|
|
|
481
514
|
def invoke(
|
|
482
515
|
self,
|
|
483
516
|
path: str,
|
|
484
|
-
body: typing.Union[str, bytes, dict] = None,
|
|
517
|
+
body: typing.Optional[typing.Union[str, bytes, dict]] = None,
|
|
485
518
|
method: str = None,
|
|
486
519
|
headers: dict = None,
|
|
487
520
|
dashboard: str = "",
|
|
@@ -493,7 +526,10 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
493
526
|
self._sync_api_gateway()
|
|
494
527
|
# If the API Gateway is not ready or not set, try to invoke the function directly (without the API Gateway)
|
|
495
528
|
if not self.status.api_gateway:
|
|
496
|
-
|
|
529
|
+
logger.warning(
|
|
530
|
+
"Default API gateway is not configured, invoking function invocation URL."
|
|
531
|
+
)
|
|
532
|
+
return super().invoke(
|
|
497
533
|
path,
|
|
498
534
|
body,
|
|
499
535
|
method,
|
|
@@ -509,11 +545,13 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
509
545
|
|
|
510
546
|
if not method:
|
|
511
547
|
method = "POST" if body else "GET"
|
|
548
|
+
|
|
512
549
|
return self.status.api_gateway.invoke(
|
|
513
550
|
method=method,
|
|
514
551
|
headers=headers,
|
|
515
552
|
credentials=credentials,
|
|
516
553
|
path=path,
|
|
554
|
+
body=body,
|
|
517
555
|
**http_client_kwargs,
|
|
518
556
|
)
|
|
519
557
|
|
|
@@ -550,6 +588,27 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
550
588
|
reverse_proxy_func.metadata.name, reverse_proxy_func.metadata.project
|
|
551
589
|
)
|
|
552
590
|
|
|
591
|
+
def resolve_default_api_gateway_name(self):
|
|
592
|
+
return (
|
|
593
|
+
f"{self.metadata.name}-{self.metadata.tag}"
|
|
594
|
+
if self.metadata.tag
|
|
595
|
+
else self.metadata.name
|
|
596
|
+
)
|
|
597
|
+
|
|
598
|
+
@min_nuclio_versions("1.13.1")
|
|
599
|
+
def disable_default_http_trigger(
|
|
600
|
+
self,
|
|
601
|
+
):
|
|
602
|
+
raise mlrun.runtimes.RunError(
|
|
603
|
+
"Application runtime does not support disabling the default HTTP trigger"
|
|
604
|
+
)
|
|
605
|
+
|
|
606
|
+
@min_nuclio_versions("1.13.1")
|
|
607
|
+
def enable_default_http_trigger(
|
|
608
|
+
self,
|
|
609
|
+
):
|
|
610
|
+
pass
|
|
611
|
+
|
|
553
612
|
def _run(self, runobj: "mlrun.RunObject", execution):
|
|
554
613
|
raise mlrun.runtimes.RunError(
|
|
555
614
|
"Application runtime .run() is not yet supported. Use .invoke() instead."
|
|
@@ -648,9 +707,8 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
648
707
|
self.set_env("SIDECAR_HOST", "http://localhost")
|
|
649
708
|
|
|
650
709
|
# configure the sidecar container as the default container for logging purposes
|
|
651
|
-
self.
|
|
652
|
-
|
|
653
|
-
{"kubectl.kubernetes.io/default-container": self.status.sidecar_name},
|
|
710
|
+
self.metadata.annotations["kubectl.kubernetes.io/default-container"] = (
|
|
711
|
+
self.status.sidecar_name
|
|
654
712
|
)
|
|
655
713
|
|
|
656
714
|
def _sync_api_gateway(self):
|
mlrun/utils/helpers.py
CHANGED
|
@@ -24,6 +24,7 @@ import re
|
|
|
24
24
|
import string
|
|
25
25
|
import sys
|
|
26
26
|
import typing
|
|
27
|
+
import uuid
|
|
27
28
|
import warnings
|
|
28
29
|
from datetime import datetime, timezone
|
|
29
30
|
from importlib import import_module, reload
|
|
@@ -1410,6 +1411,26 @@ def is_running_in_jupyter_notebook() -> bool:
|
|
|
1410
1411
|
return ipy and "Terminal" not in str(type(ipy))
|
|
1411
1412
|
|
|
1412
1413
|
|
|
1414
|
+
def create_ipython_display():
|
|
1415
|
+
"""
|
|
1416
|
+
Create an IPython display object and fill it with initial content.
|
|
1417
|
+
We can later use the returned display_id with the update_display method to update the content.
|
|
1418
|
+
If IPython is not installed, a warning will be logged and None will be returned.
|
|
1419
|
+
"""
|
|
1420
|
+
if is_ipython:
|
|
1421
|
+
import IPython
|
|
1422
|
+
|
|
1423
|
+
display_id = uuid.uuid4().hex
|
|
1424
|
+
content = IPython.display.HTML(
|
|
1425
|
+
f'<div id="{display_id}">Temporary Display Content</div>'
|
|
1426
|
+
)
|
|
1427
|
+
IPython.display.display(content, display_id=display_id)
|
|
1428
|
+
return display_id
|
|
1429
|
+
|
|
1430
|
+
# returning None if IPython is not installed, this method shouldn't be called in that case but logging for sanity
|
|
1431
|
+
logger.debug("IPython is not installed, cannot create IPython display")
|
|
1432
|
+
|
|
1433
|
+
|
|
1413
1434
|
def as_number(field_name, field_value):
|
|
1414
1435
|
if isinstance(field_value, str) and not field_value.isnumeric():
|
|
1415
1436
|
raise ValueError(f"'{field_name}' must be numeric (str/int types)")
|
|
@@ -1680,11 +1701,21 @@ def validate_component_version_compatibility(
|
|
|
1680
1701
|
)
|
|
1681
1702
|
return True
|
|
1682
1703
|
|
|
1704
|
+
# Feature might have been back-ported e.g. nuclio node selection is supported from
|
|
1705
|
+
# 1.5.20 and 1.6.10 but not in 1.6.9 - therefore we reverse sort to validate against 1.6.x 1st and
|
|
1706
|
+
# then against 1.5.x
|
|
1683
1707
|
parsed_min_versions.sort(reverse=True)
|
|
1684
1708
|
for parsed_min_version in parsed_min_versions:
|
|
1685
|
-
if
|
|
1709
|
+
if (
|
|
1710
|
+
parsed_current_version.major == parsed_min_version.major
|
|
1711
|
+
and parsed_current_version.minor == parsed_min_version.minor
|
|
1712
|
+
and parsed_current_version.patch < parsed_min_version.patch
|
|
1713
|
+
):
|
|
1686
1714
|
return False
|
|
1687
|
-
|
|
1715
|
+
|
|
1716
|
+
if parsed_current_version >= parsed_min_version:
|
|
1717
|
+
return True
|
|
1718
|
+
return False
|
|
1688
1719
|
|
|
1689
1720
|
|
|
1690
1721
|
def format_alert_summary(
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.0rc40
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -35,7 +35,7 @@ Requires-Dist: pyarrow <15,>=10.0
|
|
|
35
35
|
Requires-Dist: pyyaml <7,>=5.4.1
|
|
36
36
|
Requires-Dist: requests ~=2.31
|
|
37
37
|
Requires-Dist: tabulate ~=0.8.6
|
|
38
|
-
Requires-Dist: v3io ~=0.6.
|
|
38
|
+
Requires-Dist: v3io ~=0.6.9
|
|
39
39
|
Requires-Dist: pydantic <1.10.15,>=1.10.8
|
|
40
40
|
Requires-Dist: mergedeep ~=1.3
|
|
41
41
|
Requires-Dist: v3io-frames ~=0.10.14
|
|
@@ -50,7 +50,7 @@ Requires-Dist: setuptools ~=71.0
|
|
|
50
50
|
Requires-Dist: deprecated ~=1.2
|
|
51
51
|
Requires-Dist: jinja2 >=3.1.3,~=3.1
|
|
52
52
|
Requires-Dist: orjson <4,>=3.9.15
|
|
53
|
-
Requires-Dist: mlrun-pipelines-kfp-common ~=0.1.
|
|
53
|
+
Requires-Dist: mlrun-pipelines-kfp-common ~=0.1.7
|
|
54
54
|
Requires-Dist: mlrun-pipelines-kfp-v1-8 ~=0.1.6
|
|
55
55
|
Provides-Extra: alibaba-oss
|
|
56
56
|
Requires-Dist: ossfs ==2023.12.0 ; extra == 'alibaba-oss'
|
|
@@ -78,7 +78,7 @@ Requires-Dist: mlflow ~=2.8 ; extra == 'all'
|
|
|
78
78
|
Requires-Dist: msrest ~=0.6.21 ; extra == 'all'
|
|
79
79
|
Requires-Dist: oss2 ==2.18.1 ; extra == 'all'
|
|
80
80
|
Requires-Dist: ossfs ==2023.12.0 ; extra == 'all'
|
|
81
|
-
Requires-Dist: plotly
|
|
81
|
+
Requires-Dist: plotly ~=5.23 ; extra == 'all'
|
|
82
82
|
Requires-Dist: pyopenssl >=23 ; extra == 'all'
|
|
83
83
|
Requires-Dist: redis ~=4.3 ; extra == 'all'
|
|
84
84
|
Requires-Dist: s3fs <2024.4,>=2023.9.2 ; extra == 'all'
|
|
@@ -131,7 +131,7 @@ Requires-Dist: mlflow ~=2.8 ; extra == 'complete'
|
|
|
131
131
|
Requires-Dist: msrest ~=0.6.21 ; extra == 'complete'
|
|
132
132
|
Requires-Dist: oss2 ==2.18.1 ; extra == 'complete'
|
|
133
133
|
Requires-Dist: ossfs ==2023.12.0 ; extra == 'complete'
|
|
134
|
-
Requires-Dist: plotly
|
|
134
|
+
Requires-Dist: plotly ~=5.23 ; extra == 'complete'
|
|
135
135
|
Requires-Dist: pyopenssl >=23 ; extra == 'complete'
|
|
136
136
|
Requires-Dist: redis ~=4.3 ; extra == 'complete'
|
|
137
137
|
Requires-Dist: s3fs <2024.4,>=2023.9.2 ; extra == 'complete'
|
|
@@ -167,7 +167,7 @@ Requires-Dist: msrest ~=0.6.21 ; extra == 'complete-api'
|
|
|
167
167
|
Requires-Dist: objgraph ~=3.6 ; extra == 'complete-api'
|
|
168
168
|
Requires-Dist: oss2 ==2.18.1 ; extra == 'complete-api'
|
|
169
169
|
Requires-Dist: ossfs ==2023.12.0 ; extra == 'complete-api'
|
|
170
|
-
Requires-Dist: plotly
|
|
170
|
+
Requires-Dist: plotly ~=5.23 ; extra == 'complete-api'
|
|
171
171
|
Requires-Dist: pymysql ~=1.0 ; extra == 'complete-api'
|
|
172
172
|
Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
|
|
173
173
|
Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
|
|
@@ -188,10 +188,7 @@ Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'google-cloud'
|
|
|
188
188
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'google-cloud'
|
|
189
189
|
Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'google-cloud'
|
|
190
190
|
Requires-Dist: google-cloud ==0.34 ; extra == 'google-cloud'
|
|
191
|
-
|
|
192
|
-
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'google-cloud-bigquery'
|
|
193
|
-
Provides-Extra: google-cloud-storage
|
|
194
|
-
Requires-Dist: gcsfs <2024.4,>=2023.9.2 ; extra == 'google-cloud-storage'
|
|
191
|
+
Requires-Dist: gcsfs <2024.4,>=2023.9.2 ; extra == 'google-cloud'
|
|
195
192
|
Provides-Extra: graphviz
|
|
196
193
|
Requires-Dist: graphviz ~=0.20.0 ; extra == 'graphviz'
|
|
197
194
|
Provides-Extra: kafka
|
|
@@ -200,7 +197,7 @@ Requires-Dist: avro ~=1.11 ; extra == 'kafka'
|
|
|
200
197
|
Provides-Extra: mlflow
|
|
201
198
|
Requires-Dist: mlflow ~=2.8 ; extra == 'mlflow'
|
|
202
199
|
Provides-Extra: plotly
|
|
203
|
-
Requires-Dist: plotly
|
|
200
|
+
Requires-Dist: plotly ~=5.23 ; extra == 'plotly'
|
|
204
201
|
Provides-Extra: redis
|
|
205
202
|
Requires-Dist: redis ~=4.3 ; extra == 'redis'
|
|
206
203
|
Provides-Extra: s3
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=y08M1JcKXy5-9_5WaI9fn5aV5BxIQ5QkbduJK0OxWbA,7470
|
|
2
2
|
mlrun/__main__.py,sha256=iAifncsrQQx6ozXXmz7GH1OiNl8PA7KS3TnwlxnHGeo,45890
|
|
3
3
|
mlrun/config.py,sha256=F8lKjS57FlodLbZawg2eyGjRjzDRR-K53n_bIbq9aD8,66129
|
|
4
|
-
mlrun/errors.py,sha256=
|
|
5
|
-
mlrun/execution.py,sha256=
|
|
4
|
+
mlrun/errors.py,sha256=i75KY-Wza1B3XpdD0xspxOI02TZMoarkQbJPZF5DB1U,7713
|
|
5
|
+
mlrun/execution.py,sha256=o64-PAdOnLnT_CAHwyxpj7uJJVn7fh8tR5dpy1OnqBg,42188
|
|
6
6
|
mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
|
|
7
7
|
mlrun/k8s_utils.py,sha256=WdUajadvAhTR7sAMQdwFqKeJMimuTyqm02VdwK1A4xU,7023
|
|
8
8
|
mlrun/lists.py,sha256=3PqBdcajdwhTe1XuFsAaHTuFVM2kjwepf31qqE82apg,8384
|
|
9
|
-
mlrun/model.py,sha256=
|
|
9
|
+
mlrun/model.py,sha256=0GYOHeLuPH3K8FXy6oVjECm-TFE9tl1lj6qgrJfMnFA,80567
|
|
10
10
|
mlrun/render.py,sha256=n8SeY3ogVrsV02-7-H0lt1RmpkxGpbI-11RQx61Vq9E,13267
|
|
11
|
-
mlrun/run.py,sha256=
|
|
11
|
+
mlrun/run.py,sha256=hNxV-TnixbH8MCos2jqz8jdTDlK7dBSvJMil_QoGKQI,43616
|
|
12
12
|
mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
|
|
13
13
|
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
|
-
mlrun/alerts/alert.py,sha256=
|
|
14
|
+
mlrun/alerts/alert.py,sha256=aLyKitNaFnl86ADwy1k7XkGOpf9vIkrL8626wVGKGxU,10444
|
|
15
15
|
mlrun/api/schemas/__init__.py,sha256=fEWH4I8hr5AdRJ7yoW44RlFB6NHkYDxyomP5J6ct1z4,14248
|
|
16
16
|
mlrun/artifacts/__init__.py,sha256=daGrLqltI1nE3ES30nm-tanUnxReRzfyxyaxNRx2zbc,1168
|
|
17
17
|
mlrun/artifacts/base.py,sha256=EystjLta4XVdZP2x4nz1ZNlDUYKTIcFNfMVfBVseCHw,29168
|
|
@@ -37,7 +37,7 @@ mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ
|
|
|
37
37
|
mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
|
|
38
38
|
mlrun/common/runtimes/constants.py,sha256=Rl0Sd8n_L7Imo-uF1LL9CJ5Szi0W1gUm36yrF8PXfSc,10989
|
|
39
39
|
mlrun/common/schemas/__init__.py,sha256=CUX4F6VeowqX5PzakB7xgGs2lJZAN42RMm1asB-kf1c,5227
|
|
40
|
-
mlrun/common/schemas/alert.py,sha256=
|
|
40
|
+
mlrun/common/schemas/alert.py,sha256=NIotUCJjtw5aYA3CmxiDo2ch-Ba8r1Sj1WkJfYCtluM,6749
|
|
41
41
|
mlrun/common/schemas/api_gateway.py,sha256=aEQ4rO5WyjAGIH7QJohctpftJi_SP4cTAfbmRi1ATwE,6920
|
|
42
42
|
mlrun/common/schemas/artifact.py,sha256=V3ngobnzI1v2eoOroWBEedjAZu0ntCSIQ-LzsOK1Z9k,3570
|
|
43
43
|
mlrun/common/schemas/auth.py,sha256=5c4WSn3KdX1v04ttSQblkF_gyjdjuJSHG7BTCx4_LWM,6336
|
|
@@ -55,7 +55,7 @@ mlrun/common/schemas/http.py,sha256=1PtYFhF6sqLSBRcuPMtYcUGmroBhaleqLmYidSdL9LM,
|
|
|
55
55
|
mlrun/common/schemas/hub.py,sha256=cuv_vpkO27XNCZzfytnUyi0k0ZA4wf_QRn5B0ZPoK-Y,4116
|
|
56
56
|
mlrun/common/schemas/k8s.py,sha256=nmMnhgjVMLem5jyumoG2eQKioGK9eUVhQnOSb3hG7yw,1395
|
|
57
57
|
mlrun/common/schemas/memory_reports.py,sha256=tpS3fpvxa6VcBpzCRzcZTt0fCF0h6ReUetYs7j6kdps,892
|
|
58
|
-
mlrun/common/schemas/notification.py,sha256=
|
|
58
|
+
mlrun/common/schemas/notification.py,sha256=H7HL1qAQ1gvta28ebYLnD-xsSNncGeDcJ92BXa5n80U,3153
|
|
59
59
|
mlrun/common/schemas/object.py,sha256=VleJSUmDJMl92knLgaDE8SWCi3ky0UaHcwcwOIapPQ8,1980
|
|
60
60
|
mlrun/common/schemas/pagination.py,sha256=q7nk6bipkDiE7HExIVqhy5ANl-zv0x8QC9Kg6AkLtDA,887
|
|
61
61
|
mlrun/common/schemas/pipeline.py,sha256=MhH07_fAQXNAnmf5j6oXZp8qh9cxGcZlReMdt-ZJf40,1429
|
|
@@ -77,24 +77,24 @@ mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,613
|
|
|
77
77
|
mlrun/data_types/spark.py,sha256=xfcr6lcaLcHepnrHavx_vacMJK7BC8FWsUKjwrjjn6w,9509
|
|
78
78
|
mlrun/data_types/to_pandas.py,sha256=xPEcQ5_Wb-L1WRhPy8lBbw5HZlPx0PaQOPZISTvrn80,11182
|
|
79
79
|
mlrun/datastore/__init__.py,sha256=8WvgHF245fvU9u98ctRqosvEmQ9iAKKIIS_dSgj_fmU,4153
|
|
80
|
-
mlrun/datastore/alibaba_oss.py,sha256=
|
|
81
|
-
mlrun/datastore/azure_blob.py,sha256=
|
|
82
|
-
mlrun/datastore/base.py,sha256=
|
|
80
|
+
mlrun/datastore/alibaba_oss.py,sha256=mmdWcd8mS24f-40MF6wWO3EPQELnS-FzCze-M6EB-r8,4833
|
|
81
|
+
mlrun/datastore/azure_blob.py,sha256=3htYsPBjWrxAfywnf2qM6Ol06uiA4cuDO_-JX7FpXL8,12874
|
|
82
|
+
mlrun/datastore/base.py,sha256=vKBkvjq_d7ydf6DeyWwyGP2A6yuO0cBA8Yo_FyoRRKU,25945
|
|
83
83
|
mlrun/datastore/datastore.py,sha256=F2i8XI2hkQwf51OjqdFZ8179oHvDfQtaT5pvfkvMV9U,9389
|
|
84
84
|
mlrun/datastore/datastore_profile.py,sha256=ZCU-brdRNXNE8EnknzFljtWjciEJ9sGZnoahFxbdEt4,18940
|
|
85
|
-
mlrun/datastore/dbfs_store.py,sha256=
|
|
85
|
+
mlrun/datastore/dbfs_store.py,sha256=HEBzJEXMdkAmZLZfYVAkxYhVRSNiew_K2YU5kfPq2FQ,6640
|
|
86
86
|
mlrun/datastore/filestore.py,sha256=nS3Ie6jG41NDiW_as9tF8Nu5maaSVEKYKUr1IQtPhuA,3767
|
|
87
|
-
mlrun/datastore/google_cloud_storage.py,sha256=
|
|
87
|
+
mlrun/datastore/google_cloud_storage.py,sha256=idY38uhl6gWY5R7W-BZTWOLmmFtxlYvuRFci6xAdRy0,8860
|
|
88
88
|
mlrun/datastore/hdfs.py,sha256=TfL1zUWVRxEHF9kswZtOzrMdDmhSfiSVIAjz7fxWyVw,1876
|
|
89
89
|
mlrun/datastore/inmem.py,sha256=d2dIvHlOQylhc-i4B5Kk9e9ayXnF7DICc5yUlHcNwqs,2873
|
|
90
90
|
mlrun/datastore/redis.py,sha256=OKMkDCU3APhxfo65SyJq605u1DsfOYH0fODnCXZRqEU,5575
|
|
91
|
-
mlrun/datastore/s3.py,sha256=
|
|
91
|
+
mlrun/datastore/s3.py,sha256=5ErrFi1TRsZ4hqCfjEg_5EQ74NEvxt8RfFDbu4cPTPg,8692
|
|
92
92
|
mlrun/datastore/snowflake_utils.py,sha256=Wohvnlmq8j1d98RCaknll-iWdZZpSlCrKhUOEy0_-CA,1483
|
|
93
|
-
mlrun/datastore/sources.py,sha256=
|
|
93
|
+
mlrun/datastore/sources.py,sha256=op90ksx95wqaBtoiORpHnqEgw4iGEDPsJ3_lI8ftS-E,48801
|
|
94
94
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
95
95
|
mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
|
|
96
96
|
mlrun/datastore/store_resources.py,sha256=rcLoG506AMmR8qPJU_gE-G5d34VJVV_vNlZ3VHqho6c,6869
|
|
97
|
-
mlrun/datastore/targets.py,sha256=
|
|
97
|
+
mlrun/datastore/targets.py,sha256=rnQBL5wpK7Oc1GQ4_Pub8v6FTwTo18NeEn7L4jfuw9A,80343
|
|
98
98
|
mlrun/datastore/utils.py,sha256=l9dLZb_VCbHs_htqMFRv4qiestZ8z8K-4eY1MxHS8wE,7720
|
|
99
99
|
mlrun/datastore/v3io.py,sha256=tmZ2S-POZhjjKPE_0T1EkHcv6Q10pz5KQiaTXE1Be-4,8102
|
|
100
100
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
@@ -103,10 +103,10 @@ mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
|
103
103
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
104
104
|
mlrun/db/base.py,sha256=VztBik6tUYFKGRVXIsXZE7HrALx0hO_sgpCcE2O0cLU,24156
|
|
105
105
|
mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
|
|
106
|
-
mlrun/db/httpdb.py,sha256=
|
|
106
|
+
mlrun/db/httpdb.py,sha256=YUU0wxentN5d7_HbquYIqc7xrnUCn9on8QWNQahHmh8,184246
|
|
107
107
|
mlrun/db/nopdb.py,sha256=d7vSk_2sfwZGY24w7ucSkoq88fLPDLF137IXabongXU,20791
|
|
108
108
|
mlrun/feature_store/__init__.py,sha256=FhHRc8NdqL_HWpCs7A8dKruxJS5wEm55Gs3dcgBiRUg,1522
|
|
109
|
-
mlrun/feature_store/api.py,sha256=
|
|
109
|
+
mlrun/feature_store/api.py,sha256=NZJ7Qp5L-0X08oI_xHTX6PukGq9Mt_9uU_KmVMbFB6s,49941
|
|
110
110
|
mlrun/feature_store/common.py,sha256=mSlfEj_LIbtM-pNiIWUGIdX0Z0y5ZoH5nKow7KMc5VQ,12673
|
|
111
111
|
mlrun/feature_store/feature_set.py,sha256=qD8RqkeoJFbJMMK5-zjs-27DC4UXQiQSokkt4pdMzkw,56027
|
|
112
112
|
mlrun/feature_store/feature_vector.py,sha256=A29-yCsFgvFU_Qw53CgDjn8t_okh7Nm6FZuvcEaKci0,44134
|
|
@@ -115,7 +115,7 @@ mlrun/feature_store/steps.py,sha256=kdOrYh3fAdamV-RYNr86cFg445h_pgSWlb1EHOsAZUM,
|
|
|
115
115
|
mlrun/feature_store/retrieval/__init__.py,sha256=bwA4copPpLQi8fyoUAYtOyrlw0-6f3-Knct8GbJSvRg,1282
|
|
116
116
|
mlrun/feature_store/retrieval/base.py,sha256=zgDsRsYQz8eqReKBEeTP0O4UoLoVYjWpO1o1gtvbjRA,30230
|
|
117
117
|
mlrun/feature_store/retrieval/dask_merger.py,sha256=t60xciYp6StUQLEyFyI4JK5NpWkdBy2MGCs6beimaWU,5575
|
|
118
|
-
mlrun/feature_store/retrieval/job.py,sha256=
|
|
118
|
+
mlrun/feature_store/retrieval/job.py,sha256=7ZgJwNtFxvMeOa_kTT6rpYmVUSHv5bLdDpkJ5chv8us,8558
|
|
119
119
|
mlrun/feature_store/retrieval/local_merger.py,sha256=jM-8ta44PeNUc1cKMPs-TxrO9t8pXbwu_Tw8MZrLxUY,4513
|
|
120
120
|
mlrun/feature_store/retrieval/spark_merger.py,sha256=n3WxFlrY0y5mJ-7U8GJJlv9QulG4WSUSdHY0xJjHzhY,10552
|
|
121
121
|
mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
|
|
@@ -210,22 +210,22 @@ mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,233
|
|
|
210
210
|
mlrun/launcher/local.py,sha256=pP9-ZrNL8OnNDEiXTAKAZQnmLpS_mCc2v-mJw329eks,11269
|
|
211
211
|
mlrun/launcher/remote.py,sha256=tGICSfWtvUHeR31mbzy6gqHejmDxjPUgjtxXTWhRubg,7699
|
|
212
212
|
mlrun/model_monitoring/__init__.py,sha256=dm5_j0_pwqrdzFwTaEtGnKfv2nVpNaM56nBI-oqLbNU,879
|
|
213
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
213
|
+
mlrun/model_monitoring/api.py,sha256=t37ytGk5XCff0VBL7qpQclNx96DxLxCSnXp3aDIbGVU,28659
|
|
214
214
|
mlrun/model_monitoring/application.py,sha256=RJ8HeAPfGO3P2A_dEZYNg60c1wKTADh2YSv8BQ5embg,745
|
|
215
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
215
|
+
mlrun/model_monitoring/controller.py,sha256=fNLQ1LHVf1xlC8wamlhT-051Yg-PNK_2POUnfwfv5aw,28077
|
|
216
216
|
mlrun/model_monitoring/evidently_application.py,sha256=iOc42IVjj8m6PDBmVcKIMWm46Bu0EdO9SDcH40Eqhyo,769
|
|
217
217
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
218
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
218
|
+
mlrun/model_monitoring/helpers.py,sha256=foBrm9SMIlnMvNFxJ9S6sb9JSKAW_yHgpaTMPdz4tQY,11591
|
|
219
219
|
mlrun/model_monitoring/model_endpoint.py,sha256=7VX0cBATqLsA4sSinDzouf41ndxqh2mf5bO9BW0G5Z4,4017
|
|
220
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
220
|
+
mlrun/model_monitoring/stream_processing.py,sha256=kRyukjAe28cg-m86cIlThEXp-fphyYHOLh5Gvq5_na8,39381
|
|
221
221
|
mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
|
|
222
222
|
mlrun/model_monitoring/writer.py,sha256=FsSmzF9fjb2mk-pmByOB1SZJ_NMBjCw4tGGXhkF3OJU,9954
|
|
223
223
|
mlrun/model_monitoring/applications/__init__.py,sha256=i793GqYee01mRh_KD6GShvX7UbPBgdJDO4qf9Z3BXEQ,970
|
|
224
|
-
mlrun/model_monitoring/applications/_application_steps.py,sha256=
|
|
224
|
+
mlrun/model_monitoring/applications/_application_steps.py,sha256=QOtLVBdPyAmTV-n5ZwpJrlivoprQiDygujUzVhHVdU4,7719
|
|
225
225
|
mlrun/model_monitoring/applications/base.py,sha256=snr3xYdqv6Po19yS0Z1VktyoLrbl88lljSFQyjnKjR0,11616
|
|
226
226
|
mlrun/model_monitoring/applications/context.py,sha256=LGRJdI1eyyssFzjE4W_rk2VAUV8KpOkUZUX3xCmnC9g,8537
|
|
227
227
|
mlrun/model_monitoring/applications/evidently_base.py,sha256=6hzfO6s0jEVHj4R_pujcn_p6LvdkKUDb9S4B6j2XEUY,8024
|
|
228
|
-
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=
|
|
228
|
+
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=OOPojE-KIP9rAPZ6va6uJOjqJOb3c8K_VAmITXZd918,13341
|
|
229
229
|
mlrun/model_monitoring/applications/results.py,sha256=VVlu9Si7Tj2LNJzPQrp4_Qeyh9mxOVMu1Jwb5K2LfvY,3577
|
|
230
230
|
mlrun/model_monitoring/db/__init__.py,sha256=6Ic-X3Fh9XLPYMytmevGNSs-Hii1rAjLLoFTSPwTguw,736
|
|
231
231
|
mlrun/model_monitoring/db/stores/__init__.py,sha256=ZScmxeZZ3yZ84MocdDGRtvVIixSo0rAPiuLpavXTgJw,4737
|
|
@@ -238,17 +238,17 @@ mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=V2B5WdQM0KHKq0FNDq6
|
|
|
238
238
|
mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=4SfjS0Rz6hSvZwU4s_weQ1jk5IPvaCU1HLum459U5ig,3192
|
|
239
239
|
mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=yJJZppbKj3PsOANS_DXAQFFHKX4cQcm6Pz2DoxRiXMk,1104
|
|
240
240
|
mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
241
|
-
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=
|
|
241
|
+
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=ihtBrXt7QRKhCACH73kHetxQu0JMIVWf8VTPaTSSQdA,26528
|
|
242
242
|
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=_Mfa4gguX86OS1fQCxnt_QSaNh603-zPYAK8NjYk7t8,4040
|
|
243
243
|
mlrun/model_monitoring/db/tsdb/base.py,sha256=X89X763sDrShfRXE1N-p8k97E8NBs7O1QJFiO-CffLM,18583
|
|
244
244
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
245
245
|
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
246
|
-
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=
|
|
246
|
+
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=dlb4DHtA6_5ZWKjRh9N-sFZZu8VCsg8LjKPRLm19woY,10506
|
|
247
247
|
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Hb0vcCBP-o0ET78mU4P32fnhUL65QZv-pMuv2lnCby4,1586
|
|
248
|
-
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=
|
|
248
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=cdx-09FtSjKl2fGsqZatwdTlg6UioMTRcZFRScvQaYA,18263
|
|
249
249
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
250
250
|
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=mbmhN4f_F58ptVjhwoMF6ifZSdnZWhK7x8eNsWS39IA,6217
|
|
251
|
-
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=
|
|
251
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=QVxfkITuNYZDbUjKj1c6WvVmtc7I1HwZwlKQb61oO5k,32340
|
|
252
252
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
253
253
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
254
254
|
mlrun/package/__init__.py,sha256=uWILzN42bcq5vFRk6ptxEmn1I5uBWAnhaJr7e4H834w,7082
|
|
@@ -272,9 +272,9 @@ mlrun/platforms/__init__.py,sha256=ggSGF7inITs6S-vj9u4S9X_5psgbA0G3GVqf7zu8qYc,2
|
|
|
272
272
|
mlrun/platforms/iguazio.py,sha256=1h5BpdAEQJBg2vIt7ySjUADU0ip5OkaMYr0_VREi9ys,13084
|
|
273
273
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
274
274
|
mlrun/projects/operations.py,sha256=UEpiW4bDscth4pwWcLWF1xz-IU7bnZfckPR7sXp3O-g,19441
|
|
275
|
-
mlrun/projects/pipelines.py,sha256=
|
|
276
|
-
mlrun/projects/project.py,sha256=
|
|
277
|
-
mlrun/runtimes/__init__.py,sha256=
|
|
275
|
+
mlrun/projects/pipelines.py,sha256=iFa0iy4iYk3yUH4Nx-sq7VVJhXW8LlR3Hsbjx_KLL5Y,40019
|
|
276
|
+
mlrun/projects/project.py,sha256=zflD9aRmyjTghOz6TzVDAkEKnrhFasLF1QtLfEyEZYM,185296
|
|
277
|
+
mlrun/runtimes/__init__.py,sha256=egLM94cDMUyQ1GVABdFGXUQcDhU70lP3k7qSnM_UnHY,9008
|
|
278
278
|
mlrun/runtimes/base.py,sha256=JXWmTIcm3b0klGUOHDlyFNa3bUgsNzQIgWhUQpSZoE0,37692
|
|
279
279
|
mlrun/runtimes/daskjob.py,sha256=JfK8rSPY-0SYnLJdtp_ts3oKyad0pA98th-2VntYzK0,19387
|
|
280
280
|
mlrun/runtimes/funcdoc.py,sha256=CC9cWRPgBiM2sk4NJTqusjc6O9kZ-49vGA5WRPjREKE,9796
|
|
@@ -293,12 +293,12 @@ mlrun/runtimes/mpijob/__init__.py,sha256=V_1gQD1VHa0Qvjqgyv8RLouH27Sy9YTwj2ZG62o
|
|
|
293
293
|
mlrun/runtimes/mpijob/abstract.py,sha256=kDWo-IY1FKLZhI30j38Xx9HMhlUvHezfd1DT2ShoxZY,9161
|
|
294
294
|
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
295
295
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
296
|
-
mlrun/runtimes/nuclio/api_gateway.py,sha256=
|
|
297
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
296
|
+
mlrun/runtimes/nuclio/api_gateway.py,sha256=q7ZV4KVXZmbT8Had419sxSMWNYayl2Bb-9luAxwk0nc,26146
|
|
297
|
+
mlrun/runtimes/nuclio/function.py,sha256=4bKjuCIL-Hwh4gIXQSgI-7KqOOkKGHTydpdlvCRvMs8,50761
|
|
298
298
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
299
299
|
mlrun/runtimes/nuclio/serving.py,sha256=eUMqtIU6NYIVgKtxfxKN7pd9_QCo_V0aurrjUSU3s08,29754
|
|
300
300
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
301
|
-
mlrun/runtimes/nuclio/application/application.py,sha256=
|
|
301
|
+
mlrun/runtimes/nuclio/application/application.py,sha256=sz7vwDY3rfDzOWa7RN0IqZf2EpFk8jMU2s_rEIGkzco,27582
|
|
302
302
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=JIIYae6bXzCLf3jXuu49KWPQYoXr_FDQ2Rbo1OWKAd0,3150
|
|
303
303
|
mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
|
|
304
304
|
mlrun/runtimes/sparkjob/spark3job.py,sha256=fj3iiqScXNR7wvnHXvgtvgvHkGNCKAvLBX9XF17dNeI,41027
|
|
@@ -323,7 +323,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
|
|
|
323
323
|
mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
|
|
324
324
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
325
325
|
mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
|
|
326
|
-
mlrun/utils/helpers.py,sha256=
|
|
326
|
+
mlrun/utils/helpers.py,sha256=WUD4fd2B18CAoCx-8CebHVwJOPzzL1i0HoOdGrMBvnQ,58984
|
|
327
327
|
mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
|
|
328
328
|
mlrun/utils/logger.py,sha256=cag2J30-jynIHmHZ2J8RYmVMNhYBGgAoimc5sbk-A1U,10016
|
|
329
329
|
mlrun/utils/regex.py,sha256=b0AUa2THS-ELzJj0grl5b8Stq609F2XomTZkD9SB1fQ,4900
|
|
@@ -341,11 +341,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT
|
|
|
341
341
|
mlrun/utils/notifications/notification/slack.py,sha256=wqpFGr5BTvFO5KuUSzFfxsgmyU1Ohq7fbrGeNe9TXOk,7006
|
|
342
342
|
mlrun/utils/notifications/notification/webhook.py,sha256=cb9w1Mc8ENfJBdgan7iiVHK9eVls4-R3tUxmXM-P-8I,4746
|
|
343
343
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
344
|
-
mlrun/utils/version/version.json,sha256=
|
|
344
|
+
mlrun/utils/version/version.json,sha256=l59vjyoYyjoWJo2VqWu7D7gAuVWaSDLsuuoxCZyOKhc,89
|
|
345
345
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
346
|
-
mlrun-1.7.
|
|
347
|
-
mlrun-1.7.
|
|
348
|
-
mlrun-1.7.
|
|
349
|
-
mlrun-1.7.
|
|
350
|
-
mlrun-1.7.
|
|
351
|
-
mlrun-1.7.
|
|
346
|
+
mlrun-1.7.0rc40.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
347
|
+
mlrun-1.7.0rc40.dist-info/METADATA,sha256=5hWSEBis5GTHdd7Pi5G8zY6ENqBpxfXszzFsik7eqwY,19939
|
|
348
|
+
mlrun-1.7.0rc40.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
|
349
|
+
mlrun-1.7.0rc40.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
350
|
+
mlrun-1.7.0rc40.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
351
|
+
mlrun-1.7.0rc40.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|