wandb 0.17.2__py3-none-win32.whl → 0.17.4__py3-none-win32.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/apis/internal.py +4 -0
- wandb/apis/public/projects.py +0 -6
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +7 -6
- wandb/env.py +16 -0
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/sdk/artifacts/artifact.py +2 -0
- wandb/sdk/artifacts/artifact_file_cache.py +35 -13
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +11 -6
- wandb/sdk/internal/internal_api.py +68 -15
- wandb/sdk/launch/_launch_add.py +1 -1
- wandb/sdk/launch/agent/agent.py +3 -1
- wandb/sdk/launch/sweeps/scheduler.py +2 -0
- wandb/sdk/launch/utils.py +1 -1
- wandb/sdk/lib/_settings_toposort_generated.py +8 -0
- wandb/sdk/lib/apikey.py +16 -3
- wandb/sdk/lib/credentials.py +141 -0
- wandb/sdk/wandb_init.py +12 -2
- wandb/sdk/wandb_login.py +6 -0
- wandb/sdk/wandb_manager.py +25 -16
- wandb/sdk/wandb_run.py +5 -2
- wandb/sdk/wandb_settings.py +27 -3
- wandb/sdk/wandb_setup.py +12 -13
- wandb/sdk/wandb_sweep.py +4 -2
- {wandb-0.17.2.dist-info → wandb-0.17.4.dist-info}/METADATA +1 -1
- {wandb-0.17.2.dist-info → wandb-0.17.4.dist-info}/RECORD +32 -31
- {wandb-0.17.2.dist-info → wandb-0.17.4.dist-info}/WHEEL +0 -0
- {wandb-0.17.2.dist-info → wandb-0.17.4.dist-info}/entry_points.txt +0 -0
- {wandb-0.17.2.dist-info → wandb-0.17.4.dist-info}/licenses/LICENSE +0 -0
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
|
@@ -349,7 +350,9 @@ class SettingsData:
|
|
349
350
|
_sync: bool
|
350
351
|
_os: str
|
351
352
|
_platform: str
|
352
|
-
_proxies: Mapping[
|
353
|
+
_proxies: Mapping[
|
354
|
+
str, str
|
355
|
+
] # custom proxy servers for the requests to W&B [scheme -> url]
|
353
356
|
_python: str
|
354
357
|
_runqueue_item_id: str
|
355
358
|
_require_core: bool
|
@@ -389,6 +392,7 @@ class SettingsData:
|
|
389
392
|
config_paths: Sequence[str]
|
390
393
|
console: str
|
391
394
|
console_multipart: bool # whether to produce multipart console log files
|
395
|
+
credentials_file: str # file path to write access tokens
|
392
396
|
deployment: str
|
393
397
|
disable_code: bool
|
394
398
|
disable_git: bool
|
@@ -408,6 +412,9 @@ class SettingsData:
|
|
408
412
|
git_root: str
|
409
413
|
heartbeat_seconds: int
|
410
414
|
host: str
|
415
|
+
http_proxy: str # proxy server for the http requests to W&B
|
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
|
411
418
|
ignore_globs: Tuple[str]
|
412
419
|
init_timeout: float
|
413
420
|
is_local: bool
|
@@ -655,6 +662,7 @@ class Settings(SettingsData):
|
|
655
662
|
_disable_update_check={"preprocessor": _str_as_bool},
|
656
663
|
_disable_viewer={"preprocessor": _str_as_bool},
|
657
664
|
_extra_http_headers={"preprocessor": _str_as_json},
|
665
|
+
_file_stream_max_bytes={"preprocessor": int},
|
658
666
|
_file_stream_retry_max={"preprocessor": int},
|
659
667
|
_file_stream_retry_wait_min_seconds={"preprocessor": float},
|
660
668
|
_file_stream_retry_wait_max_seconds={"preprocessor": float},
|
@@ -706,6 +714,7 @@ class Settings(SettingsData):
|
|
706
714
|
},
|
707
715
|
_platform={"value": util.get_platform_name()},
|
708
716
|
_proxies={
|
717
|
+
# TODO: deprecate and ask the user to use http_proxy and https_proxy instead
|
709
718
|
"preprocessor": _str_as_json,
|
710
719
|
},
|
711
720
|
_require_core={"value": False, "preprocessor": _str_as_bool},
|
@@ -778,6 +787,10 @@ class Settings(SettingsData):
|
|
778
787
|
"auto_hook": True,
|
779
788
|
},
|
780
789
|
console_multipart={"value": False, "preprocessor": _str_as_bool},
|
790
|
+
credentials_file={
|
791
|
+
"value": str(credentials.DEFAULT_WANDB_CREDENTIALS_FILE),
|
792
|
+
"preprocessor": str,
|
793
|
+
},
|
781
794
|
deployment={
|
782
795
|
"hook": lambda _: "local" if self.is_local else "cloud",
|
783
796
|
"auto_hook": True,
|
@@ -816,6 +829,15 @@ class Settings(SettingsData):
|
|
816
829
|
},
|
817
830
|
git_remote={"value": "origin"},
|
818
831
|
heartbeat_seconds={"value": 30},
|
832
|
+
http_proxy={
|
833
|
+
"hook": lambda x: self._proxies and self._proxies.get("http") or x,
|
834
|
+
"auto_hook": True,
|
835
|
+
},
|
836
|
+
https_proxy={
|
837
|
+
"hook": lambda x: self._proxies and self._proxies.get("https") or x,
|
838
|
+
"auto_hook": True,
|
839
|
+
},
|
840
|
+
identity_token_file={"value": None, "preprocessor": str},
|
819
841
|
ignore_globs={
|
820
842
|
"value": tuple(),
|
821
843
|
"preprocessor": lambda x: tuple(x) if not isinstance(x, tuple) else x,
|
@@ -860,7 +882,9 @@ class Settings(SettingsData):
|
|
860
882
|
program={
|
861
883
|
"hook": lambda x: self._get_program(x),
|
862
884
|
},
|
863
|
-
project={
|
885
|
+
project={
|
886
|
+
"validator": self._validate_project,
|
887
|
+
},
|
864
888
|
project_url={"hook": lambda _: self._project_url(), "auto_hook": True},
|
865
889
|
quiet={"preprocessor": _str_as_bool},
|
866
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/sdk/wandb_sweep.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import urllib.parse
|
2
|
-
from typing import Callable, Dict, Optional, Union
|
2
|
+
from typing import Callable, Dict, List, Optional, Union
|
3
3
|
|
4
4
|
import wandb
|
5
5
|
from wandb import env
|
@@ -32,6 +32,7 @@ def sweep(
|
|
32
32
|
sweep: Union[dict, Callable],
|
33
33
|
entity: Optional[str] = None,
|
34
34
|
project: Optional[str] = None,
|
35
|
+
prior_runs: Optional[List[str]] = None,
|
35
36
|
) -> str:
|
36
37
|
"""Initialize a hyperparameter sweep.
|
37
38
|
|
@@ -57,6 +58,7 @@ def sweep(
|
|
57
58
|
project: The name of the project where W&B runs created from
|
58
59
|
the sweep are sent to. If the project is not specified, the
|
59
60
|
run is sent to a project labeled 'Uncategorized'.
|
61
|
+
prior_runs: The run IDs of existing runs to add to this sweep.
|
60
62
|
|
61
63
|
Returns:
|
62
64
|
sweep_id: str. A unique identifier for the sweep.
|
@@ -78,7 +80,7 @@ def sweep(
|
|
78
80
|
if wandb.run is None:
|
79
81
|
wandb_login._login(_silent=True)
|
80
82
|
api = InternalApi()
|
81
|
-
sweep_id, warnings = api.upsert_sweep(sweep)
|
83
|
+
sweep_id, warnings = api.upsert_sweep(sweep, prior_runs=prior_runs)
|
82
84
|
handle_sweep_config_violations(warnings)
|
83
85
|
print("Create sweep with ID:", sweep_id)
|
84
86
|
sweep_url = _get_sweep_url(api, sweep_id)
|
@@ -1,9 +1,9 @@
|
|
1
1
|
package_readme.md,sha256=7MrccgnqmTcd7_bEs_vUZ_OpN-nfniSlgAzeJkzNw7g,4477
|
2
|
-
wandb/__init__.py,sha256=
|
2
|
+
wandb/__init__.py,sha256=7kzWwvhOCQkFQeX088LfTtWlipoK_-xu-d0q-BmNETA,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
|
@@ -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
|
@@ -37,7 +37,7 @@ wandb/apis/public/const.py,sha256=aK9Fcp1clmTHWj0C24fTRU3ecP5u91dPmp298kLiBdM,12
|
|
37
37
|
wandb/apis/public/files.py,sha256=CSwcJwudu1VOTAoD53gB3aTMXnFX1pkTKGwtdrF73nA,5865
|
38
38
|
wandb/apis/public/history.py,sha256=Dapg1I0CRm1NDzzP9gfTDrs4-K8b8zZHMgjIlpo5NA4,4785
|
39
39
|
wandb/apis/public/jobs.py,sha256=Ir7APl9YtVdrhwVR_JB_QWABEDGOto1oIQLUlo1GrVk,22591
|
40
|
-
wandb/apis/public/projects.py,sha256=
|
40
|
+
wandb/apis/public/projects.py,sha256=TWTf_bvGJr-pTNKY_quNytP7KW0oimpDQ_FasOR-glA,4476
|
41
41
|
wandb/apis/public/query_generator.py,sha256=_9xgGz2P1QOVwH8EkvmEZK-HmV7mL1VHnPc4KuUEg1M,6159
|
42
42
|
wandb/apis/public/reports.py,sha256=1smFQQoQMj-TgCy9vEzDpDrLQG1TydB10WMfd1JCufM,16040
|
43
43
|
wandb/apis/public/runs.py,sha256=ZbraaCFAD8MXRBt2efWguvWrrBB-RbbizJUrk-q5ruQ,32023
|
@@ -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=rPo1b7_3wd2JIWWJ-MPrNHMCjd71iKv9dP52wxBPfkA,11951104
|
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
|
@@ -161,40 +161,40 @@ wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
161
|
wandb/proto/v3/wandb_base_pb2.py,sha256=TfmnqqxmajAojyOq2NgCBbyybb0DZQViQCw1H0WzXo4,2302
|
162
162
|
wandb/proto/v3/wandb_internal_pb2.py,sha256=CBP6tPiz4xY9elOsCmOme0mzPiSWoQh86xI08Cuzrh0,107552
|
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
168
|
wandb/proto/v4/wandb_internal_pb2.py,sha256=aWUv4tUnI2x6H-6aX-5dT9IMS6cxXhJdQObrMPn0Swo,48640
|
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
173
|
wandb/proto/v5/wandb_internal_pb2.py,sha256=OHfpJRkJ4Ls_rg4Upqo-3A0lREyJQdm-QgiOi9Rb-hE,52652
|
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=t0UdBu5mMZyWmIRMKlrqNxdkG-dilv2DrO7l_STdBnc,7195
|
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=V33oAR06blTQyhIAauGPKWqvPP--AWl-Kpcxshv4SNw,165136
|
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
|
-
wandb/sdk/wandb_sweep.py,sha256=
|
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=f2PmJUqrbJa6k16-7i1cSsoenJtUe_lsvkjUyP2_FwQ,91270
|
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
|
@@ -269,7 +269,7 @@ wandb/sdk/internal/file_stream.py,sha256=-euEOevpl32WiFyruJv3zgeIqAMKd2Owe9GUM5U
|
|
269
269
|
wandb/sdk/internal/flow_control.py,sha256=RL1lKVRwxV9vDwIMBz9L07p25eZgDi5XSDanHfbNzF8,8847
|
270
270
|
wandb/sdk/internal/handler.py,sha256=HRcHGiPcNIL4-5Ty0_-tZy396QXHQEyISe1npuxlz5I,34589
|
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=x9p-n7tWXBSxv0-8yM28V4oJW21p2SPuZvfReHJJBws,151392
|
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
|
@@ -304,16 +304,16 @@ wandb/sdk/internal/system/assets/tpu.py,sha256=PeHgZ_KntzMeRvEXsutRKhYgYjITxPCx6
|
|
304
304
|
wandb/sdk/internal/system/assets/trainium.py,sha256=a--LqSbGeNYcU8rwIDMEKwxktQLGC8ACy4bEi9kYvCQ,13791
|
305
305
|
wandb/sdk/launch/__init__.py,sha256=tsiLFVElWgdxjfRWGj0V2MOi0oaggmHpYwzc_Ful1qw,363
|
306
306
|
wandb/sdk/launch/_launch.py,sha256=0TC5h02R3Q8-MmzoJNmCow1ER4CrkkuGlUdwd58SblU,12052
|
307
|
-
wandb/sdk/launch/_launch_add.py,sha256=
|
307
|
+
wandb/sdk/launch/_launch_add.py,sha256=bE3o3UzwJsoN50IysEcqU8TIVCWad73gh8dcARPEs08,9047
|
308
308
|
wandb/sdk/launch/_project_spec.py,sha256=b3XaZRwp7TycuyBlYVTs_kzSnM7F54PGvVlEQqdquzM,21427
|
309
309
|
wandb/sdk/launch/create_job.py,sha256=_KuukcrT2_TeCsz13dEJsSD7xUJWUY7N4DTFdxz6mPg,17824
|
310
310
|
wandb/sdk/launch/errors.py,sha256=ry-q97_2vU_aWtTJPCOgqly2TgIJsCiKnywpdXXjnw8,324
|
311
311
|
wandb/sdk/launch/git_reference.py,sha256=5pswecUCOOo2UUrfA5I9q6zrFe80M5IGODLNzXxDlgo,3867
|
312
312
|
wandb/sdk/launch/loader.py,sha256=gka4OPM9Co3xyjNXFkrHW2IgRHrAMZqqqkiLx4E-YpE,9176
|
313
|
-
wandb/sdk/launch/utils.py,sha256=
|
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
|
@@ -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
|
-
wandb/sdk/lib/apikey.py,sha256=
|
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
|
@@ -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.4.dist-info/METADATA,sha256=pj2Xkm34_t4x4J8nBDjJbRNnRJOzJwQwAJMUQeSuTZM,10047
|
817
|
+
wandb-0.17.4.dist-info/WHEEL,sha256=2DRd_I5Nluwhn03SIbdmN0V_7r9FqkBQixEKn2cGyEA,89
|
818
|
+
wandb-0.17.4.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
819
|
+
wandb-0.17.4.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
|
820
|
+
wandb-0.17.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|