wandb 0.17.9__py3-none-macosx_11_0_arm64.whl → 0.18.0__py3-none-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wandb/__init__.py +1 -6
- wandb/__init__.pyi +27 -17
- wandb/analytics/sentry.py +1 -1
- wandb/bin/apple_gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +15 -10
- wandb/env.py +1 -13
- wandb/integration/tensorboard/log.py +0 -3
- wandb/jupyter.py +18 -3
- wandb/proto/v3/wandb_internal_pb2.py +230 -230
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_internal_pb2.py +230 -230
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_internal_pb2.py +230 -230
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/sdk/artifacts/_validators.py +45 -0
- wandb/sdk/artifacts/artifact.py +100 -45
- wandb/sdk/artifacts/artifact_saver.py +6 -0
- wandb/sdk/interface/interface.py +7 -4
- wandb/sdk/internal/internal_api.py +16 -6
- wandb/sdk/internal/sender.py +1 -0
- wandb/sdk/internal/system/assets/gpu_amd.py +11 -2
- wandb/sdk/launch/inputs/internal.py +2 -2
- wandb/sdk/lib/_settings_toposort_generated.py +1 -3
- wandb/sdk/service/server_sock.py +1 -1
- wandb/sdk/service/service.py +1 -2
- wandb/sdk/wandb_init.py +11 -6
- wandb/sdk/wandb_login.py +1 -0
- wandb/sdk/wandb_require.py +4 -20
- wandb/sdk/wandb_run.py +26 -10
- wandb/sdk/wandb_settings.py +1 -3
- {wandb-0.17.9.dist-info → wandb-0.18.0.dist-info}/METADATA +5 -5
- {wandb-0.17.9.dist-info → wandb-0.18.0.dist-info}/RECORD +36 -35
- {wandb-0.17.9.dist-info → wandb-0.18.0.dist-info}/WHEEL +0 -0
- {wandb-0.17.9.dist-info → wandb-0.18.0.dist-info}/entry_points.txt +0 -0
- {wandb-0.17.9.dist-info → wandb-0.18.0.dist-info}/licenses/LICENSE +0 -0
wandb/sdk/wandb_init.py
CHANGED
@@ -273,8 +273,9 @@ class _WandbInit:
|
|
273
273
|
|
274
274
|
tensorboard = kwargs.pop("tensorboard", None)
|
275
275
|
sync_tensorboard = kwargs.pop("sync_tensorboard", None)
|
276
|
-
if tensorboard or sync_tensorboard
|
277
|
-
wandb.tensorboard
|
276
|
+
if tensorboard or sync_tensorboard:
|
277
|
+
if len(wandb.patched["tensorboard"]) == 0:
|
278
|
+
wandb.tensorboard.patch() # type: ignore
|
278
279
|
with telemetry.context(obj=self._init_telemetry_obj) as tel:
|
279
280
|
tel.feature.tensorboard_sync = True
|
280
281
|
|
@@ -737,10 +738,7 @@ class _WandbInit:
|
|
737
738
|
tel.feature.flow_control_disabled = True
|
738
739
|
if self.settings._flow_control_custom:
|
739
740
|
tel.feature.flow_control_custom = True
|
740
|
-
if
|
741
|
-
self.settings._require_core
|
742
|
-
and not self.settings._require_legacy_service
|
743
|
-
):
|
741
|
+
if not self.settings._require_legacy_service:
|
744
742
|
tel.feature.core = True
|
745
743
|
if self.settings._shared:
|
746
744
|
wandb.termwarn(
|
@@ -1157,6 +1155,7 @@ def init(
|
|
1157
1155
|
mode if a user isn't logged in to W&B. (default: `False`)
|
1158
1156
|
sync_tensorboard: (bool, optional) Synchronize wandb logs from tensorboard or
|
1159
1157
|
tensorboardX and save the relevant events file. (default: `False`)
|
1158
|
+
tensorboard: (bool, optional) Alias for `sync_tensorboard`, deprecated.
|
1160
1159
|
monitor_gym: (bool, optional) Automatically log videos of environment when
|
1161
1160
|
using OpenAI Gym. (default: `False`)
|
1162
1161
|
See [our guide to this integration](https://docs.wandb.com/guides/integrations/openai-gym).
|
@@ -1170,6 +1169,12 @@ def init(
|
|
1170
1169
|
a moment in a previous run to fork a new run from. Creates a new run that picks up
|
1171
1170
|
logging history from the specified run at the specified moment. The target run must
|
1172
1171
|
be in the current project. Example: `fork_from="my-run-id?_step=1234"`.
|
1172
|
+
resume_from: (str, optional) A string with the format {run_id}?_step={step} describing
|
1173
|
+
a moment in a previous run to resume a run from. This allows users to truncate
|
1174
|
+
the history logged to a run at an intermediate step and resume logging from that step.
|
1175
|
+
It uses run forking under the hood. The target run must be in the
|
1176
|
+
current project. Example: `resume_from="my-run-id?_step=1234"`.
|
1177
|
+
settings: (dict, wandb.Settings, optional) Settings to use for this run. (default: None)
|
1173
1178
|
|
1174
1179
|
Examples:
|
1175
1180
|
### Set where the run is logged
|
wandb/sdk/wandb_login.py
CHANGED
@@ -64,6 +64,7 @@ def login(
|
|
64
64
|
"allow", only create an anonymous user if the user
|
65
65
|
isn't already logged in. If set to "never", never log a
|
66
66
|
user anonymously. Default set to "never".
|
67
|
+
key: (string, optional) The API key to use.
|
67
68
|
relogin: (bool, optional) If true, will re-prompt for API key.
|
68
69
|
host: (string, optional) The host to connect to.
|
69
70
|
force: (bool, optional) If true, will force a relogin.
|
wandb/sdk/wandb_require.py
CHANGED
@@ -13,12 +13,7 @@ import os
|
|
13
13
|
from typing import Optional, Sequence, Union
|
14
14
|
|
15
15
|
import wandb
|
16
|
-
from wandb.env import
|
17
|
-
_REQUIRE_CORE,
|
18
|
-
_REQUIRE_LEGACY_SERVICE,
|
19
|
-
is_require_core,
|
20
|
-
is_require_legacy_service,
|
21
|
-
)
|
16
|
+
from wandb.env import _REQUIRE_LEGACY_SERVICE
|
22
17
|
from wandb.errors import UnsupportedError
|
23
18
|
from wandb.sdk import wandb_run
|
24
19
|
from wandb.sdk.lib.wburls import wburls
|
@@ -46,22 +41,11 @@ class _Requires:
|
|
46
41
|
self._require_service()
|
47
42
|
|
48
43
|
def require_core(self) -> None:
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
" is already required--did you use"
|
53
|
-
' wandb.require("legacy-service") or set the'
|
54
|
-
" WANDB__REQUIRE_LEGACY_SERVICE environment variable?"
|
55
|
-
)
|
56
|
-
os.environ[_REQUIRE_CORE] = "true"
|
44
|
+
wandb.termwarn(
|
45
|
+
"`wandb.require('core')` is redundant as it is now the default behavior."
|
46
|
+
)
|
57
47
|
|
58
48
|
def require_legacy_service(self) -> None:
|
59
|
-
if is_require_core():
|
60
|
-
raise UnsupportedError(
|
61
|
-
'Cannot use wandb.require("legacy-service") because core'
|
62
|
-
' is already required--did you use wandb.require("core")'
|
63
|
-
" or set the WANDB__REQUIRE_CORE environment variable?"
|
64
|
-
)
|
65
49
|
os.environ[_REQUIRE_LEGACY_SERVICE] = "true"
|
66
50
|
|
67
51
|
def apply(self) -> None:
|
wandb/sdk/wandb_run.py
CHANGED
@@ -69,6 +69,7 @@ from wandb.util import (
|
|
69
69
|
)
|
70
70
|
|
71
71
|
from . import wandb_config, wandb_metric, wandb_summary
|
72
|
+
from .artifacts._validators import validate_aliases, validate_tags
|
72
73
|
from .data_types._dtypes import TypeRegistry
|
73
74
|
from .interface.interface import FilesDict, GlobStr, InterfaceBase, PolicyName
|
74
75
|
from .interface.summary_record import SummaryRecord
|
@@ -3111,6 +3112,7 @@ class Run:
|
|
3111
3112
|
name: Optional[str] = None,
|
3112
3113
|
type: Optional[str] = None,
|
3113
3114
|
aliases: Optional[List[str]] = None,
|
3115
|
+
tags: Optional[List[str]] = None,
|
3114
3116
|
) -> Artifact:
|
3115
3117
|
"""Declare an artifact as an output of a run.
|
3116
3118
|
|
@@ -3131,12 +3133,17 @@ class Run:
|
|
3131
3133
|
type: (str) The type of artifact to log, examples include `dataset`, `model`
|
3132
3134
|
aliases: (list, optional) Aliases to apply to this artifact,
|
3133
3135
|
defaults to `["latest"]`
|
3136
|
+
tags: (list, optional) Tags to apply to this artifact, if any.
|
3134
3137
|
|
3135
3138
|
Returns:
|
3136
3139
|
An `Artifact` object.
|
3137
3140
|
"""
|
3138
3141
|
return self._log_artifact(
|
3139
|
-
artifact_or_path,
|
3142
|
+
artifact_or_path,
|
3143
|
+
name=name,
|
3144
|
+
type=type,
|
3145
|
+
aliases=aliases,
|
3146
|
+
tags=tags,
|
3140
3147
|
)
|
3141
3148
|
|
3142
3149
|
@_run_decorator._noop_on_finish()
|
@@ -3253,6 +3260,7 @@ class Run:
|
|
3253
3260
|
name: Optional[str] = None,
|
3254
3261
|
type: Optional[str] = None,
|
3255
3262
|
aliases: Optional[List[str]] = None,
|
3263
|
+
tags: Optional[List[str]] = None,
|
3256
3264
|
distributed_id: Optional[str] = None,
|
3257
3265
|
finalize: bool = True,
|
3258
3266
|
is_user_created: bool = False,
|
@@ -3263,13 +3271,17 @@ class Run:
|
|
3263
3271
|
wandb.termwarn(
|
3264
3272
|
"Artifacts logged anonymously cannot be claimed and expire after 7 days."
|
3265
3273
|
)
|
3274
|
+
|
3266
3275
|
if not finalize and distributed_id is None:
|
3267
3276
|
raise TypeError("Must provide distributed_id if artifact is not finalize")
|
3277
|
+
|
3268
3278
|
if aliases is not None:
|
3269
|
-
|
3270
|
-
|
3271
|
-
|
3272
|
-
|
3279
|
+
aliases = validate_aliases(aliases)
|
3280
|
+
|
3281
|
+
# Check if artifact tags are supported
|
3282
|
+
if tags is not None:
|
3283
|
+
tags = validate_tags(tags)
|
3284
|
+
|
3273
3285
|
artifact, aliases = self._prepare_artifact(
|
3274
3286
|
artifact_or_path, name, type, aliases
|
3275
3287
|
)
|
@@ -3281,6 +3293,7 @@ class Run:
|
|
3281
3293
|
self,
|
3282
3294
|
artifact,
|
3283
3295
|
aliases,
|
3296
|
+
tags,
|
3284
3297
|
self.step,
|
3285
3298
|
finalize=finalize,
|
3286
3299
|
is_user_created=is_user_created,
|
@@ -3292,6 +3305,7 @@ class Run:
|
|
3292
3305
|
self,
|
3293
3306
|
artifact,
|
3294
3307
|
aliases,
|
3308
|
+
tags,
|
3295
3309
|
finalize=finalize,
|
3296
3310
|
is_user_created=is_user_created,
|
3297
3311
|
use_after_commit=use_after_commit,
|
@@ -3301,6 +3315,7 @@ class Run:
|
|
3301
3315
|
self,
|
3302
3316
|
artifact,
|
3303
3317
|
aliases,
|
3318
|
+
tags,
|
3304
3319
|
finalize=finalize,
|
3305
3320
|
is_user_created=is_user_created,
|
3306
3321
|
use_after_commit=use_after_commit,
|
@@ -3374,6 +3389,7 @@ class Run:
|
|
3374
3389
|
"You must pass an instance of wandb.Artifact or a "
|
3375
3390
|
"valid file path to log_artifact"
|
3376
3391
|
)
|
3392
|
+
|
3377
3393
|
artifact.finalize()
|
3378
3394
|
return artifact, _resolve_aliases(aliases)
|
3379
3395
|
|
@@ -3512,7 +3528,7 @@ class Run:
|
|
3512
3528
|
registered_model_name: (str) - the name of the registered model that the model is to be linked to.
|
3513
3529
|
A registered model is a collection of model versions linked to the model registry, typically representing a
|
3514
3530
|
team's specific ML Task. The entity that this registered model belongs to will be derived from the run
|
3515
|
-
|
3531
|
+
name: (str, optional) - the name of the model artifact that files in 'path' will be logged to. This will
|
3516
3532
|
default to the basename of the path prepended with the current run id if not specified.
|
3517
3533
|
aliases: (List[str], optional) - alias(es) that will only be applied on this linked artifact
|
3518
3534
|
inside the registered model.
|
@@ -4244,13 +4260,13 @@ class Run:
|
|
4244
4260
|
printer: Union["PrinterTerm", "PrinterJupyter"],
|
4245
4261
|
) -> None:
|
4246
4262
|
"""Prints a message advertising the upcoming core release."""
|
4247
|
-
if quiet or settings.
|
4263
|
+
if quiet or not settings._require_legacy_service:
|
4248
4264
|
return
|
4249
4265
|
|
4250
4266
|
printer.display(
|
4251
|
-
"The
|
4252
|
-
|
4253
|
-
"
|
4267
|
+
"The legacy backend is deprecated. In future versions, `wandb-core` will become "
|
4268
|
+
"the sole backend service, and the `wandb.require('legacy-service')` flag will be removed. "
|
4269
|
+
"For more information, visit https://wandb.me/wandb-core",
|
4254
4270
|
level="warn",
|
4255
4271
|
)
|
4256
4272
|
|
wandb/sdk/wandb_settings.py
CHANGED
@@ -355,7 +355,6 @@ class SettingsData:
|
|
355
355
|
] # custom proxy servers for the requests to W&B [scheme -> url]
|
356
356
|
_python: str
|
357
357
|
_runqueue_item_id: str
|
358
|
-
_require_core: bool
|
359
358
|
_require_legacy_service: bool
|
360
359
|
_save_requirements: bool
|
361
360
|
_service_transport: str
|
@@ -719,7 +718,6 @@ class Settings(SettingsData):
|
|
719
718
|
# TODO: deprecate and ask the user to use http_proxy and https_proxy instead
|
720
719
|
"preprocessor": _str_as_json,
|
721
720
|
},
|
722
|
-
_require_core={"value": False, "preprocessor": _str_as_bool},
|
723
721
|
_require_legacy_service={"value": False, "preprocessor": _str_as_bool},
|
724
722
|
_save_requirements={"value": True, "preprocessor": _str_as_bool},
|
725
723
|
_service_wait={
|
@@ -1183,7 +1181,7 @@ class Settings(SettingsData):
|
|
1183
1181
|
value = _str_as_bool(value)
|
1184
1182
|
if value:
|
1185
1183
|
wandb.termwarn(
|
1186
|
-
"Disabling the wandb service is deprecated as of version 0.18.0 and will be removed in
|
1184
|
+
"Disabling the wandb service is deprecated as of version 0.18.0 and will be removed in future versions. ",
|
1187
1185
|
repeat=False,
|
1188
1186
|
)
|
1189
1187
|
return value
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.18.0
|
4
4
|
Summary: A CLI and library for interacting with the Weights & Biases API.
|
5
5
|
Project-URL: Source, https://github.com/wandb/wandb
|
6
6
|
Project-URL: Bug Reports, https://github.com/wandb/wandb/issues
|
@@ -50,10 +50,10 @@ Requires-Dist: click!=8.0.0,>=7.1
|
|
50
50
|
Requires-Dist: docker-pycreds>=0.4.0
|
51
51
|
Requires-Dist: gitpython!=3.1.29,>=1.0.0
|
52
52
|
Requires-Dist: platformdirs
|
53
|
-
Requires-Dist: protobuf!=4.21.0,<6,>=3.12.0; python_version < '3.9' and sys_platform == 'linux'
|
54
|
-
Requires-Dist: protobuf!=4.21.0,<6,>=3.15.0; python_version == '3.9' and sys_platform == 'linux'
|
55
|
-
Requires-Dist: protobuf!=4.21.0,<6,>=3.19.0; python_version > '3.9' and sys_platform == 'linux'
|
56
|
-
Requires-Dist: protobuf!=4.21.0,<6,>=3.19.0; sys_platform != 'linux'
|
53
|
+
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.12.0; python_version < '3.9' and sys_platform == 'linux'
|
54
|
+
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.15.0; python_version == '3.9' and sys_platform == 'linux'
|
55
|
+
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.19.0; python_version > '3.9' and sys_platform == 'linux'
|
56
|
+
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.19.0; sys_platform != 'linux'
|
57
57
|
Requires-Dist: psutil>=5.0.0
|
58
58
|
Requires-Dist: pyyaml
|
59
59
|
Requires-Dist: requests<3,>=2.0.0
|
@@ -1,16 +1,16 @@
|
|
1
1
|
package_readme.md,sha256=1v4WgKja-54kllY4clEr85vGFQAGaCo-JrtTZfsG4zM,3864
|
2
|
-
wandb-0.
|
3
|
-
wandb-0.
|
4
|
-
wandb-0.
|
5
|
-
wandb-0.
|
6
|
-
wandb-0.
|
2
|
+
wandb-0.18.0.dist-info/RECORD,,
|
3
|
+
wandb-0.18.0.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
|
4
|
+
wandb-0.18.0.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
5
|
+
wandb-0.18.0.dist-info/METADATA,sha256=SPz7NMyb_6IFMvXVbxwgRy7XCCDYoxud3Hm23z25tvc,9617
|
6
|
+
wandb-0.18.0.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
7
7
|
wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
|
8
|
-
wandb/env.py,sha256=
|
9
|
-
wandb/__init__.pyi,sha256=
|
8
|
+
wandb/env.py,sha256=LpH2do2jGUAwTTluibhMqripkq29uD0Qvuw3twk_99U,13629
|
9
|
+
wandb/__init__.pyi,sha256=Yo-vvqzbZLfMgA0UkIGV00C2gI6F0oLxnKq1S1b2Ypg,41999
|
10
10
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
11
11
|
wandb/util.py,sha256=NCcgpBVkmYA1ysO0XpEwRRXjb_pXjM_L4lHqUkWtXkc,61474
|
12
12
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
13
|
-
wandb/__init__.py,sha256=
|
13
|
+
wandb/__init__.py,sha256=rQgRNXfEcDfYHVSz5bvRik1NvcXFDVJGzEvrNO86y4w,6907
|
14
14
|
wandb/data_types.py,sha256=PB9sFue9cT6W-eZ2HwQrIoaJ5LLhdMICNAYlXjKboZs,73250
|
15
15
|
wandb/wandb_controller.py,sha256=Mp6szfycF_F8fFhxuDTSMpN4Vvc6D0Ix2gZBSSYOOS0,24804
|
16
16
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -18,7 +18,7 @@ wandb/wandb_torch.py,sha256=DGY0jsWashL02iXGce-5XypfSJIbBWfLsCrmixqNTCY,21276
|
|
18
18
|
wandb/wandb_agent.py,sha256=V6NUHwv4_PDvR3ygyjHxHGZhJeeLUF9JgK2NpjXigUU,21117
|
19
19
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
20
20
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
21
|
-
wandb/jupyter.py,sha256=
|
21
|
+
wandb/jupyter.py,sha256=YK4N55NVrekAO-Ykk0OerHq5xjHYZggNJxFeyTiQmps,17334
|
22
22
|
wandb/beta/workflows.py,sha256=bk12HDWnxI4uuP0KyUbfclrTSoRVXrJibAuO_QBB5tI,10239
|
23
23
|
wandb/docker/auth.py,sha256=I68SFCcbmZr18XqVxVCM75eTB7YhCebgb3dcsFiIYHQ,15032
|
24
24
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
@@ -73,25 +73,25 @@ wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
73
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
74
74
|
wandb/proto/wandb_deprecated.py,sha256=TzajfudC8s2ihtSmeRLVj_jmvsOxw_hFsQhrFPXYCQI,1988
|
75
75
|
wandb/proto/wandb_telemetry_pb2.py,sha256=ReY9N2qSt46o7m1ou1khvYSYYImrzo5ro90g_9m8QsM,322
|
76
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
76
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=LFRcsKNfKeIFMiNiLwufKmP50dYVtVVFUnlyTo49AzI,16746
|
77
77
|
wandb/proto/v5/wandb_server_pb2.py,sha256=8uKB9qS4F3QjKSlj1aL8eEXZiBIVuTGIZWvCsbs2qEQ,6477
|
78
78
|
wandb/proto/v5/wandb_base_pb2.py,sha256=_RqGlyLs6WbBXyh2m6xke8OQyjQeRFKDwh8Brn9PAN4,1441
|
79
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
79
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=BiMPtknv0tiBFm4nJMrLr7oQDjcizrAPKMD-MemLt1c,53397
|
80
80
|
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=dk1TfWfDFOJqpvYzHdNjbCh_nUEEH1NrD1F_YKOD3G8,11342
|
81
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
81
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=30JsnWlT9z5uIOyZKFQGYje02mE5mNU1OvvzdRflc20,16438
|
82
82
|
wandb/proto/v4/wandb_server_pb2.py,sha256=YkapN5k621amFmIYKtV5xLww3TaB-6EeGI8Qq2_UY94,5991
|
83
83
|
wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
|
84
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
84
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=W4XJZSu5x7Ihpiis8JbJhzOT9lEfQhJmleBDTuLOlhU,49338
|
85
85
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
86
|
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=q0Lt4IehdwFaLtEwJ6phh9BLJU0E_d5odmsN_grRJ2U,11096
|
87
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
87
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=3LRZoy1pfoZRvW6cUz0acj-8PhdeEvK77FfjTPTT0vA,19707
|
88
88
|
wandb/proto/v3/wandb_server_pb2.py,sha256=u7p14fy4XjKVcDnE54U1WwgC1Gpy6VWGA4MGU3aXyg4,13631
|
89
89
|
wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4Nzw,2248
|
90
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
90
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=DxU2LYD7qGx3SzCle1sUGIWOg-xq8no5NNeeHr4v0CU,107793
|
91
91
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
92
92
|
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=V2pidQIG-U1i9f4ojjiB4_KOHfWS8zoit0LAgk3QY3g,13649
|
93
|
-
wandb/bin/wandb-core,sha256=
|
94
|
-
wandb/bin/apple_gpu_stats,sha256=
|
93
|
+
wandb/bin/wandb-core,sha256=_zkprERtuqF5fdgzjg_lavZt5jXgrOoT1kNasDNnYcQ,10956498
|
94
|
+
wandb/bin/apple_gpu_stats,sha256=OM-42TXfD3FAmwmTWESDsMUVTBE1Ce69PmDhXDztS14,682376
|
95
95
|
wandb/integration/magic.py,sha256=8b7GkkntZb-jJ7L0OF4M7mS1yJKtMI_o3jfsTufWMr4,17246
|
96
96
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
97
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -129,7 +129,7 @@ wandb/integration/torch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
129
129
|
wandb/integration/fastai/__init__.py,sha256=poVKoo5eBJn98rhO6nC6-iExeQwYH1RI49rRz9nDFWk,9478
|
130
130
|
wandb/integration/tensorflow/estimator_hook.py,sha256=fi-UtjNZxUnDkzfbNP09iH074z5x0ItZiB4dkvwMGNI,1756
|
131
131
|
wandb/integration/tensorflow/__init__.py,sha256=8y7Acc7EAxKF-4vGXuZH6tsXeNNzqXisE2blNz9RNQk,125
|
132
|
-
wandb/integration/tensorboard/log.py,sha256=
|
132
|
+
wandb/integration/tensorboard/log.py,sha256=twk7iRo6ac2fjjtso9tjStRd_I7aIVmg08odYa8fYho,14219
|
133
133
|
wandb/integration/tensorboard/__init__.py,sha256=Ivj8-XV4lGLg1JK2LdNxWlaLkqrJmXdyWTXf41ysib8,213
|
134
134
|
wandb/integration/tensorboard/monkeypatch.py,sha256=7S3i2vcmmIjEpY4f2Ro8OxfS5b2zgXYoTDoLmwcm7fw,6828
|
135
135
|
wandb/integration/gym/__init__.py,sha256=0jeYkdGZFby6Rf8QlqltvKrZEZdlaaB9JPX7GhAj3_Q,3129
|
@@ -165,7 +165,7 @@ wandb/old/core.py,sha256=MJjnAcUObCVXgLQEOW_iS7RREBiTB-YZtf9VHMYV2N4,3758
|
|
165
165
|
wandb/old/summary.py,sha256=eqpzQB5CfzTKZta6tB-nVUh0ZmiLwISqjSAt4yvwocE,13952
|
166
166
|
wandb/old/settings.py,sha256=IrS10skC9gCTb8NgTWeRFgsTYL1bw36e-rG_xECk-yo,6374
|
167
167
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
-
wandb/cli/cli.py,sha256=
|
168
|
+
wandb/cli/cli.py,sha256=FoX-SpOXjkjnNc9SV_anAJgby2ibwd7ThhudfkQiwmI,98452
|
169
169
|
wandb/sklearn/__init__.py,sha256=bDnzytR60EFQblaAZdw76WlJBmfG-O7NrKavIEY97Ck,861
|
170
170
|
wandb/sklearn/utils.py,sha256=dfHxglqT6UlPl8ulgZNWrElfW04cdBWrFfEtDp3pvZw,5903
|
171
171
|
wandb/sklearn/plot/classifier.py,sha256=xtuztUURWZz0rEmfHh9G8nRqvQtcUHqMC6rG6gZXJjM,11736
|
@@ -189,17 +189,17 @@ wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
189
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
190
190
|
wandb/sdk/wandb_config.py,sha256=TCddmgheDApOE-OXcZdgihhCnTpoR5jj4zeohs-9Q8M,10854
|
191
191
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
192
|
-
wandb/sdk/wandb_run.py,sha256=
|
192
|
+
wandb/sdk/wandb_run.py,sha256=tw0VprjbZeSCxj7KjgmLBQEc7lO0wSoEUV8ClkknISY,164669
|
193
193
|
wandb/sdk/wandb_sync.py,sha256=KhxDOHR7x8q54hAlsEx4ta1dAW1ZnzTUMr7VwJyCL5c,2273
|
194
194
|
wandb/sdk/__init__.py,sha256=82sn75Iewvnbxx6_Idixcjac1igG5H6LdCI6H6iWmOM,809
|
195
|
-
wandb/sdk/wandb_init.py,sha256=
|
195
|
+
wandb/sdk/wandb_init.py,sha256=WJOo0muRL9AqFGbMqphr9k9lzm1YmsyA4yC_csuHRSI,52015
|
196
196
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
197
|
-
wandb/sdk/wandb_settings.py,sha256
|
197
|
+
wandb/sdk/wandb_settings.py,sha256=BTfU4XkeHQkin_SfVVqCM2dRlHHUItSdNm4Qk70NH_o,76147
|
198
198
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
199
199
|
wandb/sdk/wandb_watch.py,sha256=2LGjshxCywHhlxHU3-APmgWsoQjMSxJdqA8J75KAmIU,3898
|
200
|
-
wandb/sdk/wandb_login.py,sha256=
|
200
|
+
wandb/sdk/wandb_login.py,sha256=aoP4bhSpTcDkngyBomcIimSmhvYFo12IlT86PLXhFA8,11243
|
201
201
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
202
|
-
wandb/sdk/wandb_require.py,sha256=
|
202
|
+
wandb/sdk/wandb_require.py,sha256=mQ8igzUVENY0Qj94cTA_GWVGAuTETul6PMSBbUU-bFw,3045
|
203
203
|
wandb/sdk/wandb_sweep.py,sha256=cboZB5qvLigAY3UeYifDTX1me_-Q4Y0EJ5UVEzYCXac,4000
|
204
204
|
wandb/sdk/wandb_manager.py,sha256=CW2rRta519DcUTBqWMiu90L8nHaT_7S-Iq2jFA9N4ck,6884
|
205
205
|
wandb/sdk/wandb_setup.py,sha256=uHG5bp4IcJxFVrQboM3m-VIUqe845TLqATiB-nbv0ew,13204
|
@@ -212,7 +212,7 @@ wandb/sdk/interface/router_queue.py,sha256=7TImXbpuwgn3iUw6kcNyC_nZ3APaBrojZyz1x
|
|
212
212
|
wandb/sdk/interface/message_future_poll.py,sha256=drjrcBKswYPYJJQLFlj7UDXq7_zg7KNcObFVetsbvhQ,1410
|
213
213
|
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
214
214
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
215
|
-
wandb/sdk/interface/interface.py,sha256=
|
215
|
+
wandb/sdk/interface/interface.py,sha256=wlEbwco99A2YHRBhZflgO8mk7Gh2SKTc9t5N59E_Ptg,35439
|
216
216
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
217
|
wandb/sdk/interface/router_sock.py,sha256=7-J3SFhnaqPohYaUyljwpbsvYPBXA-ZTENYnXxzbh9U,1060
|
218
218
|
wandb/sdk/interface/interface_shared.py,sha256=gisOvCIOZjZkO8-T3UYs4S8e42lu-j16mw5fZgJl9k0,20479
|
@@ -225,9 +225,10 @@ wandb/sdk/artifacts/storage_policy.py,sha256=iDZmHBINhrXoeUbc7s5MKCd0r5JCc5QPN3V
|
|
225
225
|
wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
|
226
226
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
|
227
227
|
wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
|
228
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
228
|
+
wandb/sdk/artifacts/artifact.py,sha256=A2_KYp7LVkpE-4r3m-kzWQNq6txYTxqCxP3xs4Fi59E,91255
|
229
|
+
wandb/sdk/artifacts/_validators.py,sha256=R6sFrnEnOSxCS6ByjA8XXd3COO8tI1-ODmkoEK9fB90,1440
|
229
230
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=EsXD2bQyFhFYK2NICUZ3jtXf-r0hC63-6lqyU_cHcPw,9840
|
230
|
-
wandb/sdk/artifacts/artifact_saver.py,sha256=
|
231
|
+
wandb/sdk/artifacts/artifact_saver.py,sha256=JBhlnHW5hx0v6ya2O7dFhI6uUbUwgjyPRq1iCJbTkto,9485
|
231
232
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
232
233
|
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=SfjfdzAIHEpbvQ1tOorfOMpITPgIyEnsJyUARgrnS7I,8424
|
233
234
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=eSx_51ETukZ3PehIJkrNBd_Q1E6CowEZSbrLmaWiwiY,2503
|
@@ -321,16 +322,16 @@ wandb/sdk/launch/builder/docker_builder.py,sha256=0HbPxwWuCHXogmIc6o18nvBaHIx-xc
|
|
321
322
|
wandb/sdk/launch/builder/noop.py,sha256=A--UUfqkcZxCpTmBKbL6JvkE_emcJRXIkAhAfVv5u7k,1900
|
322
323
|
wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=AuI7GXUoW3MdPWVTkSjhxZQTmW4Rk_nTNllHbZzfoDQ,7316
|
323
324
|
wandb/sdk/launch/builder/templates/dockerfile.py,sha256=X8D6n6tyyh69oNHeFiUp-d8ClEtMpHSjwk45N12CR68,2264
|
324
|
-
wandb/sdk/launch/inputs/internal.py,sha256=
|
325
|
+
wandb/sdk/launch/inputs/internal.py,sha256=vWY4nP5gcDhY1w5OiDoO-CDlkeJgHX_B_Mp7H-F6DAE,10058
|
325
326
|
wandb/sdk/launch/inputs/files.py,sha256=BWGDmAfDPLja7zz0bUzYLaF3wH4cTPesD9LqDuJRUoU,4685
|
326
327
|
wandb/sdk/launch/inputs/manage.py,sha256=O0IsTWhjUftihohRfK7DkT186LjHMMcE2NSMeG8IFBY,5003
|
327
328
|
wandb/sdk/launch/inputs/schema.py,sha256=Fs4CcxI0ifFagazbNp47uJP15JL3v43PAvVNO93f9XY,1418
|
328
329
|
wandb/sdk/internal/update.py,sha256=FrTY_vqZGeirIHjSQvgvJGslII2r7nmUde9_rBQtYyY,3855
|
329
|
-
wandb/sdk/internal/sender.py,sha256
|
330
|
+
wandb/sdk/internal/sender.py,sha256=-I6NKd_9NcJo97pZ80xZEOdICeI24nFcl4xEpqilago,67071
|
330
331
|
wandb/sdk/internal/internal.py,sha256=3JnUaCA5zx48kjgXqpFy8h5LRwVzvY2YCFUibZZfNOc,12738
|
331
332
|
wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
|
332
333
|
wandb/sdk/internal/job_builder.py,sha256=ivwKg2VnJg1ynpSZaukJbC3umnbYnbKITngeS4Q7x4I,22903
|
333
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
334
|
+
wandb/sdk/internal/internal_api.py,sha256=1FSya4BJxa2YLwn84Zx9_Zf7Apnd_xGJdM-zQAKVdeQ,147537
|
334
335
|
wandb/sdk/internal/handler.py,sha256=kARUdsmcfD8T4STnx7VQppuPG0w8r0gUqdejxXkQ5Gw,33754
|
335
336
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
336
337
|
wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
|
@@ -354,7 +355,7 @@ wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
354
355
|
wandb/sdk/internal/system/assets/interfaces.py,sha256=Re0sm_UQdi5Z4szfNowtk81szzzobv7jSmbth-tfCag,6548
|
355
356
|
wandb/sdk/internal/system/assets/disk.py,sha256=HXZFhCh4guL6u5XkRRD2EWeganbLAeZ3hvQyM4ncrWg,6295
|
356
357
|
wandb/sdk/internal/system/assets/ipu.py,sha256=qYENDcFSxLcx7Cpfm8hqE4p9fXnH00rV2OPGLCgZ9zk,5313
|
357
|
-
wandb/sdk/internal/system/assets/gpu_amd.py,sha256=
|
358
|
+
wandb/sdk/internal/system/assets/gpu_amd.py,sha256=AoVyBIOqePaxbZno1ypaAv3c032K8ZkZbxRIxUGi5EY,7475
|
358
359
|
wandb/sdk/internal/system/assets/memory.py,sha256=RA_1o3PQ_bxgDhGK7f58aq_WDsdWpIIB8BbOufbi-Co,4290
|
359
360
|
wandb/sdk/internal/system/assets/cpu.py,sha256=6I06hsCmsPt2tjfj0hrFQdlXfUwKKhI3DBg2L6cFbuc,4574
|
360
361
|
wandb/sdk/internal/system/assets/trainium.py,sha256=5jt8KY-XHIqSybuTkcfz_e64ZxDbli_gcQpRSi2F9l8,13455
|
@@ -404,7 +405,7 @@ wandb/sdk/lib/hashutil.py,sha256=3T0DyZZPZ6VXrYrmLzusdoAtD1JsuXsx0_iNuyqim9M,174
|
|
404
405
|
wandb/sdk/lib/module.py,sha256=f-NFgDi87ai-3r-jN9T3cAZQ3fhivxi4RWhzc9GPb98,1830
|
405
406
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
406
407
|
wandb/sdk/lib/gql_request.py,sha256=4-4HY6IOetwcL8EUaoFc_u3pojnNtEN4NN6-5EtT-MY,2400
|
407
|
-
wandb/sdk/lib/_settings_toposort_generated.py,sha256=
|
408
|
+
wandb/sdk/lib/_settings_toposort_generated.py,sha256=RzO65e29YLvbBC2ZOxUVUSDux0cCC_PLct7AhXuAAT8,5272
|
408
409
|
wandb/sdk/lib/viz.py,sha256=3wrGhPKNdj4VZ-hD1wanzF01XH2IHcUBl_1ZnYKnl5Q,3455
|
409
410
|
wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
|
410
411
|
wandb/sdk/lib/apikey.py,sha256=O9kdOEVAa9EedVZyCsh-CdSKo6T-FjhqGk7-n-jXPYY,9211
|
@@ -413,11 +414,11 @@ wandb/sdk/lib/fsm.py,sha256=rUON10HAMDumB0JOE5BDsBgk1F4KbdynGnfSZFuWDEA,5250
|
|
413
414
|
wandb/sdk/lib/lazyloader.py,sha256=y9mToMsUOibWeL5I6P9e993IKYRLxMYFLeUTessw3L4,1877
|
414
415
|
wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
|
415
416
|
wandb/sdk/lib/reporting.py,sha256=sfjVyNtNVOWFIcKihS-9C0yJhCAaUOUP3N3TDdyA-Fc,2410
|
416
|
-
wandb/sdk/service/service.py,sha256=
|
417
|
+
wandb/sdk/service/service.py,sha256=8PLXx1Q32tOlwI8X4p_0YzfC3kF7Op9QlhZlKa213TU,9477
|
417
418
|
wandb/sdk/service/server.py,sha256=FOWWSk6xxknnATKdi9zkmG4N9rk6BCMpFit7hMV0qOw,4009
|
418
419
|
wandb/sdk/service/streams.py,sha256=Vgg1Zk5dYGZYo2sgwwZDaGy8H7qZSlNJN5bVGXjasmU,14822
|
419
420
|
wandb/sdk/service/_startup_debug.py,sha256=0-evSjgwjb2LiOP952eScrfSWL8PrAXPOKPgZbio5_M,588
|
420
|
-
wandb/sdk/service/server_sock.py,sha256=
|
421
|
+
wandb/sdk/service/server_sock.py,sha256=c66bBF1_BSLDb3A_L3UDx5t-s2fZLSkJsnLQGYU5Vs4,9656
|
421
422
|
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
422
423
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
423
424
|
wandb/sdk/service/service_sock.py,sha256=CGpZ3JWG9FQiUkpb-oZCBlv9lX700eYzZ0PaVPzPH9A,2274
|
@@ -819,4 +820,4 @@ wandb/vendor/promise-2.3.0/wandb_promise/schedulers/gevent.py,sha256=PnB1LI2OXnb
|
|
819
820
|
wandb/vendor/promise-2.3.0/wandb_promise/schedulers/asyncio.py,sha256=Z94PwkAXd8PDybJUM7_tLlDh_AUw5JbI4CFRg6J3_NI,512
|
820
821
|
wandb/vendor/promise-2.3.0/wandb_promise/schedulers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
821
822
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
822
|
-
wandb/analytics/sentry.py,sha256=
|
823
|
+
wandb/analytics/sentry.py,sha256=yED3kScIGmuk_NfsK837Z5UW_20VNGfGXe8tJ7ngKzY,8500
|
File without changes
|
File without changes
|
File without changes
|