wandb 0.22.1__py3-none-macosx_12_0_arm64.whl → 0.22.2__py3-none-macosx_12_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.
Files changed (49) hide show
  1. wandb/__init__.py +1 -1
  2. wandb/__init__.pyi +6 -3
  3. wandb/bin/gpu_stats +0 -0
  4. wandb/bin/wandb-core +0 -0
  5. wandb/cli/beta.py +16 -2
  6. wandb/cli/beta_leet.py +74 -0
  7. wandb/cli/cli.py +34 -7
  8. wandb/proto/v3/wandb_api_pb2.py +86 -0
  9. wandb/proto/v3/wandb_internal_pb2.py +352 -351
  10. wandb/proto/v3/wandb_settings_pb2.py +2 -2
  11. wandb/proto/v4/wandb_api_pb2.py +37 -0
  12. wandb/proto/v4/wandb_internal_pb2.py +352 -351
  13. wandb/proto/v4/wandb_settings_pb2.py +2 -2
  14. wandb/proto/v5/wandb_api_pb2.py +38 -0
  15. wandb/proto/v5/wandb_internal_pb2.py +352 -351
  16. wandb/proto/v5/wandb_settings_pb2.py +2 -2
  17. wandb/proto/v6/wandb_api_pb2.py +48 -0
  18. wandb/proto/v6/wandb_internal_pb2.py +352 -351
  19. wandb/proto/v6/wandb_settings_pb2.py +2 -2
  20. wandb/proto/wandb_api_pb2.py +18 -0
  21. wandb/proto/wandb_generate_proto.py +1 -0
  22. wandb/sdk/artifacts/artifact.py +30 -30
  23. wandb/sdk/artifacts/artifact_manifest_entry.py +6 -12
  24. wandb/sdk/artifacts/storage_handler.py +18 -12
  25. wandb/sdk/artifacts/storage_handlers/azure_handler.py +11 -6
  26. wandb/sdk/artifacts/storage_handlers/gcs_handler.py +9 -6
  27. wandb/sdk/artifacts/storage_handlers/http_handler.py +9 -4
  28. wandb/sdk/artifacts/storage_handlers/local_file_handler.py +10 -6
  29. wandb/sdk/artifacts/storage_handlers/multi_handler.py +5 -4
  30. wandb/sdk/artifacts/storage_handlers/s3_handler.py +10 -8
  31. wandb/sdk/artifacts/storage_handlers/tracking_handler.py +6 -4
  32. wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +24 -21
  33. wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +4 -2
  34. wandb/sdk/artifacts/storage_policies/_multipart.py +187 -0
  35. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +61 -242
  36. wandb/sdk/artifacts/storage_policy.py +25 -12
  37. wandb/sdk/data_types/object_3d.py +67 -2
  38. wandb/sdk/internal/job_builder.py +27 -10
  39. wandb/sdk/internal/sender.py +4 -1
  40. wandb/sdk/launch/create_job.py +2 -1
  41. wandb/sdk/lib/progress.py +1 -70
  42. wandb/sdk/wandb_init.py +1 -1
  43. wandb/sdk/wandb_run.py +5 -2
  44. wandb/sdk/wandb_settings.py +13 -12
  45. {wandb-0.22.1.dist-info → wandb-0.22.2.dist-info}/METADATA +1 -1
  46. {wandb-0.22.1.dist-info → wandb-0.22.2.dist-info}/RECORD +49 -42
  47. {wandb-0.22.1.dist-info → wandb-0.22.2.dist-info}/WHEEL +0 -0
  48. {wandb-0.22.1.dist-info → wandb-0.22.2.dist-info}/entry_points.txt +0 -0
  49. {wandb-0.22.1.dist-info → wandb-0.22.2.dist-info}/licenses/LICENSE +0 -0
@@ -132,6 +132,7 @@ def get_min_supported_for_source_dict(
132
132
 
133
133
  class JobBuilder:
134
134
  _settings: SettingsStatic
135
+ _files_dir: str
135
136
  _metadatafile_path: Optional[str]
136
137
  _requirements_path: Optional[str]
137
138
  _config: Optional[Dict[str, Any]]
@@ -146,8 +147,26 @@ class JobBuilder:
146
147
  _verbose: bool
147
148
  _services: Dict[str, str]
148
149
 
149
- def __init__(self, settings: SettingsStatic, verbose: bool = False):
150
+ def __init__(
151
+ self,
152
+ settings: SettingsStatic,
153
+ verbose: bool = False,
154
+ *,
155
+ files_dir: str,
156
+ ):
157
+ """Instantiate a JobBuilder.
158
+
159
+ Args:
160
+ settings: Parameters for the job builder.
161
+ In a run, this is the run's settings.
162
+ Otherwise, this is a set of undocumented parameters,
163
+ all of which should be made explicit like files_dir.
164
+ files_dir: The directory where to write files.
165
+ In a run, this should be the run's files directory.
166
+ """
150
167
  self._settings = settings
168
+ self._files_dir = files_dir
169
+
151
170
  self._metadatafile_path = None
152
171
  self._requirements_path = None
153
172
  self._config = None
@@ -460,9 +479,7 @@ class JobBuilder:
460
479
  )
461
480
  return None
462
481
 
463
- if not os.path.exists(
464
- os.path.join(self._settings.files_dir, REQUIREMENTS_FNAME)
465
- ):
482
+ if not os.path.exists(os.path.join(self._files_dir, REQUIREMENTS_FNAME)):
466
483
  self._log_if_verbose(
467
484
  "No requirements.txt found, not creating job artifact. See https://docs.wandb.ai/guides/launch/create-job",
468
485
  "warn",
@@ -471,7 +488,7 @@ class JobBuilder:
471
488
  metadata = self._handle_metadata_file()
472
489
  if metadata is None:
473
490
  self._log_if_verbose(
474
- f"Ensure read and write access to run files dir: {self._settings.files_dir}, control this via the WANDB_DIR env var. See https://docs.wandb.ai/guides/track/environment-variables",
491
+ f"Ensure read and write access to run files dir: {self._files_dir}, control this via the WANDB_DIR env var. See https://docs.wandb.ai/guides/track/environment-variables",
475
492
  "warn",
476
493
  )
477
494
  return None
@@ -560,15 +577,15 @@ class JobBuilder:
560
577
  f.write(json.dumps(source_info, indent=4))
561
578
 
562
579
  artifact.add_file(
563
- os.path.join(self._settings.files_dir, REQUIREMENTS_FNAME),
580
+ os.path.join(self._files_dir, REQUIREMENTS_FNAME),
564
581
  name=FROZEN_REQUIREMENTS_FNAME,
565
582
  )
566
583
 
567
584
  if source_type == "repo":
568
585
  # add diff
569
- if os.path.exists(os.path.join(self._settings.files_dir, DIFF_FNAME)):
586
+ if os.path.exists(os.path.join(self._files_dir, DIFF_FNAME)):
570
587
  artifact.add_file(
571
- os.path.join(self._settings.files_dir, DIFF_FNAME),
588
+ os.path.join(self._files_dir, DIFF_FNAME),
572
589
  name=DIFF_FNAME,
573
590
  )
574
591
 
@@ -619,8 +636,8 @@ class JobBuilder:
619
636
  def _handle_metadata_file(
620
637
  self,
621
638
  ) -> Optional[Dict]:
622
- if os.path.exists(os.path.join(self._settings.files_dir, METADATA_FNAME)):
623
- with open(os.path.join(self._settings.files_dir, METADATA_FNAME)) as f:
639
+ if os.path.exists(os.path.join(self._files_dir, METADATA_FNAME)):
640
+ with open(os.path.join(self._files_dir, METADATA_FNAME)) as f:
624
641
  metadata: Dict = json.load(f)
625
642
  return metadata
626
643
 
@@ -311,7 +311,10 @@ class SendManager:
311
311
  self._output_raw_file = None
312
312
 
313
313
  # job builder
314
- self._job_builder = JobBuilder(settings)
314
+ self._job_builder = JobBuilder(
315
+ settings,
316
+ files_dir=settings.files_dir,
317
+ )
315
318
 
316
319
  time_now = time.monotonic()
317
320
  self._debounce_config_time = time_now
@@ -417,10 +417,11 @@ def _configure_job_builder_for_partial(tmpdir: str, job_source: str) -> JobBuild
417
417
  if job_source == "code":
418
418
  job_source = "artifact"
419
419
 
420
- settings = wandb.Settings(x_files_dir=tmpdir, job_source=job_source)
420
+ settings = wandb.Settings(job_source=job_source)
421
421
  job_builder = JobBuilder(
422
422
  settings=settings, # type: ignore
423
423
  verbose=True,
424
+ files_dir=tmpdir,
424
425
  )
425
426
  job_builder._partial = True
426
427
  # never allow notebook runs
wandb/sdk/lib/progress.py CHANGED
@@ -93,7 +93,6 @@ class ProgressPrinter:
93
93
  progress_text_area: p.DynamicText | None,
94
94
  default_text: str,
95
95
  ) -> None:
96
- self._show_operation_stats = True
97
96
  self._printer = printer
98
97
  self._progress_text_area = progress_text_area
99
98
  self._default_text = default_text
@@ -110,14 +109,10 @@ class ProgressPrinter:
110
109
 
111
110
  if isinstance(progress, pb.OperationStats):
112
111
  self._update_operation_stats([progress])
113
- elif self._show_operation_stats:
112
+ else:
114
113
  self._update_operation_stats(
115
114
  list(response.operation_stats for response in progress)
116
115
  )
117
- elif len(progress) == 1:
118
- self._update_single_run(progress[0])
119
- else:
120
- self._update_multiple_runs(progress)
121
116
 
122
117
  self._tick += 1
123
118
 
@@ -149,65 +144,6 @@ class ProgressPrinter:
149
144
  self._printer.display(line)
150
145
  self._last_printed_line = line
151
146
 
152
- def _update_single_run(
153
- self,
154
- progress: pb.PollExitResponse,
155
- ) -> None:
156
- stats = progress.pusher_stats
157
- line = (
158
- f"{_megabytes(stats.uploaded_bytes):.3f} MB"
159
- f" of {_megabytes(stats.total_bytes):.3f} MB uploaded"
160
- )
161
-
162
- if stats.deduped_bytes > 0:
163
- line += f" ({_megabytes(stats.deduped_bytes):.3f} MB deduped)"
164
-
165
- if stats.total_bytes > 0:
166
- self._update_progress_text(
167
- line,
168
- stats.uploaded_bytes / stats.total_bytes,
169
- )
170
- else:
171
- self._update_progress_text(line, 1.0)
172
-
173
- def _update_multiple_runs(
174
- self,
175
- progress_list: list[pb.PollExitResponse],
176
- ) -> None:
177
- total_files = 0
178
- uploaded_bytes = 0
179
- total_bytes = 0
180
-
181
- for progress in progress_list:
182
- total_files += progress.file_counts.wandb_count
183
- total_files += progress.file_counts.media_count
184
- total_files += progress.file_counts.artifact_count
185
- total_files += progress.file_counts.other_count
186
-
187
- uploaded_bytes += progress.pusher_stats.uploaded_bytes
188
- total_bytes += progress.pusher_stats.total_bytes
189
-
190
- line = (
191
- f"Processing {len(progress_list)} runs with {total_files} files"
192
- f" ({_megabytes(uploaded_bytes):.2f} MB"
193
- f" / {_megabytes(total_bytes):.2f} MB)"
194
- )
195
-
196
- if total_bytes > 0:
197
- self._update_progress_text(line, uploaded_bytes / total_bytes)
198
- else:
199
- self._update_progress_text(line, 1.0)
200
-
201
- def _update_progress_text(self, text: str, progress: float) -> None:
202
- if text == self._last_printed_line:
203
- return
204
- self._last_printed_line = text
205
-
206
- if self._progress_text_area:
207
- self._progress_text_area.set_text(text)
208
- else:
209
- self._printer.progress_update(text + "\r", progress)
210
-
211
147
 
212
148
  class _DynamicOperationStatsPrinter:
213
149
  """Single-use object that writes operation stats into a text area."""
@@ -318,8 +254,3 @@ def _time_to_string(seconds: float) -> str:
318
254
  hours = int(seconds / (60 * 60))
319
255
  minutes = int((seconds / 60) % 60)
320
256
  return f"{hours}h{minutes}m"
321
-
322
-
323
- def _megabytes(bytes: int) -> float:
324
- """Returns the number of megabytes in `bytes`."""
325
- return bytes / (1 << 20)
wandb/sdk/wandb_init.py CHANGED
@@ -727,7 +727,7 @@ class _WandbInit:
727
727
  drun = Run(
728
728
  settings=Settings(
729
729
  mode="disabled",
730
- x_files_dir=tempfile.gettempdir(),
730
+ root_dir=tempfile.gettempdir(),
731
731
  run_id=run_id,
732
732
  run_tags=tuple(),
733
733
  run_notes=None,
wandb/sdk/wandb_run.py CHANGED
@@ -2051,6 +2051,9 @@ class Run:
2051
2051
  When given an absolute path or glob and no `base_path`, one
2052
2052
  directory level is preserved as in the example above.
2053
2053
 
2054
+ Files are automatically deduplicated: calling `save()` multiple times
2055
+ on the same file without modifications will not re-upload it.
2056
+
2054
2057
  Args:
2055
2058
  glob_str: A relative or absolute path or Unix glob.
2056
2059
  base_path: A path to use to infer a directory structure; see examples.
@@ -2075,10 +2078,10 @@ class Run:
2075
2078
  run.save("these/are/myfiles/*", base_path="these")
2076
2079
  # => Saves files in an "are/myfiles/" folder in the run.
2077
2080
 
2078
- run.save("/User/username/Documents/run123/*.txt")
2081
+ run.save("/Users/username/Documents/run123/*.txt")
2079
2082
  # => Saves files in a "run123/" folder in the run. See note below.
2080
2083
 
2081
- run.save("/User/username/Documents/run123/*.txt", base_path="/User")
2084
+ run.save("/Users/username/Documents/run123/*.txt", base_path="/Users")
2082
2085
  # => Saves files in a "username/Documents/run123/" folder in the run.
2083
2086
 
2084
2087
  run.save("files/*/saveme.txt")
@@ -157,9 +157,11 @@ def _path_convert(*args: str) -> str:
157
157
 
158
158
 
159
159
  CLIENT_ONLY_SETTINGS = (
160
- "reinit",
160
+ "files_dir",
161
161
  "max_end_of_run_history_metrics",
162
162
  "max_end_of_run_summary_metrics",
163
+ "reinit",
164
+ "x_files_dir",
163
165
  "x_sync_dir_suffix",
164
166
  )
165
167
  """Python-only keys that are not fields on the settings proto."""
@@ -239,20 +241,15 @@ class Settings(BaseModel, validate_assignment=True):
239
241
  """The type of console capture to be applied.
240
242
 
241
243
  Possible values are:
242
- "auto" - Automatically selects the console capture method based on the
244
+ - "auto" - Automatically selects the console capture method based on the
243
245
  system environment and settings.
244
-
245
- "off" - Disables console capture.
246
-
247
- "redirect" - Redirects low-level file descriptors for capturing output.
248
-
249
- "wrap" - Overrides the write methods of sys.stdout/sys.stderr. Will be
246
+ - "off" - Disables console capture.
247
+ - "redirect" - Redirects low-level file descriptors for capturing output.
248
+ - "wrap" - Overrides the write methods of sys.stdout/sys.stderr. Will be
250
249
  mapped to either "wrap_raw" or "wrap_emu" based on the state of the system.
251
-
252
- "wrap_raw" - Same as "wrap" but captures raw output directly instead of
250
+ - "wrap_raw" - Same as "wrap" but captures raw output directly instead of
253
251
  through an emulator. Derived from the `wrap` setting and should not be set manually.
254
-
255
- "wrap_emu" - Same as "wrap" but captures output through an emulator.
252
+ - "wrap_emu" - Same as "wrap" but captures output through an emulator.
256
253
  Derived from the `wrap` setting and should not be set manually.
257
254
  """
258
255
 
@@ -661,6 +658,9 @@ class Settings(BaseModel, validate_assignment=True):
661
658
  x_files_dir: Optional[str] = None
662
659
  """Override setting for the computed files_dir.
663
660
 
661
+ DEPRECATED, DO NOT USE. This private setting is not respected by wandb-core
662
+ but will continue to work for some legacy Python code.
663
+
664
664
  <!-- lazydoc-ignore-class-attributes -->
665
665
  """
666
666
 
@@ -1652,6 +1652,7 @@ class Settings(BaseModel, validate_assignment=True):
1652
1652
  @property
1653
1653
  def files_dir(self) -> str:
1654
1654
  """Absolute path to the local directory where the run's files are stored."""
1655
+ # Must match the logic in settings.go in the service process.
1655
1656
  return self.x_files_dir or _path_convert(self.sync_dir, "files")
1656
1657
 
1657
1658
  @computed_field # type: ignore[prop-decorator]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: wandb
3
- Version: 0.22.1
3
+ Version: 0.22.2
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=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
2
- wandb-0.22.1.dist-info/RECORD,,
3
- wandb-0.22.1.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
4
- wandb-0.22.1.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
5
- wandb-0.22.1.dist-info/METADATA,sha256=LE-hBpQWmkhWqkN7-NBBnMW5iQKlNp2yVMKC8nbqvY4,10244
6
- wandb-0.22.1.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
2
+ wandb-0.22.2.dist-info/RECORD,,
3
+ wandb-0.22.2.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
4
+ wandb-0.22.2.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
5
+ wandb-0.22.2.dist-info/METADATA,sha256=5OTGCmcyz74B_4_GERUI5cNswO9-Zxkp8pk1eLjva8I,10244
6
+ wandb-0.22.2.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
7
7
  wandb/env.py,sha256=DuzNj6MX0DRDQ8Y_t80jTLC3wiroLZPxA7otwASoE44,14012
8
- wandb/__init__.pyi,sha256=9OJe34r-k1Btz8niNu6bsIIRL7DAgsc91M5NqJ7N6GI,46323
8
+ wandb/__init__.pyi,sha256=KOzGIVVup-nr_-Rl-EX-GgTUSdlNV15niRiFF5dsX4Q,46467
9
9
  wandb/util.py,sha256=47WPL86PNn4UPzLmpU6cWxZS1GPrtKwo1lJyWbrcfzA,65368
10
10
  wandb/wandb_run.py,sha256=RRjZweHEMpfTyQghzOrSZdmViIItT9wLJYzcZ4nlvjk,128
11
11
  wandb/_iterutils.py,sha256=sGQvC8x9Wq1UHbqheUk44U3ckS_HO4bg0x0mGVES308,2748
12
- wandb/__init__.py,sha256=kTiX661sXIxwjCuQgXl3YHubN_UP6OyOmAi9xv_xt7M,6771
12
+ wandb/__init__.py,sha256=Y9S4ch6m-EjeentHBNI6uFxXYuck5Dz9EAqt7U09qMA,6771
13
13
  wandb/data_types.py,sha256=M-wqAO0FtIqvj28556u3h4nzSwlRcbxhXoX0B9jlJSo,2283
14
14
  wandb/_analytics.py,sha256=XkUDTTo599nAU7HsnX2yzox6NdcJoPrlDLWcd7U4WfY,1986
15
15
  wandb/wandb_controller.py,sha256=SksJdgwn14PpnUoIaBjJ9Ki4Nksl9BpQGGn42hT0xZg,24936
@@ -80,38 +80,43 @@ wandb/proto/wandb_server_pb2.py,sha256=82Cf27PnDjHbkQT_-ZPjQyI0AVYd9YWoAlABrGPD-
80
80
  wandb/proto/wandb_base_pb2.py,sha256=h09-9fMDbMC82T3jWHzmh8MB8llZ9o9za0uBOF_bL_s,385
81
81
  wandb/proto/wandb_internal_pb2.py,sha256=hTpbURqJyoNcwHD7o3k0ofmKgZdmKEYUm9sBqLHa5iA,628
82
82
  wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- wandb/proto/wandb_generate_proto.py,sha256=10rKLrX1cxKh7iJulmIJXSob4vZzLxDAk_Vf9acgVdU,1302
83
+ wandb/proto/wandb_api_pb2.py,sha256=MSQh2A8g7MzBm4F4cqpP_v2f99xDNcu86yLkn_A2PAc,608
84
+ wandb/proto/wandb_generate_proto.py,sha256=BRtjAvvHYcvcElxzBOdcDIpjWL0SktQ08a9C68yundQ,1325
84
85
  wandb/proto/wandb_sync_pb2.py,sha256=CjyWIcWc6tM1zgOPwN8OssJebfoUou6QlXVDarwnt90,385
85
86
  wandb/proto/wandb_deprecated.py,sha256=HGCueNNxy04yz-iUsCeg3-XNKlFAVMdwyiy3muDlmtk,2776
86
87
  wandb/proto/wandb_telemetry_pb2.py,sha256=Y9uzA6O9yUJ3HKqYOi86hg-mZ49NtSzQ_XRFSCONolA,405
87
- wandb/proto/v6/wandb_settings_pb2.py,sha256=JgZ1_m_lESIniTlQksExgamInIA3CH0a2rzjLsT6yvs,18830
88
+ wandb/proto/v6/wandb_settings_pb2.py,sha256=o4B29qYvWpT-GhAvhE9s2imjDBUMcjl1nIXNQnrTuDs,18722
88
89
  wandb/proto/v6/wandb_server_pb2.py,sha256=653uvl0HXdl3U1ZOpI5Hqz6LCmdxhfld_FdUtun7e70,7817
89
90
  wandb/proto/v6/wandb_base_pb2.py,sha256=33R_7uY3eNy3D-UOpqU9NqkKOXxxBi-qCBRvFygjB1Y,1821
90
- wandb/proto/v6/wandb_internal_pb2.py,sha256=pbPcHvptz44p7fRxzNhi_-QQCivACIR3yKx8zhpWugU,58670
91
+ wandb/proto/v6/wandb_internal_pb2.py,sha256=LV2RjUMqTc20ZyJEwhlexkq92MngBl891iW7yQslQ1I,58951
92
+ wandb/proto/v6/wandb_api_pb2.py,sha256=WcMhVjNrrnsJ7HB9sH3ogZ4JVNFUwtydDRPhTZlsD1s,3029
91
93
  wandb/proto/v6/wandb_sync_pb2.py,sha256=xQ7FRFYnFguM_0ZZRaZU19WtgqQMBTU_djwLTixgulk,3418
92
94
  wandb/proto/v6/wandb_telemetry_pb2.py,sha256=ggidm5T1n3w8UzWusXy825TtWmUd5GUJ9_jQV7nrjkA,12565
93
- wandb/proto/v5/wandb_settings_pb2.py,sha256=12an1CH04EdQAZ0EPeJHFXhVbLcKXIGco3iKFvv8gnI,18577
95
+ wandb/proto/v5/wandb_settings_pb2.py,sha256=Yh9U7wsMDk6MLo2IWVyiID7esO8egiQVHxFkRCq3z_A,18469
94
96
  wandb/proto/v5/wandb_server_pb2.py,sha256=PnUMsWWwoSI4v8677z8hWbYmu9B908dFl_JHoOQ0uM4,7566
95
97
  wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
96
- wandb/proto/v5/wandb_internal_pb2.py,sha256=4tHCAv4H5a8xu-imjiagBDMtE44EF08gaVjwD3Y4lto,58417
98
+ wandb/proto/v5/wandb_internal_pb2.py,sha256=4vobxBFEgVcvtA54R4CefxB5iYtX3kKaa1FSsB1YLF8,58698
99
+ wandb/proto/v5/wandb_api_pb2.py,sha256=2Dkcn4oAvZxRj1aJ5OaueICCN27XzRyRWISXwzqFGn0,2781
97
100
  wandb/proto/v5/wandb_sync_pb2.py,sha256=f_BPiREv3iL85U6DwqRwubxBGIdFGSKDcK0IqDPv7lA,3169
98
101
  wandb/proto/v5/wandb_telemetry_pb2.py,sha256=zl_Thc55nmp-ukAQCkSckEgW-9MkBQJFWZEx_sui2D4,12311
99
- wandb/proto/v4/wandb_settings_pb2.py,sha256=gPObgqI1Uy3BushWew48n8rgCLCsH06cMFCIGbP7EHg,18221
102
+ wandb/proto/v4/wandb_settings_pb2.py,sha256=KQMS3AFOPYMhicukGPMynEYeAwW9nD2O5DoNq99k-b0,18113
100
103
  wandb/proto/v4/wandb_server_pb2.py,sha256=h7_ErrgaVqnjTH0RpMZQY3Ywr0syLRCaUMHnidjSeYY,7056
101
104
  wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
102
- wandb/proto/v4/wandb_internal_pb2.py,sha256=wlzbx5ieapAqHwB_gAybYl08T-r-ueErRj81WzgNpqI,54046
105
+ wandb/proto/v4/wandb_internal_pb2.py,sha256=W66fw_cykAAx3IpimKBwwWSgGuBT-9SsGCVNMNrum-E,54327
103
106
  wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ wandb/proto/v4/wandb_api_pb2.py,sha256=LBLIhrKFNnQONGOOu5WQMqAdYrrLXWm2-RhIxwv7Ezo,2559
104
108
  wandb/proto/v4/wandb_sync_pb2.py,sha256=Q5E_QGMoa0U7cLgjpAP7MBZsGCHUJZ2MDKc-pjA_1Q4,2899
105
109
  wandb/proto/v4/wandb_telemetry_pb2.py,sha256=JD6TcSwHajE1zO63IsYHBODp5JSXitoCdB45-l1oQ0A,12041
106
- wandb/proto/v3/wandb_settings_pb2.py,sha256=GlmZKFANXdZmqv-glm8pgM9XxHXhzf1JWNYIgtKLJGw,21846
110
+ wandb/proto/v3/wandb_settings_pb2.py,sha256=n2uk7g8hC-Gf8P9HkXimxw5e1viEu3Zs97uww-IEi50,21738
107
111
  wandb/proto/v3/wandb_server_pb2.py,sha256=33NuxrfmMp_vPnyFilHrWJf3S15CBRpGy3vinjt-okY,14710
108
112
  wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
109
- wandb/proto/v3/wandb_internal_pb2.py,sha256=t2LbE_C_G0srgskByufxdZk1ZfBmFTjPiqfWukgbsQs,117748
113
+ wandb/proto/v3/wandb_internal_pb2.py,sha256=Dc2HP5vPqW5fZ_otzvo8B_cgk18vawzyw05qU5vf3BE,118029
110
114
  wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ wandb/proto/v3/wandb_api_pb2.py,sha256=Cx8yDcK1sbfzwFoycqdPcMnmr5CdTYLmoZeuIHIzx38,4739
111
116
  wandb/proto/v3/wandb_sync_pb2.py,sha256=NYMsp1c1tZlIRlIcmG465LF26YXxoMX9IogiShnAIrQ,5740
112
117
  wandb/proto/v3/wandb_telemetry_pb2.py,sha256=zK5kHr1qp4sabaj7MGU990CekdNqU2pPu-iFW0U-qrA,14594
113
- wandb/bin/wandb-core,sha256=FacdbkUGLkDWiW8dzDAKmDMNwI639x1VilecpOv8AD0,40996066
114
- wandb/bin/gpu_stats,sha256=17CMw53056RG8ci3Uq28sP54fa-iH_86gD58KA4pWrk,9284352
118
+ wandb/bin/wandb-core,sha256=xW2L-5h3_-4D11CxThDhddVzuhdrwM-tkYqwnYefzJc,42071042
119
+ wandb/bin/gpu_stats,sha256=ty9udC051oczHGTMRpJo4wfHSSCxqqYxYgAv5DkyepQ,9309024
115
120
  wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
116
121
  wandb/integration/dspy/__init__.py,sha256=gC1FQ9NNB9Npa7zi_QmrzmxkfYvWreTm2AQtf0b2Ol0,106
117
122
  wandb/integration/dspy/dspy.py,sha256=Lp8JnIPXDwSVzHCX-JHs7aDUL8JmfoupD3tzwE06eIo,15526
@@ -212,20 +217,21 @@ wandb/old/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
217
  wandb/old/core.py,sha256=bIIFlU3_E2hvrVCzMQk1VcwJtxbadbAZwDC0qsF4C2g,1501
213
218
  wandb/old/summary.py,sha256=FZrkTyycUy6MRY1n4q7713rlTV7h-CMr8_kNoeb-wzY,13856
214
219
  wandb/old/settings.py,sha256=Cug-8ImuV4_x8HFGOnlATuh0iJ4JOUfmymguPFqlXvE,6482
215
- wandb/cli/beta.py,sha256=2eOAKaB5fvLwYMIORweGKudtvsGQVw1y7dy80keC2Z8,2145
220
+ wandb/cli/beta.py,sha256=5yjMQFZpB8E4R5dM_l2h3losjoV2A768LR0PFlG-MUE,2578
221
+ wandb/cli/beta_leet.py,sha256=QKqtX4pZSso8wwmitEIoKQSXADr7V_ptGyksGygMKCM,1896
216
222
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
217
223
  wandb/cli/beta_sync.py,sha256=qmK1aeyBxwYTCGhOmo3dxVOkOl7iZM4IgLBOkcA4vQg,6954
218
- wandb/cli/cli.py,sha256=3_2SuxOv4a9Ha9SuGvVuc3RFvWueb0wuJQy8HrXFzww,95045
224
+ wandb/cli/cli.py,sha256=Mz1Ju-9rXWZYXBkizMFIpxeoCwZJthRWgk1ekE6lWLA,95962
219
225
  wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
226
  wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
221
227
  wandb/sdk/wandb_config.py,sha256=uvbpaV3yObsYsaYedYde95B4CzDZBlaU3zOPJ7tPkhs,10692
222
228
  wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
223
- wandb/sdk/wandb_run.py,sha256=wOguraJSp7vcR7tH5L6EOUWnWntUHYn75tBpk4OpZgk,147300
229
+ wandb/sdk/wandb_run.py,sha256=03SY6nc4yveWPJ0v-4ec4cS_dhlNLi-9ZLX51z1xHlI,147452
224
230
  wandb/sdk/wandb_sync.py,sha256=GNC8xYqT56ws4aw6Vd_mV_Ck-InEbqnyioSqHIybDug,2106
225
231
  wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
226
- wandb/sdk/wandb_init.py,sha256=gEFqC-A1Xsxe75VF6L4trhphMTPlWToLPOyyu2ufNoM,61684
232
+ wandb/sdk/wandb_init.py,sha256=KfU7riYpOxn4UZMvzAKTP2Us6UnSlM1RLUBI2UrYzCI,61681
227
233
  wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
228
- wandb/sdk/wandb_settings.py,sha256=64AWE4KWk2HYptLMYLGqPhzSDO2EUIsk0sjILuMtbxI,75486
234
+ wandb/sdk/wandb_settings.py,sha256=PYAwkb3dsxJqP_7KApSTt6EPtJTZNvNNBkRv0KxHIwg,75727
229
235
  wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
230
236
  wandb/sdk/wandb_watch.py,sha256=kN5qgovHkUPyUeNypoPg7tsPg-P8AKhYD8hDx46nZas,4746
231
237
  wandb/sdk/wandb_login.py,sha256=IqUQl3wJe9XWDY47sZLV0korWjM00EEO3HiZbDk1V9c,12210
@@ -244,39 +250,40 @@ wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
244
250
  wandb/sdk/interface/interface_shared.py,sha256=aEo-2DqOBR6Gk6tZ3xbSFq1X-Bn-KqfbRKbRfWup4s0,17809
245
251
  wandb/sdk/interface/interface_queue.py,sha256=YC2WAFZWhA0ih4eNFTi6AFRfwaDN5D6ECQGvP_Bkk20,1421
246
252
  wandb/sdk/interface/interface_sock.py,sha256=7Yy-90qPczoy2pe9npaJSlboHLKLCGnJ28m5SKXuwxI,1685
247
- wandb/sdk/artifacts/storage_policy.py,sha256=b87WYRCrzKBKy0WBNjZIB_98_YbnqP7eKS3CoKT_Ig0,2216
253
+ wandb/sdk/artifacts/storage_policy.py,sha256=fKCxBn-kSH-iZvB4dGkVg5SwiUPp50SjZBUpsHSlM3M,2478
248
254
  wandb/sdk/artifacts/artifact_state.py,sha256=JbPVinN8Vaq16IKdPtFmiYbBdBtCKLDMVU_ViMI8QOA,272
249
255
  wandb/sdk/artifacts/_factories.py,sha256=JXGLyZkdqt-4jmyzZkQiYbhSa-hUpj5HWR29tgCWY60,833
250
256
  wandb/sdk/artifacts/artifact_ttl.py,sha256=kD_JfKVcQzZlif6PF-WKnemucWPwcISq8hX6Y8lKtY8,122
251
257
  wandb/sdk/artifacts/storage_layout.py,sha256=JeI2uVqreJynIVNhFVvh7Acm-Wem25ueFQvcxg_svZU,109
252
- wandb/sdk/artifacts/artifact.py,sha256=FOdAlKVzxHHSW977mw5vrbUvOLLHTi3HoUUtsLO7SnU,102835
258
+ wandb/sdk/artifacts/artifact.py,sha256=4VCWeI-8Oz8mKO51d86MCFuvquQJOoo78i095mriYiQ,103037
253
259
  wandb/sdk/artifacts/_validators.py,sha256=4axMMJd1dCi6GdHLNuhp6ZBuWzPZ7WqvKkroCZ5WXks,12059
254
260
  wandb/sdk/artifacts/_gqlutils.py,sha256=jwbK_lb2VjVyqc8S0ZM41zPvscM2sZk7VY_N9GHEt7k,1549
255
261
  wandb/sdk/artifacts/_internal_artifact.py,sha256=Jx79CVB5xfuJCXTmmRIN8yegqknsqKNpKJa-WJmCO3w,1975
256
262
  wandb/sdk/artifacts/artifact_file_cache.py,sha256=ZsGRP2hIH4XlHcbpGqR4vlZRIf7uzDBx6OT2RBkjFK0,9989
257
263
  wandb/sdk/artifacts/artifact_saver.py,sha256=RwJIveLn87UE3_tk5zAJ8ry-TAvxwTS94yNAChwhLAk,9654
258
264
  wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
- wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=8zzFsuL1USn4eDpuWumYjGZXzeJhMjoAHa5ypbEgetM,10831
265
+ wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=d0x4rCZrlYNCLrmaXb8lr9JKL3wg7Ni6iBAUb4dG-LM,10603
260
266
  wandb/sdk/artifacts/artifact_manifest.py,sha256=ZBdtazpTXt0X_8F4y6O-SDmrTY69hCp0HckCXbnZkII,2534
261
267
  wandb/sdk/artifacts/artifact_instance_cache.py,sha256=atSUDvKjkp6by6QY0w2FLMrFUg9UKc8TIrMVWGauV64,501
262
268
  wandb/sdk/artifacts/exceptions.py,sha256=AoSQ-g92IyvBY5h_sMTbE5ReSiw7Yu4eMwdr_zLPB-o,2357
263
- wandb/sdk/artifacts/storage_handler.py,sha256=ebMCKXvvn7z_eYunXriTOYescstuBbNbxn7MDW9qZAw,1834
269
+ wandb/sdk/artifacts/storage_handler.py,sha256=9-04vxaDdHm2WLIc00m_Xf_3i35tzdCxucRSKJP_RHo,2045
264
270
  wandb/sdk/artifacts/staging.py,sha256=QNbPQhlW-w2liQ_5ZgGJaxsp-prPrOAZ1InmCx3N9Zk,890
265
271
  wandb/sdk/artifacts/artifact_download_logger.py,sha256=bS4v544rFcTOTRTXMUSd6tfLUXzezbIogDpQmZUjah0,1537
266
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=s6UursfXVBasvv72r8gxQReCsV5n632-BWoClA-O7Fg,20114
272
+ wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=tkna8iTT-DnO5sZlx81Z1bXV_Hl4-MbldJOCyb4nm80,12900
267
273
  wandb/sdk/artifacts/storage_policies/_factories.py,sha256=r5vJ-TJvGnGNMviWozdCQjl0r7INizjU4eC0KPfF45I,2249
268
274
  wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
275
+ wandb/sdk/artifacts/storage_policies/_multipart.py,sha256=6ZcvjvWVVjS68Fsej6yISjmShFz0_WmI0dOgXUcxT_o,7177
269
276
  wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
270
- wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=B2ysOvIESV3Wa-IXOT1VFw4jkj8lG6Kzo4xFKjd-v_U,12839
271
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=MpYHgEkbjt1VCUV-lfg1f3MscOK10tZHSJwOFjCzGBg,2562
272
- wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=sKu9VRCcgd9DYPPdCN49Fl63g6_HfHX124xnnFyZPe8,4764
277
+ wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=o5Bt8mc0IEgBd01pZ3UgHkUGsJAxNw9XXGUCUQHceZs,12924
278
+ wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=deRwMl0_APHirSi1oHMvMVoTfrKPmD24xF8MSGYfdr8,2604
279
+ wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=b1TreDrqMucyptvwaNSvGAGnLFNdF7a0feJm6gTVYts,4992
273
280
  wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
- wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=GZ9wAfVSuZE3IGL5F5ojM_GPrRqYIYTJxWSsqFn9HiI,1842
275
- wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=Y0B79t9xDrXo361O9x6VFPQWJOozIPlzQRaGx6768Sw,8333
276
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=BuRUvWgyX5pbBfVGUXnhvNXU0WcOp2M1vdPOywzGKpg,5433
277
- wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=r-Q1nSxUDruxeDMsWcs6OQ9Dyn0xS6SJ1lVKugOOSR8,3920
278
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=NZElfTpmkGffTpiN1-yAfeKoGnXxBL4YgmnvmnDz_h8,8472
279
- wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=4MFqhnVciygmANKOrMSZwew4TXAFg5Q7zAZFz0FbpWM,2487
281
+ wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=GAs8eUy2Fo_9kYAmi8usxc9esuscuKLfHAfDpt-XFQw,1898
282
+ wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=YckDbo7LGSlE8UapQgFQwDZia_9caQzCoyhaC1yUnI4,8472
283
+ wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=4gIlr3lnx2NKNODGR90aCaMofdkhXzTywJ5bi_b26aE,5536
284
+ wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=2PeaQIIe3EbT2SDeRpi8w2blFX68ThnJil3F1nC46j8,4044
285
+ wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=jzDvXVccQknkYJhMRwCVvKANSU5f0ArJwAyLITOCims,8574
286
+ wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=Ntb2k4dcVnta47DAr-CzVuXihjZ4YS8pl0SlobaHvSc,2476
280
287
  wandb/sdk/artifacts/_models/__init__.py,sha256=8PpmvWO1KzNWPObw2fbJR3F1LMOKwRgAvrEfxsqY0rQ,107
281
288
  wandb/sdk/artifacts/_models/base_model.py,sha256=JNs9Ain1-iX7ZHDkYfEFO0DUZJEO-ryNoncK5jCgAMM,761
282
289
  wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -322,7 +329,7 @@ wandb/sdk/artifacts/_generated/create_artifact_collection_tag_assignments.py,sha
322
329
  wandb/sdk/artifacts/_generated/delete_artifact_portfolio.py,sha256=lsGr5vO2EiySHEOZ-KdWdaEXdLO9-YEavXlbuIKanYY,991
323
330
  wandb/sdk/artifacts/_generated/fetch_artifact_manifest.py,sha256=SadWxTSiAdqPNsFLUjsd9TfV0lAIHQ3cKsQCLoXI-SY,1055
324
331
  wandb/sdk/artifacts/_generated/project_artifacts.py,sha256=noPODtFVotO69VK5oHZeU8NF4aYLKsPPRHOtNMPhn38,1128
325
- wandb/sdk/data_types/object_3d.py,sha256=dCXSUXnC9ZG8rP1XSKYyXfHfkeDKnxo_yzJ9X_3NWnc,16811
332
+ wandb/sdk/data_types/object_3d.py,sha256=Loou1Y8w6BVvkim7VZPGt4XrrRr1-iyTQyPmoXUE5G4,19176
326
333
  wandb/sdk/data_types/molecule.py,sha256=9eWp5ZeXF_QCZk1P-IRRTPxCDF2VSejQK0wIZ4q17ok,8972
327
334
  wandb/sdk/data_types/histogram.py,sha256=RieB8Y0h-XDY9EBr1fbNdK9F2ei4bpPw6Gn1OZC2v8Q,3369
328
335
  wandb/sdk/data_types/trace_tree.py,sha256=zPWT-tofO4YqaFhB65SnqFMnpXgTwRl48apU04y6VeQ,14838
@@ -363,7 +370,7 @@ wandb/sdk/launch/_launch_add.py,sha256=OD6JPJN3dCNz5FZ_8MzgUOBAWGRtcgMz8UYoeV26g
363
370
  wandb/sdk/launch/utils.py,sha256=2rhynbIezfLbalpNSorcJjX8XEIednziyOOBWG7XLu8,28024
364
371
  wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
365
372
  wandb/sdk/launch/errors.py,sha256=G86cx2IZSRBBxLE7thxcVFKzN9d4mGyvciaWRz0uWWM,275
366
- wandb/sdk/launch/create_job.py,sha256=Hfhre_v70whBFvumC5TWiSCdLWg2C5PcElZI2bkmhu8,17754
373
+ wandb/sdk/launch/create_job.py,sha256=5wwwNY2fRA5tKHaxdFpmVXJo5vhpyKiYEGjp7PutpAE,17760
367
374
  wandb/sdk/launch/git_reference.py,sha256=6pTVlD7-BICWoraN8PsAzCKu64GV7g_GzqMSD9w3Sos,3758
368
375
  wandb/sdk/launch/runner/abstract.py,sha256=CltVdK6hFECpxFfP8yaxacJ-HxoRWNgakShGmQfnhC8,5619
369
376
  wandb/sdk/launch/runner/kubernetes_monitor.py,sha256=OoGauekACMI8EgXvBgmJ1RfBbttEfJ98AoIkPCGwLBo,17825
@@ -415,9 +422,9 @@ wandb/sdk/projects/_generated/__init__.py,sha256=Oat5Pm5mfE1Qwd9eA94Xktwco8hSnAX
415
422
  wandb/sdk/projects/_generated/operations.py,sha256=MhLYsTHjekySMt3jdlXdruDI0Sg5xR6wQSOeDvTu5b4,1785
416
423
  wandb/sdk/projects/_generated/fragments.py,sha256=iFeb_dX2RwGhnwKItiqv4QUX9stJwvGTS2UCsGwIynM,1101
417
424
  wandb/sdk/projects/_generated/delete_project.py,sha256=2fguHdSAtLSjUl-J_t4kqCjoAeW6i5OUl2H3yv6Ig3o,495
418
- wandb/sdk/internal/sender.py,sha256=Y0PegInC70owGWrEpLycXg9aLq0OssXYIgjshNvaT8I,65175
425
+ wandb/sdk/internal/sender.py,sha256=gR2Exzx9OSABgvekRPfqAx6B_AnqjwFkRGu1rLNO2WM,65240
419
426
  wandb/sdk/internal/run.py,sha256=MD3D-o8Zo9hYpd-v9UlslTAuvCJHD6J1gBnZeZoD4o0,624
420
- wandb/sdk/internal/job_builder.py,sha256=DWoAMc1q37mdOHrQX-RX9tfB57YHyiW3T7tdDKe0tn0,22995
427
+ wandb/sdk/internal/job_builder.py,sha256=4HqAtpjuSFd01vQBzFTAcxL86WRL10v1PzuwwqO2TXg,23470
421
428
  wandb/sdk/internal/internal_api.py,sha256=MqU2e8cUXKGHsPsQEsfmjZVA8Y5JUiu6FNbuJv7P4qU,163977
422
429
  wandb/sdk/internal/handler.py,sha256=ZmZrzaJUw-caclqGmOfQMRmv5s5ha9eDf72pcOFOcZc,31549
423
430
  wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
@@ -473,7 +480,7 @@ wandb/sdk/lib/hashutil.py,sha256=Heudn0Prj3C-1Ypyq4IU1QfflRJrJMbgoreTGnWGraE,359
473
480
  wandb/sdk/lib/wb_logging.py,sha256=9km7TAnJRSwBTQaFSYA4BmQZV3_Gb0y1PBlzqEOdUHA,4839
474
481
  wandb/sdk/lib/module.py,sha256=p4vKIq-rfj-txcUfj0RdknLlb-8sCNmwakn49HTWdsQ,1916
475
482
  wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
476
- wandb/sdk/lib/progress.py,sha256=141wN3B9S1uDMxiX3MIHTDf4rO-mGhBPoDVnCmItYoA,10220
483
+ wandb/sdk/lib/progress.py,sha256=ktOAZmo03LTjTxNVHmjAWHJvR2PDk31Q3keVcBp0chI,7932
477
484
  wandb/sdk/lib/gql_request.py,sha256=XzBmCX-X3yx7rvyA6qWuzBFLTeMO7Nb-dmapaKp-pLY,2665
478
485
  wandb/sdk/lib/asyncio_compat.py,sha256=WRBv3Xj0rU5lnxFmsOTpoWad3dXWvN_D0TS5zEbIps8,9321
479
486
  wandb/sdk/lib/config_util.py,sha256=Y00nnEcq0zspuDb0yqraxRuo5JIUh1HflDvZYppeDyk,2893
File without changes