wandb 0.19.5__py3-none-win_amd64.whl → 0.19.6rc4__py3-none-win_amd64.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/apis/normalize.py +13 -5
- wandb/bin/gpu_stats.exe +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/proto/v3/wandb_internal_pb2.py +36 -36
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_internal_pb2.py +36 -36
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_internal_pb2.py +36 -36
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/sdk/artifacts/artifact.py +33 -7
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py +12 -5
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +1 -1
- wandb/sdk/data_types/saved_model.py +1 -1
- wandb/sdk/internal/sender.py +2 -2
- wandb/sdk/lib/apikey.py +3 -2
- wandb/sdk/lib/mailbox.py +0 -4
- wandb/sdk/lib/retry.py +6 -3
- wandb/sdk/lib/run_moment.py +19 -7
- wandb/sdk/wandb_init.py +11 -1
- wandb/sdk/wandb_metadata.py +3 -0
- wandb/sdk/wandb_settings.py +439 -133
- wandb/util.py +44 -12
- {wandb-0.19.5.dist-info → wandb-0.19.6rc4.dist-info}/METADATA +1 -1
- {wandb-0.19.5.dist-info → wandb-0.19.6rc4.dist-info}/RECORD +29 -29
- {wandb-0.19.5.dist-info → wandb-0.19.6rc4.dist-info}/WHEEL +0 -0
- {wandb-0.19.5.dist-info → wandb-0.19.6rc4.dist-info}/entry_points.txt +0 -0
- {wandb-0.19.5.dist-info → wandb-0.19.6rc4.dist-info}/licenses/LICENSE +0 -0
wandb/util.py
CHANGED
@@ -854,20 +854,52 @@ def no_retry_4xx(e: Exception) -> bool:
|
|
854
854
|
|
855
855
|
|
856
856
|
def parse_backend_error_messages(response: requests.Response) -> List[str]:
|
857
|
-
|
857
|
+
"""Returns error messages stored in a backend response.
|
858
|
+
|
859
|
+
If the response is not in an expected format, an empty list is returned.
|
860
|
+
|
861
|
+
Args:
|
862
|
+
response: A response to an HTTP request to the W&B server.
|
863
|
+
"""
|
858
864
|
try:
|
859
865
|
data = response.json()
|
860
|
-
except
|
861
|
-
return
|
866
|
+
except requests.JSONDecodeError:
|
867
|
+
return []
|
868
|
+
|
869
|
+
if not isinstance(data, dict):
|
870
|
+
return []
|
862
871
|
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
872
|
+
# Backend error values are returned in one of two ways:
|
873
|
+
# - A string containing the error message
|
874
|
+
# - A JSON object with a "message" field that is a string
|
875
|
+
def get_message(err: Any) -> Optional[str]:
|
876
|
+
if isinstance(error, str):
|
877
|
+
return error
|
878
|
+
elif (
|
879
|
+
isinstance(error, dict)
|
880
|
+
and (message := error.get("message"))
|
881
|
+
and isinstance(message, str)
|
882
|
+
):
|
883
|
+
return message
|
884
|
+
else:
|
885
|
+
return None
|
886
|
+
|
887
|
+
# The response can contain an "error" field with a single error
|
888
|
+
# or an "errors" field with a list of errors.
|
889
|
+
if error := data.get("error"):
|
890
|
+
message = get_message(error)
|
891
|
+
return [message] if message else []
|
892
|
+
|
893
|
+
elif (errors := data.get("errors")) and isinstance(errors, list):
|
894
|
+
messages: List[str] = []
|
895
|
+
for error in errors:
|
896
|
+
message = get_message(error)
|
897
|
+
if message:
|
898
|
+
messages.append(message)
|
899
|
+
return messages
|
900
|
+
|
901
|
+
else:
|
902
|
+
return []
|
871
903
|
|
872
904
|
|
873
905
|
def no_retry_auth(e: Any) -> bool:
|
@@ -1266,7 +1298,7 @@ def prompt_choices(
|
|
1266
1298
|
) -> str:
|
1267
1299
|
"""Allow a user to choose from a list of options."""
|
1268
1300
|
for i, choice in enumerate(choices):
|
1269
|
-
wandb.termlog(f"({i+1}) {choice}")
|
1301
|
+
wandb.termlog(f"({i + 1}) {choice}")
|
1270
1302
|
|
1271
1303
|
idx = -1
|
1272
1304
|
while idx < 0 or idx > len(choices) - 1:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.19.
|
3
|
+
Version: 0.19.6rc4
|
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
|
@@ -1,6 +1,6 @@
|
|
1
1
|
package_readme.md,sha256=XGlaq8rMFcoBb21rCr2d5qeSM79ZI4WslLmXqRimTGQ,4395
|
2
|
-
wandb/__init__.py,sha256=
|
3
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb/__init__.py,sha256=cyjSetqJMcayg0VW032Zkd3kK8MXcbTQw2iFty1nzNs,7237
|
3
|
+
wandb/__init__.pyi,sha256=h9q-m4MQ1qMa5Jr3RbU97Mgsh96LE8YrX8aLFpYK968,47869
|
4
4
|
wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
|
5
5
|
wandb/_globals.py,sha256=NwgYSB2tl2Z5t1Tn1xpLtfkcmPy_dF01u-xxgnCbzoc,721
|
6
6
|
wandb/_iterutils.py,sha256=6c5yuQq0DKgw1D__OVbXQzOfk53ETZTfj27r7azDMgA,1591
|
@@ -10,7 +10,7 @@ wandb/jupyter.py,sha256=LG4Z-LCx-3v4eiftr8aSUGgByzLrkyhdRvNwfxPSc5A,17787
|
|
10
10
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
11
|
wandb/sklearn.py,sha256=8wlo8mLyekq6yRZBgluzPj4J-RP3wkLaEWm0yh7gvWw,838
|
12
12
|
wandb/trigger.py,sha256=d9TizmMPsvr0k9_3SBK2nq-Mb95bTzf9DZ1aE_F0ASo,644
|
13
|
-
wandb/util.py,sha256=
|
13
|
+
wandb/util.py,sha256=YUpHYArovz5pWqT1clPjZKjxL6I4Q0zgXV0MUE-uGyA,65440
|
14
14
|
wandb/wandb_agent.py,sha256=S0RAKLvFUdFdN0hLqtkUNpWHk4FKj7qqEWp_he0O3p0,21568
|
15
15
|
wandb/wandb_controller.py,sha256=od0i1iO61iHMmiE_W-onoIwUAFeoym4RsUAw_0mJ11E,25655
|
16
16
|
wandb/wandb_run.py,sha256=EyOjZsthYkfV5SSorQIFmEkszZwvKfZKZCxIwzoM2Oc,164
|
@@ -21,7 +21,7 @@ wandb/analytics/sentry.py,sha256=R1KHNO0hG6Al76edXHv7oBCgcT4wxVdLbjysX2Yfoqk,867
|
|
21
21
|
wandb/apis/__init__.py,sha256=DNAnd_UEdahhjkTjWPlJoYNxJX026W3K0qGqkbpgYno,1386
|
22
22
|
wandb/apis/attrs.py,sha256=Ao5h3bycrUFbswNl6kVOEQLHZsImYP1aHIl4QaEVc8o,1496
|
23
23
|
wandb/apis/internal.py,sha256=9WOwabh2zA75oiV-SGlx4AcikqiraAs8QRq8ZvmQu1Y,7858
|
24
|
-
wandb/apis/normalize.py,sha256=
|
24
|
+
wandb/apis/normalize.py,sha256=28qsegprXG94fYNcaEayJsscIyodmoGt3EzHq01jJbU,2757
|
25
25
|
wandb/apis/paginator.py,sha256=h4I_W9EjjOBiOQS7bsxHJinZwSJ-Ha-HkFKt02MtU4s,2199
|
26
26
|
wandb/apis/importers/__init__.py,sha256=GQCWmQEjSZ9eCUjlth3v9tQcjOJyjyEY7gC3BPN7Y88,39
|
27
27
|
wandb/apis/importers/mlflow.py,sha256=SFfBtAanxy0Hlph1BcnwKPeIvJcX8qCWS6IckfhlT0U,8510
|
@@ -50,8 +50,8 @@ wandb/apis/reports/v1/__init__.py,sha256=nxs3gJlbvVc0b_pV5DUypk1amMkRSq_M-xUw7qP
|
|
50
50
|
wandb/apis/reports/v2/__init__.py,sha256=vlF0ZRVHS-Qd7mBllcZri-gWE0TtjhiDSA6h5XPRVLU,271
|
51
51
|
wandb/apis/workspaces/__init__.py,sha256=XsF4ccNRUCTmI9ANjlrj_dYU1OcOi5N354Wg2Qkkaqo,273
|
52
52
|
wandb/beta/workflows.py,sha256=ENy_lmIyn3k_FHdD2ZO8HBaXdeoLrsPVbEfL_KYW8Ps,10527
|
53
|
-
wandb/bin/gpu_stats.exe,sha256=
|
54
|
-
wandb/bin/wandb-core,sha256=
|
53
|
+
wandb/bin/gpu_stats.exe,sha256=4oGf04mBv33Dxl6_ajHipHKc0z4JOHnLx2yoxiO-7Ro,8365568
|
54
|
+
wandb/bin/wandb-core,sha256=lJE8hHYQgejO09CgTtb8hI0VxwaTezOTWVzgjhLkFY0,48790016
|
55
55
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
wandb/cli/beta.py,sha256=_wbqhk6J2yjnNuVQAGlYbYZ9-j0sFE73zMIXVkQYlXA,5619
|
57
57
|
wandb/cli/cli.py,sha256=hn25_rlefSmZeQVw5OUibwIj9eeFXhHn61bJPBHv4RY,95594
|
@@ -186,33 +186,33 @@ wandb/proto/wandb_settings_pb2.py,sha256=Aq7nH9PsYXcPKFOPi0Oh2CAaCUpDoPfedycOleI
|
|
186
186
|
wandb/proto/wandb_telemetry_pb2.py,sha256=bNLhk5I9SDqNvzxi_anYorfvZjv8nG4cMZQvDS0BT9Q,332
|
187
187
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
188
|
wandb/proto/v3/wandb_base_pb2.py,sha256=zwma_gb3IOSfBJ1tvMIdmQtQQZLe29upb8Mqr4m9No4,2410
|
189
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
189
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=IMb25Da__V_v9HsG2Blnbra0FrEF-xFE-w3J_GpWLvE,116294
|
190
190
|
wandb/proto/v3/wandb_server_pb2.py,sha256=PK2SpH2Jxc51AfFzDGqPoRzyy_TbdhPjq9UP5OzQ3tw,15670
|
191
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
191
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=KA3IsHStH19B_-nRtBL3yJrTCX0V5h-Xbf2ATD4VWrA,21244
|
192
192
|
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=otf81tofwl3cagFWx0wa7n7h4_HLflf_LoYk-Tdb27Y,13911
|
193
193
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
194
194
|
wandb/proto/v4/wandb_base_pb2.py,sha256=tl7f-74ItLSWCP_GDfAWm02sTEgUpWZGoP_vqEpvRE8,1452
|
195
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
195
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=0N5LuxeEw-b7xSb3NkJxOBU6edbaBtUU_eAX3UG0Q_c,52889
|
196
196
|
wandb/proto/v4/wandb_server_pb2.py,sha256=0ayDQL3W_He8mfoFneJvGKlVRX8yoiKyNbHlrI_Ulkc,6972
|
197
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
197
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=Yy3rCB_hM_haMYDeFRUky62E8hs73hdQ6__g5qMk7ls,17544
|
198
198
|
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=NBSIJLsj4d0rMWnTi56xWJh0S_3U7KOWN52vaR9SFJs,11293
|
199
199
|
wandb/proto/v5/wandb_base_pb2.py,sha256=ES3U80f2YCt-fwiqaIrz7BGHVywwx6ibEDAnlWpohig,1603
|
200
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
200
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=bEflqmik5uHUFCSqlXlk66lnbAremYaI_t56_Z8jrKQ,57189
|
201
201
|
wandb/proto/v5/wandb_server_pb2.py,sha256=AIYsjZedgtb54LsVHz1B-gOK3B-8tMmQgXduMisPMUY,7531
|
202
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
202
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=1jaqmerkOoIMvNEpL-MeYcXWqZI0J9px7HkCI991zlg,17901
|
203
203
|
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=sZZ9EB2orpiZnvKSE0BRhIvNACQZQk66MvbTE8u-3Ok,11564
|
204
204
|
wandb/sdk/__init__.py,sha256=6lzqckLZUs7GpFZIwpgxGJwJDvhuyo-XCQnSrtZqE1c,850
|
205
205
|
wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
|
206
206
|
wandb/sdk/wandb_config.py,sha256=TxH6SD8DCfFU3yhmy03yewXQ4Gvgn3avZ0qbwpZJKt8,11178
|
207
207
|
wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
|
208
|
-
wandb/sdk/wandb_init.py,sha256=
|
208
|
+
wandb/sdk/wandb_init.py,sha256=g7CG1-kPAfslfCcPTHPW0EeeDF9XxkCMX0I_CVEH80g,61173
|
209
209
|
wandb/sdk/wandb_login.py,sha256=9w25lkf-3nwMhYQG3n0GXIinPEVapvUxkP15F_es98E,11178
|
210
|
-
wandb/sdk/wandb_metadata.py,sha256=
|
210
|
+
wandb/sdk/wandb_metadata.py,sha256=teURfpZDqPWgEY4YtuHIU9rysjDtOEz8JcvLSZlhf8Q,20907
|
211
211
|
wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
|
212
212
|
wandb/sdk/wandb_require.py,sha256=06Mgqdd5r5u4UUpIU3T2JIAn0elkFfaWRtNwyaLu8jc,3044
|
213
213
|
wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
|
214
214
|
wandb/sdk/wandb_run.py,sha256=JtHE_7QpzuLWDllDJZTWeEDjnp7ZGdbvHiKtKLakRJ8,158462
|
215
|
-
wandb/sdk/wandb_settings.py,sha256=
|
215
|
+
wandb/sdk/wandb_settings.py,sha256=a5j4V424V7xMgzf73qA5QRl2nxpH86-JcQselwjIKp4,57089
|
216
216
|
wandb/sdk/wandb_setup.py,sha256=cJp4frdf3lPeT_qQZ5xRmEJjZ12AC3IQKiKQ2kPI_5A,12960
|
217
217
|
wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
|
218
218
|
wandb/sdk/wandb_sweep.py,sha256=FhjfRmWS_Ffn7CwT9kjVAnvTJFnaB50mUwaGOLb2WrU,4147
|
@@ -220,7 +220,7 @@ wandb/sdk/wandb_sync.py,sha256=hKMiCHLziirg0xRc5sIKt0wpUpZ1VO6fc8wNl2EzExk,2354
|
|
220
220
|
wandb/sdk/wandb_watch.py,sha256=o3-DqwYJomujs25ZV9cur0UMDod-atsZd4PpDjDiWfU,4990
|
221
221
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
222
222
|
wandb/sdk/artifacts/_validators.py,sha256=nZ5mduNca9kELncaNIKHykJVpPpDaU8Ca0kFK4ftwRc,4292
|
223
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
223
|
+
wandb/sdk/artifacts/artifact.py,sha256=1Gcj7TQ9Qew1oIqBOTgjH5Df2iipt_3K8db9cFSqBxw,93718
|
224
224
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
|
225
225
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=SedT6WuFz04JHfLnDujl-kkyRehttOQnGLybN_hz-9Y,9993
|
226
226
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=Y86c2ph4Fz1p5mfTpWMEPh1VhRzi-OyLGswa-NQDuUw,518
|
@@ -240,12 +240,12 @@ wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
240
240
|
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=RVpvftoIkrWw7Y3uTj1_9bFbqxb0wbRi17_WcWML2xk,8466
|
241
241
|
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=itARuzT6VhIfjP9SLT4_HS-oBesl5JkvFWdaEWXabeQ,8738
|
242
242
|
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=sRdLyqO24kDaM9ccD3fFfy1UQHKIo72XNp3jeQhrD4s,4184
|
243
|
-
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=
|
243
|
+
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=Q9-ggNloquHiuDvmQB4o7t_xNUxFQfC3iIjhKlWkiVs,5700
|
244
244
|
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=vZZu7ikCxgeU0qGrsx3ZsJ4XOnqcruDSX6L7It_knrg,1909
|
245
245
|
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=FiCe3oMNJW0CnE7G-2ARAYDRk0xqh85JQx8DbrXZ0CU,11884
|
246
246
|
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=hYc5TQ1vSRBsO2bNsWWrguSEZ8vYIlycis4eAC8fl7k,2643
|
247
247
|
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=MG23hcUM5zTW5qaGCOMEWTHHn5mL538_0c3elaM-dTA,4974
|
248
|
-
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=
|
248
|
+
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=iQyrO3KUF1QjXH75x-VjuDh2rwoBSxcaOzLymIjoYSM,2626
|
249
249
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=G8quZY8-eynVVXmNBbiLGfUoI2P1rOE-LOmpzOwNJe0,230
|
250
250
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=azfof-H42vIuvndo9hvN4cZ3UXWG-nZcrFQ1QFL9oIc,50
|
251
251
|
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=4nQNkDfG_2Uq4ANOYZIaQVcPsZsUmhs6c2MdQBOqMSI,14380
|
@@ -263,7 +263,7 @@ wandb/sdk/data_types/image.py,sha256=QAoMcEUIOklwhBZtdzBhrRfoTp-YO1W_uDCBYVeKed8
|
|
263
263
|
wandb/sdk/data_types/molecule.py,sha256=KtG2aj4z8p3xQfv-9u-0KBeGuvxb2wavlf0GWiNiTQk,8824
|
264
264
|
wandb/sdk/data_types/object_3d.py,sha256=LvANAijnaQxvZHPurtQUfT3eN5GVkz0SrMoznRT9fPw,16418
|
265
265
|
wandb/sdk/data_types/plotly.py,sha256=UNYwRUUCODSyGvD3WEiF0p6jEseNfYiGnm8mD_tOoiI,2995
|
266
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
266
|
+
wandb/sdk/data_types/saved_model.py,sha256=R-4XP2bNXTf_CjWXOEmScJPZGx1tHGVMK8x5Xs2yN0w,16843
|
267
267
|
wandb/sdk/data_types/table.py,sha256=K4wnoI7ZPpQaLSl_7rBeoj1AnRzN-hZaltKZXQ9GpJ0,45887
|
268
268
|
wandb/sdk/data_types/trace_tree.py,sha256=4pT5Gpn-ePe-_nRZk5mDnDb36qB5c5e6Vrz_EgHEPaA,15138
|
269
269
|
wandb/sdk/data_types/utils.py,sha256=m_OxURMP-eho92fzLU3s4UJYoxheBMDhflZzqG_8_eI,7857
|
@@ -308,7 +308,7 @@ wandb/sdk/internal/profiler.py,sha256=QM5R8-0oWE7WhllhpPEAEwCyB6Uk62HATz8e2F5qIU
|
|
308
308
|
wandb/sdk/internal/progress.py,sha256=jZjltXC_0Fqn80l4ceT7pznmV_CzpeUeLS6nonwUWvg,2418
|
309
309
|
wandb/sdk/internal/run.py,sha256=rkEwqdaYPUh_oB-gdCnQ1JIpSHTMoOVadV9CJEgy-kA,707
|
310
310
|
wandb/sdk/internal/sample.py,sha256=tVNzrLatHr8P1kbVzw8bWhLpqZxx7zdm4fgv7rv2hO0,2540
|
311
|
-
wandb/sdk/internal/sender.py,sha256=
|
311
|
+
wandb/sdk/internal/sender.py,sha256=sfFtQasJ5TWr9dlWSvJGl_yvKgW0-SyyuuWac8PhItA,66982
|
312
312
|
wandb/sdk/internal/sender_config.py,sha256=LZaQY4_bzb9003D2j6aynGqv-Mr2GwUGcNmnQrhJOJw,6964
|
313
313
|
wandb/sdk/internal/settings_static.py,sha256=jGEP14enXA2A9YiA_EyFzn7OhVGavyuTbr-eVEl8tBk,3767
|
314
314
|
wandb/sdk/internal/tb_watcher.py,sha256=KRIGZA8gF3guuZm1ioUo8Uy4iOX2OZ3I_MkDW_znh-k,19259
|
@@ -384,7 +384,7 @@ wandb/sdk/launch/sweeps/scheduler.py,sha256=f_HuxouNMI7eFZDO1Muocd3LZHiiiQ6S5-N3
|
|
384
384
|
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=0iZPUWcChhtXC2IQWxUVAAlE6eT2ogoNsTeIinmSCxw,3077
|
385
385
|
wandb/sdk/launch/sweeps/utils.py,sha256=MJCKDZY7SQ2Wrv1EWUCFo1YflMkuJAYIZFAswP0VCDw,10153
|
386
386
|
wandb/sdk/lib/__init__.py,sha256=_sOt85qPxtPyM_LaN0IE6dO1CImzwXJXzVHC7R24VBE,188
|
387
|
-
wandb/sdk/lib/apikey.py,sha256=
|
387
|
+
wandb/sdk/lib/apikey.py,sha256=TJfhlGtrEHJhGB1edogsMKAvV3G7iiO99pgMzFe7fPo,8971
|
388
388
|
wandb/sdk/lib/capped_dict.py,sha256=HuFhPHl0e_pK6ETDxYh5RIPO-46I3EjXgzFdqbJTXDs,846
|
389
389
|
wandb/sdk/lib/config_util.py,sha256=KaSu8CSO1XFHJRBwo-OW0r802isltB3cFO3U1LeM-ec,3018
|
390
390
|
wandb/sdk/lib/credentials.py,sha256=DkYAb00zXMKdmJX-oUjKThh_TutoNFDcDFQilTrXOD8,4878
|
@@ -404,7 +404,7 @@ wandb/sdk/lib/interrupt.py,sha256=_m7yu7q-qJD_MmqNb5BiYapP5h6LFnKRWxCJWePBz9U,13
|
|
404
404
|
wandb/sdk/lib/ipython.py,sha256=TTdmGbWNX0YkBHgTOcijyiB7eRhBNQpI7AgU3LvGegA,3908
|
405
405
|
wandb/sdk/lib/json_util.py,sha256=a3TtH5QIrVNeORPpblGvZvaF5VDItkD5luN_iwDpohQ,2664
|
406
406
|
wandb/sdk/lib/lazyloader.py,sha256=MoMgx_tBjA__yFKcYzhimWiug_TSQeRUr71sPNUkTsk,1954
|
407
|
-
wandb/sdk/lib/mailbox.py,sha256=
|
407
|
+
wandb/sdk/lib/mailbox.py,sha256=c9qC8OqJ3YUthlTfDRTgEaMJbw54RYMSyHxr3XzwhqU,14274
|
408
408
|
wandb/sdk/lib/module.py,sha256=EB0yg1HMApnuCEfQboQXj9a0YUozWwiLXa7u23nC6Js,2176
|
409
409
|
wandb/sdk/lib/paths.py,sha256=Knkww9wdMK4wqsj5B9aMEJDvIFoCf80xXl28It3FIG4,4635
|
410
410
|
wandb/sdk/lib/preinit.py,sha256=IDK_WXbcrfzXUNWZur505lHIY_cYs1IEWp26HMpIf74,1492
|
@@ -412,8 +412,8 @@ wandb/sdk/lib/printer.py,sha256=PDksgOU1wCxSh2RMIdfzmwSdEJPu7E7p8vpNMl7dhUo,1583
|
|
412
412
|
wandb/sdk/lib/progress.py,sha256=ei6pN9IZEeXpMr6OT7Z7xolF5ihz6sgJPjtD2FfLkYE,8888
|
413
413
|
wandb/sdk/lib/proto_util.py,sha256=YaGg9FoKtWmgQD8SkkKN630gyG93WoYY5JHqwdWaQKg,2984
|
414
414
|
wandb/sdk/lib/redirect.py,sha256=zMu3jBTLkH5_VMDqPxcRTchTMzUYuGakv5D0xvPdjGI,26977
|
415
|
-
wandb/sdk/lib/retry.py,sha256=
|
416
|
-
wandb/sdk/lib/run_moment.py,sha256=
|
415
|
+
wandb/sdk/lib/retry.py,sha256=LwZZTfhHBexX21FCcHo7AShA-5i7sJg78vIpcTXMAVE,10465
|
416
|
+
wandb/sdk/lib/run_moment.py,sha256=18ExYjWnzyoW9q6kPIlk9yX7rCsrrNd3ELlIey7RwEo,2548
|
417
417
|
wandb/sdk/lib/runid.py,sha256=rHYRTjJu8gTZ6Aoo0WZ5jQfAtNLXQo6aY6PD-i3Fh6I,404
|
418
418
|
wandb/sdk/lib/server.py,sha256=f8idM8TiJKS1nYTjijhVkzOTp8e2flNpLUWcZ2K08f0,1681
|
419
419
|
wandb/sdk/lib/service_connection.py,sha256=BKEgLzFczBcrt0igWS7rf7StE4LcbREZPMuOAJsT7po,6720
|
@@ -818,8 +818,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
|
|
818
818
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
|
819
819
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
|
820
820
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
|
821
|
-
wandb-0.19.
|
822
|
-
wandb-0.19.
|
823
|
-
wandb-0.19.
|
824
|
-
wandb-0.19.
|
825
|
-
wandb-0.19.
|
821
|
+
wandb-0.19.6rc4.dist-info/METADATA,sha256=AgyaK7K_qLQ3C-FNzzP2cgKJ8pNsIax5PS3JaHY4aJE,10285
|
822
|
+
wandb-0.19.6rc4.dist-info/WHEEL,sha256=vGlXFq5Cg2SEc12yCQt0M53oxbuIdJrfMMMiwCzLXhI,93
|
823
|
+
wandb-0.19.6rc4.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
824
|
+
wandb-0.19.6rc4.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
|
825
|
+
wandb-0.19.6rc4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|