wandb 0.22.1__py3-none-win_arm64.whl → 0.22.2__py3-none-win_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.
- wandb/__init__.py +1 -1
- wandb/__init__.pyi +6 -3
- wandb/bin/gpu_stats.exe +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/beta.py +16 -2
- wandb/cli/beta_leet.py +74 -0
- wandb/cli/cli.py +34 -7
- wandb/proto/v3/wandb_api_pb2.py +86 -0
- wandb/proto/v3/wandb_internal_pb2.py +352 -351
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_api_pb2.py +37 -0
- wandb/proto/v4/wandb_internal_pb2.py +352 -351
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_api_pb2.py +38 -0
- wandb/proto/v5/wandb_internal_pb2.py +352 -351
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/proto/v6/wandb_api_pb2.py +48 -0
- wandb/proto/v6/wandb_internal_pb2.py +352 -351
- wandb/proto/v6/wandb_settings_pb2.py +2 -2
- wandb/proto/wandb_api_pb2.py +18 -0
- wandb/proto/wandb_generate_proto.py +1 -0
- wandb/sdk/artifacts/artifact.py +30 -30
- wandb/sdk/artifacts/artifact_manifest_entry.py +6 -12
- wandb/sdk/artifacts/storage_handler.py +18 -12
- wandb/sdk/artifacts/storage_handlers/azure_handler.py +11 -6
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +9 -6
- wandb/sdk/artifacts/storage_handlers/http_handler.py +9 -4
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py +10 -6
- wandb/sdk/artifacts/storage_handlers/multi_handler.py +5 -4
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +10 -8
- wandb/sdk/artifacts/storage_handlers/tracking_handler.py +6 -4
- wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +24 -21
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +4 -2
- wandb/sdk/artifacts/storage_policies/_multipart.py +187 -0
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +61 -242
- wandb/sdk/artifacts/storage_policy.py +25 -12
- wandb/sdk/data_types/object_3d.py +67 -2
- wandb/sdk/internal/job_builder.py +27 -10
- wandb/sdk/internal/sender.py +4 -1
- wandb/sdk/launch/create_job.py +2 -1
- wandb/sdk/lib/progress.py +1 -70
- wandb/sdk/wandb_init.py +1 -1
- wandb/sdk/wandb_run.py +5 -2
- wandb/sdk/wandb_settings.py +13 -12
- {wandb-0.22.1.dist-info → wandb-0.22.2.dist-info}/METADATA +1 -1
- {wandb-0.22.1.dist-info → wandb-0.22.2.dist-info}/RECORD +49 -42
- {wandb-0.22.1.dist-info → wandb-0.22.2.dist-info}/WHEEL +0 -0
- {wandb-0.22.1.dist-info → wandb-0.22.2.dist-info}/entry_points.txt +0 -0
- {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__(
|
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.
|
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.
|
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.
|
586
|
+
if os.path.exists(os.path.join(self._files_dir, DIFF_FNAME)):
|
570
587
|
artifact.add_file(
|
571
|
-
os.path.join(self.
|
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.
|
623
|
-
with open(os.path.join(self.
|
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
|
|
wandb/sdk/internal/sender.py
CHANGED
@@ -311,7 +311,10 @@ class SendManager:
|
|
311
311
|
self._output_raw_file = None
|
312
312
|
|
313
313
|
# job builder
|
314
|
-
self._job_builder = JobBuilder(
|
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
|
wandb/sdk/launch/create_job.py
CHANGED
@@ -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(
|
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
|
-
|
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
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("/
|
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("/
|
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")
|
wandb/sdk/wandb_settings.py
CHANGED
@@ -157,9 +157,11 @@ def _path_convert(*args: str) -> str:
|
|
157
157
|
|
158
158
|
|
159
159
|
CLIENT_ONLY_SETTINGS = (
|
160
|
-
"
|
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
|
-
|
244
|
+
- "auto" - Automatically selects the console capture method based on the
|
243
245
|
system environment and settings.
|
244
|
-
|
245
|
-
|
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
|
package_readme.md,sha256=XGlaq8rMFcoBb21rCr2d5qeSM79ZI4WslLmXqRimTGQ,4395
|
2
|
-
wandb/__init__.py,sha256=
|
3
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb/__init__.py,sha256=QS3apRxF4-NGXfahXsIB0xETJrxHE11UXOs8mrquSR0,7019
|
3
|
+
wandb/__init__.pyi,sha256=5Cx2qW1NjTY7VogJlZb4iQv4_gNPDItW-6crPUPbjc0,47700
|
4
4
|
wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
|
5
5
|
wandb/_analytics.py,sha256=byyIMDAiBDjoN7n0OnSOrR_jwQOAfa_lj06sRK-pyR0,2051
|
6
6
|
wandb/_iterutils.py,sha256=S1zBdvnlV_2UMuQZiXfwXx8ru2-WQS7PodQ6VApYDcQ,2821
|
@@ -89,12 +89,13 @@ wandb/automations/_generated/operations.py,sha256=V0n3PZ_e754Ym8IraYjFzLWg0wqnA_
|
|
89
89
|
wandb/automations/_generated/slack_integrations_by_entity.py,sha256=95llPwkGxKrwX4R6ze9IxzmMuyLpIWoperLUy-hKsE0,558
|
90
90
|
wandb/automations/_generated/update_automation.py,sha256=9SvGNXYK7fEZdhztonzRcMiJ8Yqps-42hKB16CUOFYI,357
|
91
91
|
wandb/beta/workflows.py,sha256=8uFVT9y-9CotD7OLkSQ4mRd_tsrSRsC1q0tAmJ489qI,11825
|
92
|
-
wandb/bin/gpu_stats.exe,sha256=
|
93
|
-
wandb/bin/wandb-core,sha256=
|
92
|
+
wandb/bin/gpu_stats.exe,sha256=ruQYulEBYkjtsW8ZrvbsLnyl5_DIGAVYfniMKSvcPew,7055360
|
93
|
+
wandb/bin/wandb-core,sha256=0lr6z7UOId2nMjg0V5wD-xTW2B-9kZnPH4cCa0UvmIk,41029120
|
94
94
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
|
-
wandb/cli/beta.py,sha256=
|
95
|
+
wandb/cli/beta.py,sha256=jMLWqEIaCeco2W3Km6aY3L800iFdlJpzleLt3wFWkJ4,2685
|
96
|
+
wandb/cli/beta_leet.py,sha256=qkk7XT12LgOroRoXONjMD5PayDRsPGvN6ONXR1I5A3g,1970
|
96
97
|
wandb/cli/beta_sync.py,sha256=cRP63wZ_NIA0HxFfTRl35dj5MRE6pxe0pgAuhFqTF3Y,7178
|
97
|
-
wandb/cli/cli.py,sha256=
|
98
|
+
wandb/cli/cli.py,sha256=HGXDoF8s2kBK-a4GtapPlS6zZ68X_O_Gr8miKzWP1E8,98872
|
98
99
|
wandb/docker/__init__.py,sha256=ySgObcuW3AU-CcHIy2-hk2OCEMPHJmoP679eIpWz_kc,8953
|
99
100
|
wandb/docker/names.py,sha256=E0v_-WInxWgg3vK14Tpj0F4zuwaBl8nR7OTQCYbcod4,1351
|
100
101
|
wandb/docker/wandb-entrypoint.sh,sha256=ksJ_wObRwZxZtdu1Ahc1X8VNB1U68a3nleioDDBO-jU,1021
|
@@ -224,52 +225,57 @@ wandb/plot/scatter.py,sha256=19ZAN7ZXRhvynJ7vqcfR9osr_gMiA2KaXuvNC30EdlY,2111
|
|
224
225
|
wandb/plot/utils.py,sha256=h082WkQ6tsAd9syPuxo9Pbyt5aa8jGxzSrG6OY9wl-8,6953
|
225
226
|
wandb/plot/viz.py,sha256=aS-iWx4dzGs7rrI-xbantjGNey3zPiNrjDBsunUq7Wg,984
|
226
227
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
228
|
+
wandb/proto/wandb_api_pb2.py,sha256=HFjqBwt_EV3efLEzAQx6vV-UxjIDCES07WGwuoVU_30,626
|
227
229
|
wandb/proto/wandb_base_pb2.py,sha256=nt1Z6R2ARJlWBoPYpHUCK2WMP9R5CWrJWzy6aaqFrbc,397
|
228
230
|
wandb/proto/wandb_deprecated.py,sha256=PocKZrD-mtMNradkzKGaFiVgEEZhiiv0P5cZrPHI_IQ,2835
|
229
231
|
wandb/proto/wandb_generate_deprecated.py,sha256=KqmlF-rOu3mvqn4DequWfueYyUxQH4ktGU_GF1xiKLQ,1032
|
230
|
-
wandb/proto/wandb_generate_proto.py,sha256=
|
232
|
+
wandb/proto/wandb_generate_proto.py,sha256=N5YYBwz8O7XLDT8sg2xbG8ZXzrbmpsSucZYG5Px_wnk,1376
|
231
233
|
wandb/proto/wandb_internal_pb2.py,sha256=Q8xgptPKKb9kubNlThHGVKKgb_dUSnQKNaw28BB8jE0,646
|
232
234
|
wandb/proto/wandb_server_pb2.py,sha256=P7gZ_vIpBW_XsbFfRdLLwxgy45dKZk4EqqGtKzy-9_g,405
|
233
235
|
wandb/proto/wandb_settings_pb2.py,sha256=vXdUZkLz1x7hw662A1GmOvedOWB551q4dmmw15nH-AM,413
|
234
236
|
wandb/proto/wandb_sync_pb2.py,sha256=1sAhHiJUUHU2cTdsWkrxlscBrPyxHmXXA4hKkgvmmik,397
|
235
237
|
wandb/proto/wandb_telemetry_pb2.py,sha256=-vMGhrHljykiYoRmS8Y9jN8Or4g02VzHIrG4j2b2MOM,417
|
236
238
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
239
|
+
wandb/proto/v3/wandb_api_pb2.py,sha256=hCMR0Teizjl5txVOvJDWFC5xPx_nehWgb08tyBZyrgg,4825
|
237
240
|
wandb/proto/v3/wandb_base_pb2.py,sha256=zwma_gb3IOSfBJ1tvMIdmQtQQZLe29upb8Mqr4m9No4,2410
|
238
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
241
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=bf27bO2jKUKghSitlIFFf2ql_BZ-m5CUd6hUVavhLA8,119768
|
239
242
|
wandb/proto/v3/wandb_server_pb2.py,sha256=bEu2DeZj6Hq_s7I2rVRKaraZr4OzPcICN_7n455Gb_g,14919
|
240
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
243
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=e2r06G26vJh3Ctr6Ly-HHlgR5x8DHzz3h-Im7EF9Bac,21860
|
241
244
|
wandb/proto/v3/wandb_sync_pb2.py,sha256=2fEL8HEQgSBQUdKwRHPxXKwks6X4C7tZ92CUmdVLxiw,5840
|
242
245
|
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=D2SzqZ-Od89FzmpOfYyuZb5tK7r2R_O9X77aUgK8nYM,14700
|
243
246
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
247
|
+
wandb/proto/v4/wandb_api_pb2.py,sha256=hdaFAa-Siu379daubbUY7WbRxDtOvNCHHt7GBVhnlDU,2596
|
244
248
|
wandb/proto/v4/wandb_base_pb2.py,sha256=tl7f-74ItLSWCP_GDfAWm02sTEgUpWZGoP_vqEpvRE8,1452
|
245
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
249
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=FE4R0KAsp8cf5N1GBhpv95Zh2uY2YUFFGXMJUH7_GuQ,54712
|
246
250
|
wandb/proto/v4/wandb_server_pb2.py,sha256=6fpQQDr5fpz8WkHCO2Aogsx1tfOfaHC-ynQb1quvbDU,7120
|
247
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
251
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=9Km_0lJF4mX6rkq30dqv-wahVqgDA5bT5yWOUxJhhiY,18160
|
248
252
|
wandb/proto/v4/wandb_sync_pb2.py,sha256=3bsZ4u8mOobfaTeUjF4oTasBIF8lqEffyLqOkfwi7sY,2941
|
249
253
|
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=lhk-pngFTZVQUikx_yjOHSmOw_RZ1v9KPkpOn68k3QQ,12082
|
254
|
+
wandb/proto/v5/wandb_api_pb2.py,sha256=MwUgzzYI9f4b0HYcO0Nw9rTNCLmczbjVa-j0WpUv-jk,2819
|
250
255
|
wandb/proto/v5/wandb_base_pb2.py,sha256=ES3U80f2YCt-fwiqaIrz7BGHVywwx6ibEDAnlWpohig,1603
|
251
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
256
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=GGrIE-ikBuPncHsy4-d6k66dDhxeDSY1XZE2qng9U4I,59084
|
252
257
|
wandb/proto/v5/wandb_server_pb2.py,sha256=VSu2aK5tbBlN4tZrRV4cR2Br3ElxoQmXH7hxWwWVwDE,7631
|
253
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
258
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=d3NaMFL1DsTG0RhJmSAiwmFqyl6URe47LsnY_679KqY,18517
|
254
259
|
wandb/proto/v5/wandb_sync_pb2.py,sha256=NdjUTIhksbKHvauTGEe7ToYkjsjT0GJoGc9aAk0-SO8,3212
|
255
260
|
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=1wEy2R0WRlxBdHv9Qt0JkG7HXS9xN9D41574NPin0tI,12353
|
261
|
+
wandb/proto/v6/wandb_api_pb2.py,sha256=2e7KJFI2jJfsPbutH2gZvTcj0yo9KpmiYNjhmHKOPU8,3077
|
256
262
|
wandb/proto/v6/wandb_base_pb2.py,sha256=Ar8D_8HQCOHsBnw1RebbdKc1BqnHUv1Hx7LhFmtXA7A,1862
|
257
|
-
wandb/proto/v6/wandb_internal_pb2.py,sha256=
|
263
|
+
wandb/proto/v6/wandb_internal_pb2.py,sha256=ETjbIfMJ1lmOsEal4qlFKJAibmoKWe_AkNceb5mf0Ow,59347
|
258
264
|
wandb/proto/v6/wandb_server_pb2.py,sha256=oz2SvSOlpJUMX7QqSw9mfOqM_Z-IVZfqdbnCAQGoICs,7892
|
259
|
-
wandb/proto/v6/wandb_settings_pb2.py,sha256=
|
265
|
+
wandb/proto/v6/wandb_settings_pb2.py,sha256=QWAoT4CAKDH2moPKRNz5odPbgZndebrE4MkSpgssUs4,18780
|
260
266
|
wandb/proto/v6/wandb_sync_pb2.py,sha256=y_1DSXttBgXjJHTYGSUeoOi6mRC6Sk1aRD2czMvzxYM,3471
|
261
267
|
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=Vn5p4u7AdeuwGKpdfpl_sMPrW6Yi8qF7QTstVuwC6VE,12617
|
262
268
|
wandb/sdk/__init__.py,sha256=6lzqckLZUs7GpFZIwpgxGJwJDvhuyo-XCQnSrtZqE1c,850
|
263
269
|
wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
|
264
270
|
wandb/sdk/wandb_config.py,sha256=yVtkXWoDbVmgUD8UVV-f4y4r_A1atVSvxfCk5eN7Hp4,11015
|
265
271
|
wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
|
266
|
-
wandb/sdk/wandb_init.py,sha256=
|
272
|
+
wandb/sdk/wandb_init.py,sha256=MV1PVTLlAgZmlqCOCTz41deYrwYFcDPov1554vILwBU,63282
|
267
273
|
wandb/sdk/wandb_login.py,sha256=9LazLtbkvSaQWuuHFJSsqScjU-HrH-8IZX00kxl2X1Q,12568
|
268
274
|
wandb/sdk/wandb_metric.py,sha256=JsJP2UZCliJ8OdC_uvvd_XF5k4FIAt3YWlmN1O9jLmc,3458
|
269
275
|
wandb/sdk/wandb_require.py,sha256=bUS9nZXUVjmFcc6EMW6ZSzXtQf1xg0bX98ljVxFdVX0,2801
|
270
276
|
wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
|
271
|
-
wandb/sdk/wandb_run.py,sha256=
|
272
|
-
wandb/sdk/wandb_settings.py,sha256=
|
277
|
+
wandb/sdk/wandb_run.py,sha256=0jpCYbpA9Sw-TNygZeZ30XF-pAyhGjA3obUMeq_ml-A,151557
|
278
|
+
wandb/sdk/wandb_settings.py,sha256=EvWpysS7BRs0I6mcEusCsbKcuTZcmmixLLjXJjbEuOo,77925
|
273
279
|
wandb/sdk/wandb_setup.py,sha256=-fFikKNUeq46MRACMqMk_q8hGpx8VqYw1NsBd7CqO9E,19675
|
274
280
|
wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
|
275
281
|
wandb/sdk/wandb_sweep.py,sha256=Q7IKd0wXBRxoZLvJVq2knGzAe0W1tVfQjZfFm39D7qs,4102
|
@@ -280,20 +286,20 @@ wandb/sdk/artifacts/_factories.py,sha256=aJJTq2SK0SQLdy9SeOIJA6_m_zOemdNYD2Zn95X
|
|
280
286
|
wandb/sdk/artifacts/_gqlutils.py,sha256=vmtL59qEV3nmAf83kitYmeLa3wnV8W932qrXHDIRFds,1596
|
281
287
|
wandb/sdk/artifacts/_internal_artifact.py,sha256=ZWu3XwH0zF8Z5LdfuGSmR-kMcVZW6B-_dCvHjZsUIX0,2029
|
282
288
|
wandb/sdk/artifacts/_validators.py,sha256=c9YbetsgKqNtQP1GP2nODwsjKAfBxaa2zz2e3rIfjKk,12397
|
283
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
289
|
+
wandb/sdk/artifacts/artifact.py,sha256=9yL6ti0gikpSatEOk8tVYN1fzuN3OKxUurvaznYvr6s,105720
|
284
290
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=CPle_AgeO53rr9FwQTuB5FV4bRKWdtoElJUDMQf9I7A,1582
|
285
291
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=35B-Y9x0BKRECsI5aeFU-Y-UxPvRMF0gRtmXgnp89NI,10245
|
286
292
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=Y86c2ph4Fz1p5mfTpWMEPh1VhRzi-OyLGswa-NQDuUw,518
|
287
293
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=V-xjNzEhPoTV0PmO8Vhpbu0Ivg4QbaLWid1GLdaxfJc,2610
|
288
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
294
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=nR8SAQXSUrN8GYJiB8x_0yemimuifh4y1izUnoPhgXU,10912
|
289
295
|
wandb/sdk/artifacts/artifact_saver.py,sha256=0O4M7nkLdr0M0afStwcqcoRKFmrFK09Uu8ztfP0bTLg,9931
|
290
296
|
wandb/sdk/artifacts/artifact_state.py,sha256=7bdU6ZIt-nx9aSO-aaRdZjj64MKD1ue6MhS6umlD1_U,285
|
291
297
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=L4gGRTKjQAu3hKjiko4TbOAQwVBsZWjQe7esFN7d7rY,131
|
292
298
|
wandb/sdk/artifacts/exceptions.py,sha256=40WsmOAnvu4B1lSi9An_L9HA6rYOtnpBUjqGMz-PDC4,2429
|
293
299
|
wandb/sdk/artifacts/staging.py,sha256=mkW7Ct_fGm-V7DhVmK_aesO6li8zadWWB1NiKd04ZBo,917
|
294
|
-
wandb/sdk/artifacts/storage_handler.py,sha256
|
300
|
+
wandb/sdk/artifacts/storage_handler.py,sha256=nQcep2OIEBezCgrsHTDuNNoQm63Qz891OrCUSsZo7RM,2113
|
295
301
|
wandb/sdk/artifacts/storage_layout.py,sha256=C83BTO0Z6Bbc74p3IZ3N_yPtn0AkgVjmDwcJSanKe5M,117
|
296
|
-
wandb/sdk/artifacts/storage_policy.py,sha256=
|
302
|
+
wandb/sdk/artifacts/storage_policy.py,sha256=8fOEeqFXgSvw_tG5qMFok9vgepthoQECH5PEFyn1w8s,2566
|
297
303
|
wandb/sdk/artifacts/_generated/__init__.py,sha256=9cXWRfYpUdRdrdK6yhIl8k4TgrDNbKsMF6FuTUhP4uY,7122
|
298
304
|
wandb/sdk/artifacts/_generated/add_aliases.py,sha256=K8HqNr3Ymd79shMYo3PRAof4DhZ6rEwEBTOiOvRip_w,416
|
299
305
|
wandb/sdk/artifacts/_generated/artifact_by_id.py,sha256=Xlq1FLE72MKOuEjOGsSxI9BButMwyW1PuSE5Ff1t5aE,337
|
@@ -340,19 +346,20 @@ wandb/sdk/artifacts/_models/base_model.py,sha256=wRKMtw6X2Bm5w-eXpVSeWkyo3H8pFFi
|
|
340
346
|
wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
341
347
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=r0K0ZPe2-c7g6v3XnIwbcywIIUpCxmIBLsWyrtOg_7Q,3591
|
342
348
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
343
|
-
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=
|
344
|
-
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=
|
345
|
-
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=
|
346
|
-
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=
|
347
|
-
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=
|
348
|
-
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=
|
349
|
-
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=
|
350
|
-
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=
|
351
|
-
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=
|
349
|
+
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=QS04ZSw9xa6Q-d_DHLtglnK6pPFOYUlKw7g82oTO-p4,8691
|
350
|
+
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=ggGfbrR64rQ-fm2mODczzhFvF90hMf-YibLKBkC78Ms,8801
|
351
|
+
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=vvaT-vZkggGCphJp9yR8xanZwPLlYETwYg_TGHR247c,4161
|
352
|
+
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=b12qnBNRCNv1IgiYvpk5GfP7uvscWDBXd7TGvJ3aDBo,5682
|
353
|
+
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=yxZ2xWGQI7_iAvM82GXxbT_JrlbCl-ppdPXAulGAG2g,1955
|
354
|
+
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=y0uDoAPyAFG1vP7IvTwMAHFc535AIM5TcQxFiQaxz5Q,13266
|
355
|
+
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=aaI8XIe7poytc9Xc4J8GQPhITzSqD-aO0WGMDL1m30s,2546
|
356
|
+
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=36_-KWTf3Qg2AEr4T4f2FZxjm3UZXfHOjAgqhHpVGgo,5126
|
357
|
+
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=Inkmjn4fHIAWODL5ywZg8-ittxgFQhlp9EOnIwm-Dks,2680
|
352
358
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=G8quZY8-eynVVXmNBbiLGfUoI2P1rOE-LOmpzOwNJe0,230
|
353
359
|
wandb/sdk/artifacts/storage_policies/_factories.py,sha256=4PdkmHK_iUdD-0RdCaE7QoU_BBE5NnAVSDsQ481GBt4,2312
|
360
|
+
wandb/sdk/artifacts/storage_policies/_multipart.py,sha256=8noWqS4tWBqaXkKB3Yln-qbgHziM5-_lN1mBr60Gp2Q,7364
|
354
361
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=azfof-H42vIuvndo9hvN4cZ3UXWG-nZcrFQ1QFL9oIc,50
|
355
|
-
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=
|
362
|
+
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=_dcZ8xwR_EZ_3fHeFNasyz3B9jFvcFon9KQizCZEPe4,13244
|
356
363
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
357
364
|
wandb/sdk/backend/backend.py,sha256=hir04WylvBJptctooIpNeZIbZzHoNFBkLFLXrbUxhPY,1367
|
358
365
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -365,7 +372,7 @@ wandb/sdk/data_types/histogram.py,sha256=rEfdmdK7rF_bngEFkeSCQ9kQwOq-Eo4oJKeifs1
|
|
365
372
|
wandb/sdk/data_types/html.py,sha256=-_7PL7Uqg1M_hAQSpPE6borH-D8srpxhDhsXNOihaxI,5184
|
366
373
|
wandb/sdk/data_types/image.py,sha256=ekPq1paxeLPw6xped_wkGSRabvK4B8HLfd2m8oAba0o,37178
|
367
374
|
wandb/sdk/data_types/molecule.py,sha256=9uKvTFYH8qwi3vo39sMxoWY7t4E2Tz2UzIlwCWtlY-Y,9222
|
368
|
-
wandb/sdk/data_types/object_3d.py,sha256=
|
375
|
+
wandb/sdk/data_types/object_3d.py,sha256=XpajpxkU3VjHPDypeG9KXijz_NJtCLtjGwSe75F-mH8,19736
|
369
376
|
wandb/sdk/data_types/plotly.py,sha256=atpmd1GVb9vzn8FNRosA92nkzuufFl_tvdgGVmfNLGo,3452
|
370
377
|
wandb/sdk/data_types/saved_model.py,sha256=n_QeE9mtArWK4m4CHMk1zUNsl44WPKSZK-q0QZtiH5k,16659
|
371
378
|
wandb/sdk/data_types/table.py,sha256=tQ9hBXkHFfoFTaRMej05FCkLJEmAlcO7Hr1NRWNb6fo,55913
|
@@ -399,12 +406,12 @@ wandb/sdk/internal/file_stream.py,sha256=ZD10VgoFMhz1kGbAOui-f5wx_8UcZgs0ZQLXZGy
|
|
399
406
|
wandb/sdk/internal/handler.py,sha256=QhU8NptuCeq_6QkwKxDsDEjWS7jC-fWpFSxX_XKej4k,32403
|
400
407
|
wandb/sdk/internal/incremental_table_util.py,sha256=QP2idgPtzznazJ7w6rWCYS1n6oYJZWeyTX-jvzCMDrg,1543
|
401
408
|
wandb/sdk/internal/internal_api.py,sha256=ZSwX7ZHD9C-PNI7uEl0LyhUdKOr1HW-Wq7Qj5nfqd4M,168700
|
402
|
-
wandb/sdk/internal/job_builder.py,sha256=
|
409
|
+
wandb/sdk/internal/job_builder.py,sha256=HZJPBrtbA6etRTL3eDmVtXUTFNB14igB80rFdyCcUec,24126
|
403
410
|
wandb/sdk/internal/profiler.py,sha256=v8H0__oxfONdwoAl_nETulz2h9HAOA6lJ01KKBN3Vsw,2470
|
404
411
|
wandb/sdk/internal/progress.py,sha256=D6iFIdT661PFSgVs1-JNdTpqTt0wvmy_I-Fq7TvhDT4,2366
|
405
412
|
wandb/sdk/internal/run.py,sha256=gY_cGt1_xkTBfynDSz1dMJrPKicXlEGQce4MhfmOBxI,651
|
406
413
|
wandb/sdk/internal/sample.py,sha256=tVNzrLatHr8P1kbVzw8bWhLpqZxx7zdm4fgv7rv2hO0,2540
|
407
|
-
wandb/sdk/internal/sender.py,sha256=
|
414
|
+
wandb/sdk/internal/sender.py,sha256=EZB4F-gJcdv4ee-ZnINRDmFAnHlFpL1AzQxJ0IH8Jyg,66935
|
408
415
|
wandb/sdk/internal/sender_config.py,sha256=rDsETNuJzIDg6PyI1tjpJ6ZtsrWtGRxbJGIagZiCO-8,7336
|
409
416
|
wandb/sdk/internal/settings_static.py,sha256=QU_TCa4FrexupywQTO8D-Lb41ib4LQWItRGo1XQKWFM,1215
|
410
417
|
wandb/sdk/internal/tb_watcher.py,sha256=yfZBz_6qCVB93fVOZMgvcS2nZ2z0RuLP0SOnPV95xZc,19195
|
@@ -418,7 +425,7 @@ wandb/sdk/launch/__init__.py,sha256=70GMH3jQPioNeidxTZUuuT8_8Gxjhwnw9cNCSTqvFj0,
|
|
418
425
|
wandb/sdk/launch/_launch.py,sha256=acZiTr8l4D3-kGW2R5zdqmk12wMX4EcZo9Prxe2MP5E,12146
|
419
426
|
wandb/sdk/launch/_launch_add.py,sha256=xeXunxOqeggIrOKd9U415SBaGeYwMP1_osEymWtSBkw,9050
|
420
427
|
wandb/sdk/launch/_project_spec.py,sha256=UAtAg2dKGI-FujAgSl6NcijRkxo4upzjWAxah0x-LXQ,22196
|
421
|
-
wandb/sdk/launch/create_job.py,sha256=
|
428
|
+
wandb/sdk/launch/create_job.py,sha256=DjAWzQDwRXvBMOg9hlNB7LvlYIyELcPjBMRXZHUAXrY,18302
|
422
429
|
wandb/sdk/launch/errors.py,sha256=qE6PTcZilrIMBLOy5v3I5xp4Ex-Nf0HxsiVrnJ99AlE,288
|
423
430
|
wandb/sdk/launch/git_reference.py,sha256=5pswecUCOOo2UUrfA5I9q6zrFe80M5IGODLNzXxDlgo,3867
|
424
431
|
wandb/sdk/launch/loader.py,sha256=gka4OPM9Co3xyjNXFkrHW2IgRHrAMZqqqkiLx4E-YpE,9176
|
@@ -494,7 +501,7 @@ wandb/sdk/lib/paths.py,sha256=S_Kn7oNKtVKXNxDZ3XjPFxiQMjJ7UZmDyjKYOww_r18,4673
|
|
494
501
|
wandb/sdk/lib/preinit.py,sha256=IDK_WXbcrfzXUNWZur505lHIY_cYs1IEWp26HMpIf74,1492
|
495
502
|
wandb/sdk/lib/printer.py,sha256=o9wUXAY1HY4eOZT3ZZTKkSxkpLDZdcTbbMi1I9hiKZg,16585
|
496
503
|
wandb/sdk/lib/printer_asyncio.py,sha256=kmknEO3UDvceZvCq18Y2pH_6K79kJ7XFV9pTTnNfTwI,1545
|
497
|
-
wandb/sdk/lib/progress.py,sha256=
|
504
|
+
wandb/sdk/lib/progress.py,sha256=tQv75GsGh24oSxbj2z2wjgQ_4D-krYQUfP-zkze27K0,8188
|
498
505
|
wandb/sdk/lib/proto_util.py,sha256=YaGg9FoKtWmgQD8SkkKN630gyG93WoYY5JHqwdWaQKg,2984
|
499
506
|
wandb/sdk/lib/redirect.py,sha256=kribtu1VYPwIfdTbSwP7roFyrfd6CBDnNROyRUnAkLY,28249
|
500
507
|
wandb/sdk/lib/retry.py,sha256=A9UhcdkSvvCxECcjswS1xRb4EkDtbvPeGY-rLMxeH78,13474
|
@@ -912,8 +919,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
|
|
912
919
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
|
913
920
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
|
914
921
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
|
915
|
-
wandb-0.22.
|
916
|
-
wandb-0.22.
|
917
|
-
wandb-0.22.
|
918
|
-
wandb-0.22.
|
919
|
-
wandb-0.22.
|
922
|
+
wandb-0.22.2.dist-info/METADATA,sha256=5OTGCmcyz74B_4_GERUI5cNswO9-Zxkp8pk1eLjva8I,10244
|
923
|
+
wandb-0.22.2.dist-info/WHEEL,sha256=kbX09FW5Z94atTdbb_Hq9Jpv7BsJBGnI8rdwt_f5grg,93
|
924
|
+
wandb-0.22.2.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
925
|
+
wandb-0.22.2.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
|
926
|
+
wandb-0.22.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|