wandb 0.20.1__py3-none-macosx_11_0_arm64.whl → 0.20.2rc20250616__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 +3 -6
- wandb/__init__.pyi +1 -1
- wandb/analytics/sentry.py +2 -2
- wandb/apis/importers/internals/internal.py +0 -3
- wandb/apis/public/api.py +2 -2
- wandb/apis/public/registries/{utils.py → _utils.py} +12 -12
- wandb/apis/public/registries/registries_search.py +2 -2
- wandb/apis/public/registries/registry.py +19 -18
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/beta.py +1 -7
- wandb/cli/cli.py +0 -30
- wandb/env.py +0 -6
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v6/wandb_settings_pb2.py +2 -2
- wandb/proto/v6/wandb_telemetry_pb2.py +10 -10
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +42 -1
- wandb/sdk/backend/backend.py +1 -1
- wandb/sdk/internal/handler.py +1 -69
- wandb/sdk/lib/printer.py +6 -7
- wandb/sdk/lib/progress.py +1 -3
- wandb/sdk/lib/service/ipc_support.py +13 -0
- wandb/sdk/lib/{service_connection.py → service/service_connection.py} +20 -56
- wandb/sdk/lib/service/service_port_file.py +105 -0
- wandb/sdk/lib/service/service_process.py +111 -0
- wandb/sdk/lib/service/service_token.py +164 -0
- wandb/sdk/lib/sock_client.py +8 -12
- wandb/sdk/wandb_init.py +0 -3
- wandb/sdk/wandb_require.py +9 -20
- wandb/sdk/wandb_run.py +0 -24
- wandb/sdk/wandb_settings.py +0 -9
- wandb/sdk/wandb_setup.py +2 -13
- {wandb-0.20.1.dist-info → wandb-0.20.2rc20250616.dist-info}/METADATA +1 -3
- {wandb-0.20.1.dist-info → wandb-0.20.2rc20250616.dist-info}/RECORD +42 -68
- wandb/sdk/internal/flow_control.py +0 -263
- wandb/sdk/internal/internal.py +0 -401
- wandb/sdk/internal/internal_util.py +0 -97
- wandb/sdk/internal/system/__init__.py +0 -0
- wandb/sdk/internal/system/assets/__init__.py +0 -25
- wandb/sdk/internal/system/assets/aggregators.py +0 -31
- wandb/sdk/internal/system/assets/asset_registry.py +0 -20
- wandb/sdk/internal/system/assets/cpu.py +0 -163
- wandb/sdk/internal/system/assets/disk.py +0 -210
- wandb/sdk/internal/system/assets/gpu.py +0 -416
- wandb/sdk/internal/system/assets/gpu_amd.py +0 -233
- wandb/sdk/internal/system/assets/interfaces.py +0 -205
- wandb/sdk/internal/system/assets/ipu.py +0 -177
- wandb/sdk/internal/system/assets/memory.py +0 -166
- wandb/sdk/internal/system/assets/network.py +0 -125
- wandb/sdk/internal/system/assets/open_metrics.py +0 -293
- wandb/sdk/internal/system/assets/tpu.py +0 -154
- wandb/sdk/internal/system/assets/trainium.py +0 -393
- wandb/sdk/internal/system/env_probe_helpers.py +0 -13
- wandb/sdk/internal/system/system_info.py +0 -248
- wandb/sdk/internal/system/system_monitor.py +0 -224
- wandb/sdk/internal/writer.py +0 -204
- wandb/sdk/lib/service_token.py +0 -93
- wandb/sdk/service/__init__.py +0 -0
- wandb/sdk/service/_startup_debug.py +0 -22
- wandb/sdk/service/port_file.py +0 -53
- wandb/sdk/service/server.py +0 -107
- wandb/sdk/service/server_sock.py +0 -286
- wandb/sdk/service/service.py +0 -252
- wandb/sdk/service/streams.py +0 -425
- {wandb-0.20.1.dist-info → wandb-0.20.2rc20250616.dist-info}/WHEEL +0 -0
- {wandb-0.20.1.dist-info → wandb-0.20.2rc20250616.dist-info}/entry_points.txt +0 -0
- {wandb-0.20.1.dist-info → wandb-0.20.2rc20250616.dist-info}/licenses/LICENSE +0 -0
wandb/sdk/wandb_require.py
CHANGED
@@ -11,13 +11,10 @@ Example:
|
|
11
11
|
|
12
12
|
from __future__ import annotations
|
13
13
|
|
14
|
-
import os
|
15
14
|
from typing import Iterable
|
16
15
|
|
17
16
|
import wandb
|
18
|
-
from wandb.env import _REQUIRE_LEGACY_SERVICE
|
19
17
|
from wandb.errors import UnsupportedError
|
20
|
-
from wandb.sdk import wandb_run
|
21
18
|
|
22
19
|
|
23
20
|
class _Requires:
|
@@ -33,22 +30,21 @@ class _Requires:
|
|
33
30
|
def require_require(self) -> None:
|
34
31
|
pass
|
35
32
|
|
36
|
-
def _require_service(self) -> None:
|
37
|
-
wandb.teardown = wandb._teardown # type: ignore
|
38
|
-
wandb.attach = wandb._attach # type: ignore
|
39
|
-
wandb_run.Run.detach = wandb_run.Run._detach # type: ignore
|
40
|
-
|
41
33
|
def require_service(self) -> None:
|
42
|
-
|
34
|
+
# Legacy no-op kept solely for backward compatibility:
|
35
|
+
# some integrations (e.g. PyTorch Lightning) still call
|
36
|
+
# `wandb.require('service')`, which routes here.
|
37
|
+
wandb.termwarn(
|
38
|
+
"`wandb.require('service')` is a no-op as it is now the default behavior."
|
39
|
+
)
|
43
40
|
|
44
41
|
def require_core(self) -> None:
|
42
|
+
# Legacy no-op kept solely for backward compatibility:
|
43
|
+
# many public codebases still call `wandb.require('core')`.
|
45
44
|
wandb.termwarn(
|
46
|
-
"`wandb.require('core')` is
|
45
|
+
"`wandb.require('core')` is a no-op as it is now the default behavior."
|
47
46
|
)
|
48
47
|
|
49
|
-
def require_legacy_service(self) -> None:
|
50
|
-
os.environ[_REQUIRE_LEGACY_SERVICE] = "true"
|
51
|
-
|
52
48
|
def apply(self) -> None:
|
53
49
|
"""Call require_* method for supported features."""
|
54
50
|
last_message: str = ""
|
@@ -91,10 +87,3 @@ def require(
|
|
91
87
|
|
92
88
|
f = _Requires(features=features)
|
93
89
|
f.apply()
|
94
|
-
|
95
|
-
|
96
|
-
def _import_module_hook() -> None:
|
97
|
-
"""On wandb import, setup anything needed based on parent process require calls."""
|
98
|
-
# TODO: optimize by caching which pids this has been done for or use real import hooks
|
99
|
-
# TODO: make this more generic, but for now this works
|
100
|
-
require("service")
|
wandb/sdk/wandb_run.py
CHANGED
@@ -2922,9 +2922,6 @@ class Run:
|
|
2922
2922
|
"""
|
2923
2923
|
wandb.sdk._unwatch(self, models=models)
|
2924
2924
|
|
2925
|
-
def _detach(self) -> None:
|
2926
|
-
pass
|
2927
|
-
|
2928
2925
|
@_log_to_run
|
2929
2926
|
@_raise_if_finished
|
2930
2927
|
@_attach
|
@@ -3918,10 +3915,6 @@ class Run:
|
|
3918
3915
|
printer=printer,
|
3919
3916
|
)
|
3920
3917
|
Run._footer_log_dir_info(settings=settings, printer=printer)
|
3921
|
-
Run._footer_notify_wandb_core(
|
3922
|
-
settings=settings,
|
3923
|
-
printer=printer,
|
3924
|
-
)
|
3925
3918
|
Run._footer_internal_messages(
|
3926
3919
|
internal_messages_response=internal_messages_response,
|
3927
3920
|
settings=settings,
|
@@ -4068,23 +4061,6 @@ class Run:
|
|
4068
4061
|
for message in internal_messages_response.messages.warning:
|
4069
4062
|
printer.display(message, level="warn")
|
4070
4063
|
|
4071
|
-
@staticmethod
|
4072
|
-
def _footer_notify_wandb_core(
|
4073
|
-
*,
|
4074
|
-
settings: Settings,
|
4075
|
-
printer: printer.Printer,
|
4076
|
-
) -> None:
|
4077
|
-
"""Prints a message advertising the upcoming core release."""
|
4078
|
-
if settings.quiet or not settings.x_require_legacy_service:
|
4079
|
-
return
|
4080
|
-
|
4081
|
-
printer.display(
|
4082
|
-
"The legacy backend is deprecated. In future versions, `wandb-core` will become "
|
4083
|
-
"the sole backend service, and the `wandb.require('legacy-service')` flag will be removed. "
|
4084
|
-
f"For more information, visit {url_registry.url('wandb-core')}",
|
4085
|
-
level="warn",
|
4086
|
-
)
|
4087
|
-
|
4088
4064
|
|
4089
4065
|
# We define this outside of the run context to support restoring before init
|
4090
4066
|
def restore(
|
wandb/sdk/wandb_settings.py
CHANGED
@@ -528,12 +528,6 @@ class Settings(BaseModel, validate_assignment=True):
|
|
528
528
|
x_disable_meta: bool = False
|
529
529
|
"""Flag to disable the collection of system metadata."""
|
530
530
|
|
531
|
-
x_disable_setproctitle: bool = False
|
532
|
-
"""Flag to disable using setproctitle for the internal process in the legacy service.
|
533
|
-
|
534
|
-
This is deprecated and will be removed in future versions.
|
535
|
-
"""
|
536
|
-
|
537
531
|
x_disable_stats: bool = False
|
538
532
|
"""Flag to disable the collection of system metrics."""
|
539
533
|
|
@@ -674,9 +668,6 @@ class Settings(BaseModel, validate_assignment=True):
|
|
674
668
|
x_runqueue_item_id: Optional[str] = None
|
675
669
|
"""ID of the Launch run queue item being processed."""
|
676
670
|
|
677
|
-
x_require_legacy_service: bool = False
|
678
|
-
"""Force the use of legacy wandb service."""
|
679
|
-
|
680
671
|
x_save_requirements: bool = True
|
681
672
|
"""Flag to save the requirements file."""
|
682
673
|
|
wandb/sdk/wandb_setup.py
CHANGED
@@ -28,7 +28,6 @@ import logging
|
|
28
28
|
import os
|
29
29
|
import pathlib
|
30
30
|
import sys
|
31
|
-
import threading
|
32
31
|
from typing import TYPE_CHECKING, Any, Union
|
33
32
|
|
34
33
|
import wandb
|
@@ -41,7 +40,7 @@ from .lib import config_util, server
|
|
41
40
|
|
42
41
|
if TYPE_CHECKING:
|
43
42
|
from wandb.sdk import wandb_run
|
44
|
-
from wandb.sdk.lib.service_connection import ServiceConnection
|
43
|
+
from wandb.sdk.lib.service.service_connection import ServiceConnection
|
45
44
|
from wandb.sdk.wandb_settings import Settings
|
46
45
|
|
47
46
|
|
@@ -113,7 +112,6 @@ class _WandbSetup:
|
|
113
112
|
|
114
113
|
wandb.termsetup(self._settings, None)
|
115
114
|
|
116
|
-
self._check()
|
117
115
|
self._setup()
|
118
116
|
|
119
117
|
def add_active_run(self, run: wandb_run.Run) -> None:
|
@@ -284,15 +282,6 @@ class _WandbSetup:
|
|
284
282
|
|
285
283
|
return user_settings
|
286
284
|
|
287
|
-
def _check(self) -> None:
|
288
|
-
if hasattr(threading, "main_thread"):
|
289
|
-
if threading.current_thread() is not threading.main_thread():
|
290
|
-
pass
|
291
|
-
elif threading.current_thread().name != "MainThread":
|
292
|
-
wandb.termwarn(f"bad thread2: {threading.current_thread().name}")
|
293
|
-
if getattr(sys, "frozen", False):
|
294
|
-
wandb.termwarn("frozen, could be trouble")
|
295
|
-
|
296
285
|
def _setup(self) -> None:
|
297
286
|
sweep_path = self._settings.sweep_param_path
|
298
287
|
if sweep_path:
|
@@ -331,7 +320,7 @@ class _WandbSetup:
|
|
331
320
|
if self._connection:
|
332
321
|
return self._connection
|
333
322
|
|
334
|
-
from wandb.sdk.lib import service_connection
|
323
|
+
from wandb.sdk.lib.service import service_connection
|
335
324
|
|
336
325
|
self._connection = service_connection.connect_to_service(self._settings)
|
337
326
|
return self._connection
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.20.
|
3
|
+
Version: 0.20.2rc20250616
|
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
|
@@ -56,12 +56,10 @@ Requires-Dist: protobuf!=4.21.0,!=5.28.0,<7,>=3.12.0; python_version < '3.9' and
|
|
56
56
|
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<7,>=3.15.0; python_version == '3.9' and sys_platform == 'linux'
|
57
57
|
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<7,>=3.19.0; python_version > '3.9' and sys_platform == 'linux'
|
58
58
|
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<7,>=3.19.0; sys_platform != 'linux'
|
59
|
-
Requires-Dist: psutil>=5.0.0
|
60
59
|
Requires-Dist: pydantic<3
|
61
60
|
Requires-Dist: pyyaml
|
62
61
|
Requires-Dist: requests<3,>=2.0.0
|
63
62
|
Requires-Dist: sentry-sdk>=2.0.0
|
64
|
-
Requires-Dist: setproctitle
|
65
63
|
Requires-Dist: typing-extensions<5,>=4.8
|
66
64
|
Provides-Extra: aws
|
67
65
|
Requires-Dist: boto3; extra == 'aws'
|
@@ -1,15 +1,15 @@
|
|
1
1
|
package_readme.md,sha256=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
|
2
|
-
wandb-0.20.
|
3
|
-
wandb-0.20.
|
4
|
-
wandb-0.20.
|
5
|
-
wandb-0.20.
|
6
|
-
wandb-0.20.
|
7
|
-
wandb/env.py,sha256=
|
8
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb-0.20.2rc20250616.dist-info/RECORD,,
|
3
|
+
wandb-0.20.2rc20250616.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
|
4
|
+
wandb-0.20.2rc20250616.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
5
|
+
wandb-0.20.2rc20250616.dist-info/METADATA,sha256=CO-o4zKcQ6WaG0i61VlAeotjmFyErsRj1Ra2NKU0tn0,10260
|
6
|
+
wandb-0.20.2rc20250616.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
7
|
+
wandb/env.py,sha256=4nXvLaxOokeH1JnrfZAgs4mxlotelSbIvN98yn3jKdw,13862
|
8
|
+
wandb/__init__.pyi,sha256=eX_OUrrhh1Qa5NXiCCpjw-4LSAuwjxmuvmbjrkK0LFs,48133
|
9
9
|
wandb/util.py,sha256=fCPwfepeZVKoR9eVgEntygISAmP6Mz5q7KknhF7cn50,63114
|
10
10
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
11
11
|
wandb/_iterutils.py,sha256=NX6MaIE3JzPXsqKNXUKdnpIlX0spGG8HwGIQt5VASrk,2400
|
12
|
-
wandb/__init__.py,sha256=
|
12
|
+
wandb/__init__.py,sha256=9F5ZWSAk43_YpEpG1uI0MqgxOpLQZs2DdxIc9Ir9XMk,6994
|
13
13
|
wandb/data_types.py,sha256=M-wqAO0FtIqvj28556u3h4nzSwlRcbxhXoX0B9jlJSo,2283
|
14
14
|
wandb/wandb_controller.py,sha256=SksJdgwn14PpnUoIaBjJ9Ki4Nksl9BpQGGn42hT0xZg,24936
|
15
15
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -31,7 +31,7 @@ wandb/apis/importers/mlflow.py,sha256=uoxzm3bSOqjQyUkgOBwuzpaBjTdGp4drPaqE9f7Ny5
|
|
31
31
|
wandb/apis/importers/wandb.py,sha256=A4Dd0ioykPa1OmTlxkuvpYzgtH5aNpercDl4AxH_CHo,54531
|
32
32
|
wandb/apis/importers/__init__.py,sha256=ewph-RBUC9FnxL6uWbuuW0Hmdv2cHsxfqnZi0546ds4,38
|
33
33
|
wandb/apis/importers/validation.py,sha256=5odBqLZ3BQvyyO8CkYrm7bPXySOeDt_amQPwIrMcJRE,3183
|
34
|
-
wandb/apis/importers/internals/internal.py,sha256=
|
34
|
+
wandb/apis/importers/internals/internal.py,sha256=ieAnGMYU4-6_rGY9uP7uZePeepMjP964xgUcsr-8f1w,13199
|
35
35
|
wandb/apis/importers/internals/protocols.py,sha256=shZBD2bRMo81xPSUQdK2d9KK8qpop4CmMkizg8FI3WM,2885
|
36
36
|
wandb/apis/importers/internals/util.py,sha256=lvqLAqNA1UpoOuD6eqe_1ZzRwxj8IkYKxYcP9h0S5jI,2081
|
37
37
|
wandb/apis/workspaces/__init__.py,sha256=buvqtqELpCFWC7sHzEuslJgx24ZWDj-5lo2mdV6aHdg,265
|
@@ -41,7 +41,7 @@ wandb/apis/public/query_generator.py,sha256=WfyaQuBcTHEECOJ2zN_0iqkUufki9MX28fj3
|
|
41
41
|
wandb/apis/public/teams.py,sha256=YJAsJLRVM5r6UT48tdGGVA2V_f7nayDe5Q5NRTFQ8m4,5474
|
42
42
|
wandb/apis/public/__init__.py,sha256=xHuML6BuYlSNhKR4_k97shA1zoCgndXzMYukQybmZEw,1206
|
43
43
|
wandb/apis/public/jobs.py,sha256=nwm-tLqj0XHNQRQsBKHGf3nOuLSwch0B2i9Gc2DKW90,22399
|
44
|
-
wandb/apis/public/api.py,sha256=
|
44
|
+
wandb/apis/public/api.py,sha256=bZgNslZFXlDiEjv86h2TLl1fzbNfiao5OjlWaCERInI,81881
|
45
45
|
wandb/apis/public/utils.py,sha256=62ux6zpRpVug_y-_PaHUSOkPcHMTNFknAPqcINJSHFg,7893
|
46
46
|
wandb/apis/public/automations.py,sha256=meQY6iI5e-1Se77AcV3NvkBet0f14TkdA5nNk8V9SFQ,2311
|
47
47
|
wandb/apis/public/reports.py,sha256=DR_Kw3dznuy1UeaiJ_ENLbimV1j1kSerYr_vqoPtWNY,15302
|
@@ -52,11 +52,11 @@ wandb/apis/public/runs.py,sha256=0WreS3Uqm0ui5fgSOQT6WnSWL4kKM8TXk4_5J8sKBjU,355
|
|
52
52
|
wandb/apis/public/integrations.py,sha256=du02uzOUv6_8heAW1Kwu1pa2uZeYIzPFRgqcAOpF8JY,6772
|
53
53
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
54
54
|
wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
|
55
|
-
wandb/apis/public/registries/registry.py,sha256=
|
55
|
+
wandb/apis/public/registries/registry.py,sha256=fNX2Iy3yG2skLPIsp0ityR1opQDeTKXIy38VjDDkXCQ,13725
|
56
56
|
wandb/apis/public/registries/_freezable_list.py,sha256=E7qnLNnw1RF6ClQXbtkg3LRpOMs5jx2L5HiSY3RzTMo,6368
|
57
57
|
wandb/apis/public/registries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
|
-
wandb/apis/public/registries/registries_search.py,sha256=
|
59
|
-
wandb/apis/public/registries/
|
58
|
+
wandb/apis/public/registries/registries_search.py,sha256=fjmQ-iNUlkNiEpLe1Yp9vmrM0wlWtOE1flIb_binznM,15169
|
59
|
+
wandb/apis/public/registries/_utils.py,sha256=N1EDMFQgIxoi2zHJGlbolEEzsmKXyn3LKN_vSLsTyxo,4277
|
60
60
|
wandb/apis/reports/__init__.py,sha256=5ZkKvOqwks3UmVeaPuwIZYwyV8_afsGbtybDOXYjSsg,32
|
61
61
|
wandb/apis/reports/v1/__init__.py,sha256=L5l1BqMaap-w5wXCzn8pC8RXB7_72MsjTx8HeLuC3XU,263
|
62
62
|
wandb/apis/reports/v2/__init__.py,sha256=jdLiTqf5QIRxnWH8drWV9Y06bZEhI5N6uGGSKAT7tv0,263
|
@@ -81,30 +81,30 @@ wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
81
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
82
82
|
wandb/proto/wandb_deprecated.py,sha256=1-Q8uG5gowgpWg9loSLwavCGDCyLbcL6UQBcZ3OzNoI,2422
|
83
83
|
wandb/proto/wandb_telemetry_pb2.py,sha256=Y9uzA6O9yUJ3HKqYOi86hg-mZ49NtSzQ_XRFSCONolA,405
|
84
|
-
wandb/proto/v6/wandb_settings_pb2.py,sha256=
|
84
|
+
wandb/proto/v6/wandb_settings_pb2.py,sha256=pIvIa8q5rD8PDnOrxsZD8dQNrtT7D8NdUhHqTTBtFk4,18380
|
85
85
|
wandb/proto/v6/wandb_server_pb2.py,sha256=jH4AJat2sz9hR88er6D4yb-6bNLY5nPW5oX5CuHjBLc,7786
|
86
86
|
wandb/proto/v6/wandb_base_pb2.py,sha256=5NJU1W7zgKLIsKL5brRoOL4HcLOxWieIKlWEe1IM0_g,1821
|
87
87
|
wandb/proto/v6/wandb_internal_pb2.py,sha256=wDZqagln_koAPV6z29-ldOg6eLLG6cjNOyfY8hYGnXQ,59011
|
88
|
-
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=
|
89
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
88
|
+
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=PcQVbRaqN01nHu0OBi6UPHSeSpuw7rDy4mup2RYWH04,12303
|
89
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=Qhyi3uD0zLwrzXr1s_filvnTNnIY6o5EqXE9EUQ_csY,18127
|
90
90
|
wandb/proto/v5/wandb_server_pb2.py,sha256=f55mk3Z77xUnq_tAbTd_Q75CiOJz6ppPbZT7CoeF7-I,7535
|
91
91
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
92
92
|
wandb/proto/v5/wandb_internal_pb2.py,sha256=2sMNT4CW8wpRkq-73I2pNB6z3szRaDkZ6IPATeInOWI,58758
|
93
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
94
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
93
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=vzKZOXISSGB0C2HaPAqCwC0gh_tQ-LzkT9qIkqmwSqg,12049
|
94
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=AR4mU1sslWwd35mDHoLDTUfipljZdh2XR8GM7FuUzz8,17771
|
95
95
|
wandb/proto/v4/wandb_server_pb2.py,sha256=NiG6Xv9CDvxc8v8NmnM237jyYqMuRyE_nqmLAMZVdI8,6977
|
96
96
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
97
97
|
wandb/proto/v4/wandb_internal_pb2.py,sha256=5edNzirlYU02e0fsLICr66mbqtHIDmof924falEzB5Y,54363
|
98
98
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
100
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
99
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=xQdi3cm85CE4Ck0NAtPvdK7FFtEYoXXBEGlIIF2TXvs,11779
|
100
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=_KrfKfkbKCDCNsd-qBMfL6HXdxt9XZYvxopqs69jnuE,21396
|
101
101
|
wandb/proto/v3/wandb_server_pb2.py,sha256=LQCUmuy0NFDo20N9uCUiE5VPyhP5r929WKtniae4CdQ,15514
|
102
102
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
103
103
|
wandb/proto/v3/wandb_internal_pb2.py,sha256=xKTg9CalkBOznziFa5fA9kirA9kqg72QbEANoMvcSDI,118397
|
104
104
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
105
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
106
|
-
wandb/bin/wandb-core,sha256=
|
107
|
-
wandb/bin/gpu_stats,sha256=
|
105
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=fD1_oZfqgiRghlqZE5CyXO437-_OgVv9ZIBjx9YtCno,14332
|
106
|
+
wandb/bin/wandb-core,sha256=Rv2IaGs_EwKbm-WLpKY_L68bk5z_R7WgygDqlowBZwo,56630306
|
107
|
+
wandb/bin/gpu_stats,sha256=x3lknBaAyBXrqEZHffvhH_3i1xgKeqLuKDTRr7LhwAQ,9146736
|
108
108
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
109
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
110
110
|
wandb/integration/yolov8/yolov8.py,sha256=srryantZqO65pj1x52MiKD5m2SzdQc4nIsj4o1GPK8o,11371
|
@@ -196,27 +196,27 @@ wandb/old/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
196
|
wandb/old/core.py,sha256=bIIFlU3_E2hvrVCzMQk1VcwJtxbadbAZwDC0qsF4C2g,1501
|
197
197
|
wandb/old/summary.py,sha256=FZrkTyycUy6MRY1n4q7713rlTV7h-CMr8_kNoeb-wzY,13856
|
198
198
|
wandb/old/settings.py,sha256=Cug-8ImuV4_x8HFGOnlATuh0iJ4JOUfmymguPFqlXvE,6482
|
199
|
-
wandb/cli/beta.py,sha256=
|
199
|
+
wandb/cli/beta.py,sha256=Mq-5A-XXH3VLIvhWPxA84DFPeirNMYGPSQ53H78Xkjc,5187
|
200
200
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
|
-
wandb/cli/cli.py,sha256=
|
201
|
+
wandb/cli/cli.py,sha256=bBhFG4VEurWE7qEItkYGnVs8ou0I8j-IBF_HlARQZqM,91136
|
202
202
|
wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
203
203
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
204
204
|
wandb/sdk/wandb_metadata.py,sha256=wnwKexZjJ7zRtAcfYbOZtaoK6rfVVU5oKDWT5-UerOk,20886
|
205
205
|
wandb/sdk/wandb_config.py,sha256=uvbpaV3yObsYsaYedYde95B4CzDZBlaU3zOPJ7tPkhs,10692
|
206
206
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
207
|
-
wandb/sdk/wandb_run.py,sha256=
|
207
|
+
wandb/sdk/wandb_run.py,sha256=bnYe5PKkxE-tR9RmL7IBkN4rjqfrp1wZHag5Fgtf8Os,149619
|
208
208
|
wandb/sdk/wandb_sync.py,sha256=GNC8xYqT56ws4aw6Vd_mV_Ck-InEbqnyioSqHIybDug,2106
|
209
209
|
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
210
|
-
wandb/sdk/wandb_init.py,sha256=
|
210
|
+
wandb/sdk/wandb_init.py,sha256=rABZsv7PrtqF7HxtZxDrTccJYOcDf2D8qZ0CoxbTVqU,62493
|
211
211
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
212
|
-
wandb/sdk/wandb_settings.py,sha256=
|
212
|
+
wandb/sdk/wandb_settings.py,sha256=eWx-KhL3jWCJx7dw9wmqIu7fA5PG0_-cSIepcq1fJuQ,65005
|
213
213
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
214
214
|
wandb/sdk/wandb_watch.py,sha256=oFBRAKi7dQ3aOj3urK8V8TR-Drqp-MNMcZut5qFSl2o,4803
|
215
215
|
wandb/sdk/wandb_login.py,sha256=ZX1e5WVRu-_Xq2Yp3JqSRxZSTvAQmVLSOk7lEWa7WhU,11312
|
216
216
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
217
|
-
wandb/sdk/wandb_require.py,sha256=
|
217
|
+
wandb/sdk/wandb_require.py,sha256=amCi78srnbRkTkh51I3osntl5NW1VK5PXeETJoMK9HY,2800
|
218
218
|
wandb/sdk/wandb_sweep.py,sha256=Sg_JqxVzmjUBvii41azpdr-c6RPwHOBnSha8k7jrRhk,4028
|
219
|
-
wandb/sdk/wandb_setup.py,sha256=
|
219
|
+
wandb/sdk/wandb_setup.py,sha256=zdYuHg_ynqqCm6oOUya-_plJYQxgyIcn3RZM6VPgLSU,16261
|
220
220
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
221
221
|
wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
|
222
222
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -254,7 +254,7 @@ wandb/sdk/artifacts/_graphql_fragments.py,sha256=71o_SBwXhaD21UPWrCUu6zyhwez1btQ
|
|
254
254
|
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=g2HXQ_8Zg8ZzZS1P1UUf7Y2ePPGeWLA62GCARuu8zfc,22174
|
255
255
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
|
256
256
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
|
257
|
-
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=
|
257
|
+
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=WLplF8kL3vRKnhxIitrYciN58PmIcReVfxQEkkMqeA0,12898
|
258
258
|
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=MpYHgEkbjt1VCUV-lfg1f3MscOK10tZHSJwOFjCzGBg,2562
|
259
259
|
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=sKu9VRCcgd9DYPPdCN49Fl63g6_HfHX124xnnFyZPe8,4764
|
260
260
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -385,57 +385,35 @@ wandb/sdk/projects/_generated/operations.py,sha256=MhLYsTHjekySMt3jdlXdruDI0Sg5x
|
|
385
385
|
wandb/sdk/projects/_generated/fragments.py,sha256=iFeb_dX2RwGhnwKItiqv4QUX9stJwvGTS2UCsGwIynM,1101
|
386
386
|
wandb/sdk/projects/_generated/delete_project.py,sha256=2fguHdSAtLSjUl-J_t4kqCjoAeW6i5OUl2H3yv6Ig3o,495
|
387
387
|
wandb/sdk/internal/sender.py,sha256=NHRoPM3EDDOzFJ7pYmTdQFhAL20ARwf37qep8YgvSwI,64287
|
388
|
-
wandb/sdk/internal/internal.py,sha256=4hEsyuh8Yw2mfqFtcySOkq9-7A0dpfjdNEGDgURmL9s,12098
|
389
388
|
wandb/sdk/internal/run.py,sha256=MD3D-o8Zo9hYpd-v9UlslTAuvCJHD6J1gBnZeZoD4o0,624
|
390
389
|
wandb/sdk/internal/job_builder.py,sha256=2W-Oq100LaP3hoMiHajER0BNPl-KZtP6fmMg17aHFRs,22827
|
391
390
|
wandb/sdk/internal/internal_api.py,sha256=TRdXQxXU9ZVUbMGgPpkdXhWiumPR8ZUr8CYnoYVPo18,162244
|
392
|
-
wandb/sdk/internal/handler.py,sha256=
|
391
|
+
wandb/sdk/internal/handler.py,sha256=O8DHUF3B_TsBKg87a8p2z3A4Tb0lx13rXsg4GbRX6pU,31693
|
393
392
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
394
393
|
wandb/sdk/internal/sender_config.py,sha256=3g0eAgmYJtv7tPXlqf7qayqKj-JOclvVRvzbVi8wfR4,6711
|
395
394
|
wandb/sdk/internal/settings_static.py,sha256=-3pJ5RCWxGbNVVE4RvGudTurpn8ObN8wTEx_4dkrS3o,4284
|
396
395
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
397
396
|
wandb/sdk/internal/tb_watcher.py,sha256=wqlBUrQKyTYQth8q_ABPb9MNMNmeatyv59_Bq5pCtaU,18676
|
398
|
-
wandb/sdk/internal/flow_control.py,sha256=3LJ-KatyPPH18G7TfSMLDk-BE5tankB4JRhQqLoUOWM,8585
|
399
397
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
400
398
|
wandb/sdk/internal/file_stream.py,sha256=dLzl8RnbQQR2taSgcLff1Br5XghCKSPgxSxkBgzegyY,25604
|
401
399
|
wandb/sdk/internal/sample.py,sha256=USAWLhEeP83J13BVOSIy1Rb3kDDKTK9kzR88SlhO7dw,2470
|
402
|
-
wandb/sdk/internal/writer.py,sha256=jo_Ex7ik-0_rIahYDHIWcQjm_uxsUNVn92__bI8TloE,7267
|
403
400
|
wandb/sdk/internal/file_pusher.py,sha256=G6JLdqasdMMeNV6wiHUVgv3nGXiCrXFYwGOa7vOfTR0,6023
|
404
|
-
wandb/sdk/internal/internal_util.py,sha256=dKawQKw4UdZUE6Bmme5baT0FGDC0IUgoD2zM6ey4oBU,2555
|
405
401
|
wandb/sdk/internal/progress.py,sha256=526DYzhDMnfBNAI3TN0p7R487c-0W8PBT8_Yft334Ro,2289
|
406
402
|
wandb/sdk/internal/profiler.py,sha256=6IJ18j5saTzX_GrGUm-qKLAYF8tW_iQMCP_jUqbaVn8,2391
|
407
403
|
wandb/sdk/internal/datastore.py,sha256=4rJXI0mKbU7RhLsgLjXUzWLv5ErGuuMI1jR2Uwa5TO8,9774
|
408
404
|
wandb/sdk/internal/incremental_table_util.py,sha256=SwcLG366undgZ5nw4xfyVZ5BZS4mAUw1K9HfmenFbqg,1490
|
409
|
-
wandb/sdk/internal/system/system_monitor.py,sha256=3DyEYFCnQgZ0xZHnG1m0_RchMpGTSQprVbIG3MOD6ZI,8597
|
410
|
-
wandb/sdk/internal/system/env_probe_helpers.py,sha256=jIy6gbiaq37SzgcBGe6GepJho1VS5qNQThqOmu-g0OA,397
|
411
|
-
wandb/sdk/internal/system/system_info.py,sha256=DILyrTlXfuu9W6wknUc79Hkqmbu4jw_z8oYx4k0GWQY,10009
|
412
|
-
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
413
|
-
wandb/sdk/internal/system/assets/interfaces.py,sha256=5Qf-0DZe0OE9q6L3QAirH96ksjdQl0inw47GF8exbfo,6203
|
414
|
-
wandb/sdk/internal/system/assets/disk.py,sha256=4u-LpKSOH_pTZfHzNPtMf8kh3EMe7EKKcU7563_KbpU,6238
|
415
|
-
wandb/sdk/internal/system/assets/ipu.py,sha256=irMYKXo1zEluWC5FjYzGD3edySfoi3lgiIi-0GNziE8,5314
|
416
|
-
wandb/sdk/internal/system/assets/gpu_amd.py,sha256=7tQluuLCCgbiJI8DqJVGL60eLfLNzMurTEP39Ng1_04,7333
|
417
|
-
wandb/sdk/internal/system/assets/memory.py,sha256=lmd11JAXxEUpHUiUMX3Y5-a9bNjiMU3BgSvT9ubtpSo,4271
|
418
|
-
wandb/sdk/internal/system/assets/cpu.py,sha256=rwXZZ6bchKEijE1GCE4j6mrxLDM4-H4ZLexcgNO_55k,4578
|
419
|
-
wandb/sdk/internal/system/assets/trainium.py,sha256=LfbFRPJk3oTlQ5MJ5YTx3-U8E01vVd7ZNRFZAtlW_uU,13301
|
420
|
-
wandb/sdk/internal/system/assets/__init__.py,sha256=X0_hRaWP1eTC-R-2WZI3Or3bKmqNwP7NsNijRq5DBVo,474
|
421
|
-
wandb/sdk/internal/system/assets/aggregators.py,sha256=lFNmgLM1LQ0SgkRjDNYyr9j-GkIDoQ0XL6PdBWDyX38,981
|
422
|
-
wandb/sdk/internal/system/assets/asset_registry.py,sha256=NYSoCDya3Wh7ytBJOE-tNySdPpLYnSghM6CzS9-I4nk,478
|
423
|
-
wandb/sdk/internal/system/assets/tpu.py,sha256=-OTd91LauiImuZMHMMo3cacJ1gvcZXuO_TSyOzJi3Ng,4904
|
424
|
-
wandb/sdk/internal/system/assets/network.py,sha256=n3buH2-InLGT35PVlvhY5eHv_Hm5Kl_N8jH576OiVi8,3392
|
425
|
-
wandb/sdk/internal/system/assets/open_metrics.py,sha256=VqOncOSnPztqSyQ0g-zeJWcjc_lircRk6F76rwoBWR4,9631
|
426
|
-
wandb/sdk/internal/system/assets/gpu.py,sha256=cTjIVNnAM7AXEet7MMUgFZVn-cInWfdTFcOVqYy5jQw,13710
|
427
405
|
wandb/sdk/internal/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
428
406
|
wandb/sdk/internal/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
429
407
|
wandb/sdk/internal/_generated/__init__.py,sha256=DRBzTksuUuVY9oRJQsLtRTMMItykywWYvDxktHbCfk8,381
|
430
408
|
wandb/sdk/internal/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
|
431
409
|
wandb/sdk/internal/_generated/server_features_query.py,sha256=WGjefMl-SDR7o7OVtJk7xKEYICBFA2wceGMXbuyj5QU,647
|
432
|
-
wandb/sdk/backend/backend.py,sha256=
|
410
|
+
wandb/sdk/backend/backend.py,sha256=yh3ldxlKXXIXGk7vKDwEu0OolI6MD1B2LTQSu6sBEg4,1310
|
433
411
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
434
412
|
wandb/sdk/lib/deprecate.py,sha256=g5fIRwR5FrBmNpbLJhBmxh-pyvSbGh2ZumUEfScT0NA,941
|
435
413
|
wandb/sdk/lib/exit_hooks.py,sha256=_4oozaRQCJi8NJfZvHsA8livvFb0trZKLOGB8_UcHGk,1540
|
436
414
|
wandb/sdk/lib/server.py,sha256=dn0RXjAnpmigAULLyq75XHYyHxw17MLCJ9fhPq2v22I,1623
|
437
415
|
wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
|
438
|
-
wandb/sdk/lib/sock_client.py,sha256=
|
416
|
+
wandb/sdk/lib/sock_client.py,sha256=ehrvRJ2e-I0cLtuKdlQXSelagC0Jf2dvQBBoq-1EGK0,8225
|
439
417
|
wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
|
440
418
|
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
441
419
|
wandb/sdk/lib/redirect.py,sha256=X4JHJ3W5-kG25aOYUyuYc8TBgVAKwhpV6yTaFWaR7tI,27373
|
@@ -459,28 +437,24 @@ wandb/sdk/lib/gitlib.py,sha256=UAKpxnWTyIp3xkn4bRRqxvUmv5c_xyN0gmc5nL91hpM,7832
|
|
459
437
|
wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2894
|
460
438
|
wandb/sdk/lib/console_capture.py,sha256=eC1bThCHa9DiQTk21ALdK8w1ETeydBpiTOYKN31EjVs,4923
|
461
439
|
wandb/sdk/lib/ipython.py,sha256=TcKyUyoCBGCNkItaJRDx8PFUHtvuPPDDIduqyMYuGfQ,3810
|
462
|
-
wandb/sdk/lib/service_token.py,sha256=YJVYSoHw6OAoFVKcn2LuZ5D47BTTKFtbvWA2CvwZsWA,2455
|
463
440
|
wandb/sdk/lib/run_moment.py,sha256=hFx3S-F9SAF6xtwRYbBnP5fMDkllMJvGSSla_eqbsA8,2419
|
464
441
|
wandb/sdk/lib/hashutil.py,sha256=aU8YsAgkTcYDlqshfcDjItiO2s9lqq2YdKt7RoA2adQ,2763
|
465
442
|
wandb/sdk/lib/wb_logging.py,sha256=9km7TAnJRSwBTQaFSYA4BmQZV3_Gb0y1PBlzqEOdUHA,4839
|
466
443
|
wandb/sdk/lib/module.py,sha256=PWxpFqOYmLyKPF-VgfINZXzkFxDcoQVunVDVNWNnbxQ,2098
|
467
444
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
468
|
-
wandb/sdk/lib/
|
469
|
-
wandb/sdk/lib/progress.py,sha256=GakG9R_mJxVx8zG8atVHKydDZt0uRFEPwls7b3hUpsc,10652
|
445
|
+
wandb/sdk/lib/progress.py,sha256=AsmqmmJQvlslb5pDb-4yuL7sAOH1l6yC4F6Vgezaju4,10550
|
470
446
|
wandb/sdk/lib/gql_request.py,sha256=-KRTtT2zqn7pTOBcl41IBdbvQ25YCrxVurROpRqrWqw,2399
|
471
447
|
wandb/sdk/lib/asyncio_compat.py,sha256=zBC5yVXTPryiyK129ml56CW0PJE7vFm1N00Od5_WiKc,6579
|
472
448
|
wandb/sdk/lib/config_util.py,sha256=Y00nnEcq0zspuDb0yqraxRuo5JIUh1HflDvZYppeDyk,2893
|
473
449
|
wandb/sdk/lib/apikey.py,sha256=s2uw8B2O53rCpBCDgiWyF8ceQH9MNpOdaTil1uvy-O0,11097
|
474
|
-
wandb/sdk/lib/printer.py,sha256=
|
450
|
+
wandb/sdk/lib/printer.py,sha256=6QjcnG2n2Q68MyAug7Y_glnpUdsFipiHnzpi4bI3r0A,16257
|
475
451
|
wandb/sdk/lib/fsm.py,sha256=2fRiEF2jF95xDoVVbOmeIRaxMqlOv0bCv4RD8F2Ivj0,5044
|
476
452
|
wandb/sdk/lib/lazyloader.py,sha256=4Seis4C8Ph6a2-3scfYqeHh7KjKG6PO0WJ2ZPW30O0o,1891
|
477
|
-
wandb/sdk/service/
|
478
|
-
wandb/sdk/service/
|
479
|
-
wandb/sdk/service/
|
480
|
-
wandb/sdk/service/
|
481
|
-
wandb/sdk/service/
|
482
|
-
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
483
|
-
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
453
|
+
wandb/sdk/lib/service/service_process.py,sha256=EDv7zYeUpF4NgN4ClTlzyUtfs75CiimdmLxTqvo72Tg,3100
|
454
|
+
wandb/sdk/lib/service/service_port_file.py,sha256=Oonq46Ml4vKR-JTcxx4exi5MthGYRvIqy8hCv84Lc5k,2943
|
455
|
+
wandb/sdk/lib/service/service_token.py,sha256=4oDIDNzRZ3egXYcyPUpqmcwvptM6x0jnhFrMKP8T52s,4676
|
456
|
+
wandb/sdk/lib/service/service_connection.py,sha256=wbbpy5_n5OCqhwQ7OJKKgwdQxT3ngx0JJpJ5e0DVvm4,6434
|
457
|
+
wandb/sdk/lib/service/ipc_support.py,sha256=UPa-bV_wY25WhYmMelVyLGZzbztSz2LSf2SUhVB-omQ,341
|
484
458
|
wandb/_pydantic/__init__.py,sha256=p1Rwdo5z3rgoQgVDz6pgcWzs5eitB2JlgVN6QeFyN0Y,662
|
485
459
|
wandb/_pydantic/v1_compat.py,sha256=pHEdEVlJv5WSs91o742Cl19Xb_sOiODLVMKSIPuf290,11423
|
486
460
|
wandb/_pydantic/utils.py,sha256=XcnRAEOdjANLxvr_FMnMPKmqv4f2HwjbNo-5J_JKKe0,2810
|
@@ -911,4 +885,4 @@ wandb/vendor/promise-2.3.0/wandb_promise/schedulers/gevent.py,sha256=PnB1LI2OXnb
|
|
911
885
|
wandb/vendor/promise-2.3.0/wandb_promise/schedulers/asyncio.py,sha256=Z94PwkAXd8PDybJUM7_tLlDh_AUw5JbI4CFRg6J3_NI,512
|
912
886
|
wandb/vendor/promise-2.3.0/wandb_promise/schedulers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
913
887
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
914
|
-
wandb/analytics/sentry.py,sha256=
|
888
|
+
wandb/analytics/sentry.py,sha256=7vri0-bFKXeFSV6p7wvelouYz_cYpXhtAwCO1o6tB50,8367
|