wandb 0.15.10__py3-none-any.whl → 0.15.11__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- wandb/__init__.py +2 -1
- wandb/apis/public.py +51 -9
- wandb/apis/reports/blocks.py +1 -0
- wandb/cli/cli.py +14 -9
- wandb/env.py +11 -1
- wandb/integration/xgboost/xgboost.py +3 -3
- wandb/proto/v3/wandb_internal_pb2.py +300 -267
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v3/wandb_telemetry_pb2.py +16 -16
- wandb/proto/v4/wandb_internal_pb2.py +260 -252
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_telemetry_pb2.py +16 -16
- wandb/sdk/artifacts/artifact.py +9 -6
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +12 -7
- wandb/sdk/data_types/image.py +1 -1
- wandb/sdk/internal/file_stream.py +2 -1
- wandb/sdk/internal/handler.py +24 -20
- wandb/sdk/internal/internal_api.py +9 -1
- wandb/sdk/internal/sender.py +4 -1
- wandb/sdk/internal/system/system_info.py +2 -2
- wandb/sdk/launch/__init__.py +5 -0
- wandb/sdk/launch/{launch.py → _launch.py} +53 -54
- wandb/sdk/launch/{launch_add.py → _launch_add.py} +34 -31
- wandb/sdk/launch/agent/agent.py +36 -18
- wandb/sdk/launch/agent/run_queue_item_file_saver.py +6 -4
- wandb/sdk/launch/runner/abstract.py +0 -2
- wandb/sdk/launch/runner/kubernetes_monitor.py +329 -0
- wandb/sdk/launch/runner/kubernetes_runner.py +44 -301
- wandb/sdk/launch/runner/local_container.py +5 -2
- wandb/sdk/launch/sweeps/scheduler.py +14 -10
- wandb/sdk/launch/sweeps/utils.py +5 -3
- wandb/sdk/launch/utils.py +3 -1
- wandb/sdk/lib/_settings_toposort_generated.py +5 -0
- wandb/sdk/lib/gql_request.py +3 -0
- wandb/sdk/lib/ipython.py +4 -0
- wandb/sdk/service/service.py +19 -6
- wandb/sdk/wandb_init.py +7 -2
- wandb/sdk/wandb_run.py +2 -5
- wandb/sdk/wandb_settings.py +48 -2
- wandb/util.py +1 -1
- {wandb-0.15.10.dist-info → wandb-0.15.11.dist-info}/METADATA +4 -1
- {wandb-0.15.10.dist-info → wandb-0.15.11.dist-info}/RECORD +46 -45
- {wandb-0.15.10.dist-info → wandb-0.15.11.dist-info}/LICENSE +0 -0
- {wandb-0.15.10.dist-info → wandb-0.15.11.dist-info}/WHEEL +0 -0
- {wandb-0.15.10.dist-info → wandb-0.15.11.dist-info}/entry_points.txt +0 -0
- {wandb-0.15.10.dist-info → wandb-0.15.11.dist-info}/top_level.txt +0 -0
wandb/sdk/service/service.py
CHANGED
@@ -13,7 +13,8 @@ import tempfile
|
|
13
13
|
import time
|
14
14
|
from typing import TYPE_CHECKING, Any, Dict, Optional
|
15
15
|
|
16
|
-
from wandb import _sentry
|
16
|
+
from wandb import _minimum_nexus_version, _sentry, termlog
|
17
|
+
from wandb.env import error_reporting_enabled
|
17
18
|
from wandb.errors import Error
|
18
19
|
from wandb.util import get_module
|
19
20
|
|
@@ -43,6 +44,17 @@ class ServiceStartPortError(Error):
|
|
43
44
|
pass
|
44
45
|
|
45
46
|
|
47
|
+
def _check_nexus_version_compatibility(nexus_version: str) -> None:
|
48
|
+
"""Checks if the installed nexus version is compatible with the wandb version."""
|
49
|
+
from pkg_resources import parse_version
|
50
|
+
|
51
|
+
if parse_version(nexus_version) < parse_version(_minimum_nexus_version):
|
52
|
+
raise ImportError(
|
53
|
+
f"Requires wandb-core version {_minimum_nexus_version} or later, "
|
54
|
+
f"but you have {nexus_version}. Run `pip install --upgrade wandb[nexus]` to upgrade."
|
55
|
+
)
|
56
|
+
|
57
|
+
|
46
58
|
class _Service:
|
47
59
|
_settings: "Settings"
|
48
60
|
_sock_port: Optional[int]
|
@@ -174,8 +186,11 @@ class _Service:
|
|
174
186
|
"wandb_core",
|
175
187
|
required="The nexus experiment requires the wandb_core module.",
|
176
188
|
)
|
189
|
+
_check_nexus_version_compatibility(wandb_nexus.__version__)
|
177
190
|
nexus_path = wandb_nexus.get_nexus_path()
|
178
191
|
service_args.extend([nexus_path])
|
192
|
+
if not error_reporting_enabled():
|
193
|
+
service_args.append("--no-observability")
|
179
194
|
exec_cmd_list = []
|
180
195
|
else:
|
181
196
|
service_args.extend(["wandb", "service"])
|
@@ -190,9 +205,6 @@ class _Service:
|
|
190
205
|
service_args.append("--serve-sock")
|
191
206
|
|
192
207
|
if os.environ.get("WANDB_SERVICE_PROFILE") == "memray":
|
193
|
-
# enable memory profiling with memray
|
194
|
-
import wandb
|
195
|
-
|
196
208
|
_ = get_module(
|
197
209
|
"memray",
|
198
210
|
required=(
|
@@ -200,6 +212,7 @@ class _Service:
|
|
200
212
|
"install with `pip install memray`"
|
201
213
|
),
|
202
214
|
)
|
215
|
+
|
203
216
|
time_tag = datetime.datetime.now().strftime("%Y%m%d%H%M%S")
|
204
217
|
output_file = f"wandb_service.memray.{time_tag}.bin"
|
205
218
|
cli_executable = (
|
@@ -216,10 +229,10 @@ class _Service:
|
|
216
229
|
output_file,
|
217
230
|
]
|
218
231
|
service_args[0] = str(cli_executable)
|
219
|
-
|
232
|
+
termlog(
|
220
233
|
f"wandb service memory profiling enabled, output file: {output_file}"
|
221
234
|
)
|
222
|
-
|
235
|
+
termlog(
|
223
236
|
f"Convert to flamegraph with: `python -m memray flamegraph {output_file}`"
|
224
237
|
)
|
225
238
|
|
wandb/sdk/wandb_init.py
CHANGED
@@ -136,6 +136,8 @@ class _WandbInit:
|
|
136
136
|
|
137
137
|
self.deprecated_features_used: Dict[str, str] = dict()
|
138
138
|
|
139
|
+
self._require_nexus = os.environ.get("WANDB_REQUIRE_NEXUS") == "True"
|
140
|
+
|
139
141
|
def _setup_printer(self, settings: Settings) -> None:
|
140
142
|
if self.printer:
|
141
143
|
return
|
@@ -427,7 +429,8 @@ class _WandbInit:
|
|
427
429
|
return None
|
428
430
|
|
429
431
|
# Attempt to save the code on every execution
|
430
|
-
|
432
|
+
# todo(nexus): remove nexus check once incremental artifact is supported
|
433
|
+
if not self._require_nexus and self.notebook.save_ipynb(): # type: ignore
|
431
434
|
assert self.run is not None
|
432
435
|
res = self.run.log_code(root=None)
|
433
436
|
logger.info("saved code: %s", res) # type: ignore
|
@@ -445,7 +448,8 @@ class _WandbInit:
|
|
445
448
|
assert self.notebook
|
446
449
|
ipython = self.notebook.shell
|
447
450
|
self.notebook.save_history()
|
448
|
-
|
451
|
+
# todo(nexus): remove nexus check once incremental artifact is supported
|
452
|
+
if not self._require_nexus and self.notebook.save_ipynb():
|
449
453
|
assert self.run is not None
|
450
454
|
res = self.run.log_code(root=None)
|
451
455
|
logger.info("saved code and history: %s", res) # type: ignore
|
@@ -637,6 +641,7 @@ class _WandbInit:
|
|
637
641
|
with telemetry.context(run=run, obj=self._init_telemetry_obj) as tel:
|
638
642
|
tel.cli_version = wandb.__version__
|
639
643
|
tel.python_version = platform.python_version()
|
644
|
+
tel.platform = f"{platform.system()}-{platform.machine()}".lower()
|
640
645
|
hf_version = _huggingface_version()
|
641
646
|
if hf_version:
|
642
647
|
tel.huggingface_version = hf_version
|
wandb/sdk/wandb_run.py
CHANGED
@@ -2678,10 +2678,7 @@ class Run:
|
|
2678
2678
|
entity,
|
2679
2679
|
project,
|
2680
2680
|
)
|
2681
|
-
if
|
2682
|
-
artifact._ttl_duration_seconds is not None
|
2683
|
-
or artifact._ttl_is_inherited
|
2684
|
-
):
|
2681
|
+
if artifact._ttl_duration_seconds is not None:
|
2685
2682
|
wandb.termwarn(
|
2686
2683
|
"Artifact TTL will be disabled for source artifacts that are linked to portfolios."
|
2687
2684
|
)
|
@@ -3028,7 +3025,7 @@ class Run:
|
|
3028
3025
|
if expected_type is not None and artifact.type != expected_type:
|
3029
3026
|
raise ValueError(
|
3030
3027
|
f"Artifact {artifact.name} already exists with type '{expected_type}'; "
|
3031
|
-
f"cannot create another with type {artifact.type}"
|
3028
|
+
f"cannot create another with type '{artifact.type}'"
|
3032
3029
|
)
|
3033
3030
|
if entity and artifact._source_entity and entity != artifact._source_entity:
|
3034
3031
|
raise ValueError(
|
wandb/sdk/wandb_settings.py
CHANGED
@@ -32,7 +32,7 @@ from typing import (
|
|
32
32
|
Union,
|
33
33
|
no_type_check,
|
34
34
|
)
|
35
|
-
from urllib.parse import quote, urlencode, urlparse, urlsplit
|
35
|
+
from urllib.parse import quote, unquote, urlencode, urlparse, urlsplit
|
36
36
|
|
37
37
|
from google.protobuf.wrappers_pb2 import BoolValue, DoubleValue, Int32Value, StringValue
|
38
38
|
|
@@ -348,6 +348,7 @@ class SettingsData:
|
|
348
348
|
_sync: bool
|
349
349
|
_os: str
|
350
350
|
_platform: str
|
351
|
+
_proxies: Mapping[str, str] # dedicated global proxy servers [scheme -> url]
|
351
352
|
_python: str
|
352
353
|
_runqueue_item_id: str
|
353
354
|
_require_nexus: bool
|
@@ -377,6 +378,7 @@ class SettingsData:
|
|
377
378
|
azure_account_url_to_access_key: Dict[str, str]
|
378
379
|
base_url: str # The base url for the wandb api
|
379
380
|
code_dir: str
|
381
|
+
colab_url: str
|
380
382
|
config_paths: Sequence[str]
|
381
383
|
console: str
|
382
384
|
deployment: str
|
@@ -415,7 +417,8 @@ class SettingsData:
|
|
415
417
|
notebook_name: str
|
416
418
|
problem: str
|
417
419
|
program: str
|
418
|
-
|
420
|
+
program_abspath: str
|
421
|
+
program_relpath: str
|
419
422
|
project: str
|
420
423
|
project_url: str
|
421
424
|
quiet: bool
|
@@ -697,6 +700,9 @@ class Settings(SettingsData):
|
|
697
700
|
"auto_hook": True,
|
698
701
|
},
|
699
702
|
_platform={"value": util.get_platform_name()},
|
703
|
+
_proxies={
|
704
|
+
"preprocessor": _str_as_json,
|
705
|
+
},
|
700
706
|
_require_nexus={"value": False, "preprocessor": _str_as_bool},
|
701
707
|
_save_requirements={"value": True, "preprocessor": _str_as_bool},
|
702
708
|
_service_wait={
|
@@ -747,6 +753,10 @@ class Settings(SettingsData):
|
|
747
753
|
"preprocessor": lambda x: str(x).strip().rstrip("/"),
|
748
754
|
"validator": self._validate_base_url,
|
749
755
|
},
|
756
|
+
colab_url={
|
757
|
+
"hook": lambda _: self._get_colab_url(),
|
758
|
+
"auto_hook": True,
|
759
|
+
},
|
750
760
|
config_paths={"preprocessor": _str_as_tuple},
|
751
761
|
console={
|
752
762
|
"value": "auto",
|
@@ -826,6 +836,9 @@ class Settings(SettingsData):
|
|
826
836
|
login_timeout={"preprocessor": lambda x: float(x)},
|
827
837
|
mode={"value": "online", "validator": self._validate_mode},
|
828
838
|
problem={"value": "fatal", "validator": self._validate_problem},
|
839
|
+
program={
|
840
|
+
"hook": lambda x: self._get_program(x),
|
841
|
+
},
|
829
842
|
project={"validator": self._validate_project},
|
830
843
|
project_url={"hook": lambda _: self._project_url(), "auto_hook": True},
|
831
844
|
quiet={"preprocessor": _str_as_bool},
|
@@ -1196,6 +1209,32 @@ class Settings(SettingsData):
|
|
1196
1209
|
console = "redirect"
|
1197
1210
|
return console
|
1198
1211
|
|
1212
|
+
def _get_colab_url(self) -> Optional[str]:
|
1213
|
+
if not self._colab:
|
1214
|
+
return None
|
1215
|
+
if self._jupyter_path and self._jupyter_path.startswith("fileId="):
|
1216
|
+
unescaped = unquote(self._jupyter_path)
|
1217
|
+
return "https://colab.research.google.com/notebook#" + unescaped
|
1218
|
+
return None
|
1219
|
+
|
1220
|
+
def _get_program(self, program: Optional[str]) -> Optional[str]:
|
1221
|
+
if program is not None and program != "<python with no main file>":
|
1222
|
+
return program
|
1223
|
+
|
1224
|
+
if not self._jupyter:
|
1225
|
+
return program
|
1226
|
+
|
1227
|
+
if self.notebook_name:
|
1228
|
+
return self.notebook_name
|
1229
|
+
|
1230
|
+
if not self._jupyter_path:
|
1231
|
+
return program
|
1232
|
+
|
1233
|
+
if self._jupyter_path.startswith("fileId="):
|
1234
|
+
return self._jupyter_name
|
1235
|
+
else:
|
1236
|
+
return self._jupyter_path
|
1237
|
+
|
1199
1238
|
def _get_url_query_string(self) -> str:
|
1200
1239
|
# TODO(settings) use `wandb_setting` (if self.anonymous != "true":)
|
1201
1240
|
if Api().settings().get("anonymous") != "true":
|
@@ -1731,10 +1770,17 @@ class Settings(SettingsData):
|
|
1731
1770
|
program = self.program or _get_program()
|
1732
1771
|
if program is not None:
|
1733
1772
|
repo = GitRepo()
|
1773
|
+
root = repo.root or os.getcwd()
|
1774
|
+
|
1734
1775
|
program_relpath = self.program_relpath or _get_program_relpath(
|
1735
1776
|
program, repo.root, _logger=_logger
|
1736
1777
|
)
|
1737
1778
|
settings["program_relpath"] = program_relpath
|
1779
|
+
program_abspath = os.path.abspath(
|
1780
|
+
os.path.join(root, os.path.relpath(os.getcwd(), root), program)
|
1781
|
+
)
|
1782
|
+
if os.path.exists(program_abspath):
|
1783
|
+
settings["program_abspath"] = program_abspath
|
1738
1784
|
else:
|
1739
1785
|
program = "<python with no main file>"
|
1740
1786
|
|
wandb/util.py
CHANGED
@@ -883,7 +883,7 @@ def no_retry_auth(e: Any) -> bool:
|
|
883
883
|
if not isinstance(e, requests.HTTPError):
|
884
884
|
return True
|
885
885
|
if e.response is None:
|
886
|
-
return True
|
886
|
+
return True # type: ignore
|
887
887
|
# Don't retry bad request errors; raise immediately
|
888
888
|
if e.response.status_code in (400, 409):
|
889
889
|
return False
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.15.
|
3
|
+
Version: 0.15.11
|
4
4
|
Summary: A CLI and library for interacting with the Weights & Biases API.
|
5
5
|
Author-email: Weights & Biases <support@wandb.com>
|
6
6
|
License: MIT License
|
@@ -96,6 +96,7 @@ Requires-Dist: optuna ; extra == 'launch'
|
|
96
96
|
Requires-Dist: nbconvert ; extra == 'launch'
|
97
97
|
Requires-Dist: nbformat ; extra == 'launch'
|
98
98
|
Requires-Dist: typing-extensions ; extra == 'launch'
|
99
|
+
Requires-Dist: PyYAML >=6.0.0 ; extra == 'launch'
|
99
100
|
Provides-Extra: media
|
100
101
|
Requires-Dist: numpy ; extra == 'media'
|
101
102
|
Requires-Dist: moviepy ; extra == 'media'
|
@@ -106,6 +107,8 @@ Requires-Dist: plotly ; extra == 'media'
|
|
106
107
|
Requires-Dist: rdkit-pypi ; extra == 'media'
|
107
108
|
Provides-Extra: models
|
108
109
|
Requires-Dist: cloudpickle ; extra == 'models'
|
110
|
+
Provides-Extra: nexus
|
111
|
+
Requires-Dist: wandb-core >=0.16.0b1 ; extra == 'nexus'
|
109
112
|
Provides-Extra: perf
|
110
113
|
Requires-Dist: orjson ; extra == 'perf'
|
111
114
|
Provides-Extra: sweeps
|
@@ -1,13 +1,13 @@
|
|
1
|
-
wandb/__init__.py,sha256=
|
1
|
+
wandb/__init__.py,sha256=x9nXfBWWDjz14d27SUgSqQpYcsiohXwaePv5AOfQh4Y,6269
|
2
2
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
3
3
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
4
4
|
wandb/data_types.py,sha256=9Sem6ULtQLspvelEPNF2_c5VdbbTDKkHsOme-QnmBfI,75520
|
5
|
-
wandb/env.py,sha256=
|
5
|
+
wandb/env.py,sha256=nmGXGf-H8_il2rJ0vwsqJ2nRdMAN_oe7Rb4xvGujH64,11271
|
6
6
|
wandb/jupyter.py,sha256=32Oeq37SRrx5I_JSwLYi13t9zSMWXDwQtFB8CaQwpA8,16946
|
7
7
|
wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
|
8
8
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
wandb/trigger.py,sha256=s6pc7ol-s76i7YRNf4P13f9co2f4f8simzXkjcmSQG0,614
|
10
|
-
wandb/util.py,sha256=
|
10
|
+
wandb/util.py,sha256=k_CdiEgpfnZl9S2EcKczm0fqvRZaGXq23leMcuk3nAQ,58053
|
11
11
|
wandb/viz.py,sha256=sg3OIQstgFDHDyhbVyMhSkbndTcXERIry_sjkI7QKWA,3296
|
12
12
|
wandb/wandb_agent.py,sha256=qkCO5e4HGK6ISmpY_pG0fULpFwilBaYwakPiFGrcDnY,21115
|
13
13
|
wandb/wandb_controller.py,sha256=NfrTC33aP_YqiQwnZ9770_q2T2hwKhsXM8Rscyz0tKM,24766
|
@@ -20,7 +20,7 @@ wandb/analytics/sentry.py,sha256=FcdrDEWFyxX8vglZE4xHvM8_iZLWWKYvU1YGHgcIAes,844
|
|
20
20
|
wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
|
21
21
|
wandb/apis/internal.py,sha256=ZKlCDJRqhtm87e3l6ezLEu-9Pz5QQ6qyCg4aB7saMwU,7359
|
22
22
|
wandb/apis/normalize.py,sha256=CkbtH11jPhiEl7apeWn0UKFJ_gwbaK4qkvDMvxwTxaw,2894
|
23
|
-
wandb/apis/public.py,sha256=
|
23
|
+
wandb/apis/public.py,sha256=BelAJfYR0meg-1tQcXMsBR-MgOGWare4kOmP-T6QFfo,158434
|
24
24
|
wandb/apis/importers/__init__.py,sha256=117C1xz4GGn1T3e3LOJ3GSSnQZrnWvZiS0AP_3B0K9Q,124
|
25
25
|
wandb/apis/importers/base.py,sha256=3XHFMvuPutt6Sg13Zt-q9yaCzZVL9sOWcqT6rHlPRv8,12203
|
26
26
|
wandb/apis/importers/mlflow.py,sha256=EOK7nBWI7_TgnhmSFzrb7TmPBCkn52tbn6UoKK86zYs,7130
|
@@ -29,7 +29,7 @@ wandb/apis/reports/_blocks.py,sha256=pauLnohwcEAPksqaJQIB04LjRn4KOe3MNQvCCWYiE7E
|
|
29
29
|
wandb/apis/reports/_helpers.py,sha256=SlJQcvD-fDBSniXcp4BLsSxW_1fp-fhVFiZj6qYgEqg,2126
|
30
30
|
wandb/apis/reports/_panels.py,sha256=wlG4E1fnnFE5gRNjR2F2BuQn1uylZWH5v4AXs9ssdsY,48255
|
31
31
|
wandb/apis/reports/_templates.py,sha256=o6VpXckaUW9Iumxk3C9t8Qe1yxQMfWgD9TIh4u9oe4U,18139
|
32
|
-
wandb/apis/reports/blocks.py,sha256=
|
32
|
+
wandb/apis/reports/blocks.py,sha256=VBrMyQS3uEhd1wu4-MzhtsjpEECkrsH5zPtqvzcuStc,430
|
33
33
|
wandb/apis/reports/helpers.py,sha256=5b4u5aSfk6NJhLmxaGMq_0m59VVUwQVdE2z6JwfDPR8,55
|
34
34
|
wandb/apis/reports/mutations.py,sha256=feURsUBRnnCdNfH0BEbmwqH9uXeKv3-k8oxT7pA6-Bk,1435
|
35
35
|
wandb/apis/reports/panels.py,sha256=Ejb7U_UjNGfI7VwzpGo7qJdhA5c1A5HuxnbbNi4_ivs,337
|
@@ -42,7 +42,7 @@ wandb/beta/workflows.py,sha256=u22a9f6R8iaBIlIGnih97T9BS_Wuq3_PuPO_vSWXAy8,9976
|
|
42
42
|
wandb/bin/apple_gpu_stats,sha256=-CVDIPhgV1f_jjM1dkXJgmo6AQY4wjy1xCGg1e8zn0w,337072
|
43
43
|
wandb/catboost/__init__.py,sha256=kgsxRzur9liL-CPOVubjNVJ_FEDiktbyA7gQQXxG1n0,226
|
44
44
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
|
-
wandb/cli/cli.py,sha256=
|
45
|
+
wandb/cli/cli.py,sha256=Yu_T_DdRJepUkJqW4jsAOXC_zTLvu2rFkvVfpgL2y4k,86691
|
46
46
|
wandb/docker/__init__.py,sha256=5v3aj39Z9f0viQI5dZAAQ4pLiNPxriFFJIZEPnfGz_Q,10141
|
47
47
|
wandb/docker/auth.py,sha256=-eisgKGsKoxWMNgnIHrgCiNb-qbiZHkyoPXeknueWwY,14984
|
48
48
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
@@ -111,7 +111,7 @@ wandb/integration/ultralytics/classification_utils.py,sha256=awqTSUCKnHCekKVZoYK
|
|
111
111
|
wandb/integration/ultralytics/mask_utils.py,sha256=FwtC09_3IONEgC0T0vUmeczJh1bg4rCv-uIv-63qG_0,5009
|
112
112
|
wandb/integration/ultralytics/pose_utils.py,sha256=dSPEYE51mm7PO9duIDbMJyjJ_5RG9XiMNjVkUrTuIJ4,3116
|
113
113
|
wandb/integration/xgboost/__init__.py,sha256=Pwmii-OI64seJjfwM28cS4BdkEN2_Ms_qMGdwp3QRn8,343
|
114
|
-
wandb/integration/xgboost/xgboost.py,sha256=
|
114
|
+
wandb/integration/xgboost/xgboost.py,sha256=8FlvyeJwEwAp5hlmfkPiFwEsn5nFB1Ei7SUKLLO-Gqk,6495
|
115
115
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
116
116
|
wandb/integration/yolov8/yolov8.py,sha256=poJfcexArzze20K5ItMXbfV7OS8kAWu1jbSOdJVjaoo,10850
|
117
117
|
wandb/keras/__init__.py,sha256=639mn5Yjuf4yoCMgFowc_EGbOCv2Ws2dRB2JI_867n4,361
|
@@ -150,36 +150,36 @@ wandb/proto/wandb_settings_pb2.py,sha256=8niHsAuapIljCb5w27q2va0dFM2n8CzkgNk_KWO
|
|
150
150
|
wandb/proto/wandb_telemetry_pb2.py,sha256=bhx6d4Gt6P8l3DTRS0NcjPelrkjVGMPkriohzGNi7dY,239
|
151
151
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
152
152
|
wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4Nzw,2248
|
153
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
153
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=xcYJmXX2MEVy8pU15g4lmZXWyIN_gDvOtMCPnIY3ezs,88565
|
154
154
|
wandb/proto/v3/wandb_server_pb2.py,sha256=u7p14fy4XjKVcDnE54U1WwgC1Gpy6VWGA4MGU3aXyg4,13631
|
155
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
156
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
155
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=VPIueuaZqRg4erYOt0liIlhvZDgM3F_ZcmQYO-Q-vqc,18364
|
156
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=Hqwygkunp5lBjGrtyyAw2jaD8tvUC36dnx0HbdaNpF4,12661
|
157
157
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
158
158
|
wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
|
159
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
159
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=A2OVkzX7YxruktSs0K0xIt8Br4i1KjsEKwUB8JdtD2w,40357
|
160
160
|
wandb/proto/v4/wandb_server_pb2.py,sha256=YkapN5k621amFmIYKtV5xLww3TaB-6EeGI8Qq2_UY94,5991
|
161
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
162
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256
|
161
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=BV26vcDbmfsI-zG-1k1vCHlxnckEyi4A6M0UgXPq4z8,15430
|
162
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=-NhVG2coX8x2GR4ytujsOceyFGhE_VkN0jeEaZ6u4aU,10108
|
163
163
|
wandb/sacred/__init__.py,sha256=2sCLXqvkwjEqOvPFdtAtmo80PY4hky7rj4owO5PoJWQ,80
|
164
164
|
wandb/sdk/__init__.py,sha256=9atCEEf_Y0R4gtjDvtr8zsLR7HaKD7PzNaUm8618jVE,722
|
165
165
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
166
166
|
wandb/sdk/wandb_config.py,sha256=S3JP6LWyu6n5ELIVgtCrb3_Q8p6lPOpFls6aq1I5Ey0,9874
|
167
167
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
168
|
-
wandb/sdk/wandb_init.py,sha256=
|
168
|
+
wandb/sdk/wandb_init.py,sha256=jRF7aHsid1D4XdyzSQIvzl05M5AIp2FqXJ7rHxuhkBE,49605
|
169
169
|
wandb/sdk/wandb_login.py,sha256=CdOGFbW9wjAJAmcT71BZf45XBRK8nlsKur-ON5-a0Rk,10016
|
170
170
|
wandb/sdk/wandb_manager.py,sha256=qmoXa3ATgN0ZmmUK4wa73Znl7QGQmg3OZJKms4Urj9g,6541
|
171
171
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
172
172
|
wandb/sdk/wandb_require.py,sha256=pOaOSlw1TQzaHtBQvTW5qAFtbRKix7HicqpzHTGklXE,2900
|
173
173
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
174
|
-
wandb/sdk/wandb_run.py,sha256=
|
174
|
+
wandb/sdk/wandb_run.py,sha256=eN9RbL684qUlrESOscYIXPFsRysENslZZLtigZRWR0k,143300
|
175
175
|
wandb/sdk/wandb_save.py,sha256=RJeT-_cpmtUxqNk3AmFVW1Tb8k5s46ylmvb8cw54Vks,181
|
176
|
-
wandb/sdk/wandb_settings.py,sha256=
|
176
|
+
wandb/sdk/wandb_settings.py,sha256=syNweFJzX5QWN4V6icGdMPRISvrTDXPJg2KA24Aa_90,73864
|
177
177
|
wandb/sdk/wandb_setup.py,sha256=IRXIXGXZEzt8zeBaWSGgKvpQ3i7evCiKuy-fS9ew-iA,11077
|
178
178
|
wandb/sdk/wandb_summary.py,sha256=mhZPJ5zLGy2G7J7FGCPFCBIIfaXpLTVSI86drmaUFNY,4520
|
179
179
|
wandb/sdk/wandb_sweep.py,sha256=8EaZ6ES2n-WyUyBwPl6lGEMhH3hksssZamgCWu1t6f4,4652
|
180
180
|
wandb/sdk/wandb_watch.py,sha256=Yj573eCyEOc6ef4tqM7G9D-Epe_DtRveHQse1YrClO0,3876
|
181
181
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
182
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
182
|
+
wandb/sdk/artifacts/artifact.py,sha256=rbGnmlWlNpg0I0twVkbi4EHlVO0q6VDWSUdqdC7QHnI,82072
|
183
183
|
wandb/sdk/artifacts/artifact_cache.py,sha256=w7d8Kt9mfrZD59g0_1hJVBexjjyRL_SzmBAGWQhhftg,463
|
184
184
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=GAwxH3FLnDiGv8CgusV6O4K3vOvYTAD6X_5XLD38whk,1500
|
185
185
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=27wi935ycj6-9I-kKDquAZvRo1Wf9LQwMEXM97UbWr0,2375
|
@@ -201,7 +201,7 @@ wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=Zj5_aFoTSOHFvfoFyzLYQ
|
|
201
201
|
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=-eVSyWKCWKIjtKyKjyiII01jxtFgGtqIB8sghosf8I4,4080
|
202
202
|
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=KXxgnDL4E0cx9a8J66GQlOEJYWNcK4wOtXsSmIqXScQ,5242
|
203
203
|
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=uXP24q8f8ItHMLTJ7r3TqfjSNzm6Efm8dL3O1BDoe2c,1869
|
204
|
-
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=
|
204
|
+
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=XcYMaNV9CZdFmelLQdKE-ZWOsRy0iWam6uXxt-91ZDY,11390
|
205
205
|
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=mM_BsDhryiE9NkTOytUxoLpYizbFjICfNGAfRVHflPA,2524
|
206
206
|
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=zFtIPvgOl_Dy_-h30Es0SaAcaVrr3vWS8oKiSu0Fszc,4851
|
207
207
|
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=XVvtN4LM8myN0dUiTs2u9YvhiYYqCjKeLX6F0fv2xT8,2517
|
@@ -215,7 +215,7 @@ wandb/sdk/data_types/_dtypes.py,sha256=pKaxEzSpc7a6W_tXbkUGeWJi3V_DMlWqAVBwNdotm
|
|
215
215
|
wandb/sdk/data_types/_private.py,sha256=IEDH2Qu3YIVow2XbMs-7BhPo1qi42KkClSiRr6O6IVY,72
|
216
216
|
wandb/sdk/data_types/histogram.py,sha256=BiIYj3yY-9oetopHf_cwPp9Z7mKS7bm3ve_ZMX0hwUg,3202
|
217
217
|
wandb/sdk/data_types/html.py,sha256=NED-Hal9jr0yU4hcq6TYHMezIlQfJJRhQHKma1G30Vk,3490
|
218
|
-
wandb/sdk/data_types/image.py,sha256=
|
218
|
+
wandb/sdk/data_types/image.py,sha256=lyTQbyy1zq89syCncuQ847UqRu_VbwUYBIyIqk9acE8,24451
|
219
219
|
wandb/sdk/data_types/molecule.py,sha256=wZzxT_OKuM2CAZxc38o6COfrGgz9t8JCKuy0fd21A9w,8598
|
220
220
|
wandb/sdk/data_types/object_3d.py,sha256=hxqH0tpQ6Kus_c3lBwaSiQ6K7rWI-vD1m2fpBzJl03U,12516
|
221
221
|
wandb/sdk/data_types/plotly.py,sha256=m75HRKSCdd9-cu-odpZ5d2Tu8KwmR_LVdW9u0H-68AE,2918
|
@@ -252,18 +252,18 @@ wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
252
252
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
253
253
|
wandb/sdk/internal/datastore.py,sha256=RZAxFbbHMVqf__kUBHl7lOZ7umRXsX9p_FxckHOGW8M,9718
|
254
254
|
wandb/sdk/internal/file_pusher.py,sha256=gMiwxrogWkc5VWDQfmWxfhRsukgcEcpNDGM_TNe_FRI,6184
|
255
|
-
wandb/sdk/internal/file_stream.py,sha256=
|
255
|
+
wandb/sdk/internal/file_stream.py,sha256=IuCg-SfgbleyWeNCyGy6WiEXiKbgx0bTdL_IL94NKB8,25558
|
256
256
|
wandb/sdk/internal/flow_control.py,sha256=LO3iDyBbI4WGoDuVLjA_iv62PyiupdYkpSjxPIMGI7E,8584
|
257
|
-
wandb/sdk/internal/handler.py,sha256=
|
257
|
+
wandb/sdk/internal/handler.py,sha256=KaYZ26G3H3XvB9pOASpf9YEGbU-hsjCRKXLKvo5mOU8,31979
|
258
258
|
wandb/sdk/internal/internal.py,sha256=xEPko89uIn5QOZMO8KTfEjPnEw9q-uJvIbHv9YF4a-0,12723
|
259
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
259
|
+
wandb/sdk/internal/internal_api.py,sha256=BGbI0kOTuRUE_Qq6ms81AQtHS9ivrQKrpmooOJW6WE4,136632
|
260
260
|
wandb/sdk/internal/internal_util.py,sha256=1BI2ol9hhRukU7zBPbPhUcUXa58i4vLa4ocgBUya6pQ,2655
|
261
261
|
wandb/sdk/internal/job_builder.py,sha256=g7KXQiqxLLne56R57RHzDuYOP4QOACeJAxzYwDlXjFg,17734
|
262
262
|
wandb/sdk/internal/profiler.py,sha256=ZpPXJJZhkml3ZL8HPbB-vZGAVPZUv0Wv-nWjOnCMXPg,2350
|
263
263
|
wandb/sdk/internal/progress.py,sha256=PByxtt9tx3Y6GQcw3bKDBru44UXRnFL244RTe3NlAuc,3272
|
264
264
|
wandb/sdk/internal/run.py,sha256=zZVFW3o78iQO6Yl74pJnEI_X4Qi1b1Y5NXD3VDDxwkU,681
|
265
265
|
wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,2442
|
266
|
-
wandb/sdk/internal/sender.py,sha256=
|
266
|
+
wandb/sdk/internal/sender.py,sha256=Dz3pNGG5nUv3U_6pxrg8zRRs54OeL66uErKXDFbpIAQ,63570
|
267
267
|
wandb/sdk/internal/settings_static.py,sha256=GlVgy7hgg4yRuGpdPF1OA8Q3TZ3WPfl-H_IuKVfhmeg,2909
|
268
268
|
wandb/sdk/internal/tb_watcher.py,sha256=95vhk4q0RT1V7QHQAyxy2hreJvpWYv3scTQ1oAh--Xw,18688
|
269
269
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
@@ -271,7 +271,7 @@ wandb/sdk/internal/update.py,sha256=VLtttroJVglx6hidllhp7KHpsF-mrrMex90K5q6ZGV4,
|
|
271
271
|
wandb/sdk/internal/writer.py,sha256=LL3Pjb1ohPKncgtI3eszc3Nvzo2b5GyAbN0RJnmU8v0,7395
|
272
272
|
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
273
273
|
wandb/sdk/internal/system/env_probe_helpers.py,sha256=jIy6gbiaq37SzgcBGe6GepJho1VS5qNQThqOmu-g0OA,397
|
274
|
-
wandb/sdk/internal/system/system_info.py,sha256=
|
274
|
+
wandb/sdk/internal/system/system_info.py,sha256=yeKOcu35Gg_iBWxlBEddg9cJF_BL6yYGlXDMwvnZIGs,10755
|
275
275
|
wandb/sdk/internal/system/system_monitor.py,sha256=UKHdGJ27HwddCnFkvLgtqpbegXVGjGXO5WQGC_thW08,8306
|
276
276
|
wandb/sdk/internal/system/assets/__init__.py,sha256=MYjvhda8QWI55ygVE8hzLULgJhrJPMftB3z4F660Hso,522
|
277
277
|
wandb/sdk/internal/system/assets/aggregators.py,sha256=EzJp_YjvYORcBH6g58OsqGtmy55HqYHYMAvaIsp2Iwg,1093
|
@@ -288,20 +288,20 @@ wandb/sdk/internal/system/assets/network.py,sha256=n3buH2-InLGT35PVlvhY5eHv_Hm5K
|
|
288
288
|
wandb/sdk/internal/system/assets/open_metrics.py,sha256=uWxSwjidBLzJuI00eLAzu3r8lgmGMKO5PV_rXmRtUhA,9739
|
289
289
|
wandb/sdk/internal/system/assets/tpu.py,sha256=nwv3C9a6dgD1hc0461Rh28NQkWbNQ5fJOXsw6lOQ-Gw,4901
|
290
290
|
wandb/sdk/internal/system/assets/trainium.py,sha256=HpfLVFnSftVbaNuwTJP7W9A05_5WHjQq5tMGf-jY7U4,13405
|
291
|
-
wandb/sdk/launch/__init__.py,sha256=
|
291
|
+
wandb/sdk/launch/__init__.py,sha256=ZgTBlC3jMMnPJp26pvKm8-PXLRIqiPyRhKQiCSMLh_o,152
|
292
|
+
wandb/sdk/launch/_launch.py,sha256=Xq351D6xT2x-Eqj9HFfhHFN2EbV73PpH7T6MbCwFArs,10600
|
293
|
+
wandb/sdk/launch/_launch_add.py,sha256=7oqh5AvE0Z3Z7ztNfxpahSiRLBmRQCsLgbfF8RakZws,7830
|
292
294
|
wandb/sdk/launch/_project_spec.py,sha256=jfBP-x_0ZVGaJ1sN952ylVOrbccn98tsiApEBHhG-Ck,21690
|
293
295
|
wandb/sdk/launch/create_job.py,sha256=2c8Hr1_GepH3_EwKN0xHIGelqrAuDe9G5ANi2g64p_U,18162
|
294
296
|
wandb/sdk/launch/errors.py,sha256=CC1M5x7FnyyO3VVcWtqH6LgJReTS-g0nqqC-yKiEr_w,305
|
295
297
|
wandb/sdk/launch/github_reference.py,sha256=qql6AxtVabSS9c--FFBvuqUqgZJZY1uH_4g4JhvyyWM,8570
|
296
|
-
wandb/sdk/launch/launch.py,sha256=dW2lNmRR0C9QX1S66VOViBfnTBFsaZDLksVuBqBcQsA,10537
|
297
|
-
wandb/sdk/launch/launch_add.py,sha256=DHDotr1OOGQrnAZtHAkWRCwIEM8fLSaBxSonikj8DxA,7727
|
298
298
|
wandb/sdk/launch/loader.py,sha256=GtXkvdJ2nmrF6v5sTHncjt399E_OuU3Bdj6WRjJpTZI,9670
|
299
|
-
wandb/sdk/launch/utils.py,sha256=
|
299
|
+
wandb/sdk/launch/utils.py,sha256=TBV6gFUhCsBoBX11lvXovAWVdYfe3WJ_gPYlZUsl6pg,25317
|
300
300
|
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
301
301
|
wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
|
302
|
-
wandb/sdk/launch/agent/agent.py,sha256
|
302
|
+
wandb/sdk/launch/agent/agent.py,sha256=-07ZTVSnPf3PINBhIzB9H1olpxiz9hkRLFlEwBCAnPY,28716
|
303
303
|
wandb/sdk/launch/agent/job_status_tracker.py,sha256=_JpiGoHqnZD55ycTqQTFQ6LzZrg5cep-P-pUdq3sr-8,1042
|
304
|
-
wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=
|
304
|
+
wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=Xn6cs_QOJKX3OGIwoTinJLmrPZ08aeoevyQRPHoaf6s,1514
|
305
305
|
wandb/sdk/launch/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
306
306
|
wandb/sdk/launch/builder/abstract.py,sha256=rQvrYyn1WKaUoI34LBVGgOztRiyZu4oGNpr4cSpf6oM,2658
|
307
307
|
wandb/sdk/launch/builder/build.py,sha256=RvJgQjijU1tzWWyW5l6BzsC-Guz6PXUvZQ1__5VBtVM,21054
|
@@ -320,19 +320,20 @@ wandb/sdk/launch/registry/elastic_container_registry.py,sha256=GIvqKwD2HRDrOEVAs
|
|
320
320
|
wandb/sdk/launch/registry/google_artifact_registry.py,sha256=cTIS4A0Atwc58rKeb3iuhWakrgFsPjeYTxTwD-2nKLI,9404
|
321
321
|
wandb/sdk/launch/registry/local_registry.py,sha256=VusohprYxIq0RB46v_vCksdTDAnjmKu8f2JPzvNMVF8,1755
|
322
322
|
wandb/sdk/launch/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
323
|
-
wandb/sdk/launch/runner/abstract.py,sha256=
|
324
|
-
wandb/sdk/launch/runner/
|
325
|
-
wandb/sdk/launch/runner/
|
323
|
+
wandb/sdk/launch/runner/abstract.py,sha256=h7DV83czl4FlHHGR2TOY3gs73MI5kph1rmgp6lMY_QY,5517
|
324
|
+
wandb/sdk/launch/runner/kubernetes_monitor.py,sha256=CurwCc_W7drM2jVqDRlBpCt1XiYjr4s5GvPei2ziPoM,12771
|
325
|
+
wandb/sdk/launch/runner/kubernetes_runner.py,sha256=f-ueK5oKj-Y2gqfgEw5Ci0cFExY6ORWkYf7bvQLnlMc,26622
|
326
|
+
wandb/sdk/launch/runner/local_container.py,sha256=RVb8EE3wzikxFtp0NR3pukq1VQnUb3HsLNAPV5L5VOA,9800
|
326
327
|
wandb/sdk/launch/runner/local_process.py,sha256=9QNDWZHWNpT5aktzIoSoeRhIY9YvFVhTwYxxcZr6hnY,3455
|
327
328
|
wandb/sdk/launch/runner/sagemaker_runner.py,sha256=U2SKpwMGBFL4N8xiPAUydrvcgmF_CB0g3h7aiz8_8Cc,14465
|
328
329
|
wandb/sdk/launch/runner/vertex_runner.py,sha256=XJvmbUvZVIabiExVhTjWK3xjJdglk5WdFW068sF88A8,7337
|
329
330
|
wandb/sdk/launch/sweeps/__init__.py,sha256=qQ96Pq9fXRIs-w8y3jy_Z6fKz9DIJ8zrMjwEZLrDGB8,913
|
330
|
-
wandb/sdk/launch/sweeps/scheduler.py,sha256
|
331
|
+
wandb/sdk/launch/sweeps/scheduler.py,sha256=-CjkSAgfj3rV30I_ZIjtgkyV6TDBVmCP8qsOC_kIVdY,26038
|
331
332
|
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=XeuTH44rbaQPc0ngpD-evsQaG0i_WSWiOz-JvtrPFJw,2999
|
332
|
-
wandb/sdk/launch/sweeps/utils.py,sha256=
|
333
|
+
wandb/sdk/launch/sweeps/utils.py,sha256=if8pU9yYcpO5L2wQ4307xzoWAoP72wq_FI1QPVhFgQ4,9836
|
333
334
|
wandb/sdk/lib/__init__.py,sha256=K0x-PO-Ub5qblYhK0cGKLL4DQKShngxaWiK2Ab_2TaQ,151
|
334
335
|
wandb/sdk/lib/_settings_toposort_generate.py,sha256=qQIE0nZMrHKmH6SffWnTbGBfGd-AB2XU91otTL-FjNs,5022
|
335
|
-
wandb/sdk/lib/_settings_toposort_generated.py,sha256=
|
336
|
+
wandb/sdk/lib/_settings_toposort_generated.py,sha256=AOdJj2Y8L_9sRLbA3qyDzdrWSVe7yeL01xi0FZiAG4c,5012
|
336
337
|
wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
|
337
338
|
wandb/sdk/lib/_wburls_generated.py,sha256=9E_MYO6lbjb_nqlSnJy4qiYdZhDY5dzdje1YG9HfQi4,410
|
338
339
|
wandb/sdk/lib/apikey.py,sha256=HFMpwk_fc2f7I-xBgvTozpmibaU8MUQ9j-DWSq0iKeM,8700
|
@@ -347,11 +348,11 @@ wandb/sdk/lib/filenames.py,sha256=GvzWOq85BO_Od7f69PkRKS6zYhQ88dTCtMr3c19jLEk,20
|
|
347
348
|
wandb/sdk/lib/filesystem.py,sha256=J-3x-tajPGcqTDKzAD3JEU4a-CNdCYQCwlsuLeQQuYs,13785
|
348
349
|
wandb/sdk/lib/fsm.py,sha256=t6WBBgonEJwFEiBIya3xe-rvarVmXlJwzBGf6fhh0Xc,5284
|
349
350
|
wandb/sdk/lib/gitlib.py,sha256=zktMxSW4yC4_ZfTkOVslN_pveLWmJblOl7ShBfUTu6o,7549
|
350
|
-
wandb/sdk/lib/gql_request.py,sha256=
|
351
|
+
wandb/sdk/lib/gql_request.py,sha256=4-4HY6IOetwcL8EUaoFc_u3pojnNtEN4NN6-5EtT-MY,2400
|
351
352
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
352
353
|
wandb/sdk/lib/hashutil.py,sha256=3T0DyZZPZ6VXrYrmLzusdoAtD1JsuXsx0_iNuyqim9M,1745
|
353
354
|
wandb/sdk/lib/import_hooks.py,sha256=SUFX3QSYvQKGouyV2VY_RcHWRL08Zz_gW4U2WxLkXh4,10270
|
354
|
-
wandb/sdk/lib/ipython.py,sha256=
|
355
|
+
wandb/sdk/lib/ipython.py,sha256=jXjV7RDxgVppYep7ol5Q7uK7fVaWYnjR1GrWlLFLzCk,4576
|
355
356
|
wandb/sdk/lib/json_util.py,sha256=hYXqQkRMCzBxNJ6Q06baxxEn0gTqguOyhiUxGQeNyx8,2592
|
356
357
|
wandb/sdk/lib/lazyloader.py,sha256=3lWdk-WxWCwbZFnOxNOfTPCaaNxwPUePnqNaIZpievU,1878
|
357
358
|
wandb/sdk/lib/mailbox.py,sha256=A-YNGof7NwmttL_3M7RmVfkbciBEIEi8jKhcXN-sLhU,14248
|
@@ -377,7 +378,7 @@ wandb/sdk/service/_startup_debug.py,sha256=0-evSjgwjb2LiOP952eScrfSWL8PrAXPOKPgZ
|
|
377
378
|
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
378
379
|
wandb/sdk/service/server.py,sha256=FOWWSk6xxknnATKdi9zkmG4N9rk6BCMpFit7hMV0qOw,4009
|
379
380
|
wandb/sdk/service/server_sock.py,sha256=QIA-2_qdZKmcJSnbaw5ofxKllaW17NXalCUozV_ItmQ,9656
|
380
|
-
wandb/sdk/service/service.py,sha256=
|
381
|
+
wandb/sdk/service/service.py,sha256=rT4ixma-Ym7FfKeq7ixjtEtSlWxAurrNZq3Z_sRsYLk,10130
|
381
382
|
wandb/sdk/service/service_base.py,sha256=RN2vqUOUS8Vpp7infFWKzLgRkCWbB02_MbD_scIcPuA,1183
|
382
383
|
wandb/sdk/service/service_sock.py,sha256=gpAVfMwS48HTEBf8PDOqmSTAIw6inxmtqdYW7erkadA,2233
|
383
384
|
wandb/sdk/service/streams.py,sha256=mqKRLGjDsDTFHslpDtVT5fLEPVZnYpD2uUQKWbKql30,15068
|
@@ -789,9 +790,9 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2
|
|
789
790
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
|
790
791
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
|
791
792
|
wandb/xgboost/__init__.py,sha256=GRixyb89ki1Znfw48RRiRPxZnK41aEj1L48bBG6-Kh0,230
|
792
|
-
wandb-0.15.
|
793
|
-
wandb-0.15.
|
794
|
-
wandb-0.15.
|
795
|
-
wandb-0.15.
|
796
|
-
wandb-0.15.
|
797
|
-
wandb-0.15.
|
793
|
+
wandb-0.15.11.dist-info/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
794
|
+
wandb-0.15.11.dist-info/METADATA,sha256=Bv-AZ4CmVrjIp5dm035EdRmdMpf2mCP4-NGfWCp68Nw,9754
|
795
|
+
wandb-0.15.11.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
796
|
+
wandb-0.15.11.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
797
|
+
wandb-0.15.11.dist-info/top_level.txt,sha256=gPLPSekU6Labh_9yJz7WLb6Q9DK72I02_ARvDEG9Xsw,6
|
798
|
+
wandb-0.15.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|