hydraflow 0.1.2__py3-none-any.whl → 0.1.4__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- hydraflow/__init__.py +9 -1
- {hydraflow-0.1.2.dist-info → hydraflow-0.1.4.dist-info}/METADATA +1 -1
- {hydraflow-0.1.2.dist-info → hydraflow-0.1.4.dist-info}/RECORD +5 -5
- {hydraflow-0.1.2.dist-info → hydraflow-0.1.4.dist-info}/WHEEL +0 -0
- {hydraflow-0.1.2.dist-info → hydraflow-0.1.4.dist-info}/licenses/LICENSE +0 -0
hydraflow/__init__.py
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
from .context import Info, chdir_artifact, log_run, watch
|
2
2
|
from .mlflow import set_experiment
|
3
3
|
from .runs import (
|
4
|
+
Run,
|
5
|
+
Runs,
|
6
|
+
drop_unique_params,
|
4
7
|
filter_runs,
|
5
8
|
get_artifact_dir,
|
6
9
|
get_artifact_path,
|
@@ -9,19 +12,24 @@ from .runs import (
|
|
9
12
|
get_param_names,
|
10
13
|
get_run,
|
11
14
|
get_run_id,
|
15
|
+
load_config,
|
12
16
|
)
|
13
17
|
|
14
18
|
__all__ = [
|
15
19
|
"Info",
|
20
|
+
"Run",
|
21
|
+
"Runs",
|
16
22
|
"chdir_artifact",
|
23
|
+
"drop_unique_params",
|
17
24
|
"filter_runs",
|
18
25
|
"get_artifact_dir",
|
19
26
|
"get_artifact_path",
|
20
27
|
"get_artifact_uri",
|
21
|
-
"get_run",
|
22
28
|
"get_param_dict",
|
23
29
|
"get_param_names",
|
30
|
+
"get_run",
|
24
31
|
"get_run_id",
|
32
|
+
"load_config",
|
25
33
|
"log_run",
|
26
34
|
"set_experiment",
|
27
35
|
"watch",
|
@@ -1,10 +1,10 @@
|
|
1
|
-
hydraflow/__init__.py,sha256=
|
1
|
+
hydraflow/__init__.py,sha256=e1Q0Sskx39jaU2zkGNXjFWNC5xugEz_hDERTN_6Mzy8,666
|
2
2
|
hydraflow/config.py,sha256=b3Plh_lmq94loZNw9QP2asd6thCLyTzzYSutH0cONXA,964
|
3
3
|
hydraflow/context.py,sha256=3vejDbRYQBuBwlhpBpOv5aoyZ-yS8UUzpbCFK1V1uvw,2720
|
4
4
|
hydraflow/mlflow.py,sha256=unBP3Y7ujTM3E_Hq_eYvRVFZoGfTA7B0h4FkOZtPPqc,566
|
5
5
|
hydraflow/runs.py,sha256=127YykWzmiNUUuJSGPOCZasXmd6tcE15HU32j8x71ck,5864
|
6
6
|
hydraflow/util.py,sha256=_BdOMq5tKPm8HOehb2s2ZIBpJYyVpvO_yaAIxbSj51I,253
|
7
|
-
hydraflow-0.1.
|
8
|
-
hydraflow-0.1.
|
9
|
-
hydraflow-0.1.
|
10
|
-
hydraflow-0.1.
|
7
|
+
hydraflow-0.1.4.dist-info/METADATA,sha256=Xw-xcDKdzkHa7bKDZUI6MXpOKekcyFbMyBy1yANjNQs,1903
|
8
|
+
hydraflow-0.1.4.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
9
|
+
hydraflow-0.1.4.dist-info/licenses/LICENSE,sha256=IGdDrBPqz1O0v_UwCW-NJlbX9Hy9b3uJ11t28y2srmY,1062
|
10
|
+
hydraflow-0.1.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|