wandb 0.18.3__py3-none-macosx_11_0_arm64.whl → 0.18.5__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 +16 -7
- wandb/__init__.pyi +96 -63
- wandb/analytics/sentry.py +91 -88
- wandb/apis/public/api.py +18 -4
- wandb/apis/public/runs.py +53 -2
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/beta.py +178 -0
- wandb/cli/cli.py +5 -171
- wandb/data_types.py +3 -0
- wandb/env.py +74 -73
- wandb/errors/term.py +300 -43
- wandb/proto/v3/wandb_internal_pb2.py +263 -223
- wandb/proto/v3/wandb_server_pb2.py +57 -37
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_internal_pb2.py +226 -218
- wandb/proto/v4/wandb_server_pb2.py +41 -37
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_internal_pb2.py +226 -218
- wandb/proto/v5/wandb_server_pb2.py +41 -37
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/sdk/__init__.py +3 -3
- wandb/sdk/artifacts/_validators.py +41 -8
- wandb/sdk/artifacts/artifact.py +32 -1
- wandb/sdk/artifacts/artifact_file_cache.py +1 -2
- wandb/sdk/data_types/_dtypes.py +7 -3
- wandb/sdk/data_types/video.py +15 -6
- wandb/sdk/interface/interface.py +2 -0
- wandb/sdk/internal/internal_api.py +126 -5
- wandb/sdk/internal/sender.py +16 -3
- wandb/sdk/launch/inputs/internal.py +1 -1
- wandb/sdk/lib/module.py +12 -0
- wandb/sdk/lib/printer.py +291 -105
- wandb/sdk/lib/progress.py +274 -0
- wandb/sdk/service/streams.py +21 -11
- wandb/sdk/wandb_init.py +58 -54
- wandb/sdk/wandb_run.py +380 -454
- wandb/sdk/wandb_settings.py +2 -0
- wandb/sdk/wandb_watch.py +17 -11
- wandb/util.py +6 -2
- {wandb-0.18.3.dist-info → wandb-0.18.5.dist-info}/METADATA +4 -3
- {wandb-0.18.3.dist-info → wandb-0.18.5.dist-info}/RECORD +45 -43
- wandb/bin/apple_gpu_stats +0 -0
- {wandb-0.18.3.dist-info → wandb-0.18.5.dist-info}/WHEEL +0 -0
- {wandb-0.18.3.dist-info → wandb-0.18.5.dist-info}/entry_points.txt +0 -0
- {wandb-0.18.3.dist-info → wandb-0.18.5.dist-info}/licenses/LICENSE +0 -0
wandb/sdk/wandb_settings.py
CHANGED
@@ -386,6 +386,7 @@ class SettingsData:
|
|
386
386
|
_tracelog: str
|
387
387
|
_unsaved_keys: Sequence[str]
|
388
388
|
_windows: bool
|
389
|
+
_show_operation_stats: bool
|
389
390
|
allow_val_change: bool
|
390
391
|
anonymous: str
|
391
392
|
api_key: str
|
@@ -776,6 +777,7 @@ class Settings(SettingsData):
|
|
776
777
|
"hook": lambda _: platform.system() == "Windows",
|
777
778
|
"auto_hook": True,
|
778
779
|
},
|
780
|
+
_show_operation_stats={"preprocessor": _str_as_bool},
|
779
781
|
anonymous={"validator": self._validate_anonymous},
|
780
782
|
api_key={"validator": self._validate_api_key},
|
781
783
|
base_url={
|
wandb/sdk/wandb_watch.py
CHANGED
@@ -17,12 +17,15 @@ from .lib import telemetry
|
|
17
17
|
if TYPE_CHECKING:
|
18
18
|
import torch # type: ignore [import-not-found]
|
19
19
|
|
20
|
+
from wandb.sdk.wandb_run import Run
|
21
|
+
|
20
22
|
logger = logging.getLogger("wandb")
|
21
23
|
|
22
24
|
_global_watch_idx = 0
|
23
25
|
|
24
26
|
|
25
|
-
def
|
27
|
+
def _watch(
|
28
|
+
run: Run,
|
26
29
|
models: torch.nn.Module | Sequence[torch.nn.Module],
|
27
30
|
criterion: torch.F | None = None,
|
28
31
|
log: Literal["gradients", "parameters", "all"] | None = "gradients",
|
@@ -36,6 +39,7 @@ def watch(
|
|
36
39
|
extended to support arbitrary machine learning models in the future.
|
37
40
|
|
38
41
|
Args:
|
42
|
+
run (wandb.sdk.wandb_run.Run): The run object to log to.
|
39
43
|
models (Union[torch.nn.Module, Sequence[torch.nn.Module]]):
|
40
44
|
A single model or a sequence of models to be monitored.
|
41
45
|
criterion (Optional[torch.F]):
|
@@ -66,9 +70,6 @@ def watch(
|
|
66
70
|
|
67
71
|
logger.info("Watching")
|
68
72
|
|
69
|
-
if wandb.run is None:
|
70
|
-
raise ValueError("You must call `wandb.init` before calling watch")
|
71
|
-
|
72
73
|
if log not in {"gradients", "parameters", "all", None}:
|
73
74
|
raise ValueError("log must be one of 'gradients', 'parameters', 'all', or None")
|
74
75
|
|
@@ -102,31 +103,36 @@ def watch(
|
|
102
103
|
prefix = "graph_%i" % global_idx
|
103
104
|
|
104
105
|
if log_parameters:
|
105
|
-
|
106
|
+
run._torch.add_log_parameters_hook(
|
106
107
|
model,
|
107
108
|
prefix=prefix,
|
108
109
|
log_freq=log_freq,
|
109
110
|
)
|
110
111
|
|
111
112
|
if log_gradients:
|
112
|
-
|
113
|
+
run._torch.add_log_gradients_hook(
|
113
114
|
model,
|
114
115
|
prefix=prefix,
|
115
116
|
log_freq=log_freq,
|
116
117
|
)
|
117
118
|
|
118
119
|
if log_graph:
|
119
|
-
graph =
|
120
|
+
graph = run._torch.hook_torch(model, criterion, graph_idx=global_idx)
|
120
121
|
graphs.append(graph)
|
121
122
|
# NOTE: the graph is set in run.summary by hook_torch on the backward pass
|
122
123
|
return graphs
|
123
124
|
|
124
125
|
|
125
|
-
def
|
126
|
+
def _unwatch(
|
127
|
+
run: Run, models: torch.nn.Module | Sequence[torch.nn.Module] | None = None
|
128
|
+
) -> None:
|
126
129
|
"""Remove pytorch model topology, gradient and parameter hooks.
|
127
130
|
|
128
131
|
Args:
|
129
|
-
|
132
|
+
run (wandb.sdk.wandb_run.Run):
|
133
|
+
The run object to log to.
|
134
|
+
models (torch.nn.Module | Sequence[torch.nn.Module]):
|
135
|
+
Optional list of pytorch models that have had watch called on them
|
130
136
|
"""
|
131
137
|
if models:
|
132
138
|
if not isinstance(models, (tuple, list)):
|
@@ -136,9 +142,9 @@ def unwatch(models=None):
|
|
136
142
|
wandb.termwarn("{} model has not been watched".format(model))
|
137
143
|
else:
|
138
144
|
for name in model._wandb_hook_names:
|
139
|
-
|
145
|
+
run._torch.unhook(name)
|
140
146
|
delattr(model, "_wandb_hook_names")
|
141
147
|
# TODO: we should also remove recursively model._wandb_watch_called
|
142
148
|
|
143
149
|
else:
|
144
|
-
|
150
|
+
run._torch.unhook_all()
|
wandb/util.py
CHANGED
@@ -1859,7 +1859,7 @@ def sample_with_exponential_decay_weights(
|
|
1859
1859
|
sampled_indices = np.random.choice(len(xs_array), size=sample_size, p=weights)
|
1860
1860
|
sampled_xs = xs_array[sampled_indices].tolist()
|
1861
1861
|
sampled_ys = ys_array[sampled_indices].tolist()
|
1862
|
-
sampled_keys = keys_array[sampled_indices].tolist() if
|
1862
|
+
sampled_keys = keys_array[sampled_indices].tolist() if keys_array else None
|
1863
1863
|
|
1864
1864
|
return sampled_xs, sampled_ys, sampled_keys
|
1865
1865
|
|
@@ -1893,8 +1893,12 @@ def working_set() -> Iterable[InstalledDistribution]:
|
|
1893
1893
|
# which can raise a KeyError. To handle this, we catch the exception
|
1894
1894
|
# and skip those distributions.
|
1895
1895
|
# For additional context, see: https://github.com/python/importlib_metadata/issues/371.
|
1896
|
+
|
1897
|
+
# From Sentry events we observed that UnicodeDecodeError can occur when
|
1898
|
+
# trying to decode the metadata of a distribution. To handle this, we catch
|
1899
|
+
# the exception and skip those distributions.
|
1896
1900
|
yield InstalledDistribution(key=d.metadata["Name"], version=d.version)
|
1897
|
-
except KeyError:
|
1901
|
+
except (KeyError, UnicodeDecodeError):
|
1898
1902
|
pass
|
1899
1903
|
|
1900
1904
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.18.
|
3
|
+
Version: 0.18.5
|
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
|
@@ -33,6 +33,7 @@ Classifier: Intended Audience :: Developers
|
|
33
33
|
Classifier: Intended Audience :: Science/Research
|
34
34
|
Classifier: License :: OSI Approved :: MIT License
|
35
35
|
Classifier: Natural Language :: English
|
36
|
+
Classifier: Programming Language :: Go
|
36
37
|
Classifier: Programming Language :: Python :: 3
|
37
38
|
Classifier: Programming Language :: Python :: 3 :: Only
|
38
39
|
Classifier: Programming Language :: Python :: 3.7
|
@@ -57,10 +58,10 @@ Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.19.0; sys_platform != 'linux'
|
|
57
58
|
Requires-Dist: psutil>=5.0.0
|
58
59
|
Requires-Dist: pyyaml
|
59
60
|
Requires-Dist: requests<3,>=2.0.0
|
60
|
-
Requires-Dist: sentry-sdk>=
|
61
|
+
Requires-Dist: sentry-sdk>=2.0.0
|
61
62
|
Requires-Dist: setproctitle
|
62
63
|
Requires-Dist: setuptools
|
63
|
-
Requires-Dist: typing-extensions; python_version < '3.
|
64
|
+
Requires-Dist: typing-extensions<5,>=4.4; python_version < '3.12'
|
64
65
|
Provides-Extra: aws
|
65
66
|
Requires-Dist: boto3; extra == 'aws'
|
66
67
|
Provides-Extra: azure
|
@@ -1,17 +1,17 @@
|
|
1
1
|
package_readme.md,sha256=1v4WgKja-54kllY4clEr85vGFQAGaCo-JrtTZfsG4zM,3864
|
2
|
-
wandb-0.18.
|
3
|
-
wandb-0.18.
|
4
|
-
wandb-0.18.
|
5
|
-
wandb-0.18.
|
6
|
-
wandb-0.18.
|
2
|
+
wandb-0.18.5.dist-info/RECORD,,
|
3
|
+
wandb-0.18.5.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
|
4
|
+
wandb-0.18.5.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
5
|
+
wandb-0.18.5.dist-info/METADATA,sha256=0oldgmIGkMjCy6hG0jCBfA-XuknzdUDfZrZYO_rQyZo,9700
|
6
|
+
wandb-0.18.5.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=1rmuVAzuKvo9axeRfPvseTpB6JiIK_7hQoAn9s86gmg,13563
|
9
|
+
wandb/__init__.pyi,sha256=pYbORxeWX50DhjwOvMaikfEo9V8WYWmzvto9_ZKziSI,44669
|
10
10
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
11
|
-
wandb/util.py,sha256=
|
11
|
+
wandb/util.py,sha256=Ea5nxxqUJP1bEbCPXYRPuTOPUN99RvM326i0a8zBf00,62170
|
12
12
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
13
|
-
wandb/__init__.py,sha256=
|
14
|
-
wandb/data_types.py,sha256=
|
13
|
+
wandb/__init__.py,sha256=DpQAxllpUnA5X4OteVsE33AuxLwgmxIzRrhSoEN7VrU,7231
|
14
|
+
wandb/data_types.py,sha256=227c5hrL0LqENQ_zUQqTyWlnZLddEn-ri65My7iXZRA,2277
|
15
15
|
wandb/wandb_controller.py,sha256=Mp6szfycF_F8fFhxuDTSMpN4Vvc6D0Ix2gZBSSYOOS0,24804
|
16
16
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
wandb/wandb_agent.py,sha256=V6NUHwv4_PDvR3ygyjHxHGZhJeeLUF9JgK2NpjXigUU,21117
|
@@ -43,12 +43,12 @@ wandb/apis/public/query_generator.py,sha256=-kfS9CKDsrvc0SyMxLQFFMARZz1mwuDkLUt1
|
|
43
43
|
wandb/apis/public/teams.py,sha256=eIrkSwx1ElvKx7KP1WKRLP7pNJ6b2MrUZpI_3ey3rIA,5489
|
44
44
|
wandb/apis/public/__init__.py,sha256=ldsy9V8UQlRnsIf9E4qRMtYIdH89oQ8eiYThQsphXks,1070
|
45
45
|
wandb/apis/public/jobs.py,sha256=sK_7WQicEBPppNsFn9Fmp1xHTM_DbBjvMdHUBV4vrfE,22474
|
46
|
-
wandb/apis/public/api.py,sha256=
|
46
|
+
wandb/apis/public/api.py,sha256=JN6wjfDAZKx44SmdFL99mFEM_ld6LUv3Wgf19-DdN8s,48285
|
47
47
|
wandb/apis/public/reports.py,sha256=_KHQYa7vIfGoxTI5Qk0JJTEzN6b1RqbcVopCVEHph3Y,15571
|
48
48
|
wandb/apis/public/sweeps.py,sha256=t-oOyMauYcGO2YszeQ2u18QwDKw8B94-Lodhw91Kpeg,6543
|
49
49
|
wandb/apis/public/artifacts.py,sha256=E7W-qzv0AH-n244gzC1dr0WR6PENg_bl4CDD1sH0Ybg,33787
|
50
50
|
wandb/apis/public/projects.py,sha256=F5cPDxAbZD4-oVB_BxBCTsZk6k1tVL0cPU3Z0YEUqzo,4322
|
51
|
-
wandb/apis/public/runs.py,sha256=
|
51
|
+
wandb/apis/public/runs.py,sha256=2deZcafGYxgmuE5rMvbdy_GksMMDicwgseoWEwr4CuU,33736
|
52
52
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
53
53
|
wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
|
54
54
|
wandb/apis/reports/__init__.py,sha256=5ZkKvOqwks3UmVeaPuwIZYwyV8_afsGbtybDOXYjSsg,32
|
@@ -74,25 +74,25 @@ wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
74
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
75
75
|
wandb/proto/wandb_deprecated.py,sha256=TzajfudC8s2ihtSmeRLVj_jmvsOxw_hFsQhrFPXYCQI,1988
|
76
76
|
wandb/proto/wandb_telemetry_pb2.py,sha256=ReY9N2qSt46o7m1ou1khvYSYYImrzo5ro90g_9m8QsM,322
|
77
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
78
|
-
wandb/proto/v5/wandb_server_pb2.py,sha256=
|
77
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=MzbElDMueaPx-7OPnBTpbTdf2F_KZWoyMhT4dRaSX2c,17064
|
78
|
+
wandb/proto/v5/wandb_server_pb2.py,sha256=piGeVPCrHNCMMc9yIYKQtFRNSvfvB2fQKs8ANwApJu8,7463
|
79
79
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
80
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
80
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=9lKc_NrYNyLTaJaaRz1ox-JfyYpJ6pOP297gPrgk6_w,55269
|
81
81
|
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=kL3OgFy39xy2ARUik0fWJRVBMD1QG1S8rQI-AmmMUA0,11473
|
82
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
83
|
-
wandb/proto/v4/wandb_server_pb2.py,sha256=
|
82
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=3UMKIax5vWS8uiUU4T0t7VfMqOcGa18GN8Dn6-nORxM,16732
|
83
|
+
wandb/proto/v4/wandb_server_pb2.py,sha256=MjXs9_8Gy8PKlIZuNZILp0fh2GDXctwKDL5BZhXydsA,6905
|
84
84
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
85
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
85
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=Gll2HTW_t44dQ8988XOO3ROLdJ9N9qlHyliYjMCW-1A,51066
|
86
86
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
87
|
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=ttxi2j58yb4FmtKQvxwKauhZHntPYQMvDVdsr5f-oHU,11203
|
88
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
89
|
-
wandb/proto/v3/wandb_server_pb2.py,sha256=
|
88
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=LW7OwZQlKtu2hZ1FZL0YC19iVdkIF16WdXEuyIRBjqU,20001
|
89
|
+
wandb/proto/v3/wandb_server_pb2.py,sha256=v_A6xNDUCKToBeUTgr1b6sqo51-PdqBEgLLKu8oloSU,15442
|
90
90
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
91
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
91
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=sbxE-0jaPbV3niI6ZwnPpwVexbMOPdn4ZML9PsyUktI,111455
|
92
92
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
93
93
|
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=oJY8DOl3qdn-G2fUmzYKK1qiEaoFt3Kws_z34Xnb0oc,13756
|
94
|
-
wandb/bin/wandb-core,sha256=
|
95
|
-
wandb/bin/
|
94
|
+
wandb/bin/wandb-core,sha256=w9gLx6mFFMoX7EWGUvPrsbZkGFVHMqpRbelMbjrDRV0,28420642
|
95
|
+
wandb/bin/gpu_stats,sha256=4tof_E0WefsUiHCbmwWehgqKLjXnAh_4Lv11AskKO0w,9546040
|
96
96
|
wandb/integration/magic.py,sha256=8b7GkkntZb-jJ7L0OF4M7mS1yJKtMI_o3jfsTufWMr4,17246
|
97
97
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
98
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -185,20 +185,21 @@ wandb/old/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
185
185
|
wandb/old/core.py,sha256=bIIFlU3_E2hvrVCzMQk1VcwJtxbadbAZwDC0qsF4C2g,1501
|
186
186
|
wandb/old/summary.py,sha256=eqpzQB5CfzTKZta6tB-nVUh0ZmiLwISqjSAt4yvwocE,13952
|
187
187
|
wandb/old/settings.py,sha256=IrS10skC9gCTb8NgTWeRFgsTYL1bw36e-rG_xECk-yo,6374
|
188
|
+
wandb/cli/beta.py,sha256=JaDq3Q2t8ECsAgvZ-8AtgiawDydZnasQdXtECIf9ODY,5357
|
188
189
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
189
|
-
wandb/cli/cli.py,sha256=
|
190
|
+
wandb/cli/cli.py,sha256=plStdLfs3JXGnzl-BvwzkT5mNQ24rsd0G9Em7E1eV1Q,93039
|
190
191
|
wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
191
192
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
192
193
|
wandb/sdk/wandb_config.py,sha256=TCddmgheDApOE-OXcZdgihhCnTpoR5jj4zeohs-9Q8M,10854
|
193
194
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
194
|
-
wandb/sdk/wandb_run.py,sha256=
|
195
|
+
wandb/sdk/wandb_run.py,sha256=7rcWymD0Q1r7sQRA40rMr8AfW3fF1OjkcGtOrn8k_0A,156513
|
195
196
|
wandb/sdk/wandb_sync.py,sha256=hPay3CjVANnPN8veYOi9SzHFJTUMG2efuM4mGjiady8,2316
|
196
|
-
wandb/sdk/__init__.py,sha256=
|
197
|
-
wandb/sdk/wandb_init.py,sha256=
|
197
|
+
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
198
|
+
wandb/sdk/wandb_init.py,sha256=MYMeo1Xa1Lx4dygeQWNY9yXec7MqFqrXn4tGL-2vsSw,52400
|
198
199
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
199
|
-
wandb/sdk/wandb_settings.py,sha256=
|
200
|
+
wandb/sdk/wandb_settings.py,sha256=Y9mzU4YAGYef5gobG75a9cQKKBBRfVMC36PDqrHqGC8,76402
|
200
201
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
201
|
-
wandb/sdk/wandb_watch.py,sha256
|
202
|
+
wandb/sdk/wandb_watch.py,sha256=-QXCDDczgyOad3RnWU_YLJmsNCj3wGfrfg74ywdnHOY,4842
|
202
203
|
wandb/sdk/wandb_login.py,sha256=aoP4bhSpTcDkngyBomcIimSmhvYFo12IlT86PLXhFA8,11243
|
203
204
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
204
205
|
wandb/sdk/wandb_require.py,sha256=mQ8igzUVENY0Qj94cTA_GWVGAuTETul6PMSBbUU-bFw,3045
|
@@ -213,7 +214,7 @@ wandb/sdk/interface/router_queue.py,sha256=7TImXbpuwgn3iUw6kcNyC_nZ3APaBrojZyz1x
|
|
213
214
|
wandb/sdk/interface/message_future_poll.py,sha256=drjrcBKswYPYJJQLFlj7UDXq7_zg7KNcObFVetsbvhQ,1410
|
214
215
|
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
215
216
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
216
|
-
wandb/sdk/interface/interface.py,sha256=
|
217
|
+
wandb/sdk/interface/interface.py,sha256=vHdQQI0a2djDxphwxer6cRyH0LUKEN6ADeE1DGQjacY,34750
|
217
218
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
218
219
|
wandb/sdk/interface/router_sock.py,sha256=7-J3SFhnaqPohYaUyljwpbsvYPBXA-ZTENYnXxzbh9U,1060
|
219
220
|
wandb/sdk/interface/interface_shared.py,sha256=dPxBFuRStRyptnMreWMOSlo0hJoHOchcv0VJkIS6BmA,20045
|
@@ -226,9 +227,9 @@ wandb/sdk/artifacts/storage_policy.py,sha256=BGIC8QRfryCNzF-72uk53MvQQbZVoKwQGhn
|
|
226
227
|
wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
|
227
228
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
|
228
229
|
wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
|
229
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
230
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
231
|
-
wandb/sdk/artifacts/artifact_file_cache.py,sha256=
|
230
|
+
wandb/sdk/artifacts/artifact.py,sha256=x4jWWT_uhCT4_MQGseMDI_UoSZyIqBQFyI8RbO4ovfs,91438
|
231
|
+
wandb/sdk/artifacts/_validators.py,sha256=TLiRLkBZb7CMhR2ybdWTg68Z93uBQW3KiptijYHt-kM,4205
|
232
|
+
wandb/sdk/artifacts/artifact_file_cache.py,sha256=Ez5ocC-G6L8sEyZ9fRbF4u-4qkbCOQyoVJj_wxtklAM,9834
|
232
233
|
wandb/sdk/artifacts/artifact_saver.py,sha256=4mLEaQdbBSsH5U-UUsUdzii2idsgzoOTSZqrk9-GH-o,9436
|
233
234
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
234
235
|
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=zRhOHWBfxzfupkW8hZRo9ZKLzl-UGXWFLjQ9bXslCew,8360
|
@@ -260,14 +261,14 @@ wandb/sdk/data_types/trace_tree.py,sha256=CFt4z9kZfwty3VAnGzH07u_5rFHH8R2R3pOvMb
|
|
260
261
|
wandb/sdk/data_types/graph.py,sha256=WmCHpKfmeSIc7PCkC55YZyxgbTp56EKnqN8TlkApvTA,12061
|
261
262
|
wandb/sdk/data_types/html.py,sha256=GAcNfVwwMG_LoS4d64DvIY8pluitwsUvwcP6spwxgcA,3509
|
262
263
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
263
|
-
wandb/sdk/data_types/_dtypes.py,sha256=
|
264
|
+
wandb/sdk/data_types/_dtypes.py,sha256=NdRfTto95YxLMMK89PONQvAz_Jaey8D7caTsZ_OlvW8,30092
|
264
265
|
wandb/sdk/data_types/utils.py,sha256=vkOUbH-ZErAt97F3-Xh6isALLYqh_JeZ1JaNPhewSzI,7911
|
265
266
|
wandb/sdk/data_types/audio.py,sha256=Pkq1BiczpTgXcNaJPNvBfpNkNZfkaY8v_xMpj5RKv2A,5369
|
266
267
|
wandb/sdk/data_types/table.py,sha256=sw9V68n06gYvT668t759x4v0se1yR4pcKqn8_lZWILg,44720
|
267
268
|
wandb/sdk/data_types/bokeh.py,sha256=cB3Em5Rd0bWL1whbFTrfKafkO7cR2viEgyY9GZL6i4A,2539
|
268
269
|
wandb/sdk/data_types/saved_model.py,sha256=W1hbTABPsydot2uo2VID0PaJDC_Ec2ipIU-b2QUTs-g,16381
|
269
270
|
wandb/sdk/data_types/plotly.py,sha256=m75HRKSCdd9-cu-odpZ5d2Tu8KwmR_LVdW9u0H-68AE,2918
|
270
|
-
wandb/sdk/data_types/video.py,sha256=
|
271
|
+
wandb/sdk/data_types/video.py,sha256=xSvLx95GZ6brWWbYqvoDmPYyCbosTqLnJ9vlyKdTQzA,9231
|
271
272
|
wandb/sdk/data_types/image.py,sha256=_RMJfTgTScIH4gDi-B1UHBMrB_oU8rKaAcXTVjoRPaM,31337
|
272
273
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
273
274
|
wandb/sdk/data_types/base_types/media.py,sha256=2WgapOXlF1udvNPYudM0IesKKJAyiS19IxtQD7Y66Q0,11887
|
@@ -327,15 +328,15 @@ wandb/sdk/launch/builder/docker_builder.py,sha256=0HbPxwWuCHXogmIc6o18nvBaHIx-xc
|
|
327
328
|
wandb/sdk/launch/builder/noop.py,sha256=A--UUfqkcZxCpTmBKbL6JvkE_emcJRXIkAhAfVv5u7k,1900
|
328
329
|
wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=AuI7GXUoW3MdPWVTkSjhxZQTmW4Rk_nTNllHbZzfoDQ,7316
|
329
330
|
wandb/sdk/launch/builder/templates/dockerfile.py,sha256=X8D6n6tyyh69oNHeFiUp-d8ClEtMpHSjwk45N12CR68,2264
|
330
|
-
wandb/sdk/launch/inputs/internal.py,sha256=
|
331
|
+
wandb/sdk/launch/inputs/internal.py,sha256=xtEZ7znfUCL2ME7xZv5bD8I5C6hNpN2EqjgNduAPvFM,10054
|
331
332
|
wandb/sdk/launch/inputs/files.py,sha256=BWGDmAfDPLja7zz0bUzYLaF3wH4cTPesD9LqDuJRUoU,4685
|
332
333
|
wandb/sdk/launch/inputs/manage.py,sha256=O0IsTWhjUftihohRfK7DkT186LjHMMcE2NSMeG8IFBY,5003
|
333
334
|
wandb/sdk/launch/inputs/schema.py,sha256=Fs4CcxI0ifFagazbNp47uJP15JL3v43PAvVNO93f9XY,1418
|
334
|
-
wandb/sdk/internal/sender.py,sha256=
|
335
|
+
wandb/sdk/internal/sender.py,sha256=snSHq5a99YNL75cQsd4HAHCh6B7DmSlgm-QLQ57HT4U,65378
|
335
336
|
wandb/sdk/internal/internal.py,sha256=3JnUaCA5zx48kjgXqpFy8h5LRwVzvY2YCFUibZZfNOc,12738
|
336
337
|
wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
|
337
338
|
wandb/sdk/internal/job_builder.py,sha256=ivwKg2VnJg1ynpSZaukJbC3umnbYnbKITngeS4Q7x4I,22903
|
338
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
339
|
+
wandb/sdk/internal/internal_api.py,sha256=IOjJHfpKrVb2aqCGBkya2G8eRGLa8l0t5E9O0Bal6qY,155460
|
339
340
|
wandb/sdk/internal/handler.py,sha256=VJg3kt9xFnvIiRzTmzQCA7yxJSr8zuf0Tvh66IFfgUY,33369
|
340
341
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
341
342
|
wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
|
@@ -406,21 +407,22 @@ wandb/sdk/lib/_settings_toposort_generate.py,sha256=FQZPNGKnUcApOHjT_SYFC5APLxni
|
|
406
407
|
wandb/sdk/lib/run_moment.py,sha256=zFnLv_0xq-fuyK3cGt-letX5ZNzgFcnAqvdDpB6UvXo,2306
|
407
408
|
wandb/sdk/lib/mailbox.py,sha256=A-YNGof7NwmttL_3M7RmVfkbciBEIEi8jKhcXN-sLhU,14248
|
408
409
|
wandb/sdk/lib/hashutil.py,sha256=aU8YsAgkTcYDlqshfcDjItiO2s9lqq2YdKt7RoA2adQ,2763
|
409
|
-
wandb/sdk/lib/module.py,sha256=
|
410
|
+
wandb/sdk/lib/module.py,sha256=PzXfr7fEAIOLBXBxRgvriH1x_-unDDS890BGK4xm2vo,2176
|
410
411
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
411
412
|
wandb/sdk/lib/service_connection.py,sha256=wgxe5j66WSjP-vQ-gQUPVMYOtqvmwUGtQ-Mz8tNPHR4,6466
|
413
|
+
wandb/sdk/lib/progress.py,sha256=AijXZm-7OM3W_GmGsunrwsKWETTE4GxK5yDWXbWft4o,8536
|
412
414
|
wandb/sdk/lib/gql_request.py,sha256=4-4HY6IOetwcL8EUaoFc_u3pojnNtEN4NN6-5EtT-MY,2400
|
413
415
|
wandb/sdk/lib/_settings_toposort_generated.py,sha256=Gl_WhLZs-OvXjWh6vU1SQ0hqV00eMmXkBpwRkf2RcQ4,5310
|
414
416
|
wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
|
415
417
|
wandb/sdk/lib/apikey.py,sha256=O9kdOEVAa9EedVZyCsh-CdSKo6T-FjhqGk7-n-jXPYY,9211
|
416
|
-
wandb/sdk/lib/printer.py,sha256=
|
418
|
+
wandb/sdk/lib/printer.py,sha256=OiguGen-NOe8ykSpWRKQRsIlF4c3fCrVIDzQEdCTub4,14246
|
417
419
|
wandb/sdk/lib/fsm.py,sha256=rUON10HAMDumB0JOE5BDsBgk1F4KbdynGnfSZFuWDEA,5250
|
418
420
|
wandb/sdk/lib/lazyloader.py,sha256=y9mToMsUOibWeL5I6P9e993IKYRLxMYFLeUTessw3L4,1877
|
419
421
|
wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
|
420
422
|
wandb/sdk/lib/reporting.py,sha256=sfjVyNtNVOWFIcKihS-9C0yJhCAaUOUP3N3TDdyA-Fc,2410
|
421
423
|
wandb/sdk/service/service.py,sha256=1puUmUQTA51VBrOWj5jCYHLbrNhM4N18b6PmBLrSOuE,8561
|
422
424
|
wandb/sdk/service/server.py,sha256=sS8SQ57ssuvKMH5PX5aRD5v8HhwKXnTBiUWHViZ0hEI,3883
|
423
|
-
wandb/sdk/service/streams.py,sha256=
|
425
|
+
wandb/sdk/service/streams.py,sha256=hqZ_tAeKNZGUkXFXtDCQrU0AKrMD8V9Q4-bK7cx3yns,14720
|
424
426
|
wandb/sdk/service/_startup_debug.py,sha256=0-evSjgwjb2LiOP952eScrfSWL8PrAXPOKPgZbio5_M,588
|
425
427
|
wandb/sdk/service/server_sock.py,sha256=c66bBF1_BSLDb3A_L3UDx5t-s2fZLSkJsnLQGYU5Vs4,9656
|
426
428
|
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
@@ -433,7 +435,7 @@ wandb/filesync/stats.py,sha256=bjVBoCU9I9ke_XbEqtUgmKJVSmFxxAs2JciBzGWPhDg,3050
|
|
433
435
|
wandb/filesync/step_upload.py,sha256=l8Zh43AvDn6cTxV49Q48yNUA7F2TGqyDqZbU2vrSvEs,10373
|
434
436
|
wandb/filesync/step_prepare.py,sha256=JaRqEBxhz-xYPEu4x7KwQ17T-TfcMrPS22FV6HoueBY,5500
|
435
437
|
wandb/errors/util.py,sha256=EtipkN-l12IT5OAyqhmZyTqYiqplS-Tz5SPp2bjfsJo,1712
|
436
|
-
wandb/errors/term.py,sha256
|
438
|
+
wandb/errors/term.py,sha256=-v2zG_qqZ6BF-OfCbeW60IA-OcYpbTGXnBHvXlApk9U,10499
|
437
439
|
wandb/errors/warnings.py,sha256=kyLP3bfXSmlztp8nOepLtfTdM-03N-i7Ho1Y568BOtk,57
|
438
440
|
wandb/errors/__init__.py,sha256=Tlij_4c-SxruLN-p0sDfDpF-HktBcHeAbztwGqQ84cU,293
|
439
441
|
wandb/errors/errors.py,sha256=EQy3yZld3hDZA5hOoe34Xcpj7JKJzOg5AkWMMs9ob2E,897
|
@@ -824,4 +826,4 @@ wandb/vendor/promise-2.3.0/wandb_promise/schedulers/gevent.py,sha256=PnB1LI2OXnb
|
|
824
826
|
wandb/vendor/promise-2.3.0/wandb_promise/schedulers/asyncio.py,sha256=Z94PwkAXd8PDybJUM7_tLlDh_AUw5JbI4CFRg6J3_NI,512
|
825
827
|
wandb/vendor/promise-2.3.0/wandb_promise/schedulers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
826
828
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
827
|
-
wandb/analytics/sentry.py,sha256=
|
829
|
+
wandb/analytics/sentry.py,sha256=4TLSlhm9x6R9kFTgQ6CCsAbMrs3djdtaul5nsPr-UAg,8558
|
wandb/bin/apple_gpu_stats
DELETED
Binary file
|
File without changes
|
File without changes
|
File without changes
|