wandb 0.22.1__py3-none-musllinux_1_2_aarch64.whl → 0.22.2__py3-none-musllinux_1_2_aarch64.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.4
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,10 +1,5 @@
1
1
  package_readme.md,sha256=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
2
- wandb-0.22.1.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
3
- wandb-0.22.1.dist-info/METADATA,sha256=4a21aLPGlPYIsOlh95SZw9_4H8TYSbiBecVwy4cnpdQ,10244
4
- wandb-0.22.1.dist-info/RECORD,,
5
- wandb-0.22.1.dist-info/WHEEL,sha256=ZCaGMInsobf_X8ibOue5yAC0a46KTbFsnGjtmL2skyU,106
6
- wandb-0.22.1.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
7
- wandb/__init__.py,sha256=kTiX661sXIxwjCuQgXl3YHubN_UP6OyOmAi9xv_xt7M,6771
2
+ wandb/__init__.py,sha256=Y9S4ch6m-EjeentHBNI6uFxXYuck5Dz9EAqt7U09qMA,6771
8
3
  wandb/wandb_agent.py,sha256=JWRqi6f_np-4XGcNz0QdKE6OmYvCdSQ2K6gcE-oJF9w,22815
9
4
  wandb/util.py,sha256=47WPL86PNn4UPzLmpU6cWxZS1GPrtKwo1lJyWbrcfzA,65368
10
5
  wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
@@ -14,7 +9,7 @@ wandb/env.py,sha256=DuzNj6MX0DRDQ8Y_t80jTLC3wiroLZPxA7otwASoE44,14012
14
9
  wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
10
  wandb/wandb_controller.py,sha256=SksJdgwn14PpnUoIaBjJ9Ki4Nksl9BpQGGn42hT0xZg,24936
16
11
  wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
17
- wandb/__init__.pyi,sha256=9OJe34r-k1Btz8niNu6bsIIRL7DAgsc91M5NqJ7N6GI,46323
12
+ wandb/__init__.pyi,sha256=KOzGIVVup-nr_-Rl-EX-GgTUSdlNV15niRiFF5dsX4Q,46467
18
13
  wandb/_iterutils.py,sha256=sGQvC8x9Wq1UHbqheUk44U3ckS_HO4bg0x0mGVES308,2748
19
14
  wandb/data_types.py,sha256=M-wqAO0FtIqvj28556u3h4nzSwlRcbxhXoX0B9jlJSo,2283
20
15
  wandb/wandb_run.py,sha256=RRjZweHEMpfTyQghzOrSZdmViIItT9wLJYzcZ4nlvjk,128
@@ -571,43 +566,49 @@ wandb/filesync/stats.py,sha256=bjVBoCU9I9ke_XbEqtUgmKJVSmFxxAs2JciBzGWPhDg,3050
571
566
  wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
572
567
  wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
573
568
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
574
- wandb/cli/cli.py,sha256=3_2SuxOv4a9Ha9SuGvVuc3RFvWueb0wuJQy8HrXFzww,95045
575
- wandb/cli/beta.py,sha256=2eOAKaB5fvLwYMIORweGKudtvsGQVw1y7dy80keC2Z8,2145
569
+ wandb/cli/cli.py,sha256=Mz1Ju-9rXWZYXBkizMFIpxeoCwZJthRWgk1ekE6lWLA,95962
570
+ wandb/cli/beta.py,sha256=5yjMQFZpB8E4R5dM_l2h3losjoV2A768LR0PFlG-MUE,2578
571
+ wandb/cli/beta_leet.py,sha256=QKqtX4pZSso8wwmitEIoKQSXADr7V_ptGyksGygMKCM,1896
576
572
  wandb/cli/beta_sync.py,sha256=qmK1aeyBxwYTCGhOmo3dxVOkOl7iZM4IgLBOkcA4vQg,6954
577
573
  wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
578
574
  wandb/proto/wandb_settings_pb2.py,sha256=Wba7SDYTKy-Sm2sYrTmqwYH6sBvdD9ogE1i87lt_85A,401
579
575
  wandb/proto/wandb_deprecated.py,sha256=HGCueNNxy04yz-iUsCeg3-XNKlFAVMdwyiy3muDlmtk,2776
580
576
  wandb/proto/wandb_server_pb2.py,sha256=82Cf27PnDjHbkQT_-ZPjQyI0AVYd9YWoAlABrGPD-xo,393
581
- wandb/proto/wandb_generate_proto.py,sha256=10rKLrX1cxKh7iJulmIJXSob4vZzLxDAk_Vf9acgVdU,1302
577
+ wandb/proto/wandb_generate_proto.py,sha256=BRtjAvvHYcvcElxzBOdcDIpjWL0SktQ08a9C68yundQ,1325
578
+ wandb/proto/wandb_api_pb2.py,sha256=MSQh2A8g7MzBm4F4cqpP_v2f99xDNcu86yLkn_A2PAc,608
582
579
  wandb/proto/wandb_generate_deprecated.py,sha256=Iyf7PwIL_2B7XohrckYLbjjT09lccwbqknxtWelJpJM,1002
583
580
  wandb/proto/wandb_base_pb2.py,sha256=h09-9fMDbMC82T3jWHzmh8MB8llZ9o9za0uBOF_bL_s,385
584
581
  wandb/proto/wandb_internal_pb2.py,sha256=hTpbURqJyoNcwHD7o3k0ofmKgZdmKEYUm9sBqLHa5iA,628
585
582
  wandb/proto/wandb_sync_pb2.py,sha256=CjyWIcWc6tM1zgOPwN8OssJebfoUou6QlXVDarwnt90,385
586
583
  wandb/proto/wandb_telemetry_pb2.py,sha256=Y9uzA6O9yUJ3HKqYOi86hg-mZ49NtSzQ_XRFSCONolA,405
587
- wandb/proto/v5/wandb_settings_pb2.py,sha256=12an1CH04EdQAZ0EPeJHFXhVbLcKXIGco3iKFvv8gnI,18577
584
+ wandb/proto/v5/wandb_settings_pb2.py,sha256=Yh9U7wsMDk6MLo2IWVyiID7esO8egiQVHxFkRCq3z_A,18469
588
585
  wandb/proto/v5/wandb_server_pb2.py,sha256=PnUMsWWwoSI4v8677z8hWbYmu9B908dFl_JHoOQ0uM4,7566
586
+ wandb/proto/v5/wandb_api_pb2.py,sha256=2Dkcn4oAvZxRj1aJ5OaueICCN27XzRyRWISXwzqFGn0,2781
589
587
  wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
590
- wandb/proto/v5/wandb_internal_pb2.py,sha256=4tHCAv4H5a8xu-imjiagBDMtE44EF08gaVjwD3Y4lto,58417
588
+ wandb/proto/v5/wandb_internal_pb2.py,sha256=4vobxBFEgVcvtA54R4CefxB5iYtX3kKaa1FSsB1YLF8,58698
591
589
  wandb/proto/v5/wandb_sync_pb2.py,sha256=f_BPiREv3iL85U6DwqRwubxBGIdFGSKDcK0IqDPv7lA,3169
592
590
  wandb/proto/v5/wandb_telemetry_pb2.py,sha256=zl_Thc55nmp-ukAQCkSckEgW-9MkBQJFWZEx_sui2D4,12311
593
- wandb/proto/v6/wandb_settings_pb2.py,sha256=JgZ1_m_lESIniTlQksExgamInIA3CH0a2rzjLsT6yvs,18830
591
+ wandb/proto/v6/wandb_settings_pb2.py,sha256=o4B29qYvWpT-GhAvhE9s2imjDBUMcjl1nIXNQnrTuDs,18722
594
592
  wandb/proto/v6/wandb_server_pb2.py,sha256=653uvl0HXdl3U1ZOpI5Hqz6LCmdxhfld_FdUtun7e70,7817
593
+ wandb/proto/v6/wandb_api_pb2.py,sha256=WcMhVjNrrnsJ7HB9sH3ogZ4JVNFUwtydDRPhTZlsD1s,3029
595
594
  wandb/proto/v6/wandb_base_pb2.py,sha256=33R_7uY3eNy3D-UOpqU9NqkKOXxxBi-qCBRvFygjB1Y,1821
596
- wandb/proto/v6/wandb_internal_pb2.py,sha256=pbPcHvptz44p7fRxzNhi_-QQCivACIR3yKx8zhpWugU,58670
595
+ wandb/proto/v6/wandb_internal_pb2.py,sha256=LV2RjUMqTc20ZyJEwhlexkq92MngBl891iW7yQslQ1I,58951
597
596
  wandb/proto/v6/wandb_sync_pb2.py,sha256=xQ7FRFYnFguM_0ZZRaZU19WtgqQMBTU_djwLTixgulk,3418
598
597
  wandb/proto/v6/wandb_telemetry_pb2.py,sha256=ggidm5T1n3w8UzWusXy825TtWmUd5GUJ9_jQV7nrjkA,12565
599
598
  wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
600
- wandb/proto/v4/wandb_settings_pb2.py,sha256=gPObgqI1Uy3BushWew48n8rgCLCsH06cMFCIGbP7EHg,18221
599
+ wandb/proto/v4/wandb_settings_pb2.py,sha256=KQMS3AFOPYMhicukGPMynEYeAwW9nD2O5DoNq99k-b0,18113
601
600
  wandb/proto/v4/wandb_server_pb2.py,sha256=h7_ErrgaVqnjTH0RpMZQY3Ywr0syLRCaUMHnidjSeYY,7056
601
+ wandb/proto/v4/wandb_api_pb2.py,sha256=LBLIhrKFNnQONGOOu5WQMqAdYrrLXWm2-RhIxwv7Ezo,2559
602
602
  wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
603
- wandb/proto/v4/wandb_internal_pb2.py,sha256=wlzbx5ieapAqHwB_gAybYl08T-r-ueErRj81WzgNpqI,54046
603
+ wandb/proto/v4/wandb_internal_pb2.py,sha256=W66fw_cykAAx3IpimKBwwWSgGuBT-9SsGCVNMNrum-E,54327
604
604
  wandb/proto/v4/wandb_sync_pb2.py,sha256=Q5E_QGMoa0U7cLgjpAP7MBZsGCHUJZ2MDKc-pjA_1Q4,2899
605
605
  wandb/proto/v4/wandb_telemetry_pb2.py,sha256=JD6TcSwHajE1zO63IsYHBODp5JSXitoCdB45-l1oQ0A,12041
606
606
  wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
607
- wandb/proto/v3/wandb_settings_pb2.py,sha256=GlmZKFANXdZmqv-glm8pgM9XxHXhzf1JWNYIgtKLJGw,21846
607
+ wandb/proto/v3/wandb_settings_pb2.py,sha256=n2uk7g8hC-Gf8P9HkXimxw5e1viEu3Zs97uww-IEi50,21738
608
608
  wandb/proto/v3/wandb_server_pb2.py,sha256=33NuxrfmMp_vPnyFilHrWJf3S15CBRpGy3vinjt-okY,14710
609
+ wandb/proto/v3/wandb_api_pb2.py,sha256=Cx8yDcK1sbfzwFoycqdPcMnmr5CdTYLmoZeuIHIzx38,4739
609
610
  wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
610
- wandb/proto/v3/wandb_internal_pb2.py,sha256=t2LbE_C_G0srgskByufxdZk1ZfBmFTjPiqfWukgbsQs,117748
611
+ wandb/proto/v3/wandb_internal_pb2.py,sha256=Dc2HP5vPqW5fZ_otzvo8B_cgk18vawzyw05qU5vf3BE,118029
611
612
  wandb/proto/v3/wandb_sync_pb2.py,sha256=NYMsp1c1tZlIRlIcmG465LF26YXxoMX9IogiShnAIrQ,5740
612
613
  wandb/proto/v3/wandb_telemetry_pb2.py,sha256=zK5kHr1qp4sabaj7MGU990CekdNqU2pPu-iFW0U-qrA,14594
613
614
  wandb/errors/warnings.py,sha256=kyLP3bfXSmlztp8nOepLtfTdM-03N-i7Ho1Y568BOtk,57
@@ -654,13 +655,13 @@ wandb/sdk/wandb_sweep.py,sha256=6PfqlKi0_2g6pt_hu-sqgCgO5YyCRppBbLwBxw8r2JY,3982
654
655
  wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
655
656
  wandb/sdk/wandb_config.py,sha256=uvbpaV3yObsYsaYedYde95B4CzDZBlaU3zOPJ7tPkhs,10692
656
657
  wandb/sdk/wandb_setup.py,sha256=BanGtCYoQSStnXFJkMrDO9GgN16Z-GEi4Q5TR5Qa5ls,19115
657
- wandb/sdk/wandb_settings.py,sha256=64AWE4KWk2HYptLMYLGqPhzSDO2EUIsk0sjILuMtbxI,75486
658
+ wandb/sdk/wandb_settings.py,sha256=PYAwkb3dsxJqP_7KApSTt6EPtJTZNvNNBkRv0KxHIwg,75727
658
659
  wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
659
660
  wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
660
661
  wandb/sdk/wandb_require.py,sha256=MYzhsbMLjXVoGRHxssg802w79BPsoyEbBXuZ6cffjCs,2713
661
- wandb/sdk/wandb_init.py,sha256=gEFqC-A1Xsxe75VF6L4trhphMTPlWToLPOyyu2ufNoM,61684
662
+ wandb/sdk/wandb_init.py,sha256=KfU7riYpOxn4UZMvzAKTP2Us6UnSlM1RLUBI2UrYzCI,61681
662
663
  wandb/sdk/wandb_metric.py,sha256=HihH23rZWw6AOH5Vn4KsFREMTFJGkjYqUBhqfOlHg2I,3346
663
- wandb/sdk/wandb_run.py,sha256=wOguraJSp7vcR7tH5L6EOUWnWntUHYn75tBpk4OpZgk,147300
664
+ wandb/sdk/wandb_run.py,sha256=03SY6nc4yveWPJ0v-4ec4cS_dhlNLi-9ZLX51z1xHlI,147452
664
665
  wandb/sdk/wandb_login.py,sha256=IqUQl3wJe9XWDY47sZLV0korWjM00EEO3HiZbDk1V9c,12210
665
666
  wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
666
667
  wandb/sdk/backend/backend.py,sha256=yh3ldxlKXXIXGk7vKDwEu0OolI6MD1B2LTQSu6sBEg4,1310
@@ -675,7 +676,7 @@ wandb/sdk/data_types/html.py,sha256=S_5Nk874c6ALQWaNK1fJBg2sehD-lnsnqZerTU6Kh2g,
675
676
  wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
676
677
  wandb/sdk/data_types/bokeh.py,sha256=V7KQciT354M7SSvss3IZui_CNoto7Qiky35vXBXdWk8,3033
677
678
  wandb/sdk/data_types/table.py,sha256=AWnTuX20tFSpvQ0Xg9O6XXE0gkQI0L0669UHpg-45B4,54445
678
- wandb/sdk/data_types/object_3d.py,sha256=dCXSUXnC9ZG8rP1XSKYyXfHfkeDKnxo_yzJ9X_3NWnc,16811
679
+ wandb/sdk/data_types/object_3d.py,sha256=Loou1Y8w6BVvkim7VZPGt4XrrRr1-iyTQyPmoXUE5G4,19176
679
680
  wandb/sdk/data_types/image.py,sha256=TZUTrCK9IU7wHXaTPVmiZGK178-vI_29pmxC_-xcwLs,36193
680
681
  wandb/sdk/data_types/trace_tree.py,sha256=zPWT-tofO4YqaFhB65SnqFMnpXgTwRl48apU04y6VeQ,14838
681
682
  wandb/sdk/data_types/video.py,sha256=X-ruhlMdoQBjvWGR0IvKBgN5aj3z2YQUqr1PCYIjrzU,10605
@@ -697,7 +698,7 @@ wandb/sdk/lib/__init__.py,sha256=53BA5lIOtUXciXZcPpNsFbp-iUPzI5gQFxplTykNmOE,183
697
698
  wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
698
699
  wandb/sdk/lib/file_stream_utils.py,sha256=NN4qaSyNufvlkg96a1YUjQ8-pYtCVU7xagJaW8mqAyI,4018
699
700
  wandb/sdk/lib/config_util.py,sha256=Y00nnEcq0zspuDb0yqraxRuo5JIUh1HflDvZYppeDyk,2893
700
- wandb/sdk/lib/progress.py,sha256=141wN3B9S1uDMxiX3MIHTDf4rO-mGhBPoDVnCmItYoA,10220
701
+ wandb/sdk/lib/progress.py,sha256=ktOAZmo03LTjTxNVHmjAWHJvR2PDk31Q3keVcBp0chI,7932
701
702
  wandb/sdk/lib/asyncio_manager.py,sha256=ftMrz3qAGtOkfLoo-4xeoUj3etuayw7XXStPWHmM43U,8760
702
703
  wandb/sdk/lib/ipython.py,sha256=TcKyUyoCBGCNkItaJRDx8PFUHtvuPPDDIduqyMYuGfQ,3810
703
704
  wandb/sdk/lib/console_capture.py,sha256=gUG6n-FtogU6DW9dJ9icF_8mMh3svW5yiC3s_fiof9U,6622
@@ -739,10 +740,10 @@ wandb/sdk/lib/service/service_port_file.py,sha256=Oonq46Ml4vKR-JTcxx4exi5MthGYRv
739
740
  wandb/sdk/lib/service/service_process.py,sha256=EDv7zYeUpF4NgN4ClTlzyUtfs75CiimdmLxTqvo72Tg,3100
740
741
  wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
741
742
  wandb/sdk/artifacts/artifact_saver.py,sha256=RwJIveLn87UE3_tk5zAJ8ry-TAvxwTS94yNAChwhLAk,9654
742
- wandb/sdk/artifacts/storage_policy.py,sha256=b87WYRCrzKBKy0WBNjZIB_98_YbnqP7eKS3CoKT_Ig0,2216
743
+ wandb/sdk/artifacts/storage_policy.py,sha256=fKCxBn-kSH-iZvB4dGkVg5SwiUPp50SjZBUpsHSlM3M,2478
743
744
  wandb/sdk/artifacts/artifact_manifest.py,sha256=ZBdtazpTXt0X_8F4y6O-SDmrTY69hCp0HckCXbnZkII,2534
744
- wandb/sdk/artifacts/artifact.py,sha256=FOdAlKVzxHHSW977mw5vrbUvOLLHTi3HoUUtsLO7SnU,102835
745
- wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=8zzFsuL1USn4eDpuWumYjGZXzeJhMjoAHa5ypbEgetM,10831
745
+ wandb/sdk/artifacts/artifact.py,sha256=4VCWeI-8Oz8mKO51d86MCFuvquQJOoo78i095mriYiQ,103037
746
+ wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=d0x4rCZrlYNCLrmaXb8lr9JKL3wg7Ni6iBAUb4dG-LM,10603
746
747
  wandb/sdk/artifacts/artifact_instance_cache.py,sha256=atSUDvKjkp6by6QY0w2FLMrFUg9UKc8TIrMVWGauV64,501
747
748
  wandb/sdk/artifacts/storage_layout.py,sha256=JeI2uVqreJynIVNhFVvh7Acm-Wem25ueFQvcxg_svZU,109
748
749
  wandb/sdk/artifacts/_factories.py,sha256=JXGLyZkdqt-4jmyzZkQiYbhSa-hUpj5HWR29tgCWY60,833
@@ -755,11 +756,12 @@ wandb/sdk/artifacts/artifact_ttl.py,sha256=kD_JfKVcQzZlif6PF-WKnemucWPwcISq8hX6Y
755
756
  wandb/sdk/artifacts/_internal_artifact.py,sha256=Jx79CVB5xfuJCXTmmRIN8yegqknsqKNpKJa-WJmCO3w,1975
756
757
  wandb/sdk/artifacts/artifact_download_logger.py,sha256=bS4v544rFcTOTRTXMUSd6tfLUXzezbIogDpQmZUjah0,1537
757
758
  wandb/sdk/artifacts/artifact_file_cache.py,sha256=ZsGRP2hIH4XlHcbpGqR4vlZRIf7uzDBx6OT2RBkjFK0,9989
758
- wandb/sdk/artifacts/storage_handler.py,sha256=ebMCKXvvn7z_eYunXriTOYescstuBbNbxn7MDW9qZAw,1834
759
+ wandb/sdk/artifacts/storage_handler.py,sha256=9-04vxaDdHm2WLIc00m_Xf_3i35tzdCxucRSKJP_RHo,2045
759
760
  wandb/sdk/artifacts/_models/__init__.py,sha256=8PpmvWO1KzNWPObw2fbJR3F1LMOKwRgAvrEfxsqY0rQ,107
760
761
  wandb/sdk/artifacts/_models/base_model.py,sha256=JNs9Ain1-iX7ZHDkYfEFO0DUZJEO-ryNoncK5jCgAMM,761
761
762
  wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
762
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=s6UursfXVBasvv72r8gxQReCsV5n632-BWoClA-O7Fg,20114
763
+ wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=tkna8iTT-DnO5sZlx81Z1bXV_Hl4-MbldJOCyb4nm80,12900
764
+ wandb/sdk/artifacts/storage_policies/_multipart.py,sha256=6ZcvjvWVVjS68Fsej6yISjmShFz0_WmI0dOgXUcxT_o,7177
763
765
  wandb/sdk/artifacts/storage_policies/_factories.py,sha256=r5vJ-TJvGnGNMviWozdCQjl0r7INizjU4eC0KPfF45I,2249
764
766
  wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
765
767
  wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -806,15 +808,15 @@ wandb/sdk/artifacts/_generated/artifact_used_by.py,sha256=M3IOar70stenLIQT3Xfvl8
806
808
  wandb/sdk/artifacts/_generated/artifact_by_id.py,sha256=elaALkxo-D9zkv7oBH0ig1_uc7iFaNxFeGz8XhpHMcc,320
807
809
  wandb/sdk/artifacts/_generated/input_types.py,sha256=nq6YCF9DLpvIXqcJ7HiJ1MJgmed69sFJUcU7hV5TRSE,1514
808
810
  wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
809
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=NZElfTpmkGffTpiN1-yAfeKoGnXxBL4YgmnvmnDz_h8,8472
810
- wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=sKu9VRCcgd9DYPPdCN49Fl63g6_HfHX124xnnFyZPe8,4764
811
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=MpYHgEkbjt1VCUV-lfg1f3MscOK10tZHSJwOFjCzGBg,2562
812
- wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=B2ysOvIESV3Wa-IXOT1VFw4jkj8lG6Kzo4xFKjd-v_U,12839
813
- wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=4MFqhnVciygmANKOrMSZwew4TXAFg5Q7zAZFz0FbpWM,2487
814
- wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=GZ9wAfVSuZE3IGL5F5ojM_GPrRqYIYTJxWSsqFn9HiI,1842
815
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=BuRUvWgyX5pbBfVGUXnhvNXU0WcOp2M1vdPOywzGKpg,5433
816
- wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=Y0B79t9xDrXo361O9x6VFPQWJOozIPlzQRaGx6768Sw,8333
817
- wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=r-Q1nSxUDruxeDMsWcs6OQ9Dyn0xS6SJ1lVKugOOSR8,3920
811
+ wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=jzDvXVccQknkYJhMRwCVvKANSU5f0ArJwAyLITOCims,8574
812
+ wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=b1TreDrqMucyptvwaNSvGAGnLFNdF7a0feJm6gTVYts,4992
813
+ wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=deRwMl0_APHirSi1oHMvMVoTfrKPmD24xF8MSGYfdr8,2604
814
+ wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=o5Bt8mc0IEgBd01pZ3UgHkUGsJAxNw9XXGUCUQHceZs,12924
815
+ wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=Ntb2k4dcVnta47DAr-CzVuXihjZ4YS8pl0SlobaHvSc,2476
816
+ wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=GAs8eUy2Fo_9kYAmi8usxc9esuscuKLfHAfDpt-XFQw,1898
817
+ wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=4gIlr3lnx2NKNODGR90aCaMofdkhXzTywJ5bi_b26aE,5536
818
+ wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=YckDbo7LGSlE8UapQgFQwDZia_9caQzCoyhaC1yUnI4,8472
819
+ wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=2PeaQIIe3EbT2SDeRpi8w2blFX68ThnJil3F1nC46j8,4044
818
820
  wandb/sdk/launch/__init__.py,sha256=moXY557JibPbvE1GSSh3nGFiyelTVaJZMdFSv61Dn2k,399
819
821
  wandb/sdk/launch/_launch_add.py,sha256=OD6JPJN3dCNz5FZ_8MzgUOBAWGRtcgMz8UYoeV26g9c,8795
820
822
  wandb/sdk/launch/utils.py,sha256=2rhynbIezfLbalpNSorcJjX8XEIednziyOOBWG7XLu8,28024
@@ -822,7 +824,7 @@ wandb/sdk/launch/_project_spec.py,sha256=n21vwzY3leq0Fi7EjpL1RFIN_c5Y6JRgpQCzvGb
822
824
  wandb/sdk/launch/errors.py,sha256=G86cx2IZSRBBxLE7thxcVFKzN9d4mGyvciaWRz0uWWM,275
823
825
  wandb/sdk/launch/_launch.py,sha256=V4CvEVWawFIZaxwFGa0KnBCsVisZeaaYH4wwaeWAnTY,11815
824
826
  wandb/sdk/launch/git_reference.py,sha256=6pTVlD7-BICWoraN8PsAzCKu64GV7g_GzqMSD9w3Sos,3758
825
- wandb/sdk/launch/create_job.py,sha256=Hfhre_v70whBFvumC5TWiSCdLWg2C5PcElZI2bkmhu8,17754
827
+ wandb/sdk/launch/create_job.py,sha256=5wwwNY2fRA5tKHaxdFpmVXJo5vhpyKiYEGjp7PutpAE,17760
826
828
  wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
827
829
  wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
828
830
  wandb/sdk/launch/sweeps/__init__.py,sha256=Vv3WTuhqs7064cv23YevqzX8jGca9qYZ5JpdhorBk0w,906
@@ -902,11 +904,11 @@ wandb/sdk/internal/settings_static.py,sha256=qCOWjgCRdCK-ytjNAZmMMPJYKfxfZo1HBWV
902
904
  wandb/sdk/internal/tb_watcher.py,sha256=wqlBUrQKyTYQth8q_ABPb9MNMNmeatyv59_Bq5pCtaU,18676
903
905
  wandb/sdk/internal/file_pusher.py,sha256=G6JLdqasdMMeNV6wiHUVgv3nGXiCrXFYwGOa7vOfTR0,6023
904
906
  wandb/sdk/internal/profiler.py,sha256=6IJ18j5saTzX_GrGUm-qKLAYF8tW_iQMCP_jUqbaVn8,2391
905
- wandb/sdk/internal/sender.py,sha256=Y0PegInC70owGWrEpLycXg9aLq0OssXYIgjshNvaT8I,65175
907
+ wandb/sdk/internal/sender.py,sha256=gR2Exzx9OSABgvekRPfqAx6B_AnqjwFkRGu1rLNO2WM,65240
906
908
  wandb/sdk/internal/run.py,sha256=MD3D-o8Zo9hYpd-v9UlslTAuvCJHD6J1gBnZeZoD4o0,624
907
909
  wandb/sdk/internal/sender_config.py,sha256=wZkz25ikhSoO9FCb-H06QdPKGCkZzdyXXa1LZEdpu2g,7133
908
910
  wandb/sdk/internal/handler.py,sha256=ZmZrzaJUw-caclqGmOfQMRmv5s5ha9eDf72pcOFOcZc,31549
909
- wandb/sdk/internal/job_builder.py,sha256=DWoAMc1q37mdOHrQX-RX9tfB57YHyiW3T7tdDKe0tn0,22995
911
+ wandb/sdk/internal/job_builder.py,sha256=4HqAtpjuSFd01vQBzFTAcxL86WRL10v1PzuwwqO2TXg,23470
910
912
  wandb/sdk/internal/internal_api.py,sha256=MqU2e8cUXKGHsPsQEsfmjZVA8Y5JUiu6FNbuJv7P4qU,163977
911
913
  wandb/sdk/internal/datastore.py,sha256=cbTtq452ZGSbzDVnvEJ3wdVTTCkCqSEmHullPYOnEvE,9774
912
914
  wandb/sdk/internal/file_stream.py,sha256=dLzl8RnbQQR2taSgcLff1Br5XghCKSPgxSxkBgzegyY,25604
@@ -915,5 +917,10 @@ wandb/sdk/internal/_generated/__init__.py,sha256=mEJ0eZ7YAZRsOPDX8PU9Ts_ViO4FHoS
915
917
  wandb/sdk/internal/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
916
918
  wandb/sdk/internal/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
917
919
  wandb/sdk/internal/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
918
- wandb/bin/wandb-core,sha256=CozLc2OPNDbybG2Fz0XAHnLjDizx0U8eD3poMY9SH3U,39583928
919
- wandb/bin/gpu_stats,sha256=q1uAwcdtULtdniknG06Pba5LRb3H4ZCFDVLPPYbBpp8,10890800
920
+ wandb/bin/wandb-core,sha256=ig7jRWyb9bc9MHbpSi9AhxtZRfwE5uiosB2xLTNLSnE,40698040
921
+ wandb/bin/gpu_stats,sha256=Fdw8c8njg5BQi76RX7RLm8E9T5RaDMiMEthq_6xnsuw,10890944
922
+ wandb-0.22.2.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
923
+ wandb-0.22.2.dist-info/METADATA,sha256=LFEVr8vc56D-G1vYkTtNeY6_OAG4VL20gfn3Ru6uiHU,10244
924
+ wandb-0.22.2.dist-info/RECORD,,
925
+ wandb-0.22.2.dist-info/WHEEL,sha256=ZCaGMInsobf_X8ibOue5yAC0a46KTbFsnGjtmL2skyU,106
926
+ wandb-0.22.2.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
File without changes