wandb 0.17.3__py3-none-win_amd64.whl → 0.17.5__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.
Files changed (40) hide show
  1. wandb/__init__.py +1 -1
  2. wandb/apis/internal.py +4 -0
  3. wandb/bin/wandb-core +0 -0
  4. wandb/cli/cli.py +7 -6
  5. wandb/env.py +16 -0
  6. wandb/filesync/upload_job.py +1 -1
  7. wandb/proto/v3/wandb_internal_pb2.py +339 -328
  8. wandb/proto/v3/wandb_settings_pb2.py +2 -2
  9. wandb/proto/v4/wandb_internal_pb2.py +326 -323
  10. wandb/proto/v4/wandb_settings_pb2.py +2 -2
  11. wandb/proto/v5/wandb_internal_pb2.py +326 -323
  12. wandb/proto/v5/wandb_settings_pb2.py +2 -2
  13. wandb/sdk/artifacts/artifact.py +13 -24
  14. wandb/sdk/artifacts/artifact_file_cache.py +35 -13
  15. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +11 -6
  16. wandb/sdk/interface/interface.py +12 -5
  17. wandb/sdk/interface/interface_shared.py +9 -7
  18. wandb/sdk/internal/handler.py +1 -1
  19. wandb/sdk/internal/internal_api.py +67 -14
  20. wandb/sdk/internal/sender.py +9 -2
  21. wandb/sdk/launch/agent/agent.py +3 -1
  22. wandb/sdk/launch/builder/kaniko_builder.py +30 -9
  23. wandb/sdk/launch/inputs/internal.py +79 -2
  24. wandb/sdk/launch/inputs/manage.py +21 -3
  25. wandb/sdk/launch/sweeps/scheduler.py +2 -0
  26. wandb/sdk/lib/_settings_toposort_generated.py +3 -0
  27. wandb/sdk/lib/credentials.py +141 -0
  28. wandb/sdk/lib/tracelog.py +2 -2
  29. wandb/sdk/wandb_init.py +12 -2
  30. wandb/sdk/wandb_login.py +6 -0
  31. wandb/sdk/wandb_manager.py +34 -21
  32. wandb/sdk/wandb_run.py +100 -75
  33. wandb/sdk/wandb_settings.py +13 -2
  34. wandb/sdk/wandb_setup.py +12 -13
  35. wandb/util.py +29 -11
  36. {wandb-0.17.3.dist-info → wandb-0.17.5.dist-info}/METADATA +1 -1
  37. {wandb-0.17.3.dist-info → wandb-0.17.5.dist-info}/RECORD +40 -39
  38. {wandb-0.17.3.dist-info → wandb-0.17.5.dist-info}/WHEEL +0 -0
  39. {wandb-0.17.3.dist-info → wandb-0.17.5.dist-info}/entry_points.txt +0 -0
  40. {wandb-0.17.3.dist-info → wandb-0.17.5.dist-info}/licenses/LICENSE +0 -0
wandb/sdk/wandb_run.py CHANGED
@@ -2100,36 +2100,56 @@ class Run:
2100
2100
  return self._finish(exit_code, quiet)
2101
2101
 
2102
2102
  def _finish(
2103
- self, exit_code: Optional[int] = None, quiet: Optional[bool] = None
2103
+ self,
2104
+ exit_code: Optional[int] = None,
2105
+ quiet: Optional[bool] = None,
2104
2106
  ) -> None:
2105
- if quiet is not None:
2106
- self._quiet = quiet
2107
+ logger.info(f"finishing run {self._get_path()}")
2107
2108
  with telemetry.context(run=self) as tel:
2108
2109
  tel.feature.finish = True
2109
- logger.info(f"finishing run {self._get_path()}")
2110
- # detach jupyter hooks / others that needs to happen before backend shutdown
2111
- for hook in self._teardown_hooks:
2112
- if hook.stage == TeardownStage.EARLY:
2113
- hook.call()
2114
2110
 
2115
- self._atexit_cleanup(exit_code=exit_code)
2111
+ if quiet is not None:
2112
+ self._quiet = quiet
2113
+
2114
+ # Pop this run (hopefully) from the run stack, to support the "reinit"
2115
+ # functionality of wandb.init().
2116
+ #
2117
+ # TODO: It's not clear how _global_run_stack could have length other
2118
+ # than 1 at this point in the code. If you're reading this, consider
2119
+ # refactoring this thing.
2116
2120
  if self._wl and len(self._wl._global_run_stack) > 0:
2117
2121
  self._wl._global_run_stack.pop()
2118
- # detach logger / others meant to be run after we've shutdown the backend
2122
+
2123
+ # Run hooks that need to happen before the last messages to the
2124
+ # internal service, like Jupyter hooks.
2119
2125
  for hook in self._teardown_hooks:
2120
- if hook.stage == TeardownStage.LATE:
2126
+ if hook.stage == TeardownStage.EARLY:
2121
2127
  hook.call()
2122
- self._teardown_hooks = []
2123
- module.unset_globals()
2124
-
2125
- # inform manager this run is finished
2126
- manager = self._wl and self._wl._get_manager()
2127
- if manager:
2128
- manager._inform_finish(run_id=self._run_id)
2129
2128
 
2129
+ # Early-stage hooks may use methods that require _is_finished
2130
+ # to be False, so we set this after running those hooks.
2130
2131
  self._is_finished = True
2131
- # end sentry session
2132
- wandb._sentry.end_session()
2132
+
2133
+ try:
2134
+ self._atexit_cleanup(exit_code=exit_code)
2135
+
2136
+ # Run hooks that should happen after the last messages to the
2137
+ # internal service, like detaching the logger.
2138
+ for hook in self._teardown_hooks:
2139
+ if hook.stage == TeardownStage.LATE:
2140
+ hook.call()
2141
+ self._teardown_hooks = []
2142
+
2143
+ # Inform the service that we're done sending messages for this run.
2144
+ #
2145
+ # TODO: Why not do this in _atexit_cleanup()?
2146
+ manager = self._wl and self._wl._get_manager()
2147
+ if manager:
2148
+ manager._inform_finish(run_id=self._run_id)
2149
+
2150
+ finally:
2151
+ module.unset_globals()
2152
+ wandb._sentry.end_session()
2133
2153
 
2134
2154
  @_run_decorator._noop
2135
2155
  @_run_decorator._attach
@@ -2345,36 +2365,49 @@ class Run:
2345
2365
  return
2346
2366
  self._atexit_cleanup_called = True
2347
2367
 
2348
- exit_code = exit_code or self._hooks.exit_code if self._hooks else 0
2368
+ exit_code = (
2369
+ exit_code #
2370
+ or (self._hooks and self._hooks.exit_code)
2371
+ or 0
2372
+ )
2373
+ self._exit_code = exit_code
2349
2374
  logger.info(f"got exitcode: {exit_code}")
2375
+
2376
+ # Delete this run's "resume" file if the run finished successfully.
2377
+ #
2378
+ # This is used by the "auto" resume mode, which resumes from the last
2379
+ # failed (or unfinished/crashed) run. If we reach this line, then this
2380
+ # run shouldn't be a candidate for "auto" resume.
2350
2381
  if exit_code == 0:
2351
- # Cleanup our resume file on a clean exit
2352
2382
  if os.path.exists(self._settings.resume_fname):
2353
2383
  os.remove(self._settings.resume_fname)
2354
2384
 
2355
- self._exit_code = exit_code
2356
- report_failure = False
2357
2385
  try:
2358
2386
  self._on_finish()
2359
- except KeyboardInterrupt as ki:
2360
- if wandb.wandb_agent._is_running():
2361
- raise ki
2362
- wandb.termerror("Control-C detected -- Run data was not synced")
2363
- if not self._settings._notebook:
2364
- os._exit(-1)
2387
+
2388
+ except KeyboardInterrupt:
2389
+ if not wandb.wandb_agent._is_running():
2390
+ wandb.termerror("Control-C detected -- Run data was not synced")
2391
+ raise
2392
+
2365
2393
  except Exception as e:
2366
- if not self._settings._notebook:
2367
- report_failure = True
2368
2394
  self._console_stop()
2369
- self._backend.cleanup()
2370
2395
  logger.error("Problem finishing run", exc_info=e)
2371
2396
  wandb.termerror("Problem finishing run")
2372
- traceback.print_exc()
2373
- else:
2374
- self._on_final()
2375
- finally:
2376
- if report_failure:
2377
- os._exit(-1)
2397
+ raise
2398
+
2399
+ Run._footer(
2400
+ sampled_history=self._sampled_history,
2401
+ final_summary=self._final_summary,
2402
+ poll_exit_response=self._poll_exit_response,
2403
+ server_info_response=self._server_info_response,
2404
+ check_version_response=self._check_version,
2405
+ internal_messages_response=self._internal_messages_response,
2406
+ reporter=self._reporter,
2407
+ quiet=self._quiet,
2408
+ settings=self._settings,
2409
+ printer=self._printer,
2410
+ )
2378
2411
 
2379
2412
  def _console_start(self) -> None:
2380
2413
  logger.info("atexit reg")
@@ -2659,20 +2692,6 @@ class Run:
2659
2692
  for module_name in import_telemetry_set:
2660
2693
  unregister_post_import_hook(module_name, run_id)
2661
2694
 
2662
- def _on_final(self) -> None:
2663
- self._footer(
2664
- sampled_history=self._sampled_history,
2665
- final_summary=self._final_summary,
2666
- poll_exit_response=self._poll_exit_response,
2667
- server_info_response=self._server_info_response,
2668
- check_version_response=self._check_version,
2669
- internal_messages_response=self._internal_messages_response,
2670
- reporter=self._reporter,
2671
- quiet=self._quiet,
2672
- settings=self._settings,
2673
- printer=self._printer,
2674
- )
2675
-
2676
2695
  @_run_decorator._noop_on_finish()
2677
2696
  @_run_decorator._attach
2678
2697
  def define_metric(
@@ -2878,7 +2897,7 @@ class Run:
2878
2897
  if artifact.is_draft() and not artifact._is_draft_save_started():
2879
2898
  artifact = self._log_artifact(artifact)
2880
2899
  if not self._settings._offline:
2881
- self._backend.interface.publish_link_artifact(
2900
+ handle = self._backend.interface.deliver_link_artifact(
2882
2901
  self,
2883
2902
  artifact,
2884
2903
  portfolio,
@@ -2890,6 +2909,13 @@ class Run:
2890
2909
  wandb.termwarn(
2891
2910
  "Artifact TTL will be disabled for source artifacts that are linked to portfolios."
2892
2911
  )
2912
+ result = handle.wait(timeout=-1)
2913
+ if result is None:
2914
+ handle.abandon()
2915
+ else:
2916
+ response = result.response.link_artifact_response
2917
+ if response.error_message:
2918
+ wandb.termerror(response.error_message)
2893
2919
  else:
2894
2920
  # TODO: implement offline mode + sync
2895
2921
  raise NotImplementedError
@@ -3836,34 +3862,33 @@ class Run:
3836
3862
  if not poll_exit_response:
3837
3863
  return
3838
3864
 
3839
- progress = poll_exit_response.pusher_stats
3840
- done = poll_exit_response.done
3865
+ stats = poll_exit_response.pusher_stats
3841
3866
 
3842
3867
  megabyte = wandb.util.POW_2_BYTES[2][1]
3843
- line = f"{progress.uploaded_bytes / megabyte :.3f} MB of {progress.total_bytes / megabyte:.3f} MB uploaded"
3844
- if progress.deduped_bytes > 0:
3845
- line += f" ({progress.deduped_bytes / megabyte:.3f} MB deduped)\r"
3846
- else:
3847
- line += "\r"
3848
-
3849
- percent_done = (
3850
- 1.0
3851
- if progress.total_bytes == 0
3852
- else progress.uploaded_bytes / progress.total_bytes
3868
+ line = (
3869
+ f"{stats.uploaded_bytes / megabyte:.3f} MB"
3870
+ f" of {stats.total_bytes / megabyte:.3f} MB uploaded"
3853
3871
  )
3872
+ if stats.deduped_bytes > 0:
3873
+ line += f" ({stats.deduped_bytes / megabyte:.3f} MB deduped)"
3874
+ line += "\r"
3854
3875
 
3855
- printer.progress_update(line, percent_done)
3856
- if done:
3876
+ if stats.total_bytes > 0:
3877
+ printer.progress_update(line, stats.uploaded_bytes / stats.total_bytes)
3878
+ else:
3879
+ printer.progress_update(line, 1.0)
3880
+
3881
+ if poll_exit_response.done:
3857
3882
  printer.progress_close()
3858
3883
 
3859
- dedupe_fraction = (
3860
- progress.deduped_bytes / float(progress.total_bytes)
3861
- if progress.total_bytes > 0
3862
- else 0
3863
- )
3864
- if dedupe_fraction > 0.01:
3884
+ if stats.total_bytes > 0:
3885
+ dedupe_fraction = stats.deduped_bytes / float(stats.total_bytes)
3886
+ else:
3887
+ dedupe_fraction = 0
3888
+
3889
+ if stats.deduped_bytes > 0.01:
3865
3890
  printer.display(
3866
- f"W&B sync reduced upload amount by {dedupe_fraction * 100:.1f}% "
3891
+ f"W&B sync reduced upload amount by {dedupe_fraction:.1%}"
3867
3892
  )
3868
3893
 
3869
3894
  @staticmethod
@@ -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
@@ -391,6 +392,7 @@ class SettingsData:
391
392
  config_paths: Sequence[str]
392
393
  console: str
393
394
  console_multipart: bool # whether to produce multipart console log files
395
+ credentials_file: str # file path to write access tokens
394
396
  deployment: str
395
397
  disable_code: bool
396
398
  disable_git: bool
@@ -412,6 +414,7 @@ class SettingsData:
412
414
  host: str
413
415
  http_proxy: str # proxy server for the http requests to W&B
414
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
415
418
  ignore_globs: Tuple[str]
416
419
  init_timeout: float
417
420
  is_local: bool
@@ -659,6 +662,7 @@ class Settings(SettingsData):
659
662
  _disable_update_check={"preprocessor": _str_as_bool},
660
663
  _disable_viewer={"preprocessor": _str_as_bool},
661
664
  _extra_http_headers={"preprocessor": _str_as_json},
665
+ _file_stream_max_bytes={"preprocessor": int},
662
666
  _file_stream_retry_max={"preprocessor": int},
663
667
  _file_stream_retry_wait_min_seconds={"preprocessor": float},
664
668
  _file_stream_retry_wait_max_seconds={"preprocessor": float},
@@ -783,6 +787,10 @@ class Settings(SettingsData):
783
787
  "auto_hook": True,
784
788
  },
785
789
  console_multipart={"value": False, "preprocessor": _str_as_bool},
790
+ credentials_file={
791
+ "value": str(credentials.DEFAULT_WANDB_CREDENTIALS_FILE),
792
+ "preprocessor": str,
793
+ },
786
794
  deployment={
787
795
  "hook": lambda _: "local" if self.is_local else "cloud",
788
796
  "auto_hook": True,
@@ -829,6 +837,7 @@ class Settings(SettingsData):
829
837
  "hook": lambda x: self._proxies and self._proxies.get("https") or x,
830
838
  "auto_hook": True,
831
839
  },
840
+ identity_token_file={"value": None, "preprocessor": str},
832
841
  ignore_globs={
833
842
  "value": tuple(),
834
843
  "preprocessor": lambda x: tuple(x) if not isinstance(x, tuple) else x,
@@ -873,7 +882,9 @@ class Settings(SettingsData):
873
882
  program={
874
883
  "hook": lambda x: self._get_program(x),
875
884
  },
876
- project={"validator": self._validate_project},
885
+ project={
886
+ "validator": self._validate_project,
887
+ },
877
888
  project_url={"hook": lambda _: self._project_url(), "auto_hook": True},
878
889
  quiet={"preprocessor": _str_as_bool},
879
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/util.py CHANGED
@@ -1748,21 +1748,39 @@ def make_docker_image_name_safe(name: str) -> str:
1748
1748
  return trimmed if trimmed else "image"
1749
1749
 
1750
1750
 
1751
- def merge_dicts(source: Dict[str, Any], destination: Dict[str, Any]) -> Dict[str, Any]:
1752
- """Recursively merge two dictionaries."""
1751
+ def merge_dicts(
1752
+ source: Dict[str, Any],
1753
+ destination: Dict[str, Any],
1754
+ ) -> Dict[str, Any]:
1755
+ """Recursively merge two dictionaries.
1756
+
1757
+ This mutates the destination and its nested dictionaries and lists.
1758
+
1759
+ Instances of `dict` are recursively merged and instances of `list`
1760
+ are appended to the destination. If the destination type is not
1761
+ `dict` or `list`, respectively, the key is overwritten with the
1762
+ source value.
1763
+
1764
+ For all other types, the source value overwrites the destination value.
1765
+ """
1753
1766
  for key, value in source.items():
1754
1767
  if isinstance(value, dict):
1755
- # get node or create one
1756
- node = destination.setdefault(key, {})
1757
- merge_dicts(value, node)
1758
- else:
1759
- if isinstance(value, list):
1760
- if key in destination:
1761
- destination[key].extend(value)
1762
- else:
1763
- destination[key] = value
1768
+ node = destination.get(key)
1769
+ if isinstance(node, dict):
1770
+ merge_dicts(value, node)
1764
1771
  else:
1765
1772
  destination[key] = value
1773
+
1774
+ elif isinstance(value, list):
1775
+ dest_value = destination.get(key)
1776
+ if isinstance(dest_value, list):
1777
+ dest_value.extend(value)
1778
+ else:
1779
+ destination[key] = value
1780
+
1781
+ else:
1782
+ destination[key] = value
1783
+
1766
1784
  return destination
1767
1785
 
1768
1786
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wandb
3
- Version: 0.17.3
3
+ Version: 0.17.5
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,14 +1,14 @@
1
1
  package_readme.md,sha256=7MrccgnqmTcd7_bEs_vUZ_OpN-nfniSlgAzeJkzNw7g,4477
2
- wandb/__init__.py,sha256=uweNbTy6BIKgPFE161nZylkApbZSpDq3gBsf6ri0cwU,7484
2
+ wandb/__init__.py,sha256=8aeTlxKaEHaEfKIpjlXTeU1sZRlaRpV9H3f72gBwz1Q,7484
3
3
  wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
4
4
  wandb/_globals.py,sha256=NwgYSB2tl2Z5t1Tn1xpLtfkcmPy_dF01u-xxgnCbzoc,721
5
5
  wandb/data_types.py,sha256=kClN3cbqn7cHK34VB0IrsL4aeQzJlH6JByTfXaU9jao,75220
6
- wandb/env.py,sha256=mqsaMQcdrnFSN4Z95AQxC3KnivP1kW5KWKHZrpqANyA,13322
6
+ wandb/env.py,sha256=bG8F2UwuwFuWHX8zTnPdU9X3_d7FbQHqk3gZa6_WRTo,13898
7
7
  wandb/jupyter.py,sha256=k35p4hRr_lwMyyVO1ahDuB6EO9GmU4Lt8GGCWnMtDP0,17454
8
8
  wandb/magic.py,sha256=grKCI_AKHF4vYtTXS-Ts7FeK3sdFB8t2JRqmFwjR-F0,62
9
9
  wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  wandb/trigger.py,sha256=d9TizmMPsvr0k9_3SBK2nq-Mb95bTzf9DZ1aE_F0ASo,644
11
- wandb/util.py,sha256=p4zNxORIs5g6rWtMRoa_4WKdMTTHD2GYlZ0cAVNOmrw,62942
11
+ wandb/util.py,sha256=EjXi4XTOeogINglkBDOQiAJI8Got_cGcfg_RO6H4Pc8,63419
12
12
  wandb/viz.py,sha256=o5K7rLL1we5qw9XIxfzk1nyNmf-Y6bKS0UKpWpQAUGw,3578
13
13
  wandb/wandb_agent.py,sha256=BJOMNNmpkS7snPh9sPaWMMdKnfKmg5YK64kmHjUaIeA,21617
14
14
  wandb/wandb_controller.py,sha256=mIwttTH5-b0O_kxlcpZRxI17L5PbB1KkKWFDwgbi0Xg,25525
@@ -20,7 +20,7 @@ wandb/analytics/__init__.py,sha256=ntvkloUY6ZO8irNqA4xi06Q8IC_6pu1VB2_1EKORczc,5
20
20
  wandb/analytics/sentry.py,sha256=f7S7XXH5BMxDNQyUh7So2gv8vHHjf-pHkmsA6xzT6Z8,8756
21
21
  wandb/apis/__init__.py,sha256=DNAnd_UEdahhjkTjWPlJoYNxJX026W3K0qGqkbpgYno,1386
22
22
  wandb/apis/attrs.py,sha256=j11iaNnVbjnDSYUBpSJvaOvO9q7hx4PqieKvWGumvHw,1300
23
- wandb/apis/internal.py,sha256=oDmMHMUKGN9yLKn0R70xXJN1DQLeS1YT8Ifp2JrcBnQ,7450
23
+ wandb/apis/internal.py,sha256=VNXFvIghrhfk_TnxaC3cqGT_qpeRL8i-VEFSjr2T9ww,7582
24
24
  wandb/apis/normalize.py,sha256=F-LMcqeXV2a9vOsGHqLMzdw2Wyfd-u4gr6eUnCdrBqU,2983
25
25
  wandb/apis/paginator.py,sha256=h4I_W9EjjOBiOQS7bsxHJinZwSJ-Ha-HkFKt02MtU4s,2199
26
26
  wandb/apis/importers/__init__.py,sha256=GQCWmQEjSZ9eCUjlth3v9tQcjOJyjyEY7gC3BPN7Y88,39
@@ -49,9 +49,9 @@ wandb/apis/reports/v1/__init__.py,sha256=dat5IoxIT4Ds0gJYh7kd_u01Lk2ArqgPtsF9PuV
49
49
  wandb/apis/reports/v2/__init__.py,sha256=z6cC7mTR35UPLYFwjnDZxodFoOO7KcFWOwePJqwH2iI,270
50
50
  wandb/apis/workspaces/__init__.py,sha256=l7rmQGzeR4XpAKiq5idMMPulve07fgDIMdl8MIQypFk,272
51
51
  wandb/beta/workflows.py,sha256=ENy_lmIyn3k_FHdD2ZO8HBaXdeoLrsPVbEfL_KYW8Ps,10527
52
- wandb/bin/wandb-core,sha256=V79VgZOspKLjgUmJzb92Rp1jbnKnT6HdsIUSqxA2Un8,11974656
52
+ wandb/bin/wandb-core,sha256=9dcMkhm0IJaMRMNaZBOsdjeo81-iGzTqiuI6p6cO-dE,11761152
53
53
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- wandb/cli/cli.py,sha256=8Pm9jnHjS8iv6h5PXt8wqojI1-KAHHYVjNSsKt1j5bw,100626
54
+ wandb/cli/cli.py,sha256=gV2qVdx-wLS4uuEz9WomgNtEYP5Tc68ZxoGwHqC-tYI,100738
55
55
  wandb/docker/__init__.py,sha256=Wkv5q5xCf9MAzLjGzg_QpuatP6pURCoKsiWpTj7G1jM,10894
56
56
  wandb/docker/auth.py,sha256=Qaf7C5t4mrGyswNTXKsxV3QBydY_RWqwP5teA8XZ_2I,15468
57
57
  wandb/docker/wandb-entrypoint.sh,sha256=ksJ_wObRwZxZtdu1Ahc1X8VNB1U68a3nleioDDBO-jU,1021
@@ -65,7 +65,7 @@ wandb/filesync/stats.py,sha256=RZJQD1rzV38HRAgUsFSN-aIKlOhg3w7_k2-MVGeo9Sk,3150
65
65
  wandb/filesync/step_checksum.py,sha256=V5jeeSkArxid081Zl4Z7G0bZ_4rbUJ3oYDAKQwHqdM0,4832
66
66
  wandb/filesync/step_prepare.py,sha256=QN3pcEkJdUMsEL3gpKsZqTa9D8obnWx8aLQVZ806Vws,5679
67
67
  wandb/filesync/step_upload.py,sha256=es123hTuRW9CDFFk8dNbd5_LM25IPzNirZZziHgn9yg,10663
68
- wandb/filesync/upload_job.py,sha256=jeUzY4IGqAHIz7dm0TR6STCi54aRdInVbJbgC2FVkdU,5613
68
+ wandb/filesync/upload_job.py,sha256=pqqHoMt-yYktz3s7QLGTz1xXYIQiWWTClI6A7yJQCbI,5640
69
69
  wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
70
  wandb/integration/magic.py,sha256=r97_Zv-rSoHf6c0cz3BBINyz9LjgyWqzahth3rKtWUA,17802
71
71
  wandb/integration/catboost/__init__.py,sha256=VZfvmNwDlzCJEdFdtFn8qkBOF7-7iHcO_IMzhJJgvko,132
@@ -159,42 +159,42 @@ wandb/proto/wandb_settings_pb2.py,sha256=Aq7nH9PsYXcPKFOPi0Oh2CAaCUpDoPfedycOleI
159
159
  wandb/proto/wandb_telemetry_pb2.py,sha256=bNLhk5I9SDqNvzxi_anYorfvZjv8nG4cMZQvDS0BT9Q,332
160
160
  wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
161
  wandb/proto/v3/wandb_base_pb2.py,sha256=TfmnqqxmajAojyOq2NgCBbyybb0DZQViQCw1H0WzXo4,2302
162
- wandb/proto/v3/wandb_internal_pb2.py,sha256=CBP6tPiz4xY9elOsCmOme0mzPiSWoQh86xI08Cuzrh0,107552
162
+ wandb/proto/v3/wandb_internal_pb2.py,sha256=e5A0s12vNcn7s1yj_ap63yuJSqjlhX_mVtkMdASYYS0,108479
163
163
  wandb/proto/v3/wandb_server_pb2.py,sha256=_UR_gBIiHMYiG4CjU2zTKD16Qrd0dXqslA_7VeqXpb8,13838
164
- wandb/proto/v3/wandb_settings_pb2.py,sha256=u58ZiHPvdg-Lm-o2ijljxf_jz-FNw06vhR9_BgYNb2g,19535
164
+ wandb/proto/v3/wandb_settings_pb2.py,sha256=Z_0qzHRllCoU0XA9xLZNvCsmAj_RgneO3QhtdX4l-u8,19804
165
165
  wandb/proto/v3/wandb_telemetry_pb2.py,sha256=cHAORColUwhRDgrUEzJruTqeal1KURVUgFteE_irNAI,13473
166
166
  wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
167
  wandb/proto/v4/wandb_base_pb2.py,sha256=C-hDafnFQQtkzyq4MkgwenHl4CJqJ6z7itKjLnFis54,1344
168
- wandb/proto/v4/wandb_internal_pb2.py,sha256=aWUv4tUnI2x6H-6aX-5dT9IMS6cxXhJdQObrMPn0Swo,48640
168
+ wandb/proto/v4/wandb_internal_pb2.py,sha256=-UUwyQyrFJ3ysBEJV13qSGmlhl3DDm5ipLn03mfaknE,49140
169
169
  wandb/proto/v4/wandb_server_pb2.py,sha256=0m6kJn4oG2RAdi1WFR9g6baiZfeB25F3snCIFhl90k8,6053
170
- wandb/proto/v4/wandb_settings_pb2.py,sha256=lQu1RKyjBqWSGzCLKD39tUXlradwEWw06bOcPqhrUGc,16199
170
+ wandb/proto/v4/wandb_settings_pb2.py,sha256=GI0xqS2DinrAKQm4qRblSft6_XMbYy1qKKALz2lCts0,16468
171
171
  wandb/proto/v4/wandb_telemetry_pb2.py,sha256=19GVAVDbiEuc_0Jtch1eF81JSlYXMslcFc3Rm_fp8us,10855
172
172
  wandb/proto/v5/wandb_base_pb2.py,sha256=JegTdMe2YWCrglu-GpI2lVqFxRHoP8hQc2n8bPpv1zE,1471
173
- wandb/proto/v5/wandb_internal_pb2.py,sha256=OHfpJRkJ4Ls_rg4Upqo-3A0lREyJQdm-QgiOi9Rb-hE,52652
173
+ wandb/proto/v5/wandb_internal_pb2.py,sha256=Uag8pygbTwzWZ1aR6frZ6JafrKNrQ_gPIYJmGxbb8a8,53176
174
174
  wandb/proto/v5/wandb_server_pb2.py,sha256=icyGXLmqZLS6gDQsdYO_G75pXVII_JweUNIa_HOaWnA,6540
175
- wandb/proto/v5/wandb_settings_pb2.py,sha256=gpMh8q3XxkTunhPQ23IOAvQUcHnCR-onAEXTumjCu6U,16508
175
+ wandb/proto/v5/wandb_settings_pb2.py,sha256=scE47j8a8xawW2JXz3kULrc9XPYhNOPbk9zWsRoCfFA,16777
176
176
  wandb/proto/v5/wandb_telemetry_pb2.py,sha256=5fBL1ngzpWdQfvDIC1G_ErP3f3K7CCW5PS0BfcSAC3Q,11102
177
177
  wandb/sdk/__init__.py,sha256=b1OXibT1Wey9UW21vfki3rPPN4yJOFvy4M-qDEIdQmY,842
178
178
  wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
179
179
  wandb/sdk/wandb_config.py,sha256=w1TaryDssJKF0_r1ps41HTLbMHN1O-bE3A7exd1cLq8,11123
180
180
  wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
181
- wandb/sdk/wandb_init.py,sha256=fpYlHbikNYR5CcPz52mVHwh72jbhyk_0ULS--PNo2ec,49909
182
- wandb/sdk/wandb_login.py,sha256=OQJ_PdCoZphA3bDJ56_xuwnEJBrGiucETrvjdiypfF4,11337
183
- wandb/sdk/wandb_manager.py,sha256=dnV3vFFrXwxgbi_l73UVo28Uf5pRj_-UjxN26rfbMxE,6880
181
+ wandb/sdk/wandb_init.py,sha256=U68L1JeCSQu9X7aoBODpORMVBI3msOa2XVzr08URf1o,50564
182
+ wandb/sdk/wandb_login.py,sha256=3jL5BufOtcRplOKt2n9gAik0SuH3tt8bQ3G1HTyGs28,11511
183
+ wandb/sdk/wandb_manager.py,sha256=5D5waEeym_R_Ho2GuXaCfZZCOK7O2L4Oc4yvIdgaxbA,7235
184
184
  wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
185
185
  wandb/sdk/wandb_require.py,sha256=ecGIPaRLUemYuCPNpeJKqZtpG_gieMfpQEd9mfqiB44,2950
186
186
  wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
187
- wandb/sdk/wandb_run.py,sha256=V33oAR06blTQyhIAauGPKWqvPP--AWl-Kpcxshv4SNw,165136
188
- wandb/sdk/wandb_settings.py,sha256=tB-DxjLid_HjcuHBdpSZgH7uAfSseTiU3k9cvWygfBw,76138
189
- wandb/sdk/wandb_setup.py,sha256=z7-VK52ezzCkLubW7lVXu-D9IA3q9GJg5AMlGW1vePo,11413
187
+ wandb/sdk/wandb_run.py,sha256=5fq9uBPumKANT8qyqG1XBX64qHtleHxsfFRsS-_64kY,166036
188
+ wandb/sdk/wandb_settings.py,sha256=uf-UvTWN2Y2wXPH-G5LgBYk85JyMnzLXQr4nXJJYjz0,76693
189
+ wandb/sdk/wandb_setup.py,sha256=U1nmZSXQ7LlZsajlkh6qD5MAJtyLnRQqt-wFNTcgKiM,11243
190
190
  wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
191
191
  wandb/sdk/wandb_sweep.py,sha256=5cSa-T1HooltrUwWQiKEUnU655ss1QPkylax-Q_vu7Q,4004
192
192
  wandb/sdk/wandb_sync.py,sha256=Y_eZ_xW3q9oRAlFUo7s9n2V55z6SP-rd5xr5g6HDKR0,2348
193
193
  wandb/sdk/wandb_watch.py,sha256=--65AwGFLLj1sSUvI4cZunjvhdxXnFTktpzaxEFtdJk,4026
194
194
  wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
- wandb/sdk/artifacts/artifact.py,sha256=YJaURctUZUMR-VyyxK8tvVIIsKinDm-YNyH5oLP-jKs,91182
195
+ wandb/sdk/artifacts/artifact.py,sha256=0waaRJhKrKop_V6XEJ2ptzsU1RxIDMKqwpGDFc_i1Zk,90919
196
196
  wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
197
- wandb/sdk/artifacts/artifact_file_cache.py,sha256=c7eDit1XH-zj4MjAKwnIyZ6yEN7kDo4ZbpufIPrYhMM,8980
197
+ wandb/sdk/artifacts/artifact_file_cache.py,sha256=rjIKi5oBrev_NVgI60oydvWGl95KsBmYGYeax1XsKFY,10091
198
198
  wandb/sdk/artifacts/artifact_instance_cache.py,sha256=6k5VvyWyRfMCJsBDST3IBs91uctfIZdxZ74DJg-Pa00,488
199
199
  wandb/sdk/artifacts/artifact_manifest.py,sha256=Pdm08YTD-73vsqZRTT0cpFejRkdZJkG0lQYlUwv4HJ8,2575
200
200
  wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=V5ARUzxUHgkKOgkh8ksf9Wy4yU5ZrjY99NtjSp_a-lI,7462
@@ -220,7 +220,7 @@ wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=Tu3m7FPaNlEjE
220
220
  wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=i72kcGL-Ikt8yDBYczQNj6PeCPMsHHFWzGvRiN7QJog,2633
221
221
  wandb/sdk/artifacts/storage_policies/__init__.py,sha256=G8quZY8-eynVVXmNBbiLGfUoI2P1rOE-LOmpzOwNJe0,230
222
222
  wandb/sdk/artifacts/storage_policies/register.py,sha256=azfof-H42vIuvndo9hvN4cZ3UXWG-nZcrFQ1QFL9oIc,50
223
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=J6uaBu3HOS9xQh8wsSlmJxn7mgRP1mEF1MMfRr10YQ0,14225
223
+ wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=LynEL6zRwO7YXofV5TtSdbRrTwTbLjW-bcTOmKJ2vmY,14437
224
224
  wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
225
  wandb/sdk/backend/backend.py,sha256=zdW9iehb6PRRdQ_vfftUa5naOgWwjV1QFDWijoysQ0c,8548
226
226
  wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -249,10 +249,10 @@ wandb/sdk/integration_utils/auto_logging.py,sha256=veVzow8oICc0MzGj2_HkyAVPAbW6r
249
249
  wandb/sdk/integration_utils/data_logging.py,sha256=DtSEZB-TzxQKhjm9IXNxDeOAUZyDXGYrfRvVh2Cju54,20008
250
250
  wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
251
251
  wandb/sdk/interface/constants.py,sha256=GKZ2hATTBCt7yU8kloafZR34yLChiI36O_VtxZZbQyg,64
252
- wandb/sdk/interface/interface.py,sha256=VMr11kpx6cc63HKJFQlttWaTYHk483PlS4Yk1UJKHSM,34915
252
+ wandb/sdk/interface/interface.py,sha256=zf8qkm7g9pQptC6vd1GjJvZl3Br4w2kKSBCwp8Bkj4E,35217
253
253
  wandb/sdk/interface/interface_queue.py,sha256=QxHmramXIHs4rQEzIk3qzF9ui5BPEAcXSGPt8TZjaEE,2026
254
254
  wandb/sdk/interface/interface_relay.py,sha256=R28bIhebZux7PwFeJmO8wOOkm_uCjmQ2T5lKKy3sL-Y,1567
255
- wandb/sdk/interface/interface_shared.py,sha256=NZBQjyre1nlnlHtbvxNnWhGVA2NXAwfaVOpEMawckrw,21143
255
+ wandb/sdk/interface/interface_shared.py,sha256=soKp6vxj63eb83qse0tUWSQ31j-J6QnaAvnVBj4o54Q,21187
256
256
  wandb/sdk/interface/interface_sock.py,sha256=aurQAyibPjE19ZWi2lCCDsLjo4v3Pi5f59rL1VZ9J0w,2045
257
257
  wandb/sdk/interface/message_future.py,sha256=SlMF8psfA1AW3iVuB_PVLo41bC4U-AAvek1Zlh31mdE,712
258
258
  wandb/sdk/interface/message_future_poll.py,sha256=8a7GcNtCyohHUnxoJ5sx6RRQa2Vu_hjiBqeQ-UQ0RTc,1460
@@ -267,16 +267,16 @@ wandb/sdk/internal/datastore.py,sha256=BPDqVbpOMMbu50haTrKXJ_F-_GFTRp79wD1TgOeIR
267
267
  wandb/sdk/internal/file_pusher.py,sha256=p2a19_6mP0QJYtY1IwHXvahsx6Oj2lTRSmv6mhEibjM,6284
268
268
  wandb/sdk/internal/file_stream.py,sha256=-euEOevpl32WiFyruJv3zgeIqAMKd2Owe9GUM5UI2ec,26619
269
269
  wandb/sdk/internal/flow_control.py,sha256=RL1lKVRwxV9vDwIMBz9L07p25eZgDi5XSDanHfbNzF8,8847
270
- wandb/sdk/internal/handler.py,sha256=HRcHGiPcNIL4-5Ty0_-tZy396QXHQEyISe1npuxlz5I,34589
270
+ wandb/sdk/internal/handler.py,sha256=ll0JUeIGFmwvS1Q6YN4MWPRB84lVagjciEvDLPGqcMo,34597
271
271
  wandb/sdk/internal/internal.py,sha256=b-oc7U7P7xKiL8s-HqTPScDJpYvilyCOEnnBIt9-Clo,13139
272
- wandb/sdk/internal/internal_api.py,sha256=6wlp3Rw902Vf5jGMPfflJMdTJx2aG5OAz9WCASuh6V8,149047
272
+ wandb/sdk/internal/internal_api.py,sha256=5k7sHeYEdhFJde3Ilx_j6N3T5ATrBCCju054MQN90Sk,151416
273
273
  wandb/sdk/internal/internal_util.py,sha256=LtusH3QYE12A4vH-7-gHXX0O7TfJ2haESf0_MYdYe50,2754
274
274
  wandb/sdk/internal/job_builder.py,sha256=9iMyyEmUfe3-WE-bVpR5X5ci-67kYX1VwG1n2SK7ukA,23326
275
275
  wandb/sdk/internal/profiler.py,sha256=QM5R8-0oWE7WhllhpPEAEwCyB6Uk62HATz8e2F5qIUk,2426
276
276
  wandb/sdk/internal/progress.py,sha256=Tfz1DJNlIj80-Ghb2b7TzHBftgXkfPWwwHlO2NK8UyA,2529
277
277
  wandb/sdk/internal/run.py,sha256=rkEwqdaYPUh_oB-gdCnQ1JIpSHTMoOVadV9CJEgy-kA,707
278
278
  wandb/sdk/internal/sample.py,sha256=QE80NZeW-UsUZBlnf9hG_2KNIZWmLzEpZStYTuL4fOI,2512
279
- wandb/sdk/internal/sender.py,sha256=Xb7nJovZ5rjbVBd9r6CfMboz1-8oMhOtmWs3iWQaj00,67698
279
+ wandb/sdk/internal/sender.py,sha256=fMMH2r_WLaMoJRQP3lIiaHvbTySGZKSDJy3YNZDwLyU,68169
280
280
  wandb/sdk/internal/sender_config.py,sha256=LZaQY4_bzb9003D2j6aynGqv-Mr2GwUGcNmnQrhJOJw,6964
281
281
  wandb/sdk/internal/settings_static.py,sha256=tUieif_B36dCFqJKwfcr4bLF0KVgFhGN6q-vg3orRzw,3616
282
282
  wandb/sdk/internal/tb_watcher.py,sha256=_lOVLuxKBB8EFXdDpwBB6pcS5nC6B3Q2B5jKqsJ8fYU,19206
@@ -313,7 +313,7 @@ wandb/sdk/launch/loader.py,sha256=gka4OPM9Co3xyjNXFkrHW2IgRHrAMZqqqkiLx4E-YpE,91
313
313
  wandb/sdk/launch/utils.py,sha256=3BeODQ7SIOKuFXmZmUChaGmWNKbrGm-Wuwt2Z57vTDk,26402
314
314
  wandb/sdk/launch/wandb_reference.py,sha256=lTPdDlCkx2jTgQBRbXcHR1A1vXKshOYM-_hscqvDzeQ,4391
315
315
  wandb/sdk/launch/agent/__init__.py,sha256=J5t86fGK2bptnn6SDIxgSGssQ19dIzjSptFZ1lXnYsc,90
316
- wandb/sdk/launch/agent/agent.py,sha256=yedUMWEKsOdkdchAPNpYJKNPCEFcEl3YQPkeFs8LztU,37263
316
+ wandb/sdk/launch/agent/agent.py,sha256=ei34BPPWFfd3NJTgMv1kNNpQ-alGqStZYv0Lrz4kUQc,37322
317
317
  wandb/sdk/launch/agent/config.py,sha256=_5Ij3s2IrVnPq51kICcCn2HIcBStM7jUVXKGYn5KRdg,9808
318
318
  wandb/sdk/launch/agent/job_status_tracker.py,sha256=BS6aDQVJ_9g5th8QUmx-tYgk3o3u1CaWuQC6-D3CfNw,1866
319
319
  wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=vNqdkL6DuyIoymVq84-NZ619zRuFQAQnG1eGZun45UY,1561
@@ -322,7 +322,7 @@ wandb/sdk/launch/builder/abstract.py,sha256=CNEtAIn0obqJyVNyyLqgjTzF8A4MR4aWlLUd
322
322
  wandb/sdk/launch/builder/build.py,sha256=qmcdf6r0oK5_6CpbOzQSZSv2cTVq15N9mZWyhe7d12A,11080
323
323
  wandb/sdk/launch/builder/context_manager.py,sha256=pri9aPNLZm8MQIJVekmSIc604PdXOlTKbbyS867i22M,9853
324
324
  wandb/sdk/launch/builder/docker_builder.py,sha256=a3Ijnqr8eW3G0Eoqq053CpsED7evoncjk-PfQ7IqsWw,6493
325
- wandb/sdk/launch/builder/kaniko_builder.py,sha256=XbQkYLB9jLC6bOn3U_hFa0Q0WxbJT53i-NtYpiLuelE,23373
325
+ wandb/sdk/launch/builder/kaniko_builder.py,sha256=ERzVYUOQkIryjs9esWsArzMmLeYYCdoEXFkd-Zq3bhg,24253
326
326
  wandb/sdk/launch/builder/noop.py,sha256=Mr_3IKCmfwX45xztku4uVzeGZh2fbuwylNbNBS3Pjmk,1958
327
327
  wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=_UKbEWu8PBEXEELSYxlBPFWtNQUUMrJgzwXIatV1jA0,7413
328
328
  wandb/sdk/launch/builder/templates/dockerfile.py,sha256=b-wKn1YguEjxmNAHeRBD0pwur1w_ixtkre2znyZHxS0,2356
@@ -332,8 +332,8 @@ wandb/sdk/launch/environment/azure_environment.py,sha256=75Wamar_QS4lr0RSjdsrENR
332
332
  wandb/sdk/launch/environment/gcp_environment.py,sha256=68PDJaYlT_YXXqbFseXg_AlTR7CDF4R3Qonp6AXfs2g,13069
333
333
  wandb/sdk/launch/environment/local_environment.py,sha256=UeG3fL5w4kbN9SCOvKlJaQwYYne0sB2dymwwcCxbi_s,2324
334
334
  wandb/sdk/launch/inputs/files.py,sha256=wLBb6riNplCtUY_p0uVwyCYH8La7H6naUpB5RVGiMUU,4833
335
- wandb/sdk/launch/inputs/internal.py,sha256=F4UjKYhdpWTktdlY69QwDGbKG8CCI0-pVyxHTt67dOA,6545
336
- wandb/sdk/launch/inputs/manage.py,sha256=eM8B8vh43-yP9N3nFLZionztGODL1apDv54QB798KiU,3881
335
+ wandb/sdk/launch/inputs/internal.py,sha256=Nl0snraGpu-PpVXlQitOPcaVOgdDNPKKiXxgOo_kBos,9693
336
+ wandb/sdk/launch/inputs/manage.py,sha256=OeU9nx_NnpCG2qxXsQgZRQiZBDGiW6046j0RUD9lYI8,5116
337
337
  wandb/sdk/launch/registry/abstract.py,sha256=rpPQlTfOTA6wWTU1DdtbnM9myJxQAwXrg4SQPbo9ORY,1194
338
338
  wandb/sdk/launch/registry/anon.py,sha256=tpo6zCREdt3-uUCc47cpX5e97y2QIfRq9lUrh_9zWNg,972
339
339
  wandb/sdk/launch/registry/azure_container_registry.py,sha256=dc9MomABu6RWA4VVaRFItyJuY1WamKZO7qxsSYyT4Ns,4694
@@ -349,18 +349,19 @@ wandb/sdk/launch/runner/local_process.py,sha256=sGd4wdHX9hANoOUi4KToWL8zJbbozRta
349
349
  wandb/sdk/launch/runner/sagemaker_runner.py,sha256=nVcCFEQezIvYHTcSu9KloDH64WmVMX5GFjeB6zdZGDA,15757
350
350
  wandb/sdk/launch/runner/vertex_runner.py,sha256=H5ATA4N9NLoJhEgBIEg_kcqH-lfW0zXSw7TcM6EAzDU,8550
351
351
  wandb/sdk/launch/sweeps/__init__.py,sha256=GuwdnDZMewJlrPc_Ik3V5rkbe9jchp6j8nCiAYMAo0s,952
352
- wandb/sdk/launch/sweeps/scheduler.py,sha256=261dMBpC200P1vqm1GQ0wYFa091Uut0XMKMWeH1Zhlo,27579
352
+ wandb/sdk/launch/sweeps/scheduler.py,sha256=C77O4Dk2mA5_jHwKBib-8uYBMdg0SRZP7SgWjyFRvW4,27673
353
353
  wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=KeRVj_cjabVR6ZY4Qx5IqiH3nQHeT87_cAYzESBUEKU,3091
354
354
  wandb/sdk/launch/sweeps/utils.py,sha256=MJCKDZY7SQ2Wrv1EWUCFo1YflMkuJAYIZFAswP0VCDw,10153
355
355
  wandb/sdk/lib/__init__.py,sha256=_sOt85qPxtPyM_LaN0IE6dO1CImzwXJXzVHC7R24VBE,188
356
356
  wandb/sdk/lib/_settings_toposort_generate.py,sha256=eA4xFE750evX-Upox1SpXvAoNffNAy7_C-9ydyeC4Qw,5002
357
- wandb/sdk/lib/_settings_toposort_generated.py,sha256=Jsz3chhMLJFIUug9PQMxZh8418EI5ZVmq6HE4zu110g,5413
357
+ wandb/sdk/lib/_settings_toposort_generated.py,sha256=6epUX8oa3nxVl66Kg-QufsLp8rkgnkpZ-oXGdPswItk,5497
358
358
  wandb/sdk/lib/_wburls_generate.py,sha256=qW6UXaZOHKT_z13MW_Lt3KVhfswutNoNydFs69OwgqI,465
359
359
  wandb/sdk/lib/_wburls_generated.py,sha256=ZDmX_ZYGg5Ag3WNu_Ti-vLB3ctN0NNr-dYkiCiXPQW4,450
360
360
  wandb/sdk/lib/apikey.py,sha256=Y41lWKK1nfNUyWWD5ShWt23kg_DNYTyRupCA9Ls8IDE,9468
361
361
  wandb/sdk/lib/capped_dict.py,sha256=HuFhPHl0e_pK6ETDxYh5RIPO-46I3EjXgzFdqbJTXDs,846
362
362
  wandb/sdk/lib/config_util.py,sha256=KaSu8CSO1XFHJRBwo-OW0r802isltB3cFO3U1LeM-ec,3018
363
363
  wandb/sdk/lib/console.py,sha256=9G6FtYE3e6NvPps8yZPttVzG7Ti8t87pn0oD2vPg-lI,1070
364
+ wandb/sdk/lib/credentials.py,sha256=DkYAb00zXMKdmJX-oUjKThh_TutoNFDcDFQilTrXOD8,4878
364
365
  wandb/sdk/lib/deprecate.py,sha256=-w-0N8zNleOYZRYBTrY5_UN4Y1lYa4pyapC7U3Q7www,1504
365
366
  wandb/sdk/lib/disabled.py,sha256=ChZjPVGOSuU4kS9uAYn0IluA4XXLBw7S6Wf_tqMQxrQ,3767
366
367
  wandb/sdk/lib/exit_hooks.py,sha256=m2I_DXDrnWk8LvXYQMvbSqegzuK2dMCGfEgxGVrfK5c,1594
@@ -393,7 +394,7 @@ wandb/sdk/lib/sparkline.py,sha256=x5XSsLn0bV8hLuy54K4TToRcEZtRHUugK8VDiHFo93o,14
393
394
  wandb/sdk/lib/telemetry.py,sha256=1_QPck47Zj0b5dA37lIfpev1tHaHJHoNaiXKjyvdPoA,2852
394
395
  wandb/sdk/lib/timed_input.py,sha256=XF03SXTQj0AysHiIV-LKtbwxtSUx0E7xts7zDPs9kJQ,3362
395
396
  wandb/sdk/lib/timer.py,sha256=Ar1t8f3OFAA4PB2fB2MT9D41y3g2Or56wSAYezvdXqo,459
396
- wandb/sdk/lib/tracelog.py,sha256=_Ng37iwpAxEevt8UAEkUl9cLUim790CskU6k3CNc-A0,7795
397
+ wandb/sdk/lib/tracelog.py,sha256=IvK-t8cQ4AIMZ0hXBqDkJZdX-fBNSwZ422zsRw_nT5M,7827
397
398
  wandb/sdk/lib/wburls.py,sha256=m2CWuFtFPD9R4SzEEsKN-iSwCKiKr6dhOi8_WYrvzHY,1481
398
399
  wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
399
400
  wandb/sdk/service/_startup_debug.py,sha256=piYn6Jg-uR5W-EkablqikEpenyYPQuoQynrPq-iccdo,610
@@ -812,8 +813,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
812
813
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
813
814
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
814
815
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
815
- wandb-0.17.3.dist-info/METADATA,sha256=wgVbYHPVjQq7j-JW56Y2JUUyV8Nk6tjVm2i04bINOLs,10047
816
- wandb-0.17.3.dist-info/WHEEL,sha256=M1tmngCHfER8pIPuS8Dt7mqF1TawUl-fJoa23auO3MM,93
817
- wandb-0.17.3.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
818
- wandb-0.17.3.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
819
- wandb-0.17.3.dist-info/RECORD,,
816
+ wandb-0.17.5.dist-info/METADATA,sha256=bIFHpDndbwGaGh4sip_nuhnf8TeECcLhriJ_tlVDSmc,10047
817
+ wandb-0.17.5.dist-info/WHEEL,sha256=M1tmngCHfER8pIPuS8Dt7mqF1TawUl-fJoa23auO3MM,93
818
+ wandb-0.17.5.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
819
+ wandb-0.17.5.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
820
+ wandb-0.17.5.dist-info/RECORD,,