wandb 0.21.2__py3-none-win32.whl → 0.21.4__py3-none-win32.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.
- wandb/__init__.py +1 -1
- wandb/__init__.pyi +1 -1
- wandb/_analytics.py +65 -0
- wandb/_iterutils.py +8 -0
- wandb/_pydantic/__init__.py +10 -11
- wandb/_pydantic/base.py +3 -53
- wandb/_pydantic/field_types.py +29 -0
- wandb/_pydantic/v1_compat.py +47 -30
- wandb/_strutils.py +40 -0
- wandb/apis/public/api.py +17 -4
- wandb/apis/public/artifacts.py +5 -4
- wandb/apis/public/automations.py +2 -1
- wandb/apis/public/registries/_freezable_list.py +6 -6
- wandb/apis/public/registries/_utils.py +2 -1
- wandb/apis/public/registries/registries_search.py +4 -0
- wandb/apis/public/registries/registry.py +7 -0
- wandb/automations/_filters/expressions.py +3 -2
- wandb/automations/_filters/operators.py +2 -1
- wandb/automations/_validators.py +20 -0
- wandb/automations/actions.py +4 -2
- wandb/automations/events.py +4 -5
- wandb/bin/gpu_stats.exe +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/beta.py +48 -130
- wandb/cli/beta_sync.py +226 -0
- wandb/cli/cli.py +1 -1
- wandb/integration/dspy/__init__.py +5 -0
- wandb/integration/dspy/dspy.py +422 -0
- wandb/integration/weave/weave.py +55 -0
- wandb/proto/v3/wandb_server_pb2.py +38 -57
- wandb/proto/v3/wandb_sync_pb2.py +87 -0
- wandb/proto/v3/wandb_telemetry_pb2.py +12 -12
- wandb/proto/v4/wandb_server_pb2.py +38 -41
- wandb/proto/v4/wandb_sync_pb2.py +38 -0
- wandb/proto/v4/wandb_telemetry_pb2.py +12 -12
- wandb/proto/v5/wandb_server_pb2.py +38 -41
- wandb/proto/v5/wandb_sync_pb2.py +39 -0
- wandb/proto/v5/wandb_telemetry_pb2.py +12 -12
- wandb/proto/v6/wandb_server_pb2.py +38 -41
- wandb/proto/v6/wandb_sync_pb2.py +49 -0
- wandb/proto/v6/wandb_telemetry_pb2.py +12 -12
- wandb/proto/wandb_generate_proto.py +1 -0
- wandb/proto/wandb_sync_pb2.py +12 -0
- wandb/sdk/artifacts/_validators.py +50 -49
- wandb/sdk/artifacts/artifact.py +11 -11
- wandb/sdk/artifacts/artifact_file_cache.py +1 -1
- wandb/sdk/artifacts/artifact_manifest_entry.py +6 -8
- wandb/sdk/artifacts/exceptions.py +2 -1
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +1 -1
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +2 -1
- wandb/sdk/launch/inputs/internal.py +25 -24
- wandb/sdk/launch/inputs/schema.py +31 -1
- wandb/sdk/lib/asyncio_compat.py +88 -23
- wandb/sdk/lib/gql_request.py +18 -7
- wandb/sdk/lib/paths.py +23 -21
- wandb/sdk/lib/printer.py +9 -13
- wandb/sdk/lib/progress.py +8 -6
- wandb/sdk/lib/service/service_connection.py +42 -12
- wandb/sdk/mailbox/wait_with_progress.py +1 -1
- wandb/sdk/wandb_init.py +0 -8
- wandb/sdk/wandb_run.py +14 -2
- wandb/sdk/wandb_settings.py +55 -0
- wandb/sdk/wandb_setup.py +2 -2
- {wandb-0.21.2.dist-info → wandb-0.21.4.dist-info}/METADATA +2 -2
- {wandb-0.21.2.dist-info → wandb-0.21.4.dist-info}/RECORD +68 -57
- {wandb-0.21.2.dist-info → wandb-0.21.4.dist-info}/WHEEL +0 -0
- {wandb-0.21.2.dist-info → wandb-0.21.4.dist-info}/entry_points.txt +0 -0
- {wandb-0.21.2.dist-info → wandb-0.21.4.dist-info}/licenses/LICENSE +0 -0
@@ -62,7 +62,7 @@ def wait_all_with_progress(
|
|
62
62
|
start_time = time.monotonic()
|
63
63
|
|
64
64
|
async def progress_loop_with_timeout() -> list[_T]:
|
65
|
-
with asyncio_compat.cancel_on_exit(display_progress()):
|
65
|
+
async with asyncio_compat.cancel_on_exit(display_progress()):
|
66
66
|
if timeout is not None:
|
67
67
|
elapsed_time = time.monotonic() - start_time
|
68
68
|
remaining_timeout = timeout - elapsed_time
|
wandb/sdk/wandb_init.py
CHANGED
@@ -1009,14 +1009,6 @@ class _WandbInit:
|
|
1009
1009
|
run._set_run_obj(result.run_result.run)
|
1010
1010
|
|
1011
1011
|
self._logger.info("starting run threads in backend")
|
1012
|
-
# initiate run (stats and metadata probing)
|
1013
|
-
|
1014
|
-
if service:
|
1015
|
-
assert settings.run_id
|
1016
|
-
service.inform_start(
|
1017
|
-
settings=settings.to_proto(),
|
1018
|
-
run_id=settings.run_id,
|
1019
|
-
)
|
1020
1012
|
|
1021
1013
|
assert backend.interface
|
1022
1014
|
|
wandb/sdk/wandb_run.py
CHANGED
@@ -892,7 +892,19 @@ class Run:
|
|
892
892
|
def tags(self, tags: Sequence) -> None:
|
893
893
|
with telemetry.context(run=self) as tel:
|
894
894
|
tel.feature.set_run_tags = True
|
895
|
-
|
895
|
+
|
896
|
+
try:
|
897
|
+
self._settings.run_tags = tuple(tags)
|
898
|
+
except ValueError as e:
|
899
|
+
# For runtime tag setting, warn instead of crash
|
900
|
+
# Extract the core error message without the pydantic wrapper
|
901
|
+
error_msg = str(e)
|
902
|
+
if "Value error," in error_msg:
|
903
|
+
# Extract the actual error message after "Value error, "
|
904
|
+
error_msg = error_msg.split("Value error, ")[1].split(" [type=")[0]
|
905
|
+
wandb.termwarn(f"Invalid tag detected: {error_msg} Tags not updated.")
|
906
|
+
return
|
907
|
+
|
896
908
|
if self._backend and self._backend.interface:
|
897
909
|
self._backend.interface.publish_run(self)
|
898
910
|
|
@@ -2610,7 +2622,7 @@ class Run:
|
|
2610
2622
|
) -> Artifact:
|
2611
2623
|
job_artifact = InternalArtifact(name, job_builder.JOB_ARTIFACT_TYPE)
|
2612
2624
|
if patch_path and os.path.exists(patch_path):
|
2613
|
-
job_artifact.add_file(FilePathStr(
|
2625
|
+
job_artifact.add_file(FilePathStr(patch_path), "diff.patch")
|
2614
2626
|
with job_artifact.new_file("requirements.frozen.txt") as f:
|
2615
2627
|
f.write("\n".join(installed_packages_list))
|
2616
2628
|
with job_artifact.new_file("wandb-job.json") as f:
|
wandb/sdk/wandb_settings.py
CHANGED
@@ -1435,6 +1435,61 @@ class Settings(BaseModel, validate_assignment=True):
|
|
1435
1435
|
raise UsageError("Sweep ID cannot contain only whitespace")
|
1436
1436
|
return value
|
1437
1437
|
|
1438
|
+
@field_validator("run_tags", mode="before")
|
1439
|
+
@classmethod
|
1440
|
+
def validate_run_tags(cls, value):
|
1441
|
+
"""Validate run tags.
|
1442
|
+
|
1443
|
+
Validates that each tag:
|
1444
|
+
- Is between 1 and 64 characters in length (inclusive)
|
1445
|
+
- Converts single string values to tuple format
|
1446
|
+
- Preserves None values
|
1447
|
+
|
1448
|
+
Args:
|
1449
|
+
value: A string, list, tuple, or None representing tags
|
1450
|
+
|
1451
|
+
Returns:
|
1452
|
+
tuple: A tuple of validated tags, or None
|
1453
|
+
|
1454
|
+
Raises:
|
1455
|
+
ValueError: If any tag is empty or exceeds 64 characters
|
1456
|
+
|
1457
|
+
<!-- lazydoc-ignore-classmethod: internal -->
|
1458
|
+
"""
|
1459
|
+
if value is None:
|
1460
|
+
return None
|
1461
|
+
|
1462
|
+
# Convert to tuple if needed
|
1463
|
+
if isinstance(value, str):
|
1464
|
+
tags = (value,)
|
1465
|
+
else:
|
1466
|
+
tags = tuple(value)
|
1467
|
+
|
1468
|
+
# Validate each tag and accumulate errors
|
1469
|
+
errors = []
|
1470
|
+
for i, tag in enumerate(tags):
|
1471
|
+
tag_str = str(tag)
|
1472
|
+
if len(tag_str) == 0:
|
1473
|
+
errors.append(
|
1474
|
+
f"Tag at index {i} is empty. Tags must be between 1 and 64 characters"
|
1475
|
+
)
|
1476
|
+
elif len(tag_str) > 64:
|
1477
|
+
# Truncate long tags for display
|
1478
|
+
display_tag = (
|
1479
|
+
f"{tag_str[:20]}...{tag_str[-20:]}"
|
1480
|
+
if len(tag_str) > 43
|
1481
|
+
else tag_str
|
1482
|
+
)
|
1483
|
+
errors.append(
|
1484
|
+
f"Tag '{display_tag}' is {len(tag_str)} characters. Tags must be between 1 and 64 characters"
|
1485
|
+
)
|
1486
|
+
|
1487
|
+
# Raise combined error if any validation issues were found
|
1488
|
+
if errors:
|
1489
|
+
raise ValueError("; ".join(errors))
|
1490
|
+
|
1491
|
+
return tags
|
1492
|
+
|
1438
1493
|
@field_validator("sweep_param_path", mode="before")
|
1439
1494
|
@classmethod
|
1440
1495
|
def validate_sweep_param_path(cls, value):
|
wandb/sdk/wandb_setup.py
CHANGED
@@ -183,8 +183,8 @@ class _WandbSetup:
|
|
183
183
|
}
|
184
184
|
|
185
185
|
return (
|
186
|
-
set(singleton_env.keys())
|
187
|
-
|
186
|
+
set(singleton_env.keys()) != set(os_env.keys()) #
|
187
|
+
or set(singleton_env.values()) != set(os_env.values())
|
188
188
|
)
|
189
189
|
|
190
190
|
def _load_settings(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.21.
|
3
|
+
Version: 0.21.4
|
4
4
|
Summary: A CLI and library for interacting with the Weights & Biases API.
|
5
5
|
Project-URL: Source, https://github.com/wandb/wandb
|
6
6
|
Project-URL: Bug Reports, https://github.com/wandb/wandb/issues
|
@@ -47,7 +47,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
47
47
|
Classifier: Topic :: System :: Logging
|
48
48
|
Classifier: Topic :: System :: Monitoring
|
49
49
|
Requires-Python: >=3.8
|
50
|
-
Requires-Dist: click
|
50
|
+
Requires-Dist: click>=8.0.1
|
51
51
|
Requires-Dist: eval-type-backport; python_version < '3.10'
|
52
52
|
Requires-Dist: gitpython!=3.1.29,>=1.0.0
|
53
53
|
Requires-Dist: packaging
|
@@ -1,8 +1,10 @@
|
|
1
1
|
package_readme.md,sha256=XGlaq8rMFcoBb21rCr2d5qeSM79ZI4WslLmXqRimTGQ,4395
|
2
|
-
wandb/__init__.py,sha256=
|
3
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb/__init__.py,sha256=JEm4Ge0uU0S18mcdNWSknUviC3FvACnOVHdk5ee2_xY,7019
|
3
|
+
wandb/__init__.pyi,sha256=KuX3rmEqoRI9fhlrVFGRdxFRMY2xoZcHG4e11o5zGn0,47627
|
4
4
|
wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
|
5
|
-
wandb/
|
5
|
+
wandb/_analytics.py,sha256=byyIMDAiBDjoN7n0OnSOrR_jwQOAfa_lj06sRK-pyR0,2051
|
6
|
+
wandb/_iterutils.py,sha256=S1zBdvnlV_2UMuQZiXfwXx8ru2-WQS7PodQ6VApYDcQ,2821
|
7
|
+
wandb/_strutils.py,sha256=-iWQrUYJ51Q-sZeLeY_-ruP_2YI_h6rjmqqWCj6raao,1431
|
6
8
|
wandb/data_types.py,sha256=DdCkf7Dh_j86Q74FWzh3M20EW_hzKpNagexjo03qv-A,2349
|
7
9
|
wandb/env.py,sha256=qUniW1_Ls9_ryhhrxFyUwOi4hL395UkmA9ePhELDOMs,14547
|
8
10
|
wandb/jupyter.py,sha256=lh9J-oZLRB_INd5FHrk3XTbK5TJ1b8-BTZ3Uh9piZAs,17861
|
@@ -13,10 +15,11 @@ wandb/util.py,sha256=t5H7IRtpAmNdMGqE8bU2w8qdlNLr6w_cSn4GaUYmf-s,67421
|
|
13
15
|
wandb/wandb_agent.py,sha256=-X7d5b8wihbHMwTmuLTZir620nWhTc345xp6lkSyF1o,21448
|
14
16
|
wandb/wandb_controller.py,sha256=od0i1iO61iHMmiE_W-onoIwUAFeoym4RsUAw_0mJ11E,25655
|
15
17
|
wandb/wandb_run.py,sha256=yZosTmFJIHHEsL9uGtFMRIlkdxaxjsG9z-Rfn1NLEbY,136
|
16
|
-
wandb/_pydantic/__init__.py,sha256=
|
17
|
-
wandb/_pydantic/base.py,sha256=
|
18
|
+
wandb/_pydantic/__init__.py,sha256=PrLPBo-j3THqQxFlEioYH5T7c5QR5n_5vniyn454ay4,663
|
19
|
+
wandb/_pydantic/base.py,sha256=I6jT_hZyf6V4Bu35lJnphzBiwjkFh0Y7PiR5rQh0MM0,2676
|
20
|
+
wandb/_pydantic/field_types.py,sha256=hw8LKubqet0Fj_UTgsQ3RbG3Ar0zHynuCtuVDghQ1OM,868
|
18
21
|
wandb/_pydantic/utils.py,sha256=p-5I6IHL3N9owBbSFx8VDRn9hyBMcaKIS2NX4N6nIBQ,2890
|
19
|
-
wandb/_pydantic/v1_compat.py,sha256
|
22
|
+
wandb/_pydantic/v1_compat.py,sha256=-caWtTWvdbJsCc-0g2Vhp8TV9MjtPpkgNmzS-b7I7kU,12616
|
20
23
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
24
|
wandb/agents/pyagent.py,sha256=9s75Zo4dXooEwhVnbXjWH6KmdyPKrgSLfhL_k_gRvso,14673
|
22
25
|
wandb/analytics/__init__.py,sha256=ntvkloUY6ZO8irNqA4xi06Q8IC_6pu1VB2_1EKORczc,53
|
@@ -34,9 +37,9 @@ wandb/apis/importers/internals/internal.py,sha256=ljRzt3FqYc4zRpCsCl9PUvXFxYAqiP
|
|
34
37
|
wandb/apis/importers/internals/protocols.py,sha256=PRnN66EtZPDtCiZomB_CtTtE0tMcebeG9aAK5OyDSGk,2988
|
35
38
|
wandb/apis/importers/internals/util.py,sha256=MuclUljXdA__0ULaqcBM6ux4pK6YUW5i6ezri5X7_7Q,2159
|
36
39
|
wandb/apis/public/__init__.py,sha256=SCRGdvgyjdTDlbm79g-fPoz7Bo02y017Xl_z2c8g01Q,1249
|
37
|
-
wandb/apis/public/api.py,sha256=
|
38
|
-
wandb/apis/public/artifacts.py,sha256=
|
39
|
-
wandb/apis/public/automations.py,sha256=
|
40
|
+
wandb/apis/public/api.py,sha256=udbEQVQSBB7V0e619D7yYUTakRdiRYzO4Hrj9IxnmX4,90895
|
41
|
+
wandb/apis/public/artifacts.py,sha256=CsETamLkb0NvPv1F4KTC7H15hy-Du-XxrY9DEjIGpbo,36046
|
42
|
+
wandb/apis/public/automations.py,sha256=67ixAZ9FEPy6SuInvE8u2vurLpVlEug1hgOb550XqS8,2731
|
40
43
|
wandb/apis/public/const.py,sha256=aK9Fcp1clmTHWj0C24fTRU3ecP5u91dPmp298kLiBdM,125
|
41
44
|
wandb/apis/public/files.py,sha256=o-OblPIuVpQ5ukWp8EtLQHsgTrWtD2SQOdT1oW5BFA8,13503
|
42
45
|
wandb/apis/public/history.py,sha256=g0nYatugQR99_GSYfO00mOIGN2qayRb8Umi59_HJvB8,6489
|
@@ -51,25 +54,25 @@ wandb/apis/public/teams.py,sha256=jLu8LrYwLLCNpAOzrsBiHmqQIgGyfEti-7E5eNj77VA,68
|
|
51
54
|
wandb/apis/public/users.py,sha256=Ns2k1nsq5MxSYliIHiN2ZRLaMHAGssBKro1Ht8tlKCU,5527
|
52
55
|
wandb/apis/public/utils.py,sha256=Xj3eQfhh142L7Le2XuOzDi88pZqaYXOdzL9CNU5WDTs,8103
|
53
56
|
wandb/apis/public/registries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
|
-
wandb/apis/public/registries/_freezable_list.py,sha256=
|
55
|
-
wandb/apis/public/registries/_utils.py,sha256=
|
56
|
-
wandb/apis/public/registries/registries_search.py,sha256
|
57
|
-
wandb/apis/public/registries/registry.py,sha256=
|
57
|
+
wandb/apis/public/registries/_freezable_list.py,sha256=BTXa90JyZLHVj-JS7iBffUWZzRvvc7pmIbZBnrh-ijo,6549
|
58
|
+
wandb/apis/public/registries/_utils.py,sha256=cwy--EblKeVlDtzakpjN8I4cJ00feM4wNhEc6_wI02A,4436
|
59
|
+
wandb/apis/public/registries/registries_search.py,sha256=-IdVBQjRCT5zKhK2wPS1opgmpncTONGuou9UPd1wNGM,11785
|
60
|
+
wandb/apis/public/registries/registry.py,sha256=anZ5v0AAiqVXLd-5Gpy2QjRqyTp0bcKQaiJ4TzKVl24,14205
|
58
61
|
wandb/apis/reports/__init__.py,sha256=pKAM02nyHJV6DwGQuzAhSlqTOsCHKah1FlJIDERyY5U,33
|
59
62
|
wandb/apis/reports/v1/__init__.py,sha256=nxs3gJlbvVc0b_pV5DUypk1amMkRSq_M-xUw7qPTfwI,271
|
60
63
|
wandb/apis/reports/v2/__init__.py,sha256=vlF0ZRVHS-Qd7mBllcZri-gWE0TtjhiDSA6h5XPRVLU,271
|
61
64
|
wandb/apis/workspaces/__init__.py,sha256=XsF4ccNRUCTmI9ANjlrj_dYU1OcOi5N354Wg2Qkkaqo,273
|
62
65
|
wandb/automations/__init__.py,sha256=sORT3UxdqId1wC_-wFp7FSCVb0VI52RQ9-ex3Qt8qy4,2438
|
63
66
|
wandb/automations/_utils.py,sha256=ap6bR_CP6CXQrS_bilbiaoveFwaggXKCzMsEo8p2ZCk,8504
|
64
|
-
wandb/automations/_validators.py,sha256=
|
65
|
-
wandb/automations/actions.py,sha256=
|
67
|
+
wandb/automations/_validators.py,sha256=bLpl09DNf17lfSanWIS4q8QoFWoZUEiQl_ha_RNOlH0,5921
|
68
|
+
wandb/automations/actions.py,sha256=0QjwhBV8UtITVbZmYOBMO7s641DIq5-m6sv0n0QFrBk,7649
|
66
69
|
wandb/automations/automations.py,sha256=pG27QdN51VkTa-C6mAaYd6OGDSouLLCFgkYn_eU56NA,2727
|
67
|
-
wandb/automations/events.py,sha256=
|
70
|
+
wandb/automations/events.py,sha256=6RmjToxdh2WKp34etNsFtvxwzUfLinxsDhbkFRQncSM,10748
|
68
71
|
wandb/automations/integrations.py,sha256=F-LULsqPJv98qoP65m3CfRjrjgLvmDtJYyAqsKBf6hE,1104
|
69
72
|
wandb/automations/scopes.py,sha256=GVWA3sYf6A_H0BcyjY7e5QUmTNDDek3aMiEJmMz8ng8,2388
|
70
73
|
wandb/automations/_filters/__init__.py,sha256=R7hr-9Aojs6Lr6H6uYRneUYQ6KNnSZd1Zvo1IymtjVs,506
|
71
|
-
wandb/automations/_filters/expressions.py,sha256=
|
72
|
-
wandb/automations/_filters/operators.py,sha256=
|
74
|
+
wandb/automations/_filters/expressions.py,sha256=8EyslkYKrG5XTZkSxUNODq8QFXPzLp4lOO2_Me6q4g0,6818
|
75
|
+
wandb/automations/_filters/operators.py,sha256=VMQ89Q2sfIiAQxqc81PocYxMX7zgD31aCkiMPzwKEhk,7452
|
73
76
|
wandb/automations/_filters/run_metrics.py,sha256=eS_Ut5qHOS7H1vqMd1ObKhYiNJ-oBet30wxhO_s1zpg,13209
|
74
77
|
wandb/automations/_generated/__init__.py,sha256=9h4EKABBVPwyWtb7NrZvz2dezRuc6hNZl1K3w_TUetI,7001
|
75
78
|
wandb/automations/_generated/create_automation.py,sha256=8v-XMu54bRFtgjlImElzJT8qpUP9RKrJ86JCdbTu7jA,357
|
@@ -86,11 +89,12 @@ wandb/automations/_generated/operations.py,sha256=V0n3PZ_e754Ym8IraYjFzLWg0wqnA_
|
|
86
89
|
wandb/automations/_generated/slack_integrations_by_entity.py,sha256=95llPwkGxKrwX4R6ze9IxzmMuyLpIWoperLUy-hKsE0,558
|
87
90
|
wandb/automations/_generated/update_automation.py,sha256=9SvGNXYK7fEZdhztonzRcMiJ8Yqps-42hKB16CUOFYI,357
|
88
91
|
wandb/beta/workflows.py,sha256=8uFVT9y-9CotD7OLkSQ4mRd_tsrSRsC1q0tAmJ489qI,11825
|
89
|
-
wandb/bin/gpu_stats.exe,sha256=
|
90
|
-
wandb/bin/wandb-core,sha256=
|
92
|
+
wandb/bin/gpu_stats.exe,sha256=Vvr68lTxwPshgIcWaaWKk3uWHo-rb--H8g5qgEp5Kfk,8111104
|
93
|
+
wandb/bin/wandb-core,sha256=m9psVp2l8di43VBm7KLH5XTMybQBD7lsjFx0qsXdXYk,43219456
|
91
94
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
92
|
-
wandb/cli/beta.py,sha256=
|
93
|
-
wandb/cli/
|
95
|
+
wandb/cli/beta.py,sha256=JVDUwH9ykSXL9vU2WKS0nnJjoR3D3QJNWk9sCMTJEEo,2238
|
96
|
+
wandb/cli/beta_sync.py,sha256=aCGbP5ZKmaw56IqCr0L5uWlwHG2TQoTP3OIRMNYnY-U,7158
|
97
|
+
wandb/cli/cli.py,sha256=AMmgVyMg8IbjZtBEEas_oG4cyC8oFx93bQKlND0w_7E,97928
|
94
98
|
wandb/docker/__init__.py,sha256=ySgObcuW3AU-CcHIy2-hk2OCEMPHJmoP679eIpWz_kc,8953
|
95
99
|
wandb/docker/names.py,sha256=E0v_-WInxWgg3vK14Tpj0F4zuwaBl8nR7OTQCYbcod4,1351
|
96
100
|
wandb/docker/wandb-entrypoint.sh,sha256=ksJ_wObRwZxZtdu1Ahc1X8VNB1U68a3nleioDDBO-jU,1021
|
@@ -119,6 +123,8 @@ wandb/integration/diffusers/pipeline_resolver.py,sha256=xwcDM9rYB1fcPKVLJQS0GEg7
|
|
119
123
|
wandb/integration/diffusers/resolvers/__init__.py,sha256=nllC6FaCp9Zp4-hyYrOHp92tXkzOG0o5XZLIWHwBtf0,210
|
120
124
|
wandb/integration/diffusers/resolvers/multimodal.py,sha256=i0zMCD0BjoPXxYuGO0hJmu8PhF6HVk37m09efRKGL_8,30871
|
121
125
|
wandb/integration/diffusers/resolvers/utils.py,sha256=Fy0od7cILfLVSLtLqyeNeCsOLnXmhD-MVau0YIeBKio,3926
|
126
|
+
wandb/integration/dspy/__init__.py,sha256=i1AVE4L8xLKQlm5vWmY_I2t-yuVJgx-smLml6PKQ294,111
|
127
|
+
wandb/integration/dspy/dspy.py,sha256=M_UZ0W7v4Y9rsxI8rVnlGDK1b1Gcg3wdHBUp_FI0YjQ,15948
|
122
128
|
wandb/integration/fastai/__init__.py,sha256=DFVoU7UhL43vnVtpf20BLaIMsI6AxcJXjZ8byHU726U,9545
|
123
129
|
wandb/integration/gym/__init__.py,sha256=qn2vA-7vejAHWpd6BdqShX6fTroFxf6VBjrfZEygGj4,3092
|
124
130
|
wandb/integration/huggingface/__init__.py,sha256=lq8UoDQn3w7Rt3ELTMXmhYPQoNX03tYnMDaHUV9VRBs,60
|
@@ -194,7 +200,7 @@ wandb/integration/ultralytics/mask_utils.py,sha256=8Bue8DMcR8J1sXrZaz-6u58GOZMuw
|
|
194
200
|
wandb/integration/ultralytics/pose_utils.py,sha256=8rqsRiTAT-mQ3LgARAKQXdgfBTOh0j4q9li8RJjP7LY,3812
|
195
201
|
wandb/integration/weave/__init__.py,sha256=6KlykgTB8o_q6E9qWRozArOQ6sxbb4MjCGLaWTI_-WA,164
|
196
202
|
wandb/integration/weave/interface.py,sha256=rvX4bfcUw6BJqxJ2S7fCcreMH0prUQbsd5vhxXuGuAk,1214
|
197
|
-
wandb/integration/weave/weave.py,sha256=
|
203
|
+
wandb/integration/weave/weave.py,sha256=ShZWrfZUESEBfOW61c2uX3WYFqBAluQA_IzI9WoGhgE,3673
|
198
204
|
wandb/integration/xgboost/__init__.py,sha256=WGqILO3kWero1jaSRwLkEJ4JDOeVw8LQT0xI8142mwA,354
|
199
205
|
wandb/integration/xgboost/xgboost.py,sha256=ARaZjA_GFL2GX5itRJmVf8pw4YbSPVETVVMM2UourB0,6684
|
200
206
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -221,45 +227,50 @@ wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
227
|
wandb/proto/wandb_base_pb2.py,sha256=nt1Z6R2ARJlWBoPYpHUCK2WMP9R5CWrJWzy6aaqFrbc,397
|
222
228
|
wandb/proto/wandb_deprecated.py,sha256=PocKZrD-mtMNradkzKGaFiVgEEZhiiv0P5cZrPHI_IQ,2835
|
223
229
|
wandb/proto/wandb_generate_deprecated.py,sha256=KqmlF-rOu3mvqn4DequWfueYyUxQH4ktGU_GF1xiKLQ,1032
|
224
|
-
wandb/proto/wandb_generate_proto.py,sha256=
|
230
|
+
wandb/proto/wandb_generate_proto.py,sha256=iwzpcC9T7yIO4ZXlSpdFrC-muOlyxUmhtA1j9V-rMJA,1352
|
225
231
|
wandb/proto/wandb_internal_pb2.py,sha256=Q8xgptPKKb9kubNlThHGVKKgb_dUSnQKNaw28BB8jE0,646
|
226
232
|
wandb/proto/wandb_server_pb2.py,sha256=P7gZ_vIpBW_XsbFfRdLLwxgy45dKZk4EqqGtKzy-9_g,405
|
227
233
|
wandb/proto/wandb_settings_pb2.py,sha256=vXdUZkLz1x7hw662A1GmOvedOWB551q4dmmw15nH-AM,413
|
234
|
+
wandb/proto/wandb_sync_pb2.py,sha256=1sAhHiJUUHU2cTdsWkrxlscBrPyxHmXXA4hKkgvmmik,397
|
228
235
|
wandb/proto/wandb_telemetry_pb2.py,sha256=-vMGhrHljykiYoRmS8Y9jN8Or4g02VzHIrG4j2b2MOM,417
|
229
236
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
230
237
|
wandb/proto/v3/wandb_base_pb2.py,sha256=zwma_gb3IOSfBJ1tvMIdmQtQQZLe29upb8Mqr4m9No4,2410
|
231
238
|
wandb/proto/v3/wandb_internal_pb2.py,sha256=UwkQkdB8oUpeGmQHkBYxwgy86LVLxslkPDW6joUzOVM,118824
|
232
|
-
wandb/proto/v3/wandb_server_pb2.py,sha256=
|
239
|
+
wandb/proto/v3/wandb_server_pb2.py,sha256=bEu2DeZj6Hq_s7I2rVRKaraZr4OzPcICN_7n455Gb_g,14919
|
233
240
|
wandb/proto/v3/wandb_settings_pb2.py,sha256=StpCiKAm5QlFDWlIncW9GW-hAx3H05H4LdL2ecGsy2U,21968
|
234
|
-
wandb/proto/v3/
|
241
|
+
wandb/proto/v3/wandb_sync_pb2.py,sha256=U4sCeh74PqQ6A0-kv6jvHw3Fcpdi2upa95IMM4V7774,4807
|
242
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=D2SzqZ-Od89FzmpOfYyuZb5tK7r2R_O9X77aUgK8nYM,14700
|
235
243
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
236
244
|
wandb/proto/v4/wandb_base_pb2.py,sha256=tl7f-74ItLSWCP_GDfAWm02sTEgUpWZGoP_vqEpvRE8,1452
|
237
245
|
wandb/proto/v4/wandb_internal_pb2.py,sha256=_mydxuEoPF6DmRYETxOfGrYuWOFWQdY9wdgPMN-pwJU,54202
|
238
|
-
wandb/proto/v4/wandb_server_pb2.py,sha256=
|
246
|
+
wandb/proto/v4/wandb_server_pb2.py,sha256=6fpQQDr5fpz8WkHCO2Aogsx1tfOfaHC-ynQb1quvbDU,7120
|
239
247
|
wandb/proto/v4/wandb_settings_pb2.py,sha256=jD91g1lN4Xqcr74XQoYT6vyvqfFOxbxrGlzv4Wve4FM,18268
|
240
|
-
wandb/proto/v4/
|
248
|
+
wandb/proto/v4/wandb_sync_pb2.py,sha256=AI2VasULIthqDbulEwDUEMIEdik1fSbKAAZ-vesz8Lg,2384
|
249
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=lhk-pngFTZVQUikx_yjOHSmOw_RZ1v9KPkpOn68k3QQ,12082
|
241
250
|
wandb/proto/v5/wandb_base_pb2.py,sha256=ES3U80f2YCt-fwiqaIrz7BGHVywwx6ibEDAnlWpohig,1603
|
242
251
|
wandb/proto/v5/wandb_internal_pb2.py,sha256=qy53aiey0CaEW6y83iQJJyG0s5iWPTvr9TdxHJI2F_Y,58550
|
243
|
-
wandb/proto/v5/wandb_server_pb2.py,sha256=
|
252
|
+
wandb/proto/v5/wandb_server_pb2.py,sha256=VSu2aK5tbBlN4tZrRV4cR2Br3ElxoQmXH7hxWwWVwDE,7631
|
244
253
|
wandb/proto/v5/wandb_settings_pb2.py,sha256=VxT4LysYbRGPmBdB0AAtX3FWZ4BZBlNdtQuQhfTRxgs,18625
|
245
|
-
wandb/proto/v5/
|
254
|
+
wandb/proto/v5/wandb_sync_pb2.py,sha256=3zyRvHqBvpVwg7aCuHKrQouDT8Wcy6Vmg6vvmCbG6nY,2607
|
255
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=1wEy2R0WRlxBdHv9Qt0JkG7HXS9xN9D41574NPin0tI,12353
|
246
256
|
wandb/proto/v6/wandb_base_pb2.py,sha256=pKoyhXXI2gap0mWgjXy3AspHkf-vwUcSp1cuz3VO4O4,1862
|
247
257
|
wandb/proto/v6/wandb_internal_pb2.py,sha256=G8xGzEjRXVRbJATJ2RuaPXzHZTRcyfCtjuvh6FK_A_Q,58813
|
248
|
-
wandb/proto/v6/wandb_server_pb2.py,sha256=
|
258
|
+
wandb/proto/v6/wandb_server_pb2.py,sha256=7k6uf10QKFxDKJIg3G7Z8sMLMVGVazxO5R1ll_G0fsI,7892
|
249
259
|
wandb/proto/v6/wandb_settings_pb2.py,sha256=DoGCT7goUXJFEhf239GmIV6iMp1BhdOdVPUCdBODpzM,18888
|
250
|
-
wandb/proto/v6/
|
260
|
+
wandb/proto/v6/wandb_sync_pb2.py,sha256=vlzWizX8H55OKNekmq-jpCTjX5GOWztkuyDNkcsmOFg,2866
|
261
|
+
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=uVuSSedMpVwvUnwdnm87UodJRjPacUAJXT9_owL51D4,12617
|
251
262
|
wandb/sdk/__init__.py,sha256=6lzqckLZUs7GpFZIwpgxGJwJDvhuyo-XCQnSrtZqE1c,850
|
252
263
|
wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
|
253
264
|
wandb/sdk/wandb_config.py,sha256=yVtkXWoDbVmgUD8UVV-f4y4r_A1atVSvxfCk5eN7Hp4,11015
|
254
265
|
wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
|
255
|
-
wandb/sdk/wandb_init.py,sha256=
|
266
|
+
wandb/sdk/wandb_init.py,sha256=ceD6HtdwwzkA0CWd_Cqeuk7-XeYH2fzlr9TqIac3NuI,62221
|
256
267
|
wandb/sdk/wandb_login.py,sha256=H_T0DThPMk93rVTdet22i7qzRJ1kmzVFpkhlXkpRk1Q,11657
|
257
268
|
wandb/sdk/wandb_metric.py,sha256=JsJP2UZCliJ8OdC_uvvd_XF5k4FIAt3YWlmN1O9jLmc,3458
|
258
269
|
wandb/sdk/wandb_require.py,sha256=bUS9nZXUVjmFcc6EMW6ZSzXtQf1xg0bX98ljVxFdVX0,2801
|
259
270
|
wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
|
260
|
-
wandb/sdk/wandb_run.py,sha256=
|
261
|
-
wandb/sdk/wandb_settings.py,sha256=
|
262
|
-
wandb/sdk/wandb_setup.py,sha256
|
271
|
+
wandb/sdk/wandb_run.py,sha256=LYjfDz0sv8tP1QyQNsCz_OI7VVUugpydSMYjLEcaCZI,151363
|
272
|
+
wandb/sdk/wandb_settings.py,sha256=LlzPJYGzuctV8BGv-9e6iJQjumSIDXcVd6BRoJUXj2w,76812
|
273
|
+
wandb/sdk/wandb_setup.py,sha256=-fFikKNUeq46MRACMqMk_q8hGpx8VqYw1NsBd7CqO9E,19675
|
263
274
|
wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
|
264
275
|
wandb/sdk/wandb_sweep.py,sha256=Q7IKd0wXBRxoZLvJVq2knGzAe0W1tVfQjZfFm39D7qs,4102
|
265
276
|
wandb/sdk/wandb_sync.py,sha256=Bk1X5a2RgpdB24trwwW1fLC1sEKET87ySCH84T-kgf4,2177
|
@@ -268,17 +279,17 @@ wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
268
279
|
wandb/sdk/artifacts/_factories.py,sha256=u4i4U86Q98__9u1MsbvFKS3LHfCeym14yivOA6vu9DM,560
|
269
280
|
wandb/sdk/artifacts/_graphql_fragments.py,sha256=JTPeETiDEXyBxOM_3YYlEGfOI8-AhK8vE3a2dfSB5N8,600
|
270
281
|
wandb/sdk/artifacts/_internal_artifact.py,sha256=ZWu3XwH0zF8Z5LdfuGSmR-kMcVZW6B-_dCvHjZsUIX0,2029
|
271
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
272
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
282
|
+
wandb/sdk/artifacts/_validators.py,sha256=yEZafyez13rGK0BcfeKlFd_sKPc5V1n_vZrmvrlswCg,11432
|
283
|
+
wandb/sdk/artifacts/artifact.py,sha256=krYQYTTiIWSPTY6GsDE5U8vAy_iR9uqBzxMuwWPG3BE,105913
|
273
284
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=CPle_AgeO53rr9FwQTuB5FV4bRKWdtoElJUDMQf9I7A,1582
|
274
|
-
wandb/sdk/artifacts/artifact_file_cache.py,sha256
|
285
|
+
wandb/sdk/artifacts/artifact_file_cache.py,sha256=-ip9JOlUFMuDXSwkKdsVwz9JlkfcJ8i0RqxgxVgeXik,10125
|
275
286
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=Y86c2ph4Fz1p5mfTpWMEPh1VhRzi-OyLGswa-NQDuUw,518
|
276
287
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=V-xjNzEhPoTV0PmO8Vhpbu0Ivg4QbaLWid1GLdaxfJc,2610
|
277
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
288
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=xqUDK9jRJY9WBJCyuH4MGf6_iLEtfiQ-KOqz1YzM5C0,8949
|
278
289
|
wandb/sdk/artifacts/artifact_saver.py,sha256=0O4M7nkLdr0M0afStwcqcoRKFmrFK09Uu8ztfP0bTLg,9931
|
279
290
|
wandb/sdk/artifacts/artifact_state.py,sha256=7bdU6ZIt-nx9aSO-aaRdZjj64MKD1ue6MhS6umlD1_U,285
|
280
291
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=L4gGRTKjQAu3hKjiko4TbOAQwVBsZWjQe7esFN7d7rY,131
|
281
|
-
wandb/sdk/artifacts/exceptions.py,sha256=
|
292
|
+
wandb/sdk/artifacts/exceptions.py,sha256=40WsmOAnvu4B1lSi9An_L9HA6rYOtnpBUjqGMz-PDC4,2429
|
282
293
|
wandb/sdk/artifacts/staging.py,sha256=mkW7Ct_fGm-V7DhVmK_aesO6li8zadWWB1NiKd04ZBo,917
|
283
294
|
wandb/sdk/artifacts/storage_handler.py,sha256=-dhnO1V6HvqiJ7bFwF_hRjxp72uRZIGLvcLpjLCNhzY,1896
|
284
295
|
wandb/sdk/artifacts/storage_layout.py,sha256=C83BTO0Z6Bbc74p3IZ3N_yPtn0AkgVjmDwcJSanKe5M,117
|
@@ -327,11 +338,11 @@ wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
327
338
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=r0K0ZPe2-c7g6v3XnIwbcywIIUpCxmIBLsWyrtOg_7Q,3591
|
328
339
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
329
340
|
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=D3YwnAvY94GRNCNFtxuZSUSSrV8gFCAwWjFG5XosamI,8547
|
330
|
-
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=
|
341
|
+
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=35vOyY7Asox9IkB-HV2C2T8zJsSNtpsIBrgKClClXdk,8733
|
331
342
|
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=KiyCD4W_2EB-ILWpjrnJBJ2FjRWKYalpR2HKfO2Rn6k,4147
|
332
343
|
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=XAz2Q8Kc06aWA89cikAyjI8qkZ-rDh7HQz5FCB0vSy0,5612
|
333
344
|
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=m5t_fxXy8Gsk7wnZnGpU-D3gvweHERcNRIZPK-kL380,1898
|
334
|
-
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=
|
345
|
+
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=4KMNf7yuSCHiXCCkmRx4dftq3YHwzqmZO-Bm7SnlYIw,13216
|
335
346
|
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=u9F5fegy-a3O1gwntsRWEX_Ah09T5GCzP5Igw2JILGk,2555
|
336
347
|
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=XgYdqZMrMk3atIDc0wOgtoCdEijXUm8KjcFjS3YYvB0,4895
|
337
348
|
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=WP_7fqMSHWJoLTG5g042rLrbdfYn3F3VkV3rsaV_hMA,2636
|
@@ -429,9 +440,9 @@ wandb/sdk/launch/environment/azure_environment.py,sha256=75Wamar_QS4lr0RSjdsrENR
|
|
429
440
|
wandb/sdk/launch/environment/gcp_environment.py,sha256=qiQuJtAEMjQPIHMa9iUplY_hwwRR4Kt1WpvM98A3T1E,13049
|
430
441
|
wandb/sdk/launch/environment/local_environment.py,sha256=ZOI35K0C_IP-xt6mxi4ZmQ_EjaT4fhzOvg4Xz1ORZG8,2310
|
431
442
|
wandb/sdk/launch/inputs/files.py,sha256=wLBb6riNplCtUY_p0uVwyCYH8La7H6naUpB5RVGiMUU,4833
|
432
|
-
wandb/sdk/launch/inputs/internal.py,sha256=
|
443
|
+
wandb/sdk/launch/inputs/internal.py,sha256=3LO5BOlwSfwG7XT8HSxuZZwoU07WDsswbPxh6Q1btCQ,10122
|
433
444
|
wandb/sdk/launch/inputs/manage.py,sha256=OeU9nx_NnpCG2qxXsQgZRQiZBDGiW6046j0RUD9lYI8,5116
|
434
|
-
wandb/sdk/launch/inputs/schema.py,sha256=
|
445
|
+
wandb/sdk/launch/inputs/schema.py,sha256=oJrQNEr533upEWU6NqZe9y0ZcUzuOvERRFHMzNy5exA,2849
|
435
446
|
wandb/sdk/launch/registry/abstract.py,sha256=rpPQlTfOTA6wWTU1DdtbnM9myJxQAwXrg4SQPbo9ORY,1194
|
436
447
|
wandb/sdk/launch/registry/anon.py,sha256=tpo6zCREdt3-uUCc47cpX5e97y2QIfRq9lUrh_9zWNg,972
|
437
448
|
wandb/sdk/launch/registry/azure_container_registry.py,sha256=jN5_dbxYPugtKFNBOv3oqyBD5fqT1TN_gKbkWnZzEls,4666
|
@@ -452,7 +463,7 @@ wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=0iZPUWcChhtXC2IQWxUVAAlE6eT2og
|
|
452
463
|
wandb/sdk/launch/sweeps/utils.py,sha256=ORipWOX7Pg6u4saJ_WG1ipr8lSiuMh2D0Tz1WCyrM6c,10553
|
453
464
|
wandb/sdk/lib/__init__.py,sha256=_sOt85qPxtPyM_LaN0IE6dO1CImzwXJXzVHC7R24VBE,188
|
454
465
|
wandb/sdk/lib/apikey.py,sha256=a-ikKRlXqOPSBisn46WnjbmSfvPCxaHb1eZ35agV8X4,11431
|
455
|
-
wandb/sdk/lib/asyncio_compat.py,sha256=
|
466
|
+
wandb/sdk/lib/asyncio_compat.py,sha256=g4YJ1p9iDuSRhxurxCfWCnGODSjGwAS4Hs5AFm9M5PM,9599
|
456
467
|
wandb/sdk/lib/asyncio_manager.py,sha256=CJd-Ef_0kF8k_Kv42RZGP3ftczDEDHTEYhSdnRx9K0o,9012
|
457
468
|
wandb/sdk/lib/capped_dict.py,sha256=HuFhPHl0e_pK6ETDxYh5RIPO-46I3EjXgzFdqbJTXDs,846
|
458
469
|
wandb/sdk/lib/config_util.py,sha256=vPvxiRBdBT_AT9PS0ZimbvqXr8hPjk58fhrn11lDv40,2994
|
@@ -466,7 +477,7 @@ wandb/sdk/lib/filenames.py,sha256=Clh-diEJuJZe8BaU13dchRgcVW0UneAUV8G5YMJe6qo,20
|
|
466
477
|
wandb/sdk/lib/filesystem.py,sha256=9fm-6y-R4xQlz48J4gUizo2_orBn_Au5WwtsfDaqSEA,14504
|
467
478
|
wandb/sdk/lib/fsm.py,sha256=nhcbQ4lO2iGWuaYkxYvl3Z0OdKIksn6Ahzj_o82ZYpM,5209
|
468
479
|
wandb/sdk/lib/gitlib.py,sha256=HRsKW3zvlSsDRvmrWJqtuKmf2QGqV0Y8_pQeFC8hzPQ,8072
|
469
|
-
wandb/sdk/lib/gql_request.py,sha256=
|
480
|
+
wandb/sdk/lib/gql_request.py,sha256=Z3gJDUYAwz824Il3r39hurpfKpuFXDw2-uRmlFtm9MY,2741
|
470
481
|
wandb/sdk/lib/handler_util.py,sha256=FizfOj-9I-sY92H84uwGInUe7wE8vlU_uQl7-SGI01Y,610
|
471
482
|
wandb/sdk/lib/hashutil.py,sha256=MerxylcZ9nbFCpQ66T2pZKzA5nBRiYuf-lj6q2j7rzg,3698
|
472
483
|
wandb/sdk/lib/import_hooks.py,sha256=oJBolf3pWRGdzpeG9VErDYbhicHsTDWdOgNxauvuCqw,10546
|
@@ -475,11 +486,11 @@ wandb/sdk/lib/ipython.py,sha256=xQ-B7P14XqiSBZLBd-2tmvPvU_-iUw_uxIkvGFK7qYM,3936
|
|
475
486
|
wandb/sdk/lib/json_util.py,sha256=wHTDKDHbJHAjqQOoFNPq-xtSGMDhcn1LS5jtnBcwuLU,2541
|
476
487
|
wandb/sdk/lib/lazyloader.py,sha256=MoMgx_tBjA__yFKcYzhimWiug_TSQeRUr71sPNUkTsk,1954
|
477
488
|
wandb/sdk/lib/module.py,sha256=xfs4GCwUjr6CV1bz6BRw9wulcn0aGrG1nSMMajEYwmQ,1988
|
478
|
-
wandb/sdk/lib/paths.py,sha256=
|
489
|
+
wandb/sdk/lib/paths.py,sha256=S_Kn7oNKtVKXNxDZ3XjPFxiQMjJ7UZmDyjKYOww_r18,4673
|
479
490
|
wandb/sdk/lib/preinit.py,sha256=IDK_WXbcrfzXUNWZur505lHIY_cYs1IEWp26HMpIf74,1492
|
480
|
-
wandb/sdk/lib/printer.py,sha256=
|
491
|
+
wandb/sdk/lib/printer.py,sha256=o9wUXAY1HY4eOZT3ZZTKkSxkpLDZdcTbbMi1I9hiKZg,16585
|
481
492
|
wandb/sdk/lib/printer_asyncio.py,sha256=kmknEO3UDvceZvCq18Y2pH_6K79kJ7XFV9pTTnNfTwI,1545
|
482
|
-
wandb/sdk/lib/progress.py,sha256=
|
493
|
+
wandb/sdk/lib/progress.py,sha256=KlQ4luhHxbmUGgzYJNWy73y-I6Ov_qdNb4bzQEMpNZ8,10397
|
483
494
|
wandb/sdk/lib/proto_util.py,sha256=YaGg9FoKtWmgQD8SkkKN630gyG93WoYY5JHqwdWaQKg,2984
|
484
495
|
wandb/sdk/lib/redirect.py,sha256=kribtu1VYPwIfdTbSwP7roFyrfd6CBDnNROyRUnAkLY,28249
|
485
496
|
wandb/sdk/lib/retry.py,sha256=A9UhcdkSvvCxECcjswS1xRb4EkDtbvPeGY-rLMxeH78,13474
|
@@ -493,7 +504,7 @@ wandb/sdk/lib/timer.py,sha256=Ar1t8f3OFAA4PB2fB2MT9D41y3g2Or56wSAYezvdXqo,459
|
|
493
504
|
wandb/sdk/lib/wb_logging.py,sha256=riPp_MSnb57YCcdCGoroCpyC1olAkIGxZge0llyVJOA,5000
|
494
505
|
wandb/sdk/lib/service/ipc_support.py,sha256=lEhZ0XNBf1avUf5PDXEIRpz9JwrPiJ9cijrXDhvuO0g,354
|
495
506
|
wandb/sdk/lib/service/service_client.py,sha256=mbYgWTMi2bmes6BC8Gpl3NmqWnjjbDpOuZp5dxG9i8U,3324
|
496
|
-
wandb/sdk/lib/service/service_connection.py,sha256=
|
507
|
+
wandb/sdk/lib/service/service_connection.py,sha256=RZ5SB9NgKP-koAhib92F86Pl0uRGIGbF6812QfFeECI,7354
|
497
508
|
wandb/sdk/lib/service/service_port_file.py,sha256=HAWdSBEIGtvJ8ZQJczSD7wrcHZQXZQ6MnVG73hPAyXs,3048
|
498
509
|
wandb/sdk/lib/service/service_process.py,sha256=XKNRLBSNN2R8iI12imYDIkC5x-ekndaAKD1n80zjxtQ,3211
|
499
510
|
wandb/sdk/lib/service/service_token.py,sha256=bDkHGJvpBprW1Ie_IkzXROu9eJkMd5k1cikdlmTUfdo,5288
|
@@ -501,7 +512,7 @@ wandb/sdk/mailbox/__init__.py,sha256=0gYfvSzPYluoQOQzT3j2AQoE4R4gPU2FCXBYcEMJOP8
|
|
501
512
|
wandb/sdk/mailbox/mailbox.py,sha256=A44lHvE4GTBrFPJzeu44yxVpuUwqfpf1cUoCxltFvp0,4949
|
502
513
|
wandb/sdk/mailbox/mailbox_handle.py,sha256=c49ZvyOUSXn6Nj_vGkZ3DyRSL09oKRLDE_1NEZ1EubY,4143
|
503
514
|
wandb/sdk/mailbox/response_handle.py,sha256=4y6CI1b-miL_PZ-lQh3R4UhlwArEEZC4fifRC9xU8z0,2915
|
504
|
-
wandb/sdk/mailbox/wait_with_progress.py,sha256=
|
515
|
+
wandb/sdk/mailbox/wait_with_progress.py,sha256=rySPua14LS7VaQDFuUhgBeP4If5jVAohHZtKAHdp4lo,3196
|
505
516
|
wandb/sdk/projects/_generated/__init__.py,sha256=YlxTcR5iXbhPQT6eKPLxm_KMo8ZptY3mflKfBkEOBZg,1350
|
506
517
|
wandb/sdk/projects/_generated/delete_project.py,sha256=aUZhcp8bvoNlUmWqbHT2PsxZTMR85J7GdbAVwLKI10Q,517
|
507
518
|
wandb/sdk/projects/_generated/enums.py,sha256=n4NAp3Y6Cb0bOtRvpJ-v8tl37-pg5CBEZ7m8Wzg7THY,128
|
@@ -897,8 +908,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
|
|
897
908
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
|
898
909
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
|
899
910
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
|
900
|
-
wandb-0.21.
|
901
|
-
wandb-0.21.
|
902
|
-
wandb-0.21.
|
903
|
-
wandb-0.21.
|
904
|
-
wandb-0.21.
|
911
|
+
wandb-0.21.4.dist-info/METADATA,sha256=RSdLrl7qze8yEgu0IN2zrKEcGQ_JxXhcutUkg2TuIEg,10244
|
912
|
+
wandb-0.21.4.dist-info/WHEEL,sha256=F7luzo77gHneG2SMTaD6iIlqNT8oVz1uotn5Zigp4o8,89
|
913
|
+
wandb-0.21.4.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
914
|
+
wandb-0.21.4.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
|
915
|
+
wandb-0.21.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|