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