wandb 0.20.1__py3-none-musllinux_1_2_aarch64.whl → 0.20.2rc20250616__py3-none-musllinux_1_2_aarch64.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.4
|
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,37 +1,42 @@
|
|
1
1
|
package_readme.md,sha256=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
|
2
|
+
wandb-0.20.2rc20250616.dist-info/RECORD,,
|
3
|
+
wandb-0.20.2rc20250616.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
4
|
+
wandb-0.20.2rc20250616.dist-info/WHEEL,sha256=ZCaGMInsobf_X8ibOue5yAC0a46KTbFsnGjtmL2skyU,106
|
5
|
+
wandb-0.20.2rc20250616.dist-info/METADATA,sha256=VMma61awZjluqQ__5Dozy4ddOf0DkYCM9cNSGqjixS4,10260
|
6
|
+
wandb-0.20.2rc20250616.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
2
7
|
wandb/jupyter.py,sha256=ADLvYDYK4mSJrsxmwVuE6IBx5o8prFMQvCizm-13_bg,17350
|
3
8
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
4
|
-
wandb/__init__.py,sha256=
|
9
|
+
wandb/__init__.py,sha256=9F5ZWSAk43_YpEpG1uI0MqgxOpLQZs2DdxIc9Ir9XMk,6994
|
5
10
|
wandb/wandb_agent.py,sha256=kdlK_NZRZRNkjXRUha7Q-1fDOARf7v0TyIr_a-aRXKk,20868
|
6
11
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
7
12
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
8
|
-
wandb/env.py,sha256=
|
13
|
+
wandb/env.py,sha256=4nXvLaxOokeH1JnrfZAgs4mxlotelSbIvN98yn3jKdw,13862
|
9
14
|
wandb/util.py,sha256=fCPwfepeZVKoR9eVgEntygISAmP6Mz5q7KknhF7cn50,63114
|
10
15
|
wandb/sklearn.py,sha256=hbPkefhS39A1RRymn0nHZZmKM2TrOd4xjlkthTZe9pY,803
|
11
16
|
wandb/_iterutils.py,sha256=NX6MaIE3JzPXsqKNXUKdnpIlX0spGG8HwGIQt5VASrk,2400
|
12
17
|
wandb/wandb_controller.py,sha256=SksJdgwn14PpnUoIaBjJ9Ki4Nksl9BpQGGn42hT0xZg,24936
|
13
18
|
wandb/data_types.py,sha256=M-wqAO0FtIqvj28556u3h4nzSwlRcbxhXoX0B9jlJSo,2283
|
14
19
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
-
wandb/__init__.pyi,sha256=
|
20
|
+
wandb/__init__.pyi,sha256=eX_OUrrhh1Qa5NXiCCpjw-4LSAuwjxmuvmbjrkK0LFs,48133
|
16
21
|
wandb/_pydantic/__init__.py,sha256=p1Rwdo5z3rgoQgVDz6pgcWzs5eitB2JlgVN6QeFyN0Y,662
|
17
22
|
wandb/_pydantic/base.py,sha256=qOgf1LEMPO3o1kiYli9kOf2ZQLuP0GEMa8Qx2pDnJGY,4277
|
18
23
|
wandb/_pydantic/utils.py,sha256=XcnRAEOdjANLxvr_FMnMPKmqv4f2HwjbNo-5J_JKKe0,2810
|
19
24
|
wandb/_pydantic/v1_compat.py,sha256=pHEdEVlJv5WSs91o742Cl19Xb_sOiODLVMKSIPuf290,11423
|
20
25
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
26
|
wandb/agents/pyagent.py,sha256=wfJtm5IeIUiDCVv0W6Qckwh7Jef1sNktaKonnj8sm6s,13171
|
22
|
-
wandb/sdk/wandb_require.py,sha256=
|
27
|
+
wandb/sdk/wandb_require.py,sha256=amCi78srnbRkTkh51I3osntl5NW1VK5PXeETJoMK9HY,2800
|
23
28
|
wandb/sdk/wandb_config.py,sha256=uvbpaV3yObsYsaYedYde95B4CzDZBlaU3zOPJ7tPkhs,10692
|
24
29
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
25
30
|
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
26
31
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
27
32
|
wandb/sdk/wandb_watch.py,sha256=oFBRAKi7dQ3aOj3urK8V8TR-Drqp-MNMcZut5qFSl2o,4803
|
28
33
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
29
|
-
wandb/sdk/wandb_init.py,sha256=
|
30
|
-
wandb/sdk/wandb_setup.py,sha256=
|
34
|
+
wandb/sdk/wandb_init.py,sha256=rABZsv7PrtqF7HxtZxDrTccJYOcDf2D8qZ0CoxbTVqU,62493
|
35
|
+
wandb/sdk/wandb_setup.py,sha256=zdYuHg_ynqqCm6oOUya-_plJYQxgyIcn3RZM6VPgLSU,16261
|
31
36
|
wandb/sdk/wandb_sync.py,sha256=GNC8xYqT56ws4aw6Vd_mV_Ck-InEbqnyioSqHIybDug,2106
|
32
|
-
wandb/sdk/wandb_settings.py,sha256=
|
37
|
+
wandb/sdk/wandb_settings.py,sha256=eWx-KhL3jWCJx7dw9wmqIu7fA5PG0_-cSIepcq1fJuQ,65005
|
33
38
|
wandb/sdk/wandb_login.py,sha256=ZX1e5WVRu-_Xq2Yp3JqSRxZSTvAQmVLSOk7lEWa7WhU,11312
|
34
|
-
wandb/sdk/wandb_run.py,sha256=
|
39
|
+
wandb/sdk/wandb_run.py,sha256=bnYe5PKkxE-tR9RmL7IBkN4rjqfrp1wZHag5Fgtf8Os,149619
|
35
40
|
wandb/sdk/wandb_metadata.py,sha256=wnwKexZjJ7zRtAcfYbOZtaoK6rfVVU5oKDWT5-UerOk,20886
|
36
41
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
37
42
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
@@ -42,42 +47,20 @@ wandb/sdk/internal/internal_api.py,sha256=TRdXQxXU9ZVUbMGgPpkdXhWiumPR8ZUr8CYnoY
|
|
42
47
|
wandb/sdk/internal/progress.py,sha256=526DYzhDMnfBNAI3TN0p7R487c-0W8PBT8_Yft334Ro,2289
|
43
48
|
wandb/sdk/internal/profiler.py,sha256=6IJ18j5saTzX_GrGUm-qKLAYF8tW_iQMCP_jUqbaVn8,2391
|
44
49
|
wandb/sdk/internal/datastore.py,sha256=4rJXI0mKbU7RhLsgLjXUzWLv5ErGuuMI1jR2Uwa5TO8,9774
|
45
|
-
wandb/sdk/internal/handler.py,sha256=
|
50
|
+
wandb/sdk/internal/handler.py,sha256=O8DHUF3B_TsBKg87a8p2z3A4Tb0lx13rXsg4GbRX6pU,31693
|
46
51
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
47
52
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
53
|
wandb/sdk/internal/settings_static.py,sha256=-3pJ5RCWxGbNVVE4RvGudTurpn8ObN8wTEx_4dkrS3o,4284
|
49
|
-
wandb/sdk/internal/writer.py,sha256=jo_Ex7ik-0_rIahYDHIWcQjm_uxsUNVn92__bI8TloE,7267
|
50
54
|
wandb/sdk/internal/sample.py,sha256=USAWLhEeP83J13BVOSIy1Rb3kDDKTK9kzR88SlhO7dw,2470
|
51
|
-
wandb/sdk/internal/internal.py,sha256=4hEsyuh8Yw2mfqFtcySOkq9-7A0dpfjdNEGDgURmL9s,12098
|
52
55
|
wandb/sdk/internal/run.py,sha256=MD3D-o8Zo9hYpd-v9UlslTAuvCJHD6J1gBnZeZoD4o0,624
|
53
56
|
wandb/sdk/internal/sender.py,sha256=NHRoPM3EDDOzFJ7pYmTdQFhAL20ARwf37qep8YgvSwI,64287
|
54
57
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
55
58
|
wandb/sdk/internal/sender_config.py,sha256=3g0eAgmYJtv7tPXlqf7qayqKj-JOclvVRvzbVi8wfR4,6711
|
56
|
-
wandb/sdk/internal/internal_util.py,sha256=dKawQKw4UdZUE6Bmme5baT0FGDC0IUgoD2zM6ey4oBU,2555
|
57
59
|
wandb/sdk/internal/file_pusher.py,sha256=G6JLdqasdMMeNV6wiHUVgv3nGXiCrXFYwGOa7vOfTR0,6023
|
58
|
-
wandb/sdk/internal/flow_control.py,sha256=3LJ-KatyPPH18G7TfSMLDk-BE5tankB4JRhQqLoUOWM,8585
|
59
60
|
wandb/sdk/internal/incremental_table_util.py,sha256=SwcLG366undgZ5nw4xfyVZ5BZS4mAUw1K9HfmenFbqg,1490
|
60
61
|
wandb/sdk/internal/job_builder.py,sha256=2W-Oq100LaP3hoMiHajER0BNPl-KZtP6fmMg17aHFRs,22827
|
61
62
|
wandb/sdk/internal/file_stream.py,sha256=dLzl8RnbQQR2taSgcLff1Br5XghCKSPgxSxkBgzegyY,25604
|
62
63
|
wandb/sdk/internal/tb_watcher.py,sha256=wqlBUrQKyTYQth8q_ABPb9MNMNmeatyv59_Bq5pCtaU,18676
|
63
|
-
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
|
-
wandb/sdk/internal/system/system_monitor.py,sha256=3DyEYFCnQgZ0xZHnG1m0_RchMpGTSQprVbIG3MOD6ZI,8597
|
65
|
-
wandb/sdk/internal/system/system_info.py,sha256=DILyrTlXfuu9W6wknUc79Hkqmbu4jw_z8oYx4k0GWQY,10009
|
66
|
-
wandb/sdk/internal/system/env_probe_helpers.py,sha256=jIy6gbiaq37SzgcBGe6GepJho1VS5qNQThqOmu-g0OA,397
|
67
|
-
wandb/sdk/internal/system/assets/asset_registry.py,sha256=NYSoCDya3Wh7ytBJOE-tNySdPpLYnSghM6CzS9-I4nk,478
|
68
|
-
wandb/sdk/internal/system/assets/trainium.py,sha256=LfbFRPJk3oTlQ5MJ5YTx3-U8E01vVd7ZNRFZAtlW_uU,13301
|
69
|
-
wandb/sdk/internal/system/assets/ipu.py,sha256=irMYKXo1zEluWC5FjYzGD3edySfoi3lgiIi-0GNziE8,5314
|
70
|
-
wandb/sdk/internal/system/assets/cpu.py,sha256=rwXZZ6bchKEijE1GCE4j6mrxLDM4-H4ZLexcgNO_55k,4578
|
71
|
-
wandb/sdk/internal/system/assets/interfaces.py,sha256=5Qf-0DZe0OE9q6L3QAirH96ksjdQl0inw47GF8exbfo,6203
|
72
|
-
wandb/sdk/internal/system/assets/gpu.py,sha256=cTjIVNnAM7AXEet7MMUgFZVn-cInWfdTFcOVqYy5jQw,13710
|
73
|
-
wandb/sdk/internal/system/assets/__init__.py,sha256=X0_hRaWP1eTC-R-2WZI3Or3bKmqNwP7NsNijRq5DBVo,474
|
74
|
-
wandb/sdk/internal/system/assets/memory.py,sha256=lmd11JAXxEUpHUiUMX3Y5-a9bNjiMU3BgSvT9ubtpSo,4271
|
75
|
-
wandb/sdk/internal/system/assets/gpu_amd.py,sha256=7tQluuLCCgbiJI8DqJVGL60eLfLNzMurTEP39Ng1_04,7333
|
76
|
-
wandb/sdk/internal/system/assets/network.py,sha256=n3buH2-InLGT35PVlvhY5eHv_Hm5Kl_N8jH576OiVi8,3392
|
77
|
-
wandb/sdk/internal/system/assets/disk.py,sha256=4u-LpKSOH_pTZfHzNPtMf8kh3EMe7EKKcU7563_KbpU,6238
|
78
|
-
wandb/sdk/internal/system/assets/aggregators.py,sha256=lFNmgLM1LQ0SgkRjDNYyr9j-GkIDoQ0XL6PdBWDyX38,981
|
79
|
-
wandb/sdk/internal/system/assets/tpu.py,sha256=-OTd91LauiImuZMHMMo3cacJ1gvcZXuO_TSyOzJi3Ng,4904
|
80
|
-
wandb/sdk/internal/system/assets/open_metrics.py,sha256=VqOncOSnPztqSyQ0g-zeJWcjc_lircRk6F76rwoBWR4,9631
|
81
64
|
wandb/sdk/internal/_generated/server_features_query.py,sha256=WGjefMl-SDR7o7OVtJk7xKEYICBFA2wceGMXbuyj5QU,647
|
82
65
|
wandb/sdk/internal/_generated/__init__.py,sha256=DRBzTksuUuVY9oRJQsLtRTMMItykywWYvDxktHbCfk8,381
|
83
66
|
wandb/sdk/internal/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
@@ -110,7 +93,7 @@ wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=hGslEr9QYi0Jp5_C5fxv7
|
|
110
93
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
94
|
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=MpYHgEkbjt1VCUV-lfg1f3MscOK10tZHSJwOFjCzGBg,2562
|
112
95
|
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=Y0B79t9xDrXo361O9x6VFPQWJOozIPlzQRaGx6768Sw,8333
|
113
|
-
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=
|
96
|
+
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=WLplF8kL3vRKnhxIitrYciN58PmIcReVfxQEkkMqeA0,12898
|
114
97
|
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=SiRfKwfr9brkm0tDhMDpgxhHH6FOlasRaliznL9zyN0,5470
|
115
98
|
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=4MFqhnVciygmANKOrMSZwew4TXAFg5Q7zAZFz0FbpWM,2487
|
116
99
|
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=g2HXQ_8Zg8ZzZS1P1UUf7Y2ePPGeWLA62GCARuu8zfc,22174
|
@@ -151,7 +134,7 @@ wandb/sdk/projects/_generated/operations.py,sha256=MhLYsTHjekySMt3jdlXdruDI0Sg5x
|
|
151
134
|
wandb/sdk/projects/_generated/fragments.py,sha256=iFeb_dX2RwGhnwKItiqv4QUX9stJwvGTS2UCsGwIynM,1101
|
152
135
|
wandb/sdk/projects/_generated/rename_project.py,sha256=gwiq_rlA55YUT-ZB6mukewxMmi7jSbMr1drZMKpFV98,595
|
153
136
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
154
|
-
wandb/sdk/backend/backend.py,sha256=
|
137
|
+
wandb/sdk/backend/backend.py,sha256=yh3ldxlKXXIXGk7vKDwEu0OolI6MD1B2LTQSu6sBEg4,1310
|
155
138
|
wandb/sdk/launch/__init__.py,sha256=moXY557JibPbvE1GSSh3nGFiyelTVaJZMdFSv61Dn2k,399
|
156
139
|
wandb/sdk/launch/create_job.py,sha256=Uue7UhbLFZSe4Nljy_S2T92uOAAASFFoOme37UjgAxc,17381
|
157
140
|
wandb/sdk/launch/errors.py,sha256=G86cx2IZSRBBxLE7thxcVFKzN9d4mGyvciaWRz0uWWM,275
|
@@ -212,7 +195,7 @@ wandb/sdk/mailbox/mailbox_handle.py,sha256=vFBQQWVTiLNgJl1gi8EoWc3UkGhHa7JLls2L4
|
|
212
195
|
wandb/sdk/mailbox/mailbox.py,sha256=jUEP2Ltgi9rCZmiDtfb5ZESaqwB2wH-sy72OLRvATZk,4314
|
213
196
|
wandb/sdk/mailbox/response_handle.py,sha256=frQNLUG9_z7kd5MPEuhQnOrjRZcq719qMcn6z4CrV_0,4946
|
214
197
|
wandb/sdk/lib/filesystem.py,sha256=AWEY6dqFYPw_ump1nsaOCl-FwVo0ui5iZ_YH0tUTeyQ,14132
|
215
|
-
wandb/sdk/lib/progress.py,sha256=
|
198
|
+
wandb/sdk/lib/progress.py,sha256=AsmqmmJQvlslb5pDb-4yuL7sAOH1l6yC4F6Vgezaju4,10550
|
216
199
|
wandb/sdk/lib/timed_input.py,sha256=D7vx3N3m4LlxwkQpzS7lDi7IOnccqZ3WfLlDYRs8Oes,3229
|
217
200
|
wandb/sdk/lib/telemetry.py,sha256=Q7rh7qyeicy9KdgQffVK6ZI8vHUdOtwFvxEeeJtOWcI,2754
|
218
201
|
wandb/sdk/lib/printer_asyncio.py,sha256=KfCnRz54XcJrTbVOe_yBOumO9Dhk80j95aYhv3xLEDI,1424
|
@@ -220,7 +203,6 @@ wandb/sdk/lib/retry.py,sha256=SR1xvjZDr1tavxkuiFSALKi2ecky1zH1bvHKODO6Xlk,10015
|
|
220
203
|
wandb/sdk/lib/exit_hooks.py,sha256=_4oozaRQCJi8NJfZvHsA8livvFb0trZKLOGB8_UcHGk,1540
|
221
204
|
wandb/sdk/lib/__init__.py,sha256=53BA5lIOtUXciXZcPpNsFbp-iUPzI5gQFxplTykNmOE,183
|
222
205
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
223
|
-
wandb/sdk/lib/service_connection.py,sha256=VcrcPZShObnhicHYsa5x9O1vVttQTcW6vhLpFQiA9rM,7367
|
224
206
|
wandb/sdk/lib/config_util.py,sha256=Y00nnEcq0zspuDb0yqraxRuo5JIUh1HflDvZYppeDyk,2893
|
225
207
|
wandb/sdk/lib/server.py,sha256=dn0RXjAnpmigAULLyq75XHYyHxw17MLCJ9fhPq2v22I,1623
|
226
208
|
wandb/sdk/lib/ipython.py,sha256=TcKyUyoCBGCNkItaJRDx8PFUHtvuPPDDIduqyMYuGfQ,3810
|
@@ -242,8 +224,7 @@ wandb/sdk/lib/module.py,sha256=PWxpFqOYmLyKPF-VgfINZXzkFxDcoQVunVDVNWNnbxQ,2098
|
|
242
224
|
wandb/sdk/lib/wb_logging.py,sha256=9km7TAnJRSwBTQaFSYA4BmQZV3_Gb0y1PBlzqEOdUHA,4839
|
243
225
|
wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
|
244
226
|
wandb/sdk/lib/import_hooks.py,sha256=0_TJwq-EuZFUIFzFOZoVDWOMP9-Af1r2Vq5sV5sfzg4,10271
|
245
|
-
wandb/sdk/lib/printer.py,sha256=
|
246
|
-
wandb/sdk/lib/service_token.py,sha256=YJVYSoHw6OAoFVKcn2LuZ5D47BTTKFtbvWA2CvwZsWA,2455
|
227
|
+
wandb/sdk/lib/printer.py,sha256=6QjcnG2n2Q68MyAug7Y_glnpUdsFipiHnzpi4bI3r0A,16257
|
247
228
|
wandb/sdk/lib/gql_request.py,sha256=-KRTtT2zqn7pTOBcl41IBdbvQ25YCrxVurROpRqrWqw,2399
|
248
229
|
wandb/sdk/lib/hashutil.py,sha256=aU8YsAgkTcYDlqshfcDjItiO2s9lqq2YdKt7RoA2adQ,2763
|
249
230
|
wandb/sdk/lib/fsm.py,sha256=2fRiEF2jF95xDoVVbOmeIRaxMqlOv0bCv4RD8F2Ivj0,5044
|
@@ -251,16 +232,14 @@ wandb/sdk/lib/redirect.py,sha256=X4JHJ3W5-kG25aOYUyuYc8TBgVAKwhpV6yTaFWaR7tI,273
|
|
251
232
|
wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
|
252
233
|
wandb/sdk/lib/capped_dict.py,sha256=T2CNkmzfWeFgXOsFmx5IDPzgYmP1jxaVAb-nn3-qBBE,820
|
253
234
|
wandb/sdk/lib/apikey.py,sha256=s2uw8B2O53rCpBCDgiWyF8ceQH9MNpOdaTil1uvy-O0,11097
|
254
|
-
wandb/sdk/lib/sock_client.py,sha256=
|
235
|
+
wandb/sdk/lib/sock_client.py,sha256=ehrvRJ2e-I0cLtuKdlQXSelagC0Jf2dvQBBoq-1EGK0,8225
|
255
236
|
wandb/sdk/lib/timer.py,sha256=VZUyl7fmQAB75l9QXw9Nkz9SxyYj-CvLPawAk866YKM,440
|
256
237
|
wandb/sdk/lib/file_stream_utils.py,sha256=NN4qaSyNufvlkg96a1YUjQ8-pYtCVU7xagJaW8mqAyI,4018
|
257
|
-
wandb/sdk/service/
|
258
|
-
wandb/sdk/service/
|
259
|
-
wandb/sdk/service/
|
260
|
-
wandb/sdk/service/
|
261
|
-
wandb/sdk/service/
|
262
|
-
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
263
|
-
wandb/sdk/service/server_sock.py,sha256=J25fwVS6O1ljgd3Fw7opECwCHKsTeLddOTJvbE_KEA0,9802
|
238
|
+
wandb/sdk/lib/service/service_process.py,sha256=EDv7zYeUpF4NgN4ClTlzyUtfs75CiimdmLxTqvo72Tg,3100
|
239
|
+
wandb/sdk/lib/service/service_connection.py,sha256=wbbpy5_n5OCqhwQ7OJKKgwdQxT3ngx0JJpJ5e0DVvm4,6434
|
240
|
+
wandb/sdk/lib/service/ipc_support.py,sha256=UPa-bV_wY25WhYmMelVyLGZzbztSz2LSf2SUhVB-omQ,341
|
241
|
+
wandb/sdk/lib/service/service_token.py,sha256=4oDIDNzRZ3egXYcyPUpqmcwvptM6x0jnhFrMKP8T52s,4676
|
242
|
+
wandb/sdk/lib/service/service_port_file.py,sha256=Oonq46Ml4vKR-JTcxx4exi5MthGYRvIqy8hCv84Lc5k,2943
|
264
243
|
wandb/sdk/interface/interface.py,sha256=UTcOgm9qA5NJpH7SC5OGMQd90s6b9syEafne2LuWghM,38291
|
265
244
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
266
245
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -705,7 +684,7 @@ wandb/plot/viz.py,sha256=ni1MTkt3k1TxSqArdIR_sVcD1cV0j9eKmJdX0QlBcOM,943
|
|
705
684
|
wandb/plot/histogram.py,sha256=8r7i3-4-tWuvzNzHmiuMTsIxfOtfatXV5q3aV6eE0Xw,1811
|
706
685
|
wandb/plot/scatter.py,sha256=er_s8ARfxch_vf5uGkAcvFWb42Kw3jtd-2qsPoTj2F4,2166
|
707
686
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
708
|
-
wandb/analytics/sentry.py,sha256=
|
687
|
+
wandb/analytics/sentry.py,sha256=7vri0-bFKXeFSV6p7wvelouYz_cYpXhtAwCO1o6tB50,8367
|
709
688
|
wandb/automations/__init__.py,sha256=8Lh_SaoZ_EZCbIclsnBliApiaR6u4IQGEf_ShgogSqU,2215
|
710
689
|
wandb/automations/actions.py,sha256=FihlRvKBajFaFjXLZ1wKLU_cAAaJ28ltbLO1uv5HZfo,7498
|
711
690
|
wandb/automations/_validators.py,sha256=5rEU_gC0TRx1UvFVyqCcQU6knAKsZHhTW3z_lU8eZBY,5002
|
@@ -738,8 +717,8 @@ wandb/errors/util.py,sha256=YqO_fpZeXubXWBUAVQ6gmuLAiz3Q9pYVE5LbQ2Rq5Ck,1711
|
|
738
717
|
wandb/errors/links.py,sha256=sNwJ74e9qb0w4GRZfnbPXK5ZdpIqc5lkuaT4T2Snnqw,2520
|
739
718
|
wandb/errors/warnings.py,sha256=kyLP3bfXSmlztp8nOepLtfTdM-03N-i7Ho1Y568BOtk,57
|
740
719
|
wandb/errors/term.py,sha256=kH_noQvl9BDsGBXm7fQfH5u0ERmI6bOZa8Rp49DoAPk,12207
|
741
|
-
wandb/bin/wandb-core,sha256=
|
742
|
-
wandb/bin/gpu_stats,sha256=
|
720
|
+
wandb/bin/wandb-core,sha256=5BjSDepX0gew4Z18dwabvI6pn_890WdVh9odsCigfSM,54591672
|
721
|
+
wandb/bin/gpu_stats,sha256=owLkZhtYHDO8mAObiaapM7dVEtNU1KW8wQoUiI6pxaU,10416472
|
743
722
|
wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
|
744
723
|
wandb/apis/internal.py,sha256=Whl1x29iH_DdIu47vUVvDSyOavEVaovdmlqXmu4-yOw,7622
|
745
724
|
wandb/apis/normalize.py,sha256=xWm3tualLOtCSdz5g4reU5dUq-WHH0sE2dPool9SmIw,2665
|
@@ -757,7 +736,7 @@ wandb/apis/public/__init__.py,sha256=xHuML6BuYlSNhKR4_k97shA1zoCgndXzMYukQybmZEw
|
|
757
736
|
wandb/apis/public/automations.py,sha256=meQY6iI5e-1Se77AcV3NvkBet0f14TkdA5nNk8V9SFQ,2311
|
758
737
|
wandb/apis/public/sweeps.py,sha256=FYWvA-h-xqCnZ8PYXRwOEvRHgl3BS0RhuZpTftIMNrc,6547
|
759
738
|
wandb/apis/public/integrations.py,sha256=du02uzOUv6_8heAW1Kwu1pa2uZeYIzPFRgqcAOpF8JY,6772
|
760
|
-
wandb/apis/public/api.py,sha256=
|
739
|
+
wandb/apis/public/api.py,sha256=bZgNslZFXlDiEjv86h2TLl1fzbNfiao5OjlWaCERInI,81881
|
761
740
|
wandb/apis/public/runs.py,sha256=0WreS3Uqm0ui5fgSOQT6WnSWL4kKM8TXk4_5J8sKBjU,35584
|
762
741
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
763
742
|
wandb/apis/public/users.py,sha256=nbguWN0QJWvhsmgVx6IrkLYbjJcyI-eJQAUVaoY5Qjc,3796
|
@@ -766,17 +745,17 @@ wandb/apis/public/artifacts.py,sha256=PhujKfdJ-D3dsl4ofAt_wqn1kW13-8Drkn_UHMXkap
|
|
766
745
|
wandb/apis/public/utils.py,sha256=62ux6zpRpVug_y-_PaHUSOkPcHMTNFknAPqcINJSHFg,7893
|
767
746
|
wandb/apis/public/files.py,sha256=sQNGU18jmcpc6XccK5-jUXFhnqjOJgu9-fFljsTfg4Y,8497
|
768
747
|
wandb/apis/public/projects.py,sha256=IkXLJYno-yni-MP6dzSeztV8fBmX2vdRvb6PjiIJPgs,5475
|
769
|
-
wandb/apis/public/registries/registry.py,sha256=
|
748
|
+
wandb/apis/public/registries/registry.py,sha256=fNX2Iy3yG2skLPIsp0ityR1opQDeTKXIy38VjDDkXCQ,13725
|
770
749
|
wandb/apis/public/registries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
771
750
|
wandb/apis/public/registries/_freezable_list.py,sha256=E7qnLNnw1RF6ClQXbtkg3LRpOMs5jx2L5HiSY3RzTMo,6368
|
772
|
-
wandb/apis/public/registries/
|
773
|
-
wandb/apis/public/registries/registries_search.py,sha256=
|
751
|
+
wandb/apis/public/registries/_utils.py,sha256=N1EDMFQgIxoi2zHJGlbolEEzsmKXyn3LKN_vSLsTyxo,4277
|
752
|
+
wandb/apis/public/registries/registries_search.py,sha256=fjmQ-iNUlkNiEpLe1Yp9vmrM0wlWtOE1flIb_binznM,15169
|
774
753
|
wandb/apis/importers/__init__.py,sha256=ewph-RBUC9FnxL6uWbuuW0Hmdv2cHsxfqnZi0546ds4,38
|
775
754
|
wandb/apis/importers/wandb.py,sha256=A4Dd0ioykPa1OmTlxkuvpYzgtH5aNpercDl4AxH_CHo,54531
|
776
755
|
wandb/apis/importers/mlflow.py,sha256=uoxzm3bSOqjQyUkgOBwuzpaBjTdGp4drPaqE9f7Ny5w,8256
|
777
756
|
wandb/apis/importers/validation.py,sha256=5odBqLZ3BQvyyO8CkYrm7bPXySOeDt_amQPwIrMcJRE,3183
|
778
757
|
wandb/apis/importers/internals/protocols.py,sha256=shZBD2bRMo81xPSUQdK2d9KK8qpop4CmMkizg8FI3WM,2885
|
779
|
-
wandb/apis/importers/internals/internal.py,sha256=
|
758
|
+
wandb/apis/importers/internals/internal.py,sha256=ieAnGMYU4-6_rGY9uP7uZePeepMjP964xgUcsr-8f1w,13199
|
780
759
|
wandb/apis/importers/internals/util.py,sha256=lvqLAqNA1UpoOuD6eqe_1ZzRwxj8IkYKxYcP9h0S5jI,2081
|
781
760
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
782
761
|
wandb/integration/gym/__init__.py,sha256=oE_dAVdB6CbzS72UG7VOl7gKD3oYaDPVSlFdxz5AWJQ,2994
|
@@ -874,8 +853,8 @@ wandb/old/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
874
853
|
wandb/old/summary.py,sha256=FZrkTyycUy6MRY1n4q7713rlTV7h-CMr8_kNoeb-wzY,13856
|
875
854
|
wandb/old/settings.py,sha256=Cug-8ImuV4_x8HFGOnlATuh0iJ4JOUfmymguPFqlXvE,6482
|
876
855
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
877
|
-
wandb/cli/cli.py,sha256=
|
878
|
-
wandb/cli/beta.py,sha256=
|
856
|
+
wandb/cli/cli.py,sha256=bBhFG4VEurWE7qEItkYGnVs8ou0I8j-IBF_HlARQZqM,91136
|
857
|
+
wandb/cli/beta.py,sha256=Mq-5A-XXH3VLIvhWPxA84DFPeirNMYGPSQ53H78Xkjc,5187
|
879
858
|
wandb/proto/wandb_telemetry_pb2.py,sha256=Y9uzA6O9yUJ3HKqYOi86hg-mZ49NtSzQ_XRFSCONolA,405
|
880
859
|
wandb/proto/wandb_base_pb2.py,sha256=h09-9fMDbMC82T3jWHzmh8MB8llZ9o9za0uBOF_bL_s,385
|
881
860
|
wandb/proto/wandb_server_pb2.py,sha256=82Cf27PnDjHbkQT_-ZPjQyI0AVYd9YWoAlABrGPD-xo,393
|
@@ -885,30 +864,25 @@ wandb/proto/wandb_generate_deprecated.py,sha256=Iyf7PwIL_2B7XohrckYLbjjT09lccwbq
|
|
885
864
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
886
865
|
wandb/proto/wandb_deprecated.py,sha256=1-Q8uG5gowgpWg9loSLwavCGDCyLbcL6UQBcZ3OzNoI,2422
|
887
866
|
wandb/proto/wandb_internal_pb2.py,sha256=hTpbURqJyoNcwHD7o3k0ofmKgZdmKEYUm9sBqLHa5iA,628
|
888
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
867
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=vzKZOXISSGB0C2HaPAqCwC0gh_tQ-LzkT9qIkqmwSqg,12049
|
889
868
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
890
869
|
wandb/proto/v5/wandb_server_pb2.py,sha256=f55mk3Z77xUnq_tAbTd_Q75CiOJz6ppPbZT7CoeF7-I,7535
|
891
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
870
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=Qhyi3uD0zLwrzXr1s_filvnTNnIY6o5EqXE9EUQ_csY,18127
|
892
871
|
wandb/proto/v5/wandb_internal_pb2.py,sha256=2sMNT4CW8wpRkq-73I2pNB6z3szRaDkZ6IPATeInOWI,58758
|
893
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
872
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=xQdi3cm85CE4Ck0NAtPvdK7FFtEYoXXBEGlIIF2TXvs,11779
|
894
873
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
895
874
|
wandb/proto/v4/wandb_server_pb2.py,sha256=NiG6Xv9CDvxc8v8NmnM237jyYqMuRyE_nqmLAMZVdI8,6977
|
896
875
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
897
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
876
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=AR4mU1sslWwd35mDHoLDTUfipljZdh2XR8GM7FuUzz8,17771
|
898
877
|
wandb/proto/v4/wandb_internal_pb2.py,sha256=5edNzirlYU02e0fsLICr66mbqtHIDmof924falEzB5Y,54363
|
899
|
-
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=
|
878
|
+
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=PcQVbRaqN01nHu0OBi6UPHSeSpuw7rDy4mup2RYWH04,12303
|
900
879
|
wandb/proto/v6/wandb_base_pb2.py,sha256=5NJU1W7zgKLIsKL5brRoOL4HcLOxWieIKlWEe1IM0_g,1821
|
901
880
|
wandb/proto/v6/wandb_server_pb2.py,sha256=jH4AJat2sz9hR88er6D4yb-6bNLY5nPW5oX5CuHjBLc,7786
|
902
|
-
wandb/proto/v6/wandb_settings_pb2.py,sha256=
|
881
|
+
wandb/proto/v6/wandb_settings_pb2.py,sha256=pIvIa8q5rD8PDnOrxsZD8dQNrtT7D8NdUhHqTTBtFk4,18380
|
903
882
|
wandb/proto/v6/wandb_internal_pb2.py,sha256=wDZqagln_koAPV6z29-ldOg6eLLG6cjNOyfY8hYGnXQ,59011
|
904
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
883
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=fD1_oZfqgiRghlqZE5CyXO437-_OgVv9ZIBjx9YtCno,14332
|
905
884
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
906
885
|
wandb/proto/v3/wandb_server_pb2.py,sha256=LQCUmuy0NFDo20N9uCUiE5VPyhP5r929WKtniae4CdQ,15514
|
907
886
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
908
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
887
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=_KrfKfkbKCDCNsd-qBMfL6HXdxt9XZYvxopqs69jnuE,21396
|
909
888
|
wandb/proto/v3/wandb_internal_pb2.py,sha256=xKTg9CalkBOznziFa5fA9kirA9kqg72QbEANoMvcSDI,118397
|
910
|
-
wandb-0.20.1.dist-info/RECORD,,
|
911
|
-
wandb-0.20.1.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
912
|
-
wandb-0.20.1.dist-info/WHEEL,sha256=ZCaGMInsobf_X8ibOue5yAC0a46KTbFsnGjtmL2skyU,106
|
913
|
-
wandb-0.20.1.dist-info/METADATA,sha256=EcYDqPeeoZYy-r-YORdy-49B7a9AswwzGfIU1lA61-k,10307
|
914
|
-
wandb-0.20.1.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|