mlrun 1.3.3__py3-none-any.whl → 1.3.4rc1__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/datastore/sources.py +11 -5
- mlrun/datastore/targets.py +8 -1
- mlrun/frameworks/_ml_common/plans/calibration_curve_plan.py +0 -5
- mlrun/projects/project.py +3 -1
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.3.3.dist-info → mlrun-1.3.4rc1.dist-info}/METADATA +122 -122
- {mlrun-1.3.3.dist-info → mlrun-1.3.4rc1.dist-info}/RECORD +11 -11
- {mlrun-1.3.3.dist-info → mlrun-1.3.4rc1.dist-info}/WHEEL +1 -1
- {mlrun-1.3.3.dist-info → mlrun-1.3.4rc1.dist-info}/LICENSE +0 -0
- {mlrun-1.3.3.dist-info → mlrun-1.3.4rc1.dist-info}/entry_points.txt +0 -0
- {mlrun-1.3.3.dist-info → mlrun-1.3.4rc1.dist-info}/top_level.txt +0 -0
mlrun/datastore/sources.py
CHANGED
|
@@ -885,7 +885,7 @@ class SQLSource(BaseSourceDriver):
|
|
|
885
885
|
Reads SqlDB as input source for a flow.
|
|
886
886
|
example::
|
|
887
887
|
db_path = "mysql+pymysql://<username>:<password>@<host>:<port>/<db_name>"
|
|
888
|
-
source =
|
|
888
|
+
source = SQLSource(
|
|
889
889
|
collection_name='source_name', db_path=self.db, key_field='key'
|
|
890
890
|
)
|
|
891
891
|
:param name: source name
|
|
@@ -929,15 +929,21 @@ class SQLSource(BaseSourceDriver):
|
|
|
929
929
|
)
|
|
930
930
|
|
|
931
931
|
def to_dataframe(self):
|
|
932
|
-
import sqlalchemy
|
|
932
|
+
import sqlalchemy
|
|
933
933
|
|
|
934
934
|
query = self.attributes.get("query", None)
|
|
935
935
|
db_path = self.attributes.get("db_path")
|
|
936
936
|
table_name = self.attributes.get("table_name")
|
|
937
|
-
if not query:
|
|
938
|
-
query = f"SELECT * FROM {table_name}"
|
|
939
937
|
if table_name and db_path:
|
|
940
|
-
engine =
|
|
938
|
+
engine = sqlalchemy.create_engine(db_path)
|
|
939
|
+
if not query:
|
|
940
|
+
table = sqlalchemy.Table(
|
|
941
|
+
table_name,
|
|
942
|
+
sqlalchemy.MetaData(),
|
|
943
|
+
autoload=True,
|
|
944
|
+
autoload_with=engine,
|
|
945
|
+
)
|
|
946
|
+
query = sqlalchemy.select(table)
|
|
941
947
|
with engine.connect() as con:
|
|
942
948
|
return pd.read_sql(
|
|
943
949
|
query,
|
mlrun/datastore/targets.py
CHANGED
|
@@ -1610,9 +1610,16 @@ class SQLTarget(BaseStoreTarget):
|
|
|
1610
1610
|
):
|
|
1611
1611
|
db_path, table_name, _, _, _, _ = self._parse_url()
|
|
1612
1612
|
engine = sqlalchemy.create_engine(db_path)
|
|
1613
|
+
table = sqlalchemy.Table(
|
|
1614
|
+
self.attributes.get("table_name"),
|
|
1615
|
+
sqlalchemy.MetaData(),
|
|
1616
|
+
autoload=True,
|
|
1617
|
+
autoload_with=engine,
|
|
1618
|
+
)
|
|
1619
|
+
query = sqlalchemy.select(table)
|
|
1613
1620
|
with engine.connect() as conn:
|
|
1614
1621
|
df = pd.read_sql(
|
|
1615
|
-
|
|
1622
|
+
query,
|
|
1616
1623
|
con=conn,
|
|
1617
1624
|
parse_dates=self.attributes.get("time_fields"),
|
|
1618
1625
|
)
|
|
@@ -33,7 +33,6 @@ class CalibrationCurvePlan(MLPlotPlan):
|
|
|
33
33
|
|
|
34
34
|
def __init__(
|
|
35
35
|
self,
|
|
36
|
-
normalize: bool = False,
|
|
37
36
|
n_bins: int = 5,
|
|
38
37
|
strategy: str = "uniform",
|
|
39
38
|
):
|
|
@@ -43,14 +42,11 @@ class CalibrationCurvePlan(MLPlotPlan):
|
|
|
43
42
|
To read more about the parameters, head to the SciKit-Learn docs at:
|
|
44
43
|
https://scikit-learn.org/stable/modules/generated/sklearn.calibration.calibration_curve.html
|
|
45
44
|
|
|
46
|
-
:param normalize: Whether the probabilities needs to be normalized into the [0, 1] interval, i.e. is not a
|
|
47
|
-
proper probability.
|
|
48
45
|
:param n_bins: Number of bins to discretize the [0, 1] interval.
|
|
49
46
|
:param strategy: Strategy used to define the widths of the bins. Can be on of {‘uniform’, ‘quantile’}.
|
|
50
47
|
Default: "uniform".
|
|
51
48
|
"""
|
|
52
49
|
# Store the parameters:
|
|
53
|
-
self._normalize = normalize
|
|
54
50
|
self._n_bins = n_bins
|
|
55
51
|
self._strategy = strategy
|
|
56
52
|
|
|
@@ -94,7 +90,6 @@ class CalibrationCurvePlan(MLPlotPlan):
|
|
|
94
90
|
y,
|
|
95
91
|
y_pred[:, -1], # Take only the second class probabilities (1, not 0).
|
|
96
92
|
n_bins=self._n_bins,
|
|
97
|
-
normalize=self._normalize,
|
|
98
93
|
strategy=self._strategy,
|
|
99
94
|
)
|
|
100
95
|
|
mlrun/projects/project.py
CHANGED
|
@@ -1087,11 +1087,13 @@ class MlrunProject(ModelObj):
|
|
|
1087
1087
|
artifact_path = mlrun.utils.helpers.fill_artifact_path_template(
|
|
1088
1088
|
self.spec.artifact_path or mlrun.mlconf.artifact_path, self.metadata.name
|
|
1089
1089
|
)
|
|
1090
|
+
# TODO: To correctly maintain the list of artifacts from an exported project,
|
|
1091
|
+
# we need to maintain the different trees that generated them
|
|
1090
1092
|
producer = ArtifactProducer(
|
|
1091
1093
|
"project",
|
|
1092
1094
|
self.metadata.name,
|
|
1093
1095
|
self.metadata.name,
|
|
1094
|
-
tag=self._get_hexsha() or
|
|
1096
|
+
tag=self._get_hexsha() or str(uuid.uuid4()),
|
|
1095
1097
|
)
|
|
1096
1098
|
for artifact_dict in self.spec.artifacts:
|
|
1097
1099
|
if _is_imported_artifact(artifact_dict):
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.4rc1
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -21,142 +21,142 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
21
21
|
Classifier: Topic :: Software Development :: Libraries
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
|
-
Requires-Dist: urllib3
|
|
25
|
-
Requires-Dist: chardet
|
|
26
|
-
Requires-Dist: GitPython
|
|
27
|
-
Requires-Dist: aiohttp
|
|
28
|
-
Requires-Dist: aiohttp-retry
|
|
29
|
-
Requires-Dist: click
|
|
30
|
-
Requires-Dist: protobuf
|
|
31
|
-
Requires-Dist: kfp
|
|
32
|
-
Requires-Dist: nest-asyncio
|
|
33
|
-
Requires-Dist: ipython
|
|
34
|
-
Requires-Dist: nuclio-jupyter
|
|
35
|
-
Requires-Dist: numpy
|
|
36
|
-
Requires-Dist: pandas
|
|
37
|
-
Requires-Dist: pyarrow
|
|
38
|
-
Requires-Dist: pyyaml
|
|
39
|
-
Requires-Dist: requests
|
|
40
|
-
Requires-Dist: sqlalchemy
|
|
41
|
-
Requires-Dist: tabulate
|
|
42
|
-
Requires-Dist: v3io
|
|
43
|
-
Requires-Dist: pydantic
|
|
44
|
-
Requires-Dist: orjson
|
|
45
|
-
Requires-Dist: alembic
|
|
46
|
-
Requires-Dist: mergedeep
|
|
47
|
-
Requires-Dist: v3io-frames
|
|
48
|
-
Requires-Dist: semver
|
|
49
|
-
Requires-Dist: dask
|
|
50
|
-
Requires-Dist: distributed
|
|
51
|
-
Requires-Dist: kubernetes
|
|
52
|
-
Requires-Dist: humanfriendly
|
|
53
|
-
Requires-Dist: fastapi
|
|
54
|
-
Requires-Dist: fsspec
|
|
55
|
-
Requires-Dist: v3iofs
|
|
56
|
-
Requires-Dist: storey
|
|
57
|
-
Requires-Dist: deepdiff
|
|
58
|
-
Requires-Dist: pymysql
|
|
59
|
-
Requires-Dist: inflection
|
|
60
|
-
Requires-Dist: python-dotenv
|
|
61
|
-
Requires-Dist: setuptools
|
|
62
|
-
Requires-Dist: deprecated
|
|
24
|
+
Requires-Dist: urllib3 <1.27,>=1.25.4
|
|
25
|
+
Requires-Dist: chardet <4.0,>=3.0.2
|
|
26
|
+
Requires-Dist: GitPython >=3.1.30,~=3.1
|
|
27
|
+
Requires-Dist: aiohttp ~=3.8
|
|
28
|
+
Requires-Dist: aiohttp-retry ~=2.8
|
|
29
|
+
Requires-Dist: click ~=8.0.0
|
|
30
|
+
Requires-Dist: protobuf <3.20,>=3.13
|
|
31
|
+
Requires-Dist: kfp <1.8.14,~=1.8.0
|
|
32
|
+
Requires-Dist: nest-asyncio ~=1.0
|
|
33
|
+
Requires-Dist: ipython <9.0,>=7.0
|
|
34
|
+
Requires-Dist: nuclio-jupyter ~=0.9.9
|
|
35
|
+
Requires-Dist: numpy <1.23.0,>=1.16.5
|
|
36
|
+
Requires-Dist: pandas <1.5.0,~=1.2
|
|
37
|
+
Requires-Dist: pyarrow <11,>=10
|
|
38
|
+
Requires-Dist: pyyaml ~=5.1
|
|
39
|
+
Requires-Dist: requests ~=2.22
|
|
40
|
+
Requires-Dist: sqlalchemy ~=1.4
|
|
41
|
+
Requires-Dist: tabulate ~=0.8.6
|
|
42
|
+
Requires-Dist: v3io ~=0.5.20
|
|
43
|
+
Requires-Dist: pydantic ~=1.5
|
|
44
|
+
Requires-Dist: orjson <3.8.12,~=3.3
|
|
45
|
+
Requires-Dist: alembic ~=1.9
|
|
46
|
+
Requires-Dist: mergedeep ~=1.3
|
|
47
|
+
Requires-Dist: v3io-frames ~=0.10.4
|
|
48
|
+
Requires-Dist: semver ~=2.13
|
|
49
|
+
Requires-Dist: dask ~=2021.11.2
|
|
50
|
+
Requires-Dist: distributed ~=2021.11.2
|
|
51
|
+
Requires-Dist: kubernetes ~=12.0
|
|
52
|
+
Requires-Dist: humanfriendly ~=8.2
|
|
53
|
+
Requires-Dist: fastapi ~=0.92.0
|
|
54
|
+
Requires-Dist: fsspec ~=2023.1.0
|
|
55
|
+
Requires-Dist: v3iofs ~=0.1.15
|
|
56
|
+
Requires-Dist: storey ~=1.3.15
|
|
57
|
+
Requires-Dist: deepdiff ~=5.0
|
|
58
|
+
Requires-Dist: pymysql ~=1.0
|
|
59
|
+
Requires-Dist: inflection ~=0.5.0
|
|
60
|
+
Requires-Dist: python-dotenv ~=0.17.0
|
|
61
|
+
Requires-Dist: setuptools ~=65.5
|
|
62
|
+
Requires-Dist: deprecated ~=1.2
|
|
63
63
|
Provides-Extra: all
|
|
64
|
-
Requires-Dist: adlfs
|
|
65
|
-
Requires-Dist: aiobotocore
|
|
66
|
-
Requires-Dist: azure-core
|
|
67
|
-
Requires-Dist: azure-identity
|
|
68
|
-
Requires-Dist: azure-keyvault-secrets
|
|
69
|
-
Requires-Dist: azure-storage-blob
|
|
70
|
-
Requires-Dist: bokeh
|
|
71
|
-
Requires-Dist: boto3
|
|
72
|
-
Requires-Dist: gcsfs
|
|
73
|
-
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]
|
|
74
|
-
Requires-Dist: google-cloud-storage
|
|
75
|
-
Requires-Dist: google-cloud
|
|
76
|
-
Requires-Dist: graphviz
|
|
77
|
-
Requires-Dist: kafka-python
|
|
78
|
-
Requires-Dist: msrest
|
|
79
|
-
Requires-Dist: plotly
|
|
80
|
-
Requires-Dist: pyopenssl
|
|
81
|
-
Requires-Dist: redis
|
|
82
|
-
Requires-Dist: s3fs
|
|
64
|
+
Requires-Dist: adlfs ~=2022.2.0 ; extra == 'all'
|
|
65
|
+
Requires-Dist: aiobotocore ~=2.4.2 ; extra == 'all'
|
|
66
|
+
Requires-Dist: azure-core ~=1.24 ; extra == 'all'
|
|
67
|
+
Requires-Dist: azure-identity ~=1.5 ; extra == 'all'
|
|
68
|
+
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'all'
|
|
69
|
+
Requires-Dist: azure-storage-blob ~=12.13 ; extra == 'all'
|
|
70
|
+
Requires-Dist: bokeh >=2.4.2,~=2.4 ; extra == 'all'
|
|
71
|
+
Requires-Dist: boto3 ~=1.24.59 ; extra == 'all'
|
|
72
|
+
Requires-Dist: gcsfs ~=2023.1.0 ; extra == 'all'
|
|
73
|
+
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ~=3.2 ; extra == 'all'
|
|
74
|
+
Requires-Dist: google-cloud-storage ~=1.20 ; extra == 'all'
|
|
75
|
+
Requires-Dist: google-cloud ~=0.34 ; extra == 'all'
|
|
76
|
+
Requires-Dist: graphviz ~=0.20.0 ; extra == 'all'
|
|
77
|
+
Requires-Dist: kafka-python ~=2.0 ; extra == 'all'
|
|
78
|
+
Requires-Dist: msrest ~=0.6.21 ; extra == 'all'
|
|
79
|
+
Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'all'
|
|
80
|
+
Requires-Dist: pyopenssl >=23 ; extra == 'all'
|
|
81
|
+
Requires-Dist: redis ~=4.3 ; extra == 'all'
|
|
82
|
+
Requires-Dist: s3fs ~=2023.1.0 ; extra == 'all'
|
|
83
83
|
Provides-Extra: api
|
|
84
|
-
Requires-Dist: uvicorn
|
|
85
|
-
Requires-Dist: dask-kubernetes
|
|
86
|
-
Requires-Dist: apscheduler
|
|
87
|
-
Requires-Dist: sqlite3-to-mysql
|
|
88
|
-
Requires-Dist: objgraph
|
|
84
|
+
Requires-Dist: uvicorn ~=0.20.0 ; extra == 'api'
|
|
85
|
+
Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'api'
|
|
86
|
+
Requires-Dist: apscheduler ~=3.6 ; extra == 'api'
|
|
87
|
+
Requires-Dist: sqlite3-to-mysql ~=1.4 ; extra == 'api'
|
|
88
|
+
Requires-Dist: objgraph ~=3.5 ; extra == 'api'
|
|
89
89
|
Provides-Extra: azure-blob-storage
|
|
90
|
-
Requires-Dist: msrest
|
|
91
|
-
Requires-Dist: azure-core
|
|
92
|
-
Requires-Dist: azure-storage-blob
|
|
93
|
-
Requires-Dist: adlfs
|
|
94
|
-
Requires-Dist: pyopenssl
|
|
90
|
+
Requires-Dist: msrest ~=0.6.21 ; extra == 'azure-blob-storage'
|
|
91
|
+
Requires-Dist: azure-core ~=1.24 ; extra == 'azure-blob-storage'
|
|
92
|
+
Requires-Dist: azure-storage-blob ~=12.13 ; extra == 'azure-blob-storage'
|
|
93
|
+
Requires-Dist: adlfs ~=2022.2.0 ; extra == 'azure-blob-storage'
|
|
94
|
+
Requires-Dist: pyopenssl >=23 ; extra == 'azure-blob-storage'
|
|
95
95
|
Provides-Extra: azure-key-vault
|
|
96
|
-
Requires-Dist: azure-identity
|
|
97
|
-
Requires-Dist: azure-keyvault-secrets
|
|
98
|
-
Requires-Dist: pyopenssl
|
|
96
|
+
Requires-Dist: azure-identity ~=1.5 ; extra == 'azure-key-vault'
|
|
97
|
+
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'azure-key-vault'
|
|
98
|
+
Requires-Dist: pyopenssl >=23 ; extra == 'azure-key-vault'
|
|
99
99
|
Provides-Extra: bokeh
|
|
100
|
-
Requires-Dist: bokeh
|
|
100
|
+
Requires-Dist: bokeh >=2.4.2,~=2.4 ; extra == 'bokeh'
|
|
101
101
|
Provides-Extra: complete
|
|
102
|
-
Requires-Dist: adlfs
|
|
103
|
-
Requires-Dist: aiobotocore
|
|
104
|
-
Requires-Dist: azure-core
|
|
105
|
-
Requires-Dist: azure-identity
|
|
106
|
-
Requires-Dist: azure-keyvault-secrets
|
|
107
|
-
Requires-Dist: azure-storage-blob
|
|
108
|
-
Requires-Dist: boto3
|
|
109
|
-
Requires-Dist: gcsfs
|
|
110
|
-
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]
|
|
111
|
-
Requires-Dist: graphviz
|
|
112
|
-
Requires-Dist: kafka-python
|
|
113
|
-
Requires-Dist: msrest
|
|
114
|
-
Requires-Dist: plotly
|
|
115
|
-
Requires-Dist: pyopenssl
|
|
116
|
-
Requires-Dist: redis
|
|
117
|
-
Requires-Dist: s3fs
|
|
102
|
+
Requires-Dist: adlfs ~=2022.2.0 ; extra == 'complete'
|
|
103
|
+
Requires-Dist: aiobotocore ~=2.4.2 ; extra == 'complete'
|
|
104
|
+
Requires-Dist: azure-core ~=1.24 ; extra == 'complete'
|
|
105
|
+
Requires-Dist: azure-identity ~=1.5 ; extra == 'complete'
|
|
106
|
+
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete'
|
|
107
|
+
Requires-Dist: azure-storage-blob ~=12.13 ; extra == 'complete'
|
|
108
|
+
Requires-Dist: boto3 ~=1.24.59 ; extra == 'complete'
|
|
109
|
+
Requires-Dist: gcsfs ~=2023.1.0 ; extra == 'complete'
|
|
110
|
+
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ~=3.2 ; extra == 'complete'
|
|
111
|
+
Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete'
|
|
112
|
+
Requires-Dist: kafka-python ~=2.0 ; extra == 'complete'
|
|
113
|
+
Requires-Dist: msrest ~=0.6.21 ; extra == 'complete'
|
|
114
|
+
Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete'
|
|
115
|
+
Requires-Dist: pyopenssl >=23 ; extra == 'complete'
|
|
116
|
+
Requires-Dist: redis ~=4.3 ; extra == 'complete'
|
|
117
|
+
Requires-Dist: s3fs ~=2023.1.0 ; extra == 'complete'
|
|
118
118
|
Provides-Extra: complete-api
|
|
119
|
-
Requires-Dist: adlfs
|
|
120
|
-
Requires-Dist: aiobotocore
|
|
121
|
-
Requires-Dist: apscheduler
|
|
122
|
-
Requires-Dist: azure-core
|
|
123
|
-
Requires-Dist: azure-identity
|
|
124
|
-
Requires-Dist: azure-keyvault-secrets
|
|
125
|
-
Requires-Dist: azure-storage-blob
|
|
126
|
-
Requires-Dist: boto3
|
|
127
|
-
Requires-Dist: dask-kubernetes
|
|
128
|
-
Requires-Dist: gcsfs
|
|
129
|
-
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]
|
|
130
|
-
Requires-Dist: graphviz
|
|
131
|
-
Requires-Dist: kafka-python
|
|
132
|
-
Requires-Dist: msrest
|
|
133
|
-
Requires-Dist: objgraph
|
|
134
|
-
Requires-Dist: plotly
|
|
135
|
-
Requires-Dist: pyopenssl
|
|
136
|
-
Requires-Dist: redis
|
|
137
|
-
Requires-Dist: s3fs
|
|
138
|
-
Requires-Dist: sqlite3-to-mysql
|
|
139
|
-
Requires-Dist: uvicorn
|
|
119
|
+
Requires-Dist: adlfs ~=2022.2.0 ; extra == 'complete-api'
|
|
120
|
+
Requires-Dist: aiobotocore ~=2.4.2 ; extra == 'complete-api'
|
|
121
|
+
Requires-Dist: apscheduler ~=3.6 ; extra == 'complete-api'
|
|
122
|
+
Requires-Dist: azure-core ~=1.24 ; extra == 'complete-api'
|
|
123
|
+
Requires-Dist: azure-identity ~=1.5 ; extra == 'complete-api'
|
|
124
|
+
Requires-Dist: azure-keyvault-secrets ~=4.2 ; extra == 'complete-api'
|
|
125
|
+
Requires-Dist: azure-storage-blob ~=12.13 ; extra == 'complete-api'
|
|
126
|
+
Requires-Dist: boto3 ~=1.24.59 ; extra == 'complete-api'
|
|
127
|
+
Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'complete-api'
|
|
128
|
+
Requires-Dist: gcsfs ~=2023.1.0 ; extra == 'complete-api'
|
|
129
|
+
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ~=3.2 ; extra == 'complete-api'
|
|
130
|
+
Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete-api'
|
|
131
|
+
Requires-Dist: kafka-python ~=2.0 ; extra == 'complete-api'
|
|
132
|
+
Requires-Dist: msrest ~=0.6.21 ; extra == 'complete-api'
|
|
133
|
+
Requires-Dist: objgraph ~=3.5 ; extra == 'complete-api'
|
|
134
|
+
Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete-api'
|
|
135
|
+
Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
|
|
136
|
+
Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
|
|
137
|
+
Requires-Dist: s3fs ~=2023.1.0 ; extra == 'complete-api'
|
|
138
|
+
Requires-Dist: sqlite3-to-mysql ~=1.4 ; extra == 'complete-api'
|
|
139
|
+
Requires-Dist: uvicorn ~=0.20.0 ; extra == 'complete-api'
|
|
140
140
|
Provides-Extra: google-cloud
|
|
141
|
-
Requires-Dist: google-cloud-storage
|
|
142
|
-
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]
|
|
143
|
-
Requires-Dist: google-cloud
|
|
141
|
+
Requires-Dist: google-cloud-storage ~=1.20 ; extra == 'google-cloud'
|
|
142
|
+
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ~=3.2 ; extra == 'google-cloud'
|
|
143
|
+
Requires-Dist: google-cloud ~=0.34 ; extra == 'google-cloud'
|
|
144
144
|
Provides-Extra: google-cloud-bigquery
|
|
145
|
-
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]
|
|
145
|
+
Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ~=3.2 ; extra == 'google-cloud-bigquery'
|
|
146
146
|
Provides-Extra: google-cloud-storage
|
|
147
|
-
Requires-Dist: gcsfs
|
|
147
|
+
Requires-Dist: gcsfs ~=2023.1.0 ; extra == 'google-cloud-storage'
|
|
148
148
|
Provides-Extra: graphviz
|
|
149
|
-
Requires-Dist: graphviz
|
|
149
|
+
Requires-Dist: graphviz ~=0.20.0 ; extra == 'graphviz'
|
|
150
150
|
Provides-Extra: kafka
|
|
151
|
-
Requires-Dist: kafka-python
|
|
151
|
+
Requires-Dist: kafka-python ~=2.0 ; extra == 'kafka'
|
|
152
152
|
Provides-Extra: plotly
|
|
153
|
-
Requires-Dist: plotly
|
|
153
|
+
Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'plotly'
|
|
154
154
|
Provides-Extra: redis
|
|
155
|
-
Requires-Dist: redis
|
|
155
|
+
Requires-Dist: redis ~=4.3 ; extra == 'redis'
|
|
156
156
|
Provides-Extra: s3
|
|
157
|
-
Requires-Dist: boto3
|
|
158
|
-
Requires-Dist: aiobotocore
|
|
159
|
-
Requires-Dist: s3fs
|
|
157
|
+
Requires-Dist: boto3 ~=1.24.59 ; extra == 's3'
|
|
158
|
+
Requires-Dist: aiobotocore ~=2.4.2 ; extra == 's3'
|
|
159
|
+
Requires-Dist: s3fs ~=2023.1.0 ; extra == 's3'
|
|
160
160
|
|
|
161
161
|
<a id="top"></a>
|
|
162
162
|
[](https://github.com/mlrun/mlrun/actions)
|
|
@@ -189,9 +189,9 @@ mlrun/datastore/google_cloud_storage.py,sha256=9dtZt7Opytrra45urj6ObYa1fxf7UIOHX
|
|
|
189
189
|
mlrun/datastore/inmem.py,sha256=o6Svv12k5PxJNT24nMgV9FBYEPCzD3OQzuuvU6OeCYY,2627
|
|
190
190
|
mlrun/datastore/redis.py,sha256=pywWgjGJ51pmvKuwX1MI3ILWqh6WtgDs9igOQAhmIhc,4873
|
|
191
191
|
mlrun/datastore/s3.py,sha256=fn1Yg5Rs33ugHlwTKvBfu_jMKqkSZWgHNw0ocQ5nO7A,7035
|
|
192
|
-
mlrun/datastore/sources.py,sha256=
|
|
192
|
+
mlrun/datastore/sources.py,sha256=r2JSmADHnYPlK0HI9wXaqmRU4zXfho8ahHyjtoUIUrU,34240
|
|
193
193
|
mlrun/datastore/store_resources.py,sha256=N4pNnvs8xvDt7eg7czP59BFfjgVxfiQLBlhl0ehTkzo,6864
|
|
194
|
-
mlrun/datastore/targets.py,sha256=
|
|
194
|
+
mlrun/datastore/targets.py,sha256=yIu7nTAB24Gf2U_LeZi_-VXo6QE6TVGaARUGoJpIBuE,61211
|
|
195
195
|
mlrun/datastore/utils.py,sha256=WNKBhgG2w9xAviyieGCB6hTnESEYzCwzgjcjz6uaWC4,1660
|
|
196
196
|
mlrun/datastore/v3io.py,sha256=ArEYq78irv5bwlRwcLeVfFJvcwtXEamGsZ2I0sVt7Qg,8097
|
|
197
197
|
mlrun/datastore/wasbfs/__init__.py,sha256=4CK7vZeJmC4Ak9cJjG07cGnk7jlkBlpCxw-ANfbBmzk,1343
|
|
@@ -242,7 +242,7 @@ mlrun/frameworks/_ml_common/loggers/__init__.py,sha256=KVgp9xsbVEiMV562iPkmr7eYn
|
|
|
242
242
|
mlrun/frameworks/_ml_common/loggers/logger.py,sha256=gpC-g2cBbfjA8qLnAfUZD9y2if2mMHyOeFFRLlH5DY0,5684
|
|
243
243
|
mlrun/frameworks/_ml_common/loggers/mlrun_logger.py,sha256=mRfIALjGq7ZlQODOzLvqijYL7UZzQq8nJknuhaNG_wo,6453
|
|
244
244
|
mlrun/frameworks/_ml_common/plans/__init__.py,sha256=h9yzfzK0NxDfb4TcyrgC38BWjSvucifD28i2GMa5Wgw,922
|
|
245
|
-
mlrun/frameworks/_ml_common/plans/calibration_curve_plan.py,sha256=
|
|
245
|
+
mlrun/frameworks/_ml_common/plans/calibration_curve_plan.py,sha256=hOIswx0qFVr1hzR0AAsiisi2cxWsklnlNiMR3LlcGMY,4943
|
|
246
246
|
mlrun/frameworks/_ml_common/plans/confusion_matrix_plan.py,sha256=4U6676pcXpACBgfW8sqFWPWaBxHK3YLVyVwxMvqTVHk,6078
|
|
247
247
|
mlrun/frameworks/_ml_common/plans/dataset_plan.py,sha256=-zoamN8bTeiLbd-OB_LWWYNle85c1jcg2MVveAWxUJg,6658
|
|
248
248
|
mlrun/frameworks/_ml_common/plans/feature_importance_plan.py,sha256=0uzXsbDA1-e-eAhm8TXQl7NM8W6OBoiB5-TEi4Znw78,5318
|
|
@@ -314,7 +314,7 @@ mlrun/platforms/other.py,sha256=DwqbdbMNlkC2nEl1yJ0jF9WZJzjVu2IVPTC3bQ_W9Y0,1185
|
|
|
314
314
|
mlrun/projects/__init__.py,sha256=dsXSDyqBhLi8OOfpdjLJpYOwC2fy_Q_Ki95Bk6gVSwc,1153
|
|
315
315
|
mlrun/projects/operations.py,sha256=RZAyhsi3VuqvJjA3gwknuSpWhM1BfOFsZ-lGX9fIXCQ,17302
|
|
316
316
|
mlrun/projects/pipelines.py,sha256=6iYVViKMUaEfqGIrVgQdl4UjtbDHe0nzlNXkLKte8fo,37882
|
|
317
|
-
mlrun/projects/project.py,sha256=
|
|
317
|
+
mlrun/projects/project.py,sha256=kqMbMZx5_ELxbz_IaT6wuwyscsFK1LOm5x-d65VK6Ro,105225
|
|
318
318
|
mlrun/runtimes/__init__.py,sha256=1rNfzU3G76BxDkqvTVVrxlQkhLDSmlzv838_56OID7E,8973
|
|
319
319
|
mlrun/runtimes/base.py,sha256=VtzYKQLdn57xOVoLbyha84v2cyycYMqVRZXM0IMgztk,107296
|
|
320
320
|
mlrun/runtimes/constants.py,sha256=Os_6YpWE8WMhigm1h3RKvn9Uo4LXNaEbA2xNSEDDEao,6689
|
|
@@ -371,11 +371,11 @@ mlrun/utils/notifications/notification/git.py,sha256=qI5Kd4U0PX8vfIVT_yjBIrToiJY
|
|
|
371
371
|
mlrun/utils/notifications/notification/ipython.py,sha256=jsM_tTV3ZzXv5NoQN2anfZJDTYsk95NDYVQnWFc9Zow,1951
|
|
372
372
|
mlrun/utils/notifications/notification/slack.py,sha256=wt6RlqJu9QC99Ki-3HNYmizYTyAnIVimFQ7bf-fYX2E,3650
|
|
373
373
|
mlrun/utils/version/__init__.py,sha256=hwfJgGWYGWFpepVGI1GbuCPqqEFGRbgguJg5sC0v4TU,614
|
|
374
|
-
mlrun/utils/version/version.json,sha256=
|
|
374
|
+
mlrun/utils/version/version.json,sha256=YiV8H4pXhMlfadKSi4sa_eJMdJGssykOyJWnxwF4hiY,88
|
|
375
375
|
mlrun/utils/version/version.py,sha256=O4Q4kwtKlI73oK7oBPuz4SVkUI8BC11E9DJIKHT91kU,1970
|
|
376
|
-
mlrun-1.3.
|
|
377
|
-
mlrun-1.3.
|
|
378
|
-
mlrun-1.3.
|
|
379
|
-
mlrun-1.3.
|
|
380
|
-
mlrun-1.3.
|
|
381
|
-
mlrun-1.3.
|
|
376
|
+
mlrun-1.3.4rc1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
377
|
+
mlrun-1.3.4rc1.dist-info/METADATA,sha256=Ab8dEa7QZFiwvrnqpvgD8HVJoSGdRQuv0Bt1pgYjymY,16448
|
|
378
|
+
mlrun-1.3.4rc1.dist-info/WHEEL,sha256=5sUXSg9e4bi7lTLOHcm6QEYwO5TIF1TNbTSVFVjcJcc,92
|
|
379
|
+
mlrun-1.3.4rc1.dist-info/entry_points.txt,sha256=ZbXmb36B9JmK7EaleP8MIAbZSOQXQV0iwKR6si0HUWk,47
|
|
380
|
+
mlrun-1.3.4rc1.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
381
|
+
mlrun-1.3.4rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|