ml-dash 0.6.5__py3-none-any.whl → 0.6.7__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.
- ml_dash/__init__.py +1 -2
- ml_dash/auto_start.py +1 -4
- ml_dash/buffer.py +735 -0
- ml_dash/cli.py +7 -1
- ml_dash/cli_commands/create.py +145 -0
- ml_dash/cli_commands/download.py +177 -0
- ml_dash/cli_commands/list.py +146 -0
- ml_dash/cli_commands/upload.py +148 -4
- ml_dash/client.py +328 -25
- ml_dash/experiment.py +491 -457
- ml_dash/files.py +228 -70
- ml_dash/run.py +92 -3
- ml_dash/storage.py +403 -2
- ml_dash/track.py +263 -0
- {ml_dash-0.6.5.dist-info → ml_dash-0.6.7.dist-info}/METADATA +1 -1
- {ml_dash-0.6.5.dist-info → ml_dash-0.6.7.dist-info}/RECORD +18 -15
- {ml_dash-0.6.5.dist-info → ml_dash-0.6.7.dist-info}/WHEEL +0 -0
- {ml_dash-0.6.5.dist-info → ml_dash-0.6.7.dist-info}/entry_points.txt +0 -0
ml_dash/__init__.py
CHANGED
|
@@ -37,7 +37,7 @@ Usage:
|
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
39
|
from .client import RemoteClient
|
|
40
|
-
from .experiment import Experiment, OperationMode,
|
|
40
|
+
from .experiment import Experiment, OperationMode, ml_dash_experiment
|
|
41
41
|
from .log import LogBuilder, LogLevel
|
|
42
42
|
from .params import ParametersBuilder
|
|
43
43
|
from .run import RUN
|
|
@@ -49,7 +49,6 @@ __all__ = [
|
|
|
49
49
|
"Experiment",
|
|
50
50
|
"ml_dash_experiment",
|
|
51
51
|
"OperationMode",
|
|
52
|
-
"RunManager",
|
|
53
52
|
"RemoteClient",
|
|
54
53
|
"LocalStorage",
|
|
55
54
|
"LogLevel",
|
ml_dash/auto_start.py
CHANGED
|
@@ -43,10 +43,7 @@ _user = get_jwt_user()
|
|
|
43
43
|
_username = _user["username"] if _user else getpass.getuser()
|
|
44
44
|
_now = datetime.now()
|
|
45
45
|
|
|
46
|
-
dxp = Experiment(
|
|
47
|
-
prefix=f"{_username}/scratch/{_now:%Y-%m-%d/%H%M%S}",
|
|
48
|
-
dash_url="https://api.dash.ml",
|
|
49
|
-
)
|
|
46
|
+
dxp = Experiment()
|
|
50
47
|
|
|
51
48
|
|
|
52
49
|
# Register cleanup handler to complete experiment on Python exit (if still open)
|