wandb 0.17.2__py3-none-any.whl → 0.17.4__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.
@@ -43,7 +43,7 @@ from wandb.apis.internal import Api
43
43
  from wandb.errors import UsageError
44
44
  from wandb.proto import wandb_settings_pb2
45
45
  from wandb.sdk.internal.system.env_probe_helpers import is_aws_lambda
46
- from wandb.sdk.lib import filesystem
46
+ from wandb.sdk.lib import credentials, filesystem
47
47
  from wandb.sdk.lib._settings_toposort_generated import SETTINGS_TOPOLOGICALLY_SORTED
48
48
  from wandb.sdk.lib.run_moment import RunMoment
49
49
  from wandb.sdk.wandb_setup import _EarlyLogger
@@ -314,6 +314,7 @@ class SettingsData:
314
314
  _disable_machine_info: bool # Disable automatic machine info collection
315
315
  _executable: str
316
316
  _extra_http_headers: Mapping[str, str]
317
+ _file_stream_max_bytes: int # max size for filestream requests in core
317
318
  # file stream retry client configuration
318
319
  _file_stream_retry_max: int # max number of retries
319
320
  _file_stream_retry_wait_min_seconds: float # min wait time between retries
@@ -349,7 +350,9 @@ class SettingsData:
349
350
  _sync: bool
350
351
  _os: str
351
352
  _platform: str
352
- _proxies: Mapping[str, str] # dedicated global proxy servers [scheme -> url]
353
+ _proxies: Mapping[
354
+ str, str
355
+ ] # custom proxy servers for the requests to W&B [scheme -> url]
353
356
  _python: str
354
357
  _runqueue_item_id: str
355
358
  _require_core: bool
@@ -389,6 +392,7 @@ class SettingsData:
389
392
  config_paths: Sequence[str]
390
393
  console: str
391
394
  console_multipart: bool # whether to produce multipart console log files
395
+ credentials_file: str # file path to write access tokens
392
396
  deployment: str
393
397
  disable_code: bool
394
398
  disable_git: bool
@@ -408,6 +412,9 @@ class SettingsData:
408
412
  git_root: str
409
413
  heartbeat_seconds: int
410
414
  host: str
415
+ http_proxy: str # proxy server for the http requests to W&B
416
+ https_proxy: str # proxy server for the https requests to W&B
417
+ identity_token_file: str # file path to supply a jwt for authentication
411
418
  ignore_globs: Tuple[str]
412
419
  init_timeout: float
413
420
  is_local: bool
@@ -655,6 +662,7 @@ class Settings(SettingsData):
655
662
  _disable_update_check={"preprocessor": _str_as_bool},
656
663
  _disable_viewer={"preprocessor": _str_as_bool},
657
664
  _extra_http_headers={"preprocessor": _str_as_json},
665
+ _file_stream_max_bytes={"preprocessor": int},
658
666
  _file_stream_retry_max={"preprocessor": int},
659
667
  _file_stream_retry_wait_min_seconds={"preprocessor": float},
660
668
  _file_stream_retry_wait_max_seconds={"preprocessor": float},
@@ -706,6 +714,7 @@ class Settings(SettingsData):
706
714
  },
707
715
  _platform={"value": util.get_platform_name()},
708
716
  _proxies={
717
+ # TODO: deprecate and ask the user to use http_proxy and https_proxy instead
709
718
  "preprocessor": _str_as_json,
710
719
  },
711
720
  _require_core={"value": False, "preprocessor": _str_as_bool},
@@ -778,6 +787,10 @@ class Settings(SettingsData):
778
787
  "auto_hook": True,
779
788
  },
780
789
  console_multipart={"value": False, "preprocessor": _str_as_bool},
790
+ credentials_file={
791
+ "value": str(credentials.DEFAULT_WANDB_CREDENTIALS_FILE),
792
+ "preprocessor": str,
793
+ },
781
794
  deployment={
782
795
  "hook": lambda _: "local" if self.is_local else "cloud",
783
796
  "auto_hook": True,
@@ -816,6 +829,15 @@ class Settings(SettingsData):
816
829
  },
817
830
  git_remote={"value": "origin"},
818
831
  heartbeat_seconds={"value": 30},
832
+ http_proxy={
833
+ "hook": lambda x: self._proxies and self._proxies.get("http") or x,
834
+ "auto_hook": True,
835
+ },
836
+ https_proxy={
837
+ "hook": lambda x: self._proxies and self._proxies.get("https") or x,
838
+ "auto_hook": True,
839
+ },
840
+ identity_token_file={"value": None, "preprocessor": str},
819
841
  ignore_globs={
820
842
  "value": tuple(),
821
843
  "preprocessor": lambda x: tuple(x) if not isinstance(x, tuple) else x,
@@ -860,7 +882,9 @@ class Settings(SettingsData):
860
882
  program={
861
883
  "hook": lambda x: self._get_program(x),
862
884
  },
863
- project={"validator": self._validate_project},
885
+ project={
886
+ "validator": self._validate_project,
887
+ },
864
888
  project_url={"hook": lambda _: self._project_url(), "auto_hook": True},
865
889
  quiet={"preprocessor": _str_as_bool},
866
890
  reinit={"preprocessor": _str_as_bool},
wandb/sdk/wandb_setup.py CHANGED
@@ -268,20 +268,20 @@ class _WandbSetup__WandbSetup: # noqa: N801
268
268
  self._config = config_dict
269
269
 
270
270
  def _teardown(self, exit_code: Optional[int] = None) -> None:
271
- exit_code = exit_code or 0
272
- self._teardown_manager(exit_code=exit_code)
271
+ if not self._manager:
272
+ return
273
+
274
+ internal_exit_code = self._manager._teardown(exit_code or 0)
275
+ self._manager = None
276
+
277
+ if internal_exit_code != 0:
278
+ sys.exit(internal_exit_code)
273
279
 
274
280
  def _setup_manager(self) -> None:
275
281
  if self._settings._disable_service:
276
282
  return
277
283
  self._manager = wandb_manager._Manager(settings=self._settings)
278
284
 
279
- def _teardown_manager(self, exit_code: int) -> None:
280
- if not self._manager:
281
- return
282
- self._manager._teardown(exit_code)
283
- self._manager = None
284
-
285
285
  def _get_manager(self) -> Optional[wandb_manager._Manager]:
286
286
  return self._manager
287
287
 
@@ -312,11 +312,9 @@ def _setup(
312
312
  ) -> Optional["_WandbSetup"]:
313
313
  """Set up library context."""
314
314
  if _reset:
315
- setup_instance = _WandbSetup._instance
316
- if setup_instance:
317
- setup_instance._teardown()
318
- _WandbSetup._instance = None
315
+ teardown()
319
316
  return None
317
+
320
318
  wl = _WandbSetup(settings=settings)
321
319
  return wl
322
320
 
@@ -330,6 +328,7 @@ def setup(
330
328
 
331
329
  def teardown(exit_code: Optional[int] = None) -> None:
332
330
  setup_instance = _WandbSetup._instance
331
+ _WandbSetup._instance = None
332
+
333
333
  if setup_instance:
334
334
  setup_instance._teardown(exit_code=exit_code)
335
- _WandbSetup._instance = None
wandb/sdk/wandb_sweep.py CHANGED
@@ -1,5 +1,5 @@
1
1
  import urllib.parse
2
- from typing import Callable, Dict, Optional, Union
2
+ from typing import Callable, Dict, List, Optional, Union
3
3
 
4
4
  import wandb
5
5
  from wandb import env
@@ -32,6 +32,7 @@ def sweep(
32
32
  sweep: Union[dict, Callable],
33
33
  entity: Optional[str] = None,
34
34
  project: Optional[str] = None,
35
+ prior_runs: Optional[List[str]] = None,
35
36
  ) -> str:
36
37
  """Initialize a hyperparameter sweep.
37
38
 
@@ -57,6 +58,7 @@ def sweep(
57
58
  project: The name of the project where W&B runs created from
58
59
  the sweep are sent to. If the project is not specified, the
59
60
  run is sent to a project labeled 'Uncategorized'.
61
+ prior_runs: The run IDs of existing runs to add to this sweep.
60
62
 
61
63
  Returns:
62
64
  sweep_id: str. A unique identifier for the sweep.
@@ -78,7 +80,7 @@ def sweep(
78
80
  if wandb.run is None:
79
81
  wandb_login._login(_silent=True)
80
82
  api = InternalApi()
81
- sweep_id, warnings = api.upsert_sweep(sweep)
83
+ sweep_id, warnings = api.upsert_sweep(sweep, prior_runs=prior_runs)
82
84
  handle_sweep_config_violations(warnings)
83
85
  print("Create sweep with ID:", sweep_id)
84
86
  sweep_url = _get_sweep_url(api, sweep_id)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: wandb
3
- Version: 0.17.2
3
+ Version: 0.17.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
@@ -1,9 +1,9 @@
1
1
  package_readme.md,sha256=xigFCsrzePKq72pDIEfkoVzb-NzDRsKpXXI0FMJ-6jg,4382
2
- wandb/__init__.py,sha256=8wErywxqTFW0Dx-_VrrPbU2wKkUDP8jzVHk6F-h3uSQ,7229
2
+ wandb/__init__.py,sha256=G2Gtj7kdWVHyglMQ9xX7KnLIWJbPpmREFOqO2QtSt8k,7229
3
3
  wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
4
4
  wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
5
5
  wandb/data_types.py,sha256=SyBzrPvzfmgl9te_kH9yiNnn20L3eJvfbVnG2wRyZ3k,73149
6
- wandb/env.py,sha256=ikF0Tuie1IiuDWf0F8jWf9AZplC7jR8vohk4PgLjke8,12826
6
+ wandb/env.py,sha256=NQohfNO3bizXktRBybwzxRwGrb9Gf0dmSFhr69E1ZRQ,13386
7
7
  wandb/jupyter.py,sha256=tPnqX9kvAOpWpyz1f-uXrmUvj2V3hx0ANHKeXNxGF1o,16954
8
8
  wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
9
9
  wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -20,7 +20,7 @@ wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,5
20
20
  wandb/analytics/sentry.py,sha256=Bdx6GLuruzabyaH7XAtSzyNhbeElKTP-3FQJdyO-qq8,8490
21
21
  wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
22
22
  wandb/apis/attrs.py,sha256=08cRZIoH-kKrGjpXNF8erFWHW9pUXCOo-HHDM4DVS0w,1260
23
- wandb/apis/internal.py,sha256=-Kiu-H-074C79A6CuBRTvHQpA7j1EHg4G3J30_TnbgM,7225
23
+ wandb/apis/internal.py,sha256=0Bew5qD8OM-qfuGvsSnnA7Uqjg8vXnzi0q5__W9yTBM,7353
24
24
  wandb/apis/normalize.py,sha256=CkbtH11jPhiEl7apeWn0UKFJ_gwbaK4qkvDMvxwTxaw,2894
25
25
  wandb/apis/paginator.py,sha256=18qGrzVzjamd-8AlrwvhUq11Bk31qCjxWWVcYzijGa8,2118
26
26
  wandb/apis/importers/__init__.py,sha256=ewph-RBUC9FnxL6uWbuuW0Hmdv2cHsxfqnZi0546ds4,38
@@ -37,7 +37,7 @@ wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,12
37
37
  wandb/apis/public/files.py,sha256=tIxuOmHaeGGvXUgZd59_vlGFp9gjrY0BbX1JO5HsEYA,5670
38
38
  wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
39
39
  wandb/apis/public/jobs.py,sha256=9RMMyUWs2dVpQzk1_337C9r4QyrFevYhOsnR9Pfd49Y,21945
40
- wandb/apis/public/projects.py,sha256=AoNUaGxOuwBMJEk_ToKnDfv0zqO-Wf3UvyoqDNgeOzA,4561
40
+ wandb/apis/public/projects.py,sha256=F5cPDxAbZD4-oVB_BxBCTsZk6k1tVL0cPU3Z0YEUqzo,4322
41
41
  wandb/apis/public/query_generator.py,sha256=-kfS9CKDsrvc0SyMxLQFFMARZz1mwuDkLUt16uo-sWQ,5993
42
42
  wandb/apis/public/reports.py,sha256=_KHQYa7vIfGoxTI5Qk0JJTEzN6b1RqbcVopCVEHph3Y,15571
43
43
  wandb/apis/public/runs.py,sha256=LS66xeOxxxSm_3bKT_tvBDV3cAsqOk2lmp5Xe8UR-6I,31122
@@ -50,7 +50,7 @@ wandb/apis/reports/v2/__init__.py,sha256=KFrIs_vw2k49bTUHZCkqx9CzXcbNl192cYBWViK
50
50
  wandb/apis/workspaces/__init__.py,sha256=ZLuZVu1MTNZ9ZWFMk-t6TXGQWDhiaI5liEl-5WN1mi4,264
51
51
  wandb/beta/workflows.py,sha256=bk12HDWnxI4uuP0KyUbfclrTSoRVXrJibAuO_QBB5tI,10239
52
52
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- wandb/cli/cli.py,sha256=pCZF2eq9IzmbclGY-HFnOA4WILKAvz5B4M5W4ijWwvU,97644
53
+ wandb/cli/cli.py,sha256=zU-ewOgkvLXrcYlpEPNf_EYlp5No_MHtn37mfZF0U2k,97755
54
54
  wandb/docker/__init__.py,sha256=1NktT5nl7XJ35vj7Pq71p49_Vwet2HBLBc2_D7e86sM,10552
55
55
  wandb/docker/auth.py,sha256=I68SFCcbmZr18XqVxVCM75eTB7YhCebgb3dcsFiIYHQ,15032
56
56
  wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
@@ -160,40 +160,40 @@ wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
160
  wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4Nzw,2248
161
161
  wandb/proto/v3/wandb_internal_pb2.py,sha256=9doecnk53ETFmeP940ihmYmzFezJ4K__FfhBJ3gC5og,105966
162
162
  wandb/proto/v3/wandb_server_pb2.py,sha256=u7p14fy4XjKVcDnE54U1WwgC1Gpy6VWGA4MGU3aXyg4,13631
163
- wandb/proto/v3/wandb_settings_pb2.py,sha256=MOKZfI9-rzuSafGBUpxRStiQl9h1wRpB4JcluSbHbyU,19261
163
+ wandb/proto/v3/wandb_settings_pb2.py,sha256=ggnJCloXvvxvecOzTf-oIL3Ym2GosSEm5WwtCLkh0sQ,19693
164
164
  wandb/proto/v3/wandb_telemetry_pb2.py,sha256=TPwVdmSS6F97iycCmoHG-vI_76LGeQEQFQrGFRiZyFM,13368
165
165
  wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
166
  wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
167
167
  wandb/proto/v4/wandb_internal_pb2.py,sha256=N5SiXxbw_SGtSmkGnd19TJnf999yXa3pS_1nrCuxe1E,48286
168
168
  wandb/proto/v4/wandb_server_pb2.py,sha256=YkapN5k621amFmIYKtV5xLww3TaB-6EeGI8Qq2_UY94,5991
169
- wandb/proto/v4/wandb_settings_pb2.py,sha256=UbVBb11Odp5JsWe9WugV1Vt_yMAdeND2JvrAhTDEwa8,15992
169
+ wandb/proto/v4/wandb_settings_pb2.py,sha256=qHSQGJZtPcwR0zTDs1bPWTG7oIgscTMBUQqfx5M6Hgg,16424
170
170
  wandb/proto/v4/wandb_telemetry_pb2.py,sha256=JtnO50-AV1KuLTw6Cz-2J4GmqgF8So7a1HdCijKRqws,10815
171
171
  wandb/proto/v5/wandb_base_pb2.py,sha256=_RqGlyLs6WbBXyh2m6xke8OQyjQeRFKDwh8Brn9PAN4,1441
172
172
  wandb/proto/v5/wandb_internal_pb2.py,sha256=iO_NBC2zlquTzagM5_u-aetzFO3I3EJzmGDz_3B-xqw,52297
173
173
  wandb/proto/v5/wandb_server_pb2.py,sha256=8uKB9qS4F3QjKSlj1aL8eEXZiBIVuTGIZWvCsbs2qEQ,6477
174
- wandb/proto/v5/wandb_settings_pb2.py,sha256=SZGCZOE58PI7ATc3j_POF-ZLQXSIHvUDOAbU6yzgkwQ,16300
174
+ wandb/proto/v5/wandb_settings_pb2.py,sha256=uw5Cv8OaSHmteWIAKIfVOGbkc7bd2Z-z-vo_vTkq-vI,16732
175
175
  wandb/proto/v5/wandb_telemetry_pb2.py,sha256=ePvs13AXkxTPwW9pk4xHwkJfKqzY71WA-0tnwgH-zek,11061
176
176
  wandb/sdk/__init__.py,sha256=g8BQ6gQ_WDIH682ayRuKzD6QZXL8NW5CZKBLJOem5iU,805
177
177
  wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
178
178
  wandb/sdk/wandb_config.py,sha256=ZFEJEk7YoXTIySzHRGOIyyhgvbMUqTnUFAIlu-ZzGUo,10804
179
179
  wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
180
- wandb/sdk/wandb_init.py,sha256=UQs6NCoOBpBbpJ9cwRVYW9ZkR8e4u8BctIGWFNz2TfU,48723
181
- wandb/sdk/wandb_login.py,sha256=3iKgw_rAvU4IO5BqH8OY23-x-KYk1cvfvNcCheu0OiQ,10995
182
- wandb/sdk/wandb_manager.py,sha256=Xy4BvabbOmE9KZwhDpDX7bDL0GUBX72MSCxlnSWY8JI,6658
180
+ wandb/sdk/wandb_init.py,sha256=1CCmcLGo-TMTPkpm8B2yOV9zqUjKH8UOTr0LOAle62s,49368
181
+ wandb/sdk/wandb_login.py,sha256=i3e0I6_0f7F08U1ohC1Ud_AgsBvA0DQi6LChtq8r3rY,11163
182
+ wandb/sdk/wandb_manager.py,sha256=K51uT2lRn2rmnflKkyxYdy4CvlD1wsjBsPI1A2GfTpg,6964
183
183
  wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
184
184
  wandb/sdk/wandb_require.py,sha256=HGSkS0IEBnPEn_33jo3an27qtdx2bCxeEwQ0iri9OJk,2858
185
185
  wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
186
- wandb/sdk/wandb_run.py,sha256=bergnWHqdFldBPHDKHIXunDRW1LXZyrwVuj_HU77iec,160798
187
- wandb/sdk/wandb_settings.py,sha256=mfA9kHU7f4ilrCwxEzxyy4Wfx8jqKfc9jGR6mD4a2fw,73610
188
- wandb/sdk/wandb_setup.py,sha256=yerNWQV9IGrcFVyoGR0_HoYx1-j0cI0aRAqKm1-5LSg,11078
186
+ wandb/sdk/wandb_run.py,sha256=9Z0xeufPIeewC8-STqvoc2PiVEuVZ4uukt1L8dCKOaI,160874
187
+ wandb/sdk/wandb_settings.py,sha256=BjEO5VvMSsLlJC2ygaxCwLLzJgdbBxj8nYeZ0ZoNws0,74727
188
+ wandb/sdk/wandb_setup.py,sha256=qLVyjVQuWss6ORjBkKFAtsuziR7uwWrgLwnOydd5lLU,10909
189
189
  wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
190
- wandb/sdk/wandb_sweep.py,sha256=wPhKVjdUVNXCtIB5Bpz0c7JKHv9vLigY6TESNLa7SE4,3746
190
+ wandb/sdk/wandb_sweep.py,sha256=GR_Px6p2jr_HvmtmgKaaawLLNMMAA3yv2pkca82ahNo,3888
191
191
  wandb/sdk/wandb_sync.py,sha256=KhxDOHR7x8q54hAlsEx4ta1dAW1ZnzTUMr7VwJyCL5c,2273
192
192
  wandb/sdk/wandb_watch.py,sha256=2LGjshxCywHhlxHU3-APmgWsoQjMSxJdqA8J75KAmIU,3898
193
193
  wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
- wandb/sdk/artifacts/artifact.py,sha256=1qdtz4_IGh5mZ8Y7lKAdUuxYh0oW2EvGt0qimQ3FaDI,88812
194
+ wandb/sdk/artifacts/artifact.py,sha256=vjBvDss_gA2DzlbsmIANbnqkVBdvWJscCzjWVgdcStc,88898
195
195
  wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyTA9vscxJL5-8_eupknI,1501
196
- wandb/sdk/artifacts/artifact_file_cache.py,sha256=L5rik8yc1KNKa0TGNETYSCJhzgG8KlTUCTcW8j3Y6b4,8751
196
+ wandb/sdk/artifacts/artifact_file_cache.py,sha256=EsXD2bQyFhFYK2NICUZ3jtXf-r0hC63-6lqyU_cHcPw,9840
197
197
  wandb/sdk/artifacts/artifact_instance_cache.py,sha256=8dnqz8ri-3zAygk-ihn9JQsRaeYUwF7Av_pUqUoJxt0,473
198
198
  wandb/sdk/artifacts/artifact_manifest.py,sha256=eSx_51ETukZ3PehIJkrNBd_Q1E6CowEZSbrLmaWiwiY,2503
199
199
  wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=PBJTZLjLG0wk37Il4xxIay-MhxNdV4tRvqFbiZqwZNo,7254
@@ -219,7 +219,7 @@ wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=db6ZL0o7ybu1m
219
219
  wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=gaZBZJdLSriSWXbcaPzmw7JLQyXbDXfM--sdpF4ghMs,2561
220
220
  wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
221
221
  wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
222
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=DEDIQ3jh_m51ubRWmA9MO1SL9TNBcVWUbg2pE2PhZ44,13854
222
+ wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=HeVyF5FCYGP5D3fc2EA8UV1HF1Y1F0-akl0G71XARWQ,14061
223
223
  wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
224
224
  wandb/sdk/backend/backend.py,sha256=aVJFViyPxV4yXViqpixhNWElbXR1NVxijeIX-NAIFAA,8308
225
225
  wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -268,7 +268,7 @@ wandb/sdk/internal/file_stream.py,sha256=MNWY5xAPHonGGMTDwQxS4PEZk0ZZRp16I_OOaUo
268
268
  wandb/sdk/internal/flow_control.py,sha256=LO3iDyBbI4WGoDuVLjA_iv62PyiupdYkpSjxPIMGI7E,8584
269
269
  wandb/sdk/internal/handler.py,sha256=Ngq613egsAbKYuVJueLguiSnT39oZeMQQyAvvMI3V0Q,33680
270
270
  wandb/sdk/internal/internal.py,sha256=AUPsOXGwag2UjHg1rQz1zGGWXhywJo85Hoc62ZQ0uCc,12722
271
- wandb/sdk/internal/internal_api.py,sha256=Zm_jv5hF11u7UGg5s0m-aRtC9tXr33C1OSeajYrblZk,144817
271
+ wandb/sdk/internal/internal_api.py,sha256=Bud3H85aelAC9uBQu0P4yrerklQY80M956grO0mGmSA,147115
272
272
  wandb/sdk/internal/internal_util.py,sha256=RMBAsnVimA9UpC-qlT862nqxIXDAPm6KfonNmpvlRfc,2654
273
273
  wandb/sdk/internal/job_builder.py,sha256=vftff8ZIrVB65nJkEZ3CW5qSrbzFHzQeVbbpHrunou8,22700
274
274
  wandb/sdk/internal/profiler.py,sha256=C8-mPrAhPS6_l-Fj_zCOwmXaEqhjI9Wd0EAPXS9GAEI,2348
@@ -303,16 +303,16 @@ wandb/sdk/internal/system/assets/tpu.py,sha256=nwv3C9a6dgD1hc0461Rh28NQkWbNQ5fJO
303
303
  wandb/sdk/internal/system/assets/trainium.py,sha256=HTYZnibmJbMrMQFikvjZcSB6OmEnh6vslPtCozUtsoo,13393
304
304
  wandb/sdk/launch/__init__.py,sha256=2B1J5HbUCeGq7gowbBgYy8-gYiD7kvxNFxbSphVjqhI,349
305
305
  wandb/sdk/launch/_launch.py,sha256=rRhidG0loOoAr_U9MX9aRcBUuD95EzGBhFFqy6xSCiQ,11724
306
- wandb/sdk/launch/_launch_add.py,sha256=g3lPxAhX209BqvNj25N13WOOrTOuUB8om9waEDF_0JU,8796
306
+ wandb/sdk/launch/_launch_add.py,sha256=4IwwiQENXV-x4Y5RpzSYYv2B4cGNkV54JWfQmwNKxLA,8792
307
307
  wandb/sdk/launch/_project_spec.py,sha256=UK4p_-n6JGvVb1VQOucThgbTRs4cm3gqjl8XrECPir4,20887
308
308
  wandb/sdk/launch/create_job.py,sha256=vwIexSB1h9YrB2sSgMr_UlBZGlFJU0XPXfQs5iuzNDM,17298
309
309
  wandb/sdk/launch/errors.py,sha256=CC1M5x7FnyyO3VVcWtqH6LgJReTS-g0nqqC-yKiEr_w,305
310
310
  wandb/sdk/launch/git_reference.py,sha256=6pTVlD7-BICWoraN8PsAzCKu64GV7g_GzqMSD9w3Sos,3758
311
311
  wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
312
- wandb/sdk/launch/utils.py,sha256=LfXjInooIrzCcPJ9Ei2HCajgpuYLPQDvBkBTKcGJfQA,25654
312
+ wandb/sdk/launch/utils.py,sha256=PkFGOcEAc6X9qdIW6Z_F06GSMnsH7p64yfrtmakDvew,25658
313
313
  wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
314
314
  wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
315
- wandb/sdk/launch/agent/agent.py,sha256=LQS8rl3o9mXyE7wvg9MWJ0b_cQ5-oElZzm4rJApT6Ns,36345
315
+ wandb/sdk/launch/agent/agent.py,sha256=bAnrcbk0-J_pGGordZYuZx2l0yZmhywDsH9lsOKXyfM,36402
316
316
  wandb/sdk/launch/agent/config.py,sha256=86g1NLkhEyg3a7lDY2yYtFAFV-u3Tg36zMiRJnXY_ss,9512
317
317
  wandb/sdk/launch/agent/job_status_tracker.py,sha256=HaWU-VbXGe6m8VvM2y6riQ2Iwb2j62ugoJsR9wzUIpU,1813
318
318
  wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=Xn6cs_QOJKX3OGIwoTinJLmrPZ08aeoevyQRPHoaf6s,1514
@@ -348,18 +348,19 @@ wandb/sdk/launch/runner/local_process.py,sha256=jomOlDY2eiKTNMSejG6dcBnVHqZOVaFj
348
348
  wandb/sdk/launch/runner/sagemaker_runner.py,sha256=CpBouXzJpvCUMAm1Ry9a-4xkt39udd4e2siJpc-q4sA,15329
349
349
  wandb/sdk/launch/runner/vertex_runner.py,sha256=zusWE3aw77P7RzKYOGiCgEzJtKz3ACjJniphEx4cc3k,8320
350
350
  wandb/sdk/launch/sweeps/__init__.py,sha256=qQ96Pq9fXRIs-w8y3jy_Z6fKz9DIJ8zrMjwEZLrDGB8,913
351
- wandb/sdk/launch/sweeps/scheduler.py,sha256=moqHJVEz-L5hKxkuzV1nfi1TirGDtMKjhqYmq4uRoe4,26839
351
+ wandb/sdk/launch/sweeps/scheduler.py,sha256=TKVV9nUYwEbipQ129x9RufVNgkxVNVhDQ5UJ_p2XjYQ,26931
352
352
  wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=NUMvKJYSdtrW5KGf0GsLBZWJL0vJbCzI4yGYHD8Z0z8,3000
353
353
  wandb/sdk/launch/sweeps/utils.py,sha256=TbsAvn3eQnp5js0SvMmPVoP5vaT5bXMPL-ISWyZvVlQ,9837
354
354
  wandb/sdk/lib/__init__.py,sha256=53BA5lIOtUXciXZcPpNsFbp-iUPzI5gQFxplTykNmOE,183
355
355
  wandb/sdk/lib/_settings_toposort_generate.py,sha256=FQZPNGKnUcApOHjT_SYFC5APLxniN2aJJ8UnvdS2dV4,4843
356
- wandb/sdk/lib/_settings_toposort_generated.py,sha256=YEUMHxnsEr4uolVEak-vLE3BtgoAY3g28M-Ad_4htUE,5077
356
+ wandb/sdk/lib/_settings_toposort_generated.py,sha256=nyrWX5CwtemVmCSzIFxfsQE6iOu5obC5YEZSrlANzkY,5248
357
357
  wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
358
358
  wandb/sdk/lib/_wburls_generated.py,sha256=xK2udBlEmJFNH1WD5VHQKfKIWijlb7zAR0mqC5sa47k,428
359
- wandb/sdk/lib/apikey.py,sha256=VO_qLRMkjKEdcGfKpGAFXOkuQfHYqqrWOdB13aKbTQ0,8638
359
+ wandb/sdk/lib/apikey.py,sha256=RvrD3PuNT3_y_dcJFLUFM1xAzejhXig2YDNdeW5Ucy8,9195
360
360
  wandb/sdk/lib/capped_dict.py,sha256=T2CNkmzfWeFgXOsFmx5IDPzgYmP1jxaVAb-nn3-qBBE,820
361
361
  wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
362
362
  wandb/sdk/lib/console.py,sha256=GH32XoKZLFiKsP7Tajtss7dfjnyyo7fLVJzvQ86B8TE,1031
363
+ wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
363
364
  wandb/sdk/lib/deprecate.py,sha256=r8kT4UY2DSG7V5N78MG46kQOzycBp3_8lH49KnDXxXM,1462
364
365
  wandb/sdk/lib/disabled.py,sha256=-REmuFxa43C5k4pzhR8k7EshPUUHRdqsgL8qi0Jt2gA,3577
365
366
  wandb/sdk/lib/exit_hooks.py,sha256=_4oozaRQCJi8NJfZvHsA8livvFb0trZKLOGB8_UcHGk,1540
@@ -811,8 +812,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=cJIaJ2EQso
811
812
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2NpFcq9UVLIS-tsS0TS_Qw8akhKxn2eY,1506
812
813
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
813
814
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
814
- wandb-0.17.2.dist-info/METADATA,sha256=JhhTi8qO6vb6y0E45qRuQWrd9rb44DWKGAr2E2Z0kFU,10047
815
- wandb-0.17.2.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
816
- wandb-0.17.2.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
817
- wandb-0.17.2.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
818
- wandb-0.17.2.dist-info/RECORD,,
815
+ wandb-0.17.4.dist-info/METADATA,sha256=iyb9JSebdNvRiD4LlXufW_kCcO7Quiy7c2n4IF3-wy0,10047
816
+ wandb-0.17.4.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
817
+ wandb-0.17.4.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
818
+ wandb-0.17.4.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
819
+ wandb-0.17.4.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.24.2
2
+ Generator: hatchling 1.25.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any