polyaxon 2.7.0rc0__py3-none-any.whl → 2.8.0rc0__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.
- polyaxon/_cli/operations.py +29 -5
- polyaxon/_client/run.py +16 -7
- polyaxon/_sidecar/container/__init__.py +2 -2
- polyaxon/_sidecar/container/monitors/logs.py +4 -4
- polyaxon/_sidecar/container/monitors/spec.py +4 -3
- polyaxon/pkg.py +1 -1
- {polyaxon-2.7.0rc0.dist-info → polyaxon-2.8.0rc0.dist-info}/METADATA +6 -6
- {polyaxon-2.7.0rc0.dist-info → polyaxon-2.8.0rc0.dist-info}/RECORD +12 -12
- {polyaxon-2.7.0rc0.dist-info → polyaxon-2.8.0rc0.dist-info}/LICENSE +0 -0
- {polyaxon-2.7.0rc0.dist-info → polyaxon-2.8.0rc0.dist-info}/WHEEL +0 -0
- {polyaxon-2.7.0rc0.dist-info → polyaxon-2.8.0rc0.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.7.0rc0.dist-info → polyaxon-2.8.0rc0.dist-info}/top_level.txt +0 -0
polyaxon/_cli/operations.py
CHANGED
@@ -730,7 +730,7 @@ def stop(ctx, project, uid, yes):
|
|
730
730
|
is_cli=True,
|
731
731
|
)
|
732
732
|
if not yes and not click.confirm(
|
733
|
-
"Are sure you want to stop
|
733
|
+
"Are sure you want to stop run `{}`".format(run_uuid)
|
734
734
|
):
|
735
735
|
Printer.print("Exiting without stopping run.")
|
736
736
|
sys.exit(0)
|
@@ -782,7 +782,7 @@ def skip(ctx, project, uid, yes):
|
|
782
782
|
is_cli=True,
|
783
783
|
)
|
784
784
|
if not yes and not click.confirm(
|
785
|
-
"Are sure you want to stop
|
785
|
+
"Are sure you want to stop run `{}`".format(run_uuid)
|
786
786
|
):
|
787
787
|
Printer.print("Exiting without stopping run.")
|
788
788
|
sys.exit(0)
|
@@ -1854,9 +1854,17 @@ def artifacts(
|
|
1854
1854
|
@click.option(
|
1855
1855
|
"--agent", "-ag", type=str, help="Optional, uuid reference of an agent to use."
|
1856
1856
|
)
|
1857
|
+
@click.option(
|
1858
|
+
"--ignore-agent-host",
|
1859
|
+
is_flag=True,
|
1860
|
+
default=False,
|
1861
|
+
help="Optional, to ignore the agent host.",
|
1862
|
+
)
|
1857
1863
|
@click.pass_context
|
1858
1864
|
@clean_outputs
|
1859
|
-
def upload(
|
1865
|
+
def upload(
|
1866
|
+
ctx, project, uid, path_from, path_to, sync_failure, agent, ignore_agent_host
|
1867
|
+
):
|
1860
1868
|
"""Upload runs' artifacts.
|
1861
1869
|
|
1862
1870
|
Uses /docs/core/cli/#caching
|
@@ -1887,7 +1895,11 @@ def upload(ctx, project, uid, path_from, path_to, sync_failure, agent):
|
|
1887
1895
|
)
|
1888
1896
|
if is_file:
|
1889
1897
|
response = client.upload_artifact(
|
1890
|
-
filepath=path_from,
|
1898
|
+
filepath=path_from,
|
1899
|
+
path=path_to,
|
1900
|
+
overwrite=True,
|
1901
|
+
agent=agent,
|
1902
|
+
ignore_agent_host=ignore_agent_host,
|
1891
1903
|
)
|
1892
1904
|
else:
|
1893
1905
|
response = client.upload_artifacts_dir(
|
@@ -1896,6 +1908,7 @@ def upload(ctx, project, uid, path_from, path_to, sync_failure, agent):
|
|
1896
1908
|
overwrite=True,
|
1897
1909
|
relative_to=path_from,
|
1898
1910
|
agent=agent,
|
1911
|
+
ignore_agent_host=ignore_agent_host,
|
1899
1912
|
)
|
1900
1913
|
except (
|
1901
1914
|
ApiException,
|
@@ -2310,11 +2323,17 @@ def pull(
|
|
2310
2323
|
"--reset-uuid",
|
2311
2324
|
is_flag=True,
|
2312
2325
|
default=False,
|
2313
|
-
help="Optional, to ignore the uuid of the local
|
2326
|
+
help="Optional, to ignore the uuid of the local run and generate a new uuid.",
|
2314
2327
|
)
|
2315
2328
|
@click.option(
|
2316
2329
|
"--agent", "-ag", type=str, help="Optional, uuid reference of an agent to use."
|
2317
2330
|
)
|
2331
|
+
@click.option(
|
2332
|
+
"--ignore-agent-host",
|
2333
|
+
is_flag=True,
|
2334
|
+
default=False,
|
2335
|
+
help="Optional, to ignore the agent host.",
|
2336
|
+
)
|
2318
2337
|
@click.option("--name", "-n", type=str, help="Optional, a new name to set for the run.")
|
2319
2338
|
@click.pass_context
|
2320
2339
|
@clean_outputs
|
@@ -2329,6 +2348,7 @@ def push(
|
|
2329
2348
|
reset_project,
|
2330
2349
|
reset_uuid,
|
2331
2350
|
agent,
|
2351
|
+
ignore_agent_host,
|
2332
2352
|
name,
|
2333
2353
|
):
|
2334
2354
|
"""Push a local run (or all runs) to a remove server.
|
@@ -2352,6 +2372,9 @@ def push(
|
|
2352
2372
|
\b
|
2353
2373
|
$ polyaxon ops push -uid 8aac02e3a62a4f0aaa257c59da5eab80 --reset-project
|
2354
2374
|
|
2375
|
+
\b
|
2376
|
+
$ polyaxon ops push -uid 8aac02e3a62a4f0aaa257c59da5eab80 --ignore-agent-host
|
2377
|
+
|
2355
2378
|
\b
|
2356
2379
|
$ polyaxon ops push -uid 8aac02e3a62a4f0aaa257c59da5eab80 --reset-project -p send-to-project
|
2357
2380
|
"""
|
@@ -2397,6 +2420,7 @@ def push(
|
|
2397
2420
|
upload_artifacts=not no_artifacts,
|
2398
2421
|
clean=clean,
|
2399
2422
|
agent=agent,
|
2423
|
+
ignore_agent_host=ignore_agent_host,
|
2400
2424
|
)
|
2401
2425
|
Printer.success(
|
2402
2426
|
f"Finished pushing offline run {uid} to {client.owner}/{client.project}"
|
polyaxon/_client/run.py
CHANGED
@@ -1517,6 +1517,7 @@ class RunClient(ClientMixin):
|
|
1517
1517
|
overwrite: bool = True,
|
1518
1518
|
show_progress: bool = True,
|
1519
1519
|
agent: Optional[str] = None,
|
1520
|
+
ignore_agent_host: bool = False,
|
1520
1521
|
):
|
1521
1522
|
"""Uploads a single artifact to the run's artifacts store path.
|
1522
1523
|
|
@@ -1528,16 +1529,16 @@ class RunClient(ClientMixin):
|
|
1528
1529
|
overwrite: bool, optional, if the file uploaded should overwrite any previous content.
|
1529
1530
|
show_progress: bool, to show a progress bar.
|
1530
1531
|
agent: str, optional, uuid reference of an agent to use.
|
1531
|
-
|
1532
|
+
ignore_agent_host: bool, optional, flag to ignore agent host
|
1532
1533
|
Returns:
|
1533
1534
|
str
|
1534
1535
|
"""
|
1535
1536
|
if not self.settings:
|
1536
1537
|
self.refresh_data()
|
1537
|
-
if agent:
|
1538
|
+
if agent and not ignore_agent_host:
|
1538
1539
|
self._reset_agent(agent)
|
1539
|
-
|
1540
|
-
|
1540
|
+
if not ignore_agent_host:
|
1541
|
+
self._use_agent_host()
|
1541
1542
|
|
1542
1543
|
params = get_streams_params(connection=self.artifacts_store)
|
1543
1544
|
url = get_proxy_run_url(
|
@@ -1568,6 +1569,7 @@ class RunClient(ClientMixin):
|
|
1568
1569
|
overwrite: bool = True,
|
1569
1570
|
relative_to: Optional[str] = None,
|
1570
1571
|
agent: Optional[str] = None,
|
1572
|
+
ignore_agent_host: bool = False,
|
1571
1573
|
):
|
1572
1574
|
"""Uploads a full directory to the run's artifacts store path.
|
1573
1575
|
|
@@ -1581,6 +1583,7 @@ class RunClient(ClientMixin):
|
|
1581
1583
|
relative_to: str, optional, if the path uploaded is not the current dir,
|
1582
1584
|
and you want to cancel the relative path.
|
1583
1585
|
agent: str, optional, uuid reference of an agent to use.
|
1586
|
+
ignore_agent_host: bool, optional, flag to ignore agent host
|
1584
1587
|
Returns:
|
1585
1588
|
str.
|
1586
1589
|
"""
|
@@ -1601,6 +1604,7 @@ class RunClient(ClientMixin):
|
|
1601
1604
|
overwrite=overwrite,
|
1602
1605
|
relative_to=relative_to,
|
1603
1606
|
agent=agent,
|
1607
|
+
ignore_agent_host=ignore_agent_host,
|
1604
1608
|
)
|
1605
1609
|
|
1606
1610
|
@client_handler(check_no_op=True, check_offline=True)
|
@@ -1611,6 +1615,7 @@ class RunClient(ClientMixin):
|
|
1611
1615
|
overwrite: bool = True,
|
1612
1616
|
relative_to: Optional[str] = None,
|
1613
1617
|
agent: Optional[str] = None,
|
1618
|
+
ignore_agent_host: bool = False,
|
1614
1619
|
):
|
1615
1620
|
"""Uploads multiple artifacts to the run's artifacts store path.
|
1616
1621
|
|
@@ -1621,6 +1626,7 @@ class RunClient(ClientMixin):
|
|
1621
1626
|
relative_to: str, optional, if the path uploaded is not the current dir,
|
1622
1627
|
and you want to cancel the relative path.
|
1623
1628
|
agent: str, optional, uuid reference of an agent to use.
|
1629
|
+
ignore_agent_host: bool, optional, flag to ignore agent host
|
1624
1630
|
Returns:
|
1625
1631
|
str.
|
1626
1632
|
"""
|
@@ -1630,10 +1636,10 @@ class RunClient(ClientMixin):
|
|
1630
1636
|
|
1631
1637
|
if not self.settings:
|
1632
1638
|
self.refresh_data()
|
1633
|
-
if agent:
|
1639
|
+
if agent and not ignore_agent_host:
|
1634
1640
|
self._reset_agent(agent)
|
1635
|
-
|
1636
|
-
|
1641
|
+
if not ignore_agent_host:
|
1642
|
+
self._use_agent_host()
|
1637
1643
|
|
1638
1644
|
params = get_streams_params(connection=self.artifacts_store)
|
1639
1645
|
url = get_proxy_run_url(
|
@@ -3019,6 +3025,7 @@ class RunClient(ClientMixin):
|
|
3019
3025
|
upload_artifacts: bool = True,
|
3020
3026
|
clean: bool = False,
|
3021
3027
|
agent: Optional[str] = None,
|
3028
|
+
ignore_agent_host: bool = False,
|
3022
3029
|
):
|
3023
3030
|
"""Syncs an offline run to Polyaxon's API and artifacts store.
|
3024
3031
|
|
@@ -3028,6 +3035,7 @@ class RunClient(ClientMixin):
|
|
3028
3035
|
upload_artifacts: bool, optional, flag to trigger artifacts upload.
|
3029
3036
|
clean: bool, optional, flag to clean local path after pushing the run.
|
3030
3037
|
agent: str, optional, uuid reference of an agent to use.
|
3038
|
+
ignore_agent_host: bool, optional, flag to ignore agent host
|
3031
3039
|
"""
|
3032
3040
|
# We ensure that the is_offline is False
|
3033
3041
|
is_offline = self._is_offline
|
@@ -3061,6 +3069,7 @@ class RunClient(ClientMixin):
|
|
3061
3069
|
overwrite=True,
|
3062
3070
|
relative_to=path,
|
3063
3071
|
agent=agent,
|
3072
|
+
ignore_agent_host=ignore_agent_host,
|
3064
3073
|
)
|
3065
3074
|
logger.info(f"Offline artifacts for run {self.run_data.uuid} uploaded")
|
3066
3075
|
|
@@ -126,10 +126,10 @@ async def start_sidecar(
|
|
126
126
|
if update_last_check:
|
127
127
|
state["last_artifacts_check"] = now()
|
128
128
|
|
129
|
-
while is_running
|
129
|
+
while is_running:
|
130
130
|
await asyncio.sleep(sleep_interval)
|
131
131
|
if retry:
|
132
|
-
await asyncio.sleep(retry
|
132
|
+
await asyncio.sleep(retry ** 2)
|
133
133
|
try:
|
134
134
|
is_running = await k8s_manager.is_pod_running(pod_id, container_id)
|
135
135
|
except ApiException as e:
|
@@ -4,7 +4,7 @@ from typing import Optional
|
|
4
4
|
|
5
5
|
import aiofiles
|
6
6
|
|
7
|
-
from clipped.utils.paths import check_or_create_path
|
7
|
+
from clipped.utils.paths import check_or_create_path, set_permissions
|
8
8
|
from kubernetes_asyncio.client.models import V1Pod
|
9
9
|
|
10
10
|
from polyaxon._contexts import paths as ctx_paths
|
@@ -34,8 +34,8 @@ async def sync_logs(
|
|
34
34
|
|
35
35
|
path_from = "{}/{}.jsonl".format(path_from, pod.metadata.name)
|
36
36
|
check_or_create_path(path_from, is_dir=False)
|
37
|
-
async with aiofiles.open(path_from, "a") as
|
37
|
+
async with aiofiles.open(path_from, "a") as outfile:
|
38
38
|
_logs = V1Logs.construct(logs=logs)
|
39
|
-
await
|
40
|
-
|
39
|
+
await outfile.write(_logs.get_jsonl_events())
|
40
|
+
set_permissions(path_from)
|
41
41
|
return last_time
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import aiofiles
|
2
2
|
|
3
3
|
from clipped.utils.json import orjson_dumps
|
4
|
-
from clipped.utils.paths import check_or_create_path
|
4
|
+
from clipped.utils.paths import check_or_create_path, set_permissions
|
5
5
|
|
6
6
|
from polyaxon._contexts import paths as ctx_paths
|
7
7
|
from polyaxon._flow import V1RunKind
|
@@ -20,5 +20,6 @@ async def sync_spec(
|
|
20
20
|
path_from = ctx_paths.CONTEXT_MOUNT_ARTIFACTS_FORMAT.format(run_uuid)
|
21
21
|
path_from = "{}/outputs/spec.json".format(path_from)
|
22
22
|
check_or_create_path(path_from, is_dir=False)
|
23
|
-
async with aiofiles.open(path_from, "w") as
|
24
|
-
await
|
23
|
+
async with aiofiles.open(path_from, "w") as outfile:
|
24
|
+
await outfile.write(orjson_dumps(op_spec))
|
25
|
+
set_permissions(path_from)
|
polyaxon/pkg.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.8.0rc0
|
4
4
|
Summary: Command Line Interface (CLI) and client to interact with Polyaxon API.
|
5
5
|
Home-page: https://github.com/polyaxon/polyaxon
|
6
6
|
Author: Polyaxon, Inc.
|
@@ -46,7 +46,7 @@ Requires-Dist: psutil>=5.4.7
|
|
46
46
|
Requires-Dist: requests>=2.20.1
|
47
47
|
Requires-Dist: requests-toolbelt>=0.8.0
|
48
48
|
Requires-Dist: rich>=12.0.0
|
49
|
-
Requires-Dist: sentry-sdk
|
49
|
+
Requires-Dist: sentry-sdk>=1.2.0
|
50
50
|
Requires-Dist: urllib3>=1.25.6
|
51
51
|
Requires-Dist: certifi>=2022.12.7
|
52
52
|
Requires-Dist: pydantic>=1.10.2
|
@@ -60,9 +60,9 @@ Provides-Extra: docker
|
|
60
60
|
Requires-Dist: docker; extra == "docker"
|
61
61
|
Provides-Extra: fs
|
62
62
|
Requires-Dist: adlfs==2024.12.0; extra == "fs"
|
63
|
-
Requires-Dist: fsspec==2025.2
|
64
|
-
Requires-Dist: gcsfs==2025.2
|
65
|
-
Requires-Dist: s3fs==2025.2
|
63
|
+
Requires-Dist: fsspec==2025.3.2; extra == "fs"
|
64
|
+
Requires-Dist: gcsfs==2025.3.2; extra == "fs"
|
65
|
+
Requires-Dist: s3fs==2025.3.2; extra == "fs"
|
66
66
|
Provides-Extra: fsspec
|
67
67
|
Requires-Dist: fsspec; extra == "fsspec"
|
68
68
|
Provides-Extra: gcs
|
@@ -93,7 +93,7 @@ Requires-Dist: anyio; extra == "sidecar"
|
|
93
93
|
[](https://polyaxon.com/slack/)
|
94
94
|
|
95
95
|
[](https://polyaxon.com/docs/)
|
96
|
-
[](https://polyaxon.com/docs/releases/2-8/)
|
97
97
|
[](https://github.com/polyaxon/polyaxon/issues)
|
98
98
|
[](https://github.com/orgs/polyaxon/projects/5)
|
99
99
|
|
@@ -9,7 +9,7 @@ polyaxon/exceptions.py,sha256=ujvG9p1Pn2KHYbHqB3-faadW46dEuULUQXNtfkd2zk8,10236
|
|
9
9
|
polyaxon/fs.py,sha256=RS8XmVrrfXfIJXN6cTCCRRYwesCLHVVfC01Vi56lecs,246
|
10
10
|
polyaxon/k8s.py,sha256=nI5oPCSlqU4aaeVShM6SlYS9eqYiYUL4GDXIZ4bnq-I,1051
|
11
11
|
polyaxon/logger.py,sha256=gdZQms37Pe5G2j-Ear5jbSAJeGgX6fnvg7oE8_9MSlc,2309
|
12
|
-
polyaxon/pkg.py,sha256=
|
12
|
+
polyaxon/pkg.py,sha256=rNanmnwwUnkdmulthVq7Ty7ue-wcVM_6hwXEcytqp8s,266
|
13
13
|
polyaxon/polyaxonfile.py,sha256=xHmHT_cHomfuAQm82Jhnp71YNN5mQ-Lod7EbonjY4b4,429
|
14
14
|
polyaxon/schemas.py,sha256=-CykY3emoAUCs_zRNbjwkuMkqbaEDjfKsZC86rI8154,5870
|
15
15
|
polyaxon/settings.py,sha256=Pxx1-T2oeJ5XmvGFN0YgnVzum_9FyTPaQtl68aQvYc4,4116
|
@@ -33,7 +33,7 @@ polyaxon/_cli/dashboard.py,sha256=Dmx6lXqVmUQ60eOtEpxWCvGzKEjibxXVmSHDQUkRn8M,16
|
|
33
33
|
polyaxon/_cli/errors.py,sha256=BYs7-I0CLLNYma-I0eJXB1EHs8ZTs_nWGRKGJz6CzTI,1031
|
34
34
|
polyaxon/_cli/init.py,sha256=lZhkIbaHGv4FdMypdmXhYXRrH5GpM-qcDEks4IsmKIM,7714
|
35
35
|
polyaxon/_cli/models.py,sha256=71oxGrIe4nQORnnfAiNi6T7A0DBnEe3V6whBABBGL3c,18066
|
36
|
-
polyaxon/_cli/operations.py,sha256=
|
36
|
+
polyaxon/_cli/operations.py,sha256=4J9smfD9vN_4cLOhDvTsdQuJ0M7JLlT6aXsF1ieuqz4,76867
|
37
37
|
polyaxon/_cli/options.py,sha256=-jeMZsdfg0JOV_QzVDf1hAhqK55NI0dkC_x4MZZWty8,1927
|
38
38
|
polyaxon/_cli/port_forward.py,sha256=Lshpcrv7-4tXcriHmppiFW_3QZ7ZosDtUbJDIvdddSA,2733
|
39
39
|
polyaxon/_cli/project_versions.py,sha256=fbgE3tRShrgH8TAA6ETj78J38HG2-BcVoAWbxYS9d5s,20507
|
@@ -57,7 +57,7 @@ polyaxon/_client/impersonate.py,sha256=4jRoJoX8nkwvVc3zAYqVqPoysNT1kZoPRbwyTpyHG
|
|
57
57
|
polyaxon/_client/init.py,sha256=QECGjzuBTFaagndubzd9U1COpc5NGe-E0aVkSRetcIs,418
|
58
58
|
polyaxon/_client/mixin.py,sha256=-tPm8RBej0UeG9HAKH3qN2fPX8PBtuXAHY1OpwLIDu4,1017
|
59
59
|
polyaxon/_client/project.py,sha256=-vHLae0fMYqOjMscRm0I25Ixj-hS6o9i6XQm5PIxyiA,65520
|
60
|
-
polyaxon/_client/run.py,sha256=
|
60
|
+
polyaxon/_client/run.py,sha256=l5rlBzw7EE3nf8wRDCWS0-fCkXserxrrMQ1Q4ewOZAQ,121045
|
61
61
|
polyaxon/_client/store.py,sha256=-Y33ypkijGQnhHTQ_vCTqLlpk0wRqoaP-ntJhdUtv7E,11311
|
62
62
|
polyaxon/_client/decorators/__init__.py,sha256=e5CBijciLP-Ic-YkaL4tFhUdr--uod_TexvxAJamGZQ,186
|
63
63
|
polyaxon/_client/decorators/client_call_handler.py,sha256=dgdidWsL9e8AgJmOfxz4urkI3bBgX64whWI1WHeAJDU,4587
|
@@ -563,12 +563,12 @@ polyaxon/_services/values.py,sha256=Uyj-kB5omSm3SbwpjqeuboSSOK5dyovoh-RszHPdiQ8,
|
|
563
563
|
polyaxon/_sidecar/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
564
564
|
polyaxon/_sidecar/ignore.py,sha256=VSMo0kaTD7K2zTyVJ1u84mZyR_07YdICptbKsxHKo9c,26
|
565
565
|
polyaxon/_sidecar/processor.py,sha256=XIIxl_9W2wme0xOq-4lBnZeThJrGj0dlaC4_mhSKgVI,3235
|
566
|
-
polyaxon/_sidecar/container/__init__.py,sha256=
|
566
|
+
polyaxon/_sidecar/container/__init__.py,sha256=rXt25xnx2VRKATOZQxqhSlkXjR5-Qmh3_koYKOKR9pc,5809
|
567
567
|
polyaxon/_sidecar/container/intervals.py,sha256=-tckK4E_Ur0feVsLBhUPUu6brx-JaU6RDFQBW-TAo6I,304
|
568
568
|
polyaxon/_sidecar/container/monitors/__init__.py,sha256=x12AMMGTi4cK_LaDvEK0gd3jZ3R57iPnp5ICehCwOl8,202
|
569
569
|
polyaxon/_sidecar/container/monitors/artifacts.py,sha256=BlXMOiKJFhHcRpJ9T7izh-GtcXoKfulZmzfq7aBgdOY,2746
|
570
|
-
polyaxon/_sidecar/container/monitors/logs.py,sha256=
|
571
|
-
polyaxon/_sidecar/container/monitors/spec.py,sha256=
|
570
|
+
polyaxon/_sidecar/container/monitors/logs.py,sha256=0ENRmHsuMdWBBBwvmZHeeyH4LyoISIXJXrzYFxuO9ms,1242
|
571
|
+
polyaxon/_sidecar/container/monitors/spec.py,sha256=gNmVnQPd7JacfUwRw-qeurdHzg4TDRUicNPNrhrn8oo,882
|
572
572
|
polyaxon/_utils/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
573
573
|
polyaxon/_utils/cache.py,sha256=hsnADZUnnYKQ2jrzuQjg3z9_4YGznL-pof9wH-cObR8,1717
|
574
574
|
polyaxon/_utils/cli_constants.py,sha256=y2siZNMaTZ7j_BlSrQv0BXpYHyPHzZxaTyPINyJSgCM,816
|
@@ -611,9 +611,9 @@ polyaxon/tuners/hyperopt.py,sha256=zd6MblMGkooqLGDFJVo5kClqYnBoMwGj-opqqj8FDzQ,7
|
|
611
611
|
polyaxon/tuners/mapping.py,sha256=pOdHCiwEufTk-QT7pNyjBjAEWNTM-lMC17WNTCk7C24,69
|
612
612
|
polyaxon/tuners/random_search.py,sha256=6VEekM3N9h6E1lbpVTTUGKFPJlGMY2u-GkG615_nQcI,80
|
613
613
|
polyaxon_sdk/__init__.py,sha256=HWvFdGWESyVG3f26K_szewiG-McMOHFkXKTfZcBlHsM,92
|
614
|
-
polyaxon-2.
|
615
|
-
polyaxon-2.
|
616
|
-
polyaxon-2.
|
617
|
-
polyaxon-2.
|
618
|
-
polyaxon-2.
|
619
|
-
polyaxon-2.
|
614
|
+
polyaxon-2.8.0rc0.dist-info/LICENSE,sha256=86kroZbQUDsmSWOomB7dpceG65UXiVSPob4581tStBc,11349
|
615
|
+
polyaxon-2.8.0rc0.dist-info/METADATA,sha256=hDgaWEJFrHtFokFyfhgFklLnFlKqSKNLgZQhs8lYELk,11658
|
616
|
+
polyaxon-2.8.0rc0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
617
|
+
polyaxon-2.8.0rc0.dist-info/entry_points.txt,sha256=aFbUMjkg9vzRBVAFhqvR1m92yG8Cov7UAF0zViGfoQw,70
|
618
|
+
polyaxon-2.8.0rc0.dist-info/top_level.txt,sha256=I_2e_Vv8rdcqWcMMdZocbrHiKPNGqoSMBqIObrw00Rg,22
|
619
|
+
polyaxon-2.8.0rc0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|