wandb 0.17.2__py3-none-macosx_11_0_arm64.whl → 0.17.4__py3-none-macosx_11_0_arm64.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,15 +1,15 @@
1
1
  package_readme.md,sha256=xigFCsrzePKq72pDIEfkoVzb-NzDRsKpXXI0FMJ-6jg,4382
2
- wandb-0.17.2.dist-info/RECORD,,
3
- wandb-0.17.2.dist-info/WHEEL,sha256=TukkDcvA4rAwch13soNX5OTAU4B_imO4l1rLW4HLxOs,101
4
- wandb-0.17.2.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
5
- wandb-0.17.2.dist-info/METADATA,sha256=JhhTi8qO6vb6y0E45qRuQWrd9rb44DWKGAr2E2Z0kFU,10047
6
- wandb-0.17.2.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
2
+ wandb-0.17.4.dist-info/RECORD,,
3
+ wandb-0.17.4.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
4
+ wandb-0.17.4.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
5
+ wandb-0.17.4.dist-info/METADATA,sha256=iyb9JSebdNvRiD4LlXufW_kCcO7Quiy7c2n4IF3-wy0,10047
6
+ wandb-0.17.4.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
7
7
  wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
8
- wandb/env.py,sha256=ikF0Tuie1IiuDWf0F8jWf9AZplC7jR8vohk4PgLjke8,12826
8
+ wandb/env.py,sha256=NQohfNO3bizXktRBybwzxRwGrb9Gf0dmSFhr69E1ZRQ,13386
9
9
  wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
10
10
  wandb/util.py,sha256=JK4QbqJTyeogHLjSg_nTE3HyOe9dADCHSRXOUTtSWxY,61015
11
11
  wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
12
- wandb/__init__.py,sha256=8wErywxqTFW0Dx-_VrrPbU2wKkUDP8jzVHk6F-h3uSQ,7229
12
+ wandb/__init__.py,sha256=G2Gtj7kdWVHyglMQ9xX7KnLIWJbPpmREFOqO2QtSt8k,7229
13
13
  wandb/data_types.py,sha256=SyBzrPvzfmgl9te_kH9yiNnn20L3eJvfbVnG2wRyZ3k,73149
14
14
  wandb/wandb_controller.py,sha256=Mp6szfycF_F8fFhxuDTSMpN4Vvc6D0Ix2gZBSSYOOS0,24804
15
15
  wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -24,7 +24,7 @@ wandb/docker/auth.py,sha256=I68SFCcbmZr18XqVxVCM75eTB7YhCebgb3dcsFiIYHQ,15032
24
24
  wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
25
25
  wandb/docker/__init__.py,sha256=1NktT5nl7XJ35vj7Pq71p49_Vwet2HBLBc2_D7e86sM,10552
26
26
  wandb/docker/www_authenticate.py,sha256=eQd0ap8LpZkS9ImRn2gdgl7gnHeKprdqjClrZOaCsQo,2805
27
- wandb/apis/internal.py,sha256=-Kiu-H-074C79A6CuBRTvHQpA7j1EHg4G3J30_TnbgM,7225
27
+ wandb/apis/internal.py,sha256=0Bew5qD8OM-qfuGvsSnnA7Uqjg8vXnzi0q5__W9yTBM,7353
28
28
  wandb/apis/normalize.py,sha256=CkbtH11jPhiEl7apeWn0UKFJ_gwbaK4qkvDMvxwTxaw,2894
29
29
  wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
30
30
  wandb/apis/paginator.py,sha256=18qGrzVzjamd-8AlrwvhUq11Bk31qCjxWWVcYzijGa8,2118
@@ -47,7 +47,7 @@ wandb/apis/public/api.py,sha256=UtUrXk0x_Ts6SDefJofZfk6hN6eOoW-j03ce_b6Oqtg,4263
47
47
  wandb/apis/public/reports.py,sha256=_KHQYa7vIfGoxTI5Qk0JJTEzN6b1RqbcVopCVEHph3Y,15571
48
48
  wandb/apis/public/sweeps.py,sha256=t-oOyMauYcGO2YszeQ2u18QwDKw8B94-Lodhw91Kpeg,6543
49
49
  wandb/apis/public/artifacts.py,sha256=0TNd8YB9HCpPF_pD6WqM_Bd6O-lmhqTUxl_hi--6itw,33551
50
- wandb/apis/public/projects.py,sha256=AoNUaGxOuwBMJEk_ToKnDfv0zqO-Wf3UvyoqDNgeOzA,4561
50
+ wandb/apis/public/projects.py,sha256=F5cPDxAbZD4-oVB_BxBCTsZk6k1tVL0cPU3Z0YEUqzo,4322
51
51
  wandb/apis/public/runs.py,sha256=LS66xeOxxxSm_3bKT_tvBDV3cAsqOk2lmp5Xe8UR-6I,31122
52
52
  wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
53
53
  wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
@@ -73,25 +73,25 @@ wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
73
  wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
74
74
  wandb/proto/wandb_deprecated.py,sha256=93aoOKoac3bFGhUjvGF-unAkZkw69a7C_5MZwyjFzyw,1601
75
75
  wandb/proto/wandb_telemetry_pb2.py,sha256=ReY9N2qSt46o7m1ou1khvYSYYImrzo5ro90g_9m8QsM,322
76
- wandb/proto/v5/wandb_settings_pb2.py,sha256=SZGCZOE58PI7ATc3j_POF-ZLQXSIHvUDOAbU6yzgkwQ,16300
76
+ wandb/proto/v5/wandb_settings_pb2.py,sha256=uw5Cv8OaSHmteWIAKIfVOGbkc7bd2Z-z-vo_vTkq-vI,16732
77
77
  wandb/proto/v5/wandb_server_pb2.py,sha256=8uKB9qS4F3QjKSlj1aL8eEXZiBIVuTGIZWvCsbs2qEQ,6477
78
78
  wandb/proto/v5/wandb_base_pb2.py,sha256=_RqGlyLs6WbBXyh2m6xke8OQyjQeRFKDwh8Brn9PAN4,1441
79
79
  wandb/proto/v5/wandb_internal_pb2.py,sha256=iO_NBC2zlquTzagM5_u-aetzFO3I3EJzmGDz_3B-xqw,52297
80
80
  wandb/proto/v5/wandb_telemetry_pb2.py,sha256=ePvs13AXkxTPwW9pk4xHwkJfKqzY71WA-0tnwgH-zek,11061
81
- wandb/proto/v4/wandb_settings_pb2.py,sha256=UbVBb11Odp5JsWe9WugV1Vt_yMAdeND2JvrAhTDEwa8,15992
81
+ wandb/proto/v4/wandb_settings_pb2.py,sha256=qHSQGJZtPcwR0zTDs1bPWTG7oIgscTMBUQqfx5M6Hgg,16424
82
82
  wandb/proto/v4/wandb_server_pb2.py,sha256=YkapN5k621amFmIYKtV5xLww3TaB-6EeGI8Qq2_UY94,5991
83
83
  wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
84
84
  wandb/proto/v4/wandb_internal_pb2.py,sha256=N5SiXxbw_SGtSmkGnd19TJnf999yXa3pS_1nrCuxe1E,48286
85
85
  wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
86
  wandb/proto/v4/wandb_telemetry_pb2.py,sha256=JtnO50-AV1KuLTw6Cz-2J4GmqgF8So7a1HdCijKRqws,10815
87
- wandb/proto/v3/wandb_settings_pb2.py,sha256=MOKZfI9-rzuSafGBUpxRStiQl9h1wRpB4JcluSbHbyU,19261
87
+ wandb/proto/v3/wandb_settings_pb2.py,sha256=ggnJCloXvvxvecOzTf-oIL3Ym2GosSEm5WwtCLkh0sQ,19693
88
88
  wandb/proto/v3/wandb_server_pb2.py,sha256=u7p14fy4XjKVcDnE54U1WwgC1Gpy6VWGA4MGU3aXyg4,13631
89
89
  wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4Nzw,2248
90
90
  wandb/proto/v3/wandb_internal_pb2.py,sha256=9doecnk53ETFmeP940ihmYmzFezJ4K__FfhBJ3gC5og,105966
91
91
  wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
92
  wandb/proto/v3/wandb_telemetry_pb2.py,sha256=TPwVdmSS6F97iycCmoHG-vI_76LGeQEQFQrGFRiZyFM,13368
93
- wandb/bin/wandb-core,sha256=4u90o77xANhry4uSR_wpOxfB9qBwSQDgPBJgaxTkOfg,11084514
94
- wandb/bin/apple_gpu_stats,sha256=D4ghwyfQ4Wlu85Y3r9tV4jgxbgQ0cHjQRpnzNQ0nSr0,1440808
93
+ wandb/bin/wandb-core,sha256=S15Y6INPMdyS-U1RYLcxllwZyajUXWv2sjUYR9Ha7Pw,11101522
94
+ wandb/bin/apple_gpu_stats,sha256=eiftRBwP9Ubb-KXv2TibvL0t7qwe4c1f-i1adP2JaPU,1440808
95
95
  wandb/integration/magic.py,sha256=8b7GkkntZb-jJ7L0OF4M7mS1yJKtMI_o3jfsTufWMr4,17246
96
96
  wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
97
  wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -165,7 +165,7 @@ wandb/old/core.py,sha256=MJjnAcUObCVXgLQEOW_iS7RREBiTB-YZtf9VHMYV2N4,3758
165
165
  wandb/old/summary.py,sha256=eqpzQB5CfzTKZta6tB-nVUh0ZmiLwISqjSAt4yvwocE,13952
166
166
  wandb/old/settings.py,sha256=IrS10skC9gCTb8NgTWeRFgsTYL1bw36e-rG_xECk-yo,6374
167
167
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
- wandb/cli/cli.py,sha256=pCZF2eq9IzmbclGY-HFnOA4WILKAvz5B4M5W4ijWwvU,97644
168
+ wandb/cli/cli.py,sha256=zU-ewOgkvLXrcYlpEPNf_EYlp5No_MHtn37mfZF0U2k,97755
169
169
  wandb/testing/relay.py,sha256=DTL9-ZQugqiID97PYRkym3zEJYmDeyh-7E0uzqNg0CI,29808
170
170
  wandb/sklearn/__init__.py,sha256=bDnzytR60EFQblaAZdw76WlJBmfG-O7NrKavIEY97Ck,861
171
171
  wandb/sklearn/utils.py,sha256=dfHxglqT6UlPl8ulgZNWrElfW04cdBWrFfEtDp3pvZw,5903
@@ -190,20 +190,20 @@ wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
190
  wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
191
191
  wandb/sdk/wandb_config.py,sha256=ZFEJEk7YoXTIySzHRGOIyyhgvbMUqTnUFAIlu-ZzGUo,10804
192
192
  wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
193
- wandb/sdk/wandb_run.py,sha256=bergnWHqdFldBPHDKHIXunDRW1LXZyrwVuj_HU77iec,160798
193
+ wandb/sdk/wandb_run.py,sha256=9Z0xeufPIeewC8-STqvoc2PiVEuVZ4uukt1L8dCKOaI,160874
194
194
  wandb/sdk/wandb_sync.py,sha256=KhxDOHR7x8q54hAlsEx4ta1dAW1ZnzTUMr7VwJyCL5c,2273
195
195
  wandb/sdk/__init__.py,sha256=g8BQ6gQ_WDIH682ayRuKzD6QZXL8NW5CZKBLJOem5iU,805
196
- wandb/sdk/wandb_init.py,sha256=UQs6NCoOBpBbpJ9cwRVYW9ZkR8e4u8BctIGWFNz2TfU,48723
196
+ wandb/sdk/wandb_init.py,sha256=1CCmcLGo-TMTPkpm8B2yOV9zqUjKH8UOTr0LOAle62s,49368
197
197
  wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
198
- wandb/sdk/wandb_settings.py,sha256=mfA9kHU7f4ilrCwxEzxyy4Wfx8jqKfc9jGR6mD4a2fw,73610
198
+ wandb/sdk/wandb_settings.py,sha256=BjEO5VvMSsLlJC2ygaxCwLLzJgdbBxj8nYeZ0ZoNws0,74727
199
199
  wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
200
200
  wandb/sdk/wandb_watch.py,sha256=2LGjshxCywHhlxHU3-APmgWsoQjMSxJdqA8J75KAmIU,3898
201
- wandb/sdk/wandb_login.py,sha256=3iKgw_rAvU4IO5BqH8OY23-x-KYk1cvfvNcCheu0OiQ,10995
201
+ wandb/sdk/wandb_login.py,sha256=i3e0I6_0f7F08U1ohC1Ud_AgsBvA0DQi6LChtq8r3rY,11163
202
202
  wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
203
203
  wandb/sdk/wandb_require.py,sha256=HGSkS0IEBnPEn_33jo3an27qtdx2bCxeEwQ0iri9OJk,2858
204
- wandb/sdk/wandb_sweep.py,sha256=wPhKVjdUVNXCtIB5Bpz0c7JKHv9vLigY6TESNLa7SE4,3746
205
- wandb/sdk/wandb_manager.py,sha256=Xy4BvabbOmE9KZwhDpDX7bDL0GUBX72MSCxlnSWY8JI,6658
206
- wandb/sdk/wandb_setup.py,sha256=yerNWQV9IGrcFVyoGR0_HoYx1-j0cI0aRAqKm1-5LSg,11078
204
+ wandb/sdk/wandb_sweep.py,sha256=GR_Px6p2jr_HvmtmgKaaawLLNMMAA3yv2pkca82ahNo,3888
205
+ wandb/sdk/wandb_manager.py,sha256=K51uT2lRn2rmnflKkyxYdy4CvlD1wsjBsPI1A2GfTpg,6964
206
+ wandb/sdk/wandb_setup.py,sha256=qLVyjVQuWss6ORjBkKFAtsuziR7uwWrgLwnOydd5lLU,10909
207
207
  wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
208
208
  wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
209
209
  wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -226,8 +226,8 @@ wandb/sdk/artifacts/storage_policy.py,sha256=iDZmHBINhrXoeUbc7s5MKCd0r5JCc5QPN3V
226
226
  wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
227
227
  wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
228
228
  wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
229
- wandb/sdk/artifacts/artifact.py,sha256=1qdtz4_IGh5mZ8Y7lKAdUuxYh0oW2EvGt0qimQ3FaDI,88812
230
- wandb/sdk/artifacts/artifact_file_cache.py,sha256=L5rik8yc1KNKa0TGNETYSCJhzgG8KlTUCTcW8j3Y6b4,8751
229
+ wandb/sdk/artifacts/artifact.py,sha256=vjBvDss_gA2DzlbsmIANbnqkVBdvWJscCzjWVgdcStc,88898
230
+ wandb/sdk/artifacts/artifact_file_cache.py,sha256=EsXD2bQyFhFYK2NICUZ3jtXf-r0hC63-6lqyU_cHcPw,9840
231
231
  wandb/sdk/artifacts/artifact_saver.py,sha256=tG3QiqB-CUrEC_2Qus1AsJHCInhgaFDqdDmZQ1ja798,9285
232
232
  wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
233
  wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=PBJTZLjLG0wk37Il4xxIay-MhxNdV4tRvqFbiZqwZNo,7254
@@ -237,7 +237,7 @@ wandb/sdk/artifacts/exceptions.py,sha256=2rVhtgZixcnjcMkR2Mr_sGp9KnqTDILwcqecyZD
237
237
  wandb/sdk/artifacts/storage_handler.py,sha256=NwY6qrUqoeNvvJMZVwHje-mBwL1ibUeB7dYgHNTCaKA,1841
238
238
  wandb/sdk/artifacts/staging.py,sha256=_U3oH2S7fEevRkcYgo4nmwvdaoJnZR4V-bNiJVWlowA,854
239
239
  wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyTA9vscxJL5-8_eupknI,1501
240
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=DEDIQ3jh_m51ubRWmA9MO1SL9TNBcVWUbg2pE2PhZ44,13854
240
+ wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=HeVyF5FCYGP5D3fc2EA8UV1HF1Y1F0-akl0G71XARWQ,14061
241
241
  wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
242
242
  wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
243
243
  wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=OV_LHSwmS1-J1kz4eNsln8hkGrm9YmSSqlJ3RfckOPw,11719
@@ -279,8 +279,8 @@ wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8t
279
279
  wandb/sdk/launch/_launch.py,sha256=rRhidG0loOoAr_U9MX9aRcBUuD95EzGBhFFqy6xSCiQ,11724
280
280
  wandb/sdk/launch/__init__.py,sha256=2B1J5HbUCeGq7gowbBgYy8-gYiD7kvxNFxbSphVjqhI,349
281
281
  wandb/sdk/launch/_project_spec.py,sha256=UK4p_-n6JGvVb1VQOucThgbTRs4cm3gqjl8XrECPir4,20887
282
- wandb/sdk/launch/_launch_add.py,sha256=g3lPxAhX209BqvNj25N13WOOrTOuUB8om9waEDF_0JU,8796
283
- wandb/sdk/launch/utils.py,sha256=LfXjInooIrzCcPJ9Ei2HCajgpuYLPQDvBkBTKcGJfQA,25654
282
+ wandb/sdk/launch/_launch_add.py,sha256=4IwwiQENXV-x4Y5RpzSYYv2B4cGNkV54JWfQmwNKxLA,8792
283
+ wandb/sdk/launch/utils.py,sha256=PkFGOcEAc6X9qdIW6Z_F06GSMnsH7p64yfrtmakDvew,25658
284
284
  wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
285
285
  wandb/sdk/launch/errors.py,sha256=CC1M5x7FnyyO3VVcWtqH6LgJReTS-g0nqqC-yKiEr_w,305
286
286
  wandb/sdk/launch/create_job.py,sha256=vwIexSB1h9YrB2sSgMr_UlBZGlFJU0XPXfQs5iuzNDM,17298
@@ -295,13 +295,13 @@ wandb/sdk/launch/runner/local_process.py,sha256=jomOlDY2eiKTNMSejG6dcBnVHqZOVaFj
295
295
  wandb/sdk/launch/runner/vertex_runner.py,sha256=zusWE3aw77P7RzKYOGiCgEzJtKz3ACjJniphEx4cc3k,8320
296
296
  wandb/sdk/launch/agent/config.py,sha256=86g1NLkhEyg3a7lDY2yYtFAFV-u3Tg36zMiRJnXY_ss,9512
297
297
  wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
298
- wandb/sdk/launch/agent/agent.py,sha256=LQS8rl3o9mXyE7wvg9MWJ0b_cQ5-oElZzm4rJApT6Ns,36345
298
+ wandb/sdk/launch/agent/agent.py,sha256=bAnrcbk0-J_pGGordZYuZx2l0yZmhywDsH9lsOKXyfM,36402
299
299
  wandb/sdk/launch/agent/job_status_tracker.py,sha256=HaWU-VbXGe6m8VvM2y6riQ2Iwb2j62ugoJsR9wzUIpU,1813
300
300
  wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=Xn6cs_QOJKX3OGIwoTinJLmrPZ08aeoevyQRPHoaf6s,1514
301
301
  wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=NUMvKJYSdtrW5KGf0GsLBZWJL0vJbCzI4yGYHD8Z0z8,3000
302
302
  wandb/sdk/launch/sweeps/__init__.py,sha256=qQ96Pq9fXRIs-w8y3jy_Z6fKz9DIJ8zrMjwEZLrDGB8,913
303
303
  wandb/sdk/launch/sweeps/utils.py,sha256=TbsAvn3eQnp5js0SvMmPVoP5vaT5bXMPL-ISWyZvVlQ,9837
304
- wandb/sdk/launch/sweeps/scheduler.py,sha256=moqHJVEz-L5hKxkuzV1nfi1TirGDtMKjhqYmq4uRoe4,26839
304
+ wandb/sdk/launch/sweeps/scheduler.py,sha256=TKVV9nUYwEbipQ129x9RufVNgkxVNVhDQ5UJ_p2XjYQ,26931
305
305
  wandb/sdk/launch/registry/abstract.py,sha256=eTiuMPEm0NnrTkU6M8UteZQfK50BN-n7tyev4nMA1oQ,1146
306
306
  wandb/sdk/launch/registry/elastic_container_registry.py,sha256=vbDSOxzV0iTZ91Mm0qjOjWbwW6OvRlPXbIDi_qrWqGY,7276
307
307
  wandb/sdk/launch/registry/local_registry.py,sha256=oe2McRQoY5DG8-SD8voDcrHAT58jMu4nYdAniyqdI10,1781
@@ -330,7 +330,7 @@ wandb/sdk/internal/sender.py,sha256=w_hONddIpdZHchsfoq4mGE79kvCaxmo3qmSCHKF14-c,
330
330
  wandb/sdk/internal/internal.py,sha256=AUPsOXGwag2UjHg1rQz1zGGWXhywJo85Hoc62ZQ0uCc,12722
331
331
  wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
332
332
  wandb/sdk/internal/job_builder.py,sha256=vftff8ZIrVB65nJkEZ3CW5qSrbzFHzQeVbbpHrunou8,22700
333
- wandb/sdk/internal/internal_api.py,sha256=Zm_jv5hF11u7UGg5s0m-aRtC9tXr33C1OSeajYrblZk,144817
333
+ wandb/sdk/internal/internal_api.py,sha256=Bud3H85aelAC9uBQu0P4yrerklQY80M956grO0mGmSA,147115
334
334
  wandb/sdk/internal/handler.py,sha256=Ngq613egsAbKYuVJueLguiSnT39oZeMQQyAvvMI3V0Q,33680
335
335
  wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
336
336
  wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
@@ -376,6 +376,7 @@ wandb/sdk/lib/_wburls_generated.py,sha256=xK2udBlEmJFNH1WD5VHQKfKIWijlb7zAR0mqC5
376
376
  wandb/sdk/lib/server.py,sha256=R8E-IqjtAvC7yLChNf2GxRNXrzJ8OMPph3RPU0IzxHo,1684
377
377
  wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
378
378
  wandb/sdk/lib/sock_client.py,sha256=-KUS5JYHX8qjYjl2sCqyGr2i-tf2LjwbRPCoKYzKzRQ,10387
379
+ wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
379
380
  wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
380
381
  wandb/sdk/lib/redirect.py,sha256=eTNvQp4SFLgN5Kxwmh1BP0du8_7YZxcgoXsmE_2IHSM,26132
381
382
  wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
@@ -403,9 +404,9 @@ wandb/sdk/lib/hashutil.py,sha256=3T0DyZZPZ6VXrYrmLzusdoAtD1JsuXsx0_iNuyqim9M,174
403
404
  wandb/sdk/lib/module.py,sha256=f-NFgDi87ai-3r-jN9T3cAZQ3fhivxi4RWhzc9GPb98,1830
404
405
  wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
405
406
  wandb/sdk/lib/gql_request.py,sha256=4-4HY6IOetwcL8EUaoFc_u3pojnNtEN4NN6-5EtT-MY,2400
406
- wandb/sdk/lib/_settings_toposort_generated.py,sha256=YEUMHxnsEr4uolVEak-vLE3BtgoAY3g28M-Ad_4htUE,5077
407
+ wandb/sdk/lib/_settings_toposort_generated.py,sha256=nyrWX5CwtemVmCSzIFxfsQE6iOu5obC5YEZSrlANzkY,5248
407
408
  wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
408
- wandb/sdk/lib/apikey.py,sha256=VO_qLRMkjKEdcGfKpGAFXOkuQfHYqqrWOdB13aKbTQ0,8638
409
+ wandb/sdk/lib/apikey.py,sha256=RvrD3PuNT3_y_dcJFLUFM1xAzejhXig2YDNdeW5Ucy8,9195
409
410
  wandb/sdk/lib/printer.py,sha256=QoiAd68b3fGrtuve2QJOvy20O6IGLsyffOrKFXUPXDs,9641
410
411
  wandb/sdk/lib/fsm.py,sha256=rUON10HAMDumB0JOE5BDsBgk1F4KbdynGnfSZFuWDEA,5250
411
412
  wandb/sdk/lib/lazyloader.py,sha256=y9mToMsUOibWeL5I6P9e993IKYRLxMYFLeUTessw3L4,1877
@@ -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-macosx_11_0_arm64