hydraflow 0.18.4__py3-none-any.whl → 0.19.1__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.
- hydraflow/__init__.py +0 -0
- hydraflow/cli.py +0 -0
- hydraflow/core/__init__.py +0 -0
- hydraflow/core/collection.py +0 -0
- hydraflow/core/context.py +0 -0
- hydraflow/core/group_by.py +0 -0
- hydraflow/core/io.py +0 -0
- hydraflow/core/main.py +0 -0
- hydraflow/core/run.py +2 -2
- hydraflow/core/run_collection.py +1 -12
- hydraflow/core/run_info.py +0 -0
- hydraflow/executor/__init__.py +0 -0
- hydraflow/executor/aio.py +0 -0
- hydraflow/executor/conf.py +0 -0
- hydraflow/executor/io.py +0 -0
- hydraflow/executor/job.py +0 -0
- hydraflow/executor/parser.py +0 -0
- hydraflow/py.typed +0 -0
- hydraflow/utils/__init__.py +0 -0
- hydraflow/utils/progress.py +0 -0
- {hydraflow-0.18.4.dist-info → hydraflow-0.19.1.dist-info}/METADATA +32 -32
- hydraflow-0.19.1.dist-info/RECORD +24 -0
- hydraflow-0.19.1.dist-info/WHEEL +4 -0
- {hydraflow-0.18.4.dist-info → hydraflow-0.19.1.dist-info}/entry_points.txt +1 -0
- hydraflow-0.18.4.dist-info/RECORD +0 -25
- hydraflow-0.18.4.dist-info/WHEEL +0 -4
- hydraflow-0.18.4.dist-info/licenses/LICENSE +0 -21
hydraflow/__init__.py
CHANGED
File without changes
|
hydraflow/cli.py
CHANGED
File without changes
|
hydraflow/core/__init__.py
CHANGED
File without changes
|
hydraflow/core/collection.py
CHANGED
File without changes
|
hydraflow/core/context.py
CHANGED
File without changes
|
hydraflow/core/group_by.py
CHANGED
File without changes
|
hydraflow/core/io.py
CHANGED
File without changes
|
hydraflow/core/main.py
CHANGED
File without changes
|
hydraflow/core/run.py
CHANGED
@@ -140,7 +140,7 @@ class Run[C, I = None]:
|
|
140
140
|
impl_factory: Callable[[Path], I] | Callable[[Path, C], I] | None = None,
|
141
141
|
*,
|
142
142
|
n_jobs: int = 0,
|
143
|
-
) -> RunCollection[Self
|
143
|
+
) -> RunCollection[Self]: ...
|
144
144
|
|
145
145
|
@classmethod
|
146
146
|
def load(
|
@@ -149,7 +149,7 @@ class Run[C, I = None]:
|
|
149
149
|
impl_factory: Callable[[Path], I] | Callable[[Path, C], I] | None = None,
|
150
150
|
*,
|
151
151
|
n_jobs: int = 0,
|
152
|
-
) -> Self | RunCollection[Self
|
152
|
+
) -> Self | RunCollection[Self]:
|
153
153
|
"""Load a Run from a run directory.
|
154
154
|
|
155
155
|
Args:
|
hydraflow/core/run_collection.py
CHANGED
@@ -40,7 +40,6 @@ Note:
|
|
40
40
|
|
41
41
|
from __future__ import annotations
|
42
42
|
|
43
|
-
from functools import cached_property
|
44
43
|
from typing import TYPE_CHECKING, overload
|
45
44
|
|
46
45
|
import polars as pl
|
@@ -56,7 +55,7 @@ if TYPE_CHECKING:
|
|
56
55
|
from polars import DataFrame
|
57
56
|
|
58
57
|
|
59
|
-
class RunCollection[R: Run[Any, Any]
|
58
|
+
class RunCollection[R: Run[Any, Any]](Collection[R]):
|
60
59
|
"""A collection of Run instances that implements the Sequence protocol.
|
61
60
|
|
62
61
|
RunCollection provides methods for filtering, sorting, grouping, and analyzing
|
@@ -194,16 +193,6 @@ class RunCollection[R: Run[Any, Any], I = None](Collection[R]):
|
|
194
193
|
"""
|
195
194
|
return pl.concat(run.to_frame(function, *keys) for run in self)
|
196
195
|
|
197
|
-
@cached_property
|
198
|
-
def impls(self) -> Collection[I]:
|
199
|
-
"""Get the implementation objects for all runs in the collection.
|
200
|
-
|
201
|
-
Returns:
|
202
|
-
Collection[I]: A collection of implementation objects for all runs.
|
203
|
-
|
204
|
-
"""
|
205
|
-
return Collection(run.impl for run in self)
|
206
|
-
|
207
196
|
def iterdir(self, relative_dir: str = "") -> Iterator[Path]:
|
208
197
|
"""Iterate over the artifact directories for all runs in the collection.
|
209
198
|
|
hydraflow/core/run_info.py
CHANGED
File without changes
|
hydraflow/executor/__init__.py
CHANGED
File without changes
|
hydraflow/executor/aio.py
CHANGED
File without changes
|
hydraflow/executor/conf.py
CHANGED
File without changes
|
hydraflow/executor/io.py
CHANGED
File without changes
|
hydraflow/executor/job.py
CHANGED
File without changes
|
hydraflow/executor/parser.py
CHANGED
File without changes
|
hydraflow/py.typed
CHANGED
File without changes
|
hydraflow/utils/__init__.py
CHANGED
File without changes
|
hydraflow/utils/progress.py
CHANGED
File without changes
|
@@ -1,34 +1,31 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: hydraflow
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.19.1
|
4
4
|
Summary: HydraFlow seamlessly integrates Hydra and MLflow to streamline ML experiment management, combining Hydra's configuration management with MLflow's tracking capabilities.
|
5
|
-
|
6
|
-
|
7
|
-
Project-URL: Issues, https://github.com/daizutabi/hydraflow/issues
|
5
|
+
Keywords: machine-learning,mlflow,hydra,experiment-tracking,mlops,ai,deep-learning,research,data-science
|
6
|
+
Author: daizutabi
|
8
7
|
Author-email: daizutabi <daizutabi@gmail.com>
|
9
8
|
License: MIT License
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
License-File: LICENSE
|
31
|
-
Keywords: ai,data-science,deep-learning,experiment-tracking,hydra,machine-learning,mlflow,mlops,research
|
9
|
+
|
10
|
+
Copyright (c) 2024 Daizu
|
11
|
+
|
12
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
13
|
+
of this software and associated documentation files (the "Software"), to deal
|
14
|
+
in the Software without restriction, including without limitation the rights
|
15
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
16
|
+
copies of the Software, and to permit persons to whom the Software is
|
17
|
+
furnished to do so, subject to the following conditions:
|
18
|
+
|
19
|
+
The above copyright notice and this permission notice shall be included in all
|
20
|
+
copies or substantial portions of the Software.
|
21
|
+
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
23
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
24
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
25
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
26
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
27
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
28
|
+
SOFTWARE.
|
32
29
|
Classifier: Development Status :: 4 - Beta
|
33
30
|
Classifier: Environment :: Console
|
34
31
|
Classifier: Intended Audience :: Developers
|
@@ -39,15 +36,18 @@ Classifier: Programming Language :: Python
|
|
39
36
|
Classifier: Programming Language :: Python :: 3.13
|
40
37
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
41
38
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
42
|
-
Requires-Python: >=3.13
|
43
39
|
Requires-Dist: hydra-core>=1.3
|
44
40
|
Requires-Dist: joblib>=1.4.0
|
45
|
-
Requires-Dist: mlflow>=
|
41
|
+
Requires-Dist: mlflow>=3
|
46
42
|
Requires-Dist: omegaconf>=2.3
|
47
43
|
Requires-Dist: polars>=1.26
|
48
44
|
Requires-Dist: python-ulid>=3.0.0
|
49
|
-
Requires-Dist: rich>=
|
50
|
-
Requires-Dist: typer>=0.
|
45
|
+
Requires-Dist: rich>=14
|
46
|
+
Requires-Dist: typer>=0.16
|
47
|
+
Requires-Python: >=3.13
|
48
|
+
Project-URL: Documentation, https://daizutabi.github.io/hydraflow/
|
49
|
+
Project-URL: Issues, https://github.com/daizutabi/hydraflow/issues
|
50
|
+
Project-URL: Source, https://github.com/daizutabi/hydraflow
|
51
51
|
Description-Content-Type: text/markdown
|
52
52
|
|
53
53
|
# HydraFlow
|
@@ -64,7 +64,7 @@ Description-Content-Type: text/markdown
|
|
64
64
|
[pypi-v-link]: https://pypi.org/project/hydraflow/
|
65
65
|
[GHAction-image]: https://github.com/daizutabi/hydraflow/actions/workflows/ci.yaml/badge.svg?branch=main&event=push
|
66
66
|
[GHAction-link]: https://github.com/daizutabi/hydraflow/actions?query=event%3Apush+branch%3Amain
|
67
|
-
[codecov-image]: https://codecov.io/github/daizutabi/hydraflow/
|
67
|
+
[codecov-image]: https://codecov.io/github/daizutabi/hydraflow/graph/badge.svg?token=Yu6lAdVVnd
|
68
68
|
[codecov-link]: https://codecov.io/github/daizutabi/hydraflow?branch=main
|
69
69
|
[docs-image]: https://img.shields.io/badge/docs-latest-blue.svg
|
70
70
|
[docs-link]: https://daizutabi.github.io/hydraflow/
|
@@ -0,0 +1,24 @@
|
|
1
|
+
hydraflow/__init__.py,sha256=fdc2cba2412fd29525c2f1bc44c9e33b0093b43401b34f918066ed0e4e66fd78,794
|
2
|
+
hydraflow/cli.py,sha256=deb1abfffff0c29f0a6b38cb190ec93bf22000ca8bc8c95c552b3f4092bb8346,3135
|
3
|
+
hydraflow/core/__init__.py,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
4
|
+
hydraflow/core/collection.py,sha256=b355edb15d405390abe97bad31fa61440eb4ba1a26a438904154a06ff5f3fa73,30437
|
5
|
+
hydraflow/core/context.py,sha256=eafa707b45df97a9b38768472c4fb8b81f478dec3e08ae290342858a143cd14f,4168
|
6
|
+
hydraflow/core/group_by.py,sha256=3e7c3ea00e5a5c77911bd94c2f3f9b29cf1daea43c2c846c5b3bd59f5e778b24,5488
|
7
|
+
hydraflow/core/io.py,sha256=077fa33ee256b6d460a5b229cbf5c0f99daaa57ccd175013c32604c00ecfbf7c,5172
|
8
|
+
hydraflow/core/main.py,sha256=e97e7c33ec6924faa5ef1a8b4778296b85cc78fbd9e90d5d88c4aa4d97f626bc,6542
|
9
|
+
hydraflow/core/run.py,sha256=469842a9e5e0e4e8994395352a1d4f62b6d0f5312e563cef7d6bcd3ab5346dab,15736
|
10
|
+
hydraflow/core/run_collection.py,sha256=c576cd8aa020ce903f17feb335da53cb2f72755f388ac963ccaf68d82eb6d3a4,7299
|
11
|
+
hydraflow/core/run_info.py,sha256=48c39365711aece055fd78d3c9cb64e60246ae082663085e3ef445f022c5d645,1616
|
12
|
+
hydraflow/executor/__init__.py,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
13
|
+
hydraflow/executor/aio.py,sha256=c57b2604f20f741968a6fff587415db4ebe829472e5bb3d078a095d9dfe537d2,2122
|
14
|
+
hydraflow/executor/conf.py,sha256=f17ab85007a744a24897534180d6d27efe955132617703cb6b2648100b22051d,414
|
15
|
+
hydraflow/executor/io.py,sha256=d7cc271e908c4111982fea0ddbce3587d5b66925bf5f64a63baf0bc7edc521b5,1043
|
16
|
+
hydraflow/executor/job.py,sha256=e90789d7c38c7a871778cd38ac260be3a1a002b7d7d52bd9b3dff81d3a264e01,5436
|
17
|
+
hydraflow/executor/parser.py,sha256=4713fcaa90da27c54ba99e755653c5c958ad59cb4e6e1904ff788f22c63ae82b,14610
|
18
|
+
hydraflow/py.typed,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
19
|
+
hydraflow/utils/__init__.py,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
20
|
+
hydraflow/utils/progress.py,sha256=6be087be2a321827a250a6b0a8f715f22d67873ba79b9fabe4094b6f37797a9c,3048
|
21
|
+
hydraflow-0.19.1.dist-info/WHEEL,sha256=607c46fee47e440c91332c738096ff0f5e54ca3b0818ee85462dd5172a38e793,79
|
22
|
+
hydraflow-0.19.1.dist-info/entry_points.txt,sha256=52eaad3938e528b97120e049ed8390f14f666882077f6dfeaa391d958079db89,49
|
23
|
+
hydraflow-0.19.1.dist-info/METADATA,sha256=12fbdcdb9f6ffb3ca227543137a18eaf9f2dc3e3a1fe145cfb58e63abf5eb864,7452
|
24
|
+
hydraflow-0.19.1.dist-info/RECORD,,
|
@@ -1,25 +0,0 @@
|
|
1
|
-
hydraflow/__init__.py,sha256=_cLLokEv0pUlwvG8RMnjOwCTtDQBs0-RgGbtDk5m_Xg,794
|
2
|
-
hydraflow/cli.py,sha256=3rGr___wwp8KazjLGQ7JO_IgAMqLyMlcVSs_QJK7g0Y,3135
|
3
|
-
hydraflow/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
hydraflow/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
hydraflow/core/collection.py,sha256=s1XtsV1AU5Cr6XutMfphRA60uhompDiQQVSgb_Xz-nM,30437
|
6
|
-
hydraflow/core/context.py,sha256=6vpwe0Xfl6mzh2hHLE-4uB9Hjew-CK4pA0KFihQ80U8,4168
|
7
|
-
hydraflow/core/group_by.py,sha256=Pnw-oA5aXHeRG9lMLz-bKc8drqQ8LIRsWzvVn153iyQ,5488
|
8
|
-
hydraflow/core/io.py,sha256=B3-jPuJWttRgpbIpy_XA-Z2qpXzNF1ATwyYEwA7Pv3w,5172
|
9
|
-
hydraflow/core/main.py,sha256=6X58M-xpJPql7xqLR3gpa4XMePvZ6Q1diMSqTZf2Jrw,6542
|
10
|
-
hydraflow/core/run.py,sha256=BaltNfugrFzYfXiS1eiftXdxiR9ZoGYzGm6AbVpJSD4,15742
|
11
|
-
hydraflow/core/run_collection.py,sha256=iiqxZcrQciuGgrC2lUXIGmUJN64stxYABJ40O8b3IC8,7644
|
12
|
-
hydraflow/core/run_info.py,sha256=SMOTZXEa7OBV_XjTyctk5gJGrggmYwhePvRF8CLF1kU,1616
|
13
|
-
hydraflow/executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
-
hydraflow/executor/aio.py,sha256=xXsmBPIPdBlopv_1h0FdtOvoKUcuW7PQeKCV2d_lN9I,2122
|
15
|
-
hydraflow/executor/conf.py,sha256=8Xq4UAenRKJIl1NBgNbSfv6VUTJhdwPLayZIEAsiBR0,414
|
16
|
-
hydraflow/executor/io.py,sha256=18wnHpCMQRGYL-oN2841h9W2aSW_X2SmO68Lx-3FIbU,1043
|
17
|
-
hydraflow/executor/job.py,sha256=6QeJ18OMeocXeM04rCYL46GgArfX1SvZs9_4HTomTgE,5436
|
18
|
-
hydraflow/executor/parser.py,sha256=RxP8qpDaJ8VLqZ51VlPFyVitWctObhkE_3iPIsY66Cs,14610
|
19
|
-
hydraflow/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
-
hydraflow/utils/progress.py,sha256=a-CHvioyGCeiUKawqPcV8i1nhzunm5-r5AlLbzd5epw,3048
|
21
|
-
hydraflow-0.18.4.dist-info/METADATA,sha256=uENLtWRo7WGzwFjcGG-eLUKydqn73zrpQ_M2KCiFn30,7433
|
22
|
-
hydraflow-0.18.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
23
|
-
hydraflow-0.18.4.dist-info/entry_points.txt,sha256=XI0khPbpCIUo9UPqkNEpgh-kqK3Jy8T7L2VCWOdkbSM,48
|
24
|
-
hydraflow-0.18.4.dist-info/licenses/LICENSE,sha256=IGdDrBPqz1O0v_UwCW-NJlbX9Hy9b3uJ11t28y2srmY,1062
|
25
|
-
hydraflow-0.18.4.dist-info/RECORD,,
|
hydraflow-0.18.4.dist-info/WHEEL
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
MIT License
|
2
|
-
|
3
|
-
Copyright (c) 2024 Daizu
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|