wandb 0.18.2__py3-none-any.whl → 0.18.4__py3-none-any.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/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 +271 -221
- 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 -216
- 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 -216
- 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 +35 -4
- 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 +122 -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 +59 -54
- wandb/sdk/wandb_run.py +413 -480
- wandb/sdk/wandb_settings.py +2 -0
- wandb/sdk/wandb_watch.py +17 -11
- wandb/util.py +6 -2
- {wandb-0.18.2.dist-info → wandb-0.18.4.dist-info}/METADATA +5 -4
- {wandb-0.18.2.dist-info → wandb-0.18.4.dist-info}/RECORD +44 -42
- wandb/bin/nvidia_gpu_stats +0 -0
- {wandb-0.18.2.dist-info → wandb-0.18.4.dist-info}/WHEEL +0 -0
- {wandb-0.18.2.dist-info → wandb-0.18.4.dist-info}/entry_points.txt +0 -0
- {wandb-0.18.2.dist-info → wandb-0.18.4.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.4
|
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
|
@@ -110,7 +111,7 @@ Requires-Dist: moviepy; extra == 'media'
|
|
110
111
|
Requires-Dist: numpy; extra == 'media'
|
111
112
|
Requires-Dist: pillow; extra == 'media'
|
112
113
|
Requires-Dist: plotly>=5.18.0; extra == 'media'
|
113
|
-
Requires-Dist: rdkit
|
114
|
+
Requires-Dist: rdkit; extra == 'media'
|
114
115
|
Requires-Dist: soundfile; extra == 'media'
|
115
116
|
Provides-Extra: models
|
116
117
|
Requires-Dist: cloudpickle; extra == 'models'
|
@@ -1,23 +1,23 @@
|
|
1
1
|
package_readme.md,sha256=1v4WgKja-54kllY4clEr85vGFQAGaCo-JrtTZfsG4zM,3864
|
2
|
-
wandb/__init__.py,sha256=
|
3
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb/__init__.py,sha256=L8yJ2dzcM1PXXEyh9IZjyuRE6uI5XwZVpCOC78TIfL4,7231
|
3
|
+
wandb/__init__.pyi,sha256=s3I3qaRh0HbUYf1iHrV1XlY4pSRjCqURXYaSClzhKhM,44669
|
4
4
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
5
5
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
6
|
-
wandb/data_types.py,sha256=
|
7
|
-
wandb/env.py,sha256=
|
6
|
+
wandb/data_types.py,sha256=227c5hrL0LqENQ_zUQqTyWlnZLddEn-ri65My7iXZRA,2277
|
7
|
+
wandb/env.py,sha256=1rmuVAzuKvo9axeRfPvseTpB6JiIK_7hQoAn9s86gmg,13563
|
8
8
|
wandb/jupyter.py,sha256=YK4N55NVrekAO-Ykk0OerHq5xjHYZggNJxFeyTiQmps,17334
|
9
9
|
wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
|
10
10
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
11
|
wandb/sklearn.py,sha256=hbPkefhS39A1RRymn0nHZZmKM2TrOd4xjlkthTZe9pY,803
|
12
12
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
13
|
-
wandb/util.py,sha256=
|
13
|
+
wandb/util.py,sha256=Ea5nxxqUJP1bEbCPXYRPuTOPUN99RvM326i0a8zBf00,62170
|
14
14
|
wandb/wandb_agent.py,sha256=V6NUHwv4_PDvR3ygyjHxHGZhJeeLUF9JgK2NpjXigUU,21117
|
15
15
|
wandb/wandb_controller.py,sha256=Mp6szfycF_F8fFhxuDTSMpN4Vvc6D0Ix2gZBSSYOOS0,24804
|
16
16
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
17
17
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
18
|
wandb/agents/pyagent.py,sha256=Ee9IDQhfy0-CyH7erTYq64bA-M1jJCIv35j327cvJHU,13414
|
19
19
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
20
|
-
wandb/analytics/sentry.py,sha256=
|
20
|
+
wandb/analytics/sentry.py,sha256=4TLSlhm9x6R9kFTgQ6CCsAbMrs3djdtaul5nsPr-UAg,8558
|
21
21
|
wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
|
22
22
|
wandb/apis/attrs.py,sha256=08cRZIoH-kKrGjpXNF8erFWHW9pUXCOo-HHDM4DVS0w,1260
|
23
23
|
wandb/apis/internal.py,sha256=fL4sPpXqupAml1s_x_fQXzWallbxgNHIUKrTYwzWXVg,7461
|
@@ -31,7 +31,7 @@ wandb/apis/importers/internals/internal.py,sha256=BWA3gcRS1tlEAKDUJTnZ5hUjEgNAJi
|
|
31
31
|
wandb/apis/importers/internals/protocols.py,sha256=MSEEs9pmMZRJRaDEFp07owqWX8p_vIfC6_Bud59E7Kk,2977
|
32
32
|
wandb/apis/importers/internals/util.py,sha256=HvphFwhSxuYqg0omNhfP1GwZV6UzZN-m85CNaSUZXQs,2083
|
33
33
|
wandb/apis/public/__init__.py,sha256=ldsy9V8UQlRnsIf9E4qRMtYIdH89oQ8eiYThQsphXks,1070
|
34
|
-
wandb/apis/public/api.py,sha256=
|
34
|
+
wandb/apis/public/api.py,sha256=JN6wjfDAZKx44SmdFL99mFEM_ld6LUv3Wgf19-DdN8s,48285
|
35
35
|
wandb/apis/public/artifacts.py,sha256=E7W-qzv0AH-n244gzC1dr0WR6PENg_bl4CDD1sH0Ybg,33787
|
36
36
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
37
37
|
wandb/apis/public/files.py,sha256=tIxuOmHaeGGvXUgZd59_vlGFp9gjrY0BbX1JO5HsEYA,5670
|
@@ -40,7 +40,7 @@ wandb/apis/public/jobs.py,sha256=sK_7WQicEBPppNsFn9Fmp1xHTM_DbBjvMdHUBV4vrfE,224
|
|
40
40
|
wandb/apis/public/projects.py,sha256=F5cPDxAbZD4-oVB_BxBCTsZk6k1tVL0cPU3Z0YEUqzo,4322
|
41
41
|
wandb/apis/public/query_generator.py,sha256=-kfS9CKDsrvc0SyMxLQFFMARZz1mwuDkLUt16uo-sWQ,5993
|
42
42
|
wandb/apis/public/reports.py,sha256=_KHQYa7vIfGoxTI5Qk0JJTEzN6b1RqbcVopCVEHph3Y,15571
|
43
|
-
wandb/apis/public/runs.py,sha256=
|
43
|
+
wandb/apis/public/runs.py,sha256=2deZcafGYxgmuE5rMvbdy_GksMMDicwgseoWEwr4CuU,33736
|
44
44
|
wandb/apis/public/sweeps.py,sha256=t-oOyMauYcGO2YszeQ2u18QwDKw8B94-Lodhw91Kpeg,6543
|
45
45
|
wandb/apis/public/teams.py,sha256=eIrkSwx1ElvKx7KP1WKRLP7pNJ6b2MrUZpI_3ey3rIA,5489
|
46
46
|
wandb/apis/public/users.py,sha256=5UT_TcnzsKRLbbDQQ5eOzRcLiJ6l1sxaJmCpuZF4pmU,3801
|
@@ -49,16 +49,17 @@ wandb/apis/reports/v1/__init__.py,sha256=x4CDMwUYT3FwgdQnaj0ZA5gc0e6c5JjboChrnXP
|
|
49
49
|
wandb/apis/reports/v2/__init__.py,sha256=KFrIs_vw2k49bTUHZCkqx9CzXcbNl192cYBWViKdPc0,262
|
50
50
|
wandb/apis/workspaces/__init__.py,sha256=ZLuZVu1MTNZ9ZWFMk-t6TXGQWDhiaI5liEl-5WN1mi4,264
|
51
51
|
wandb/beta/workflows.py,sha256=bk12HDWnxI4uuP0KyUbfclrTSoRVXrJibAuO_QBB5tI,10239
|
52
|
-
wandb/bin/
|
52
|
+
wandb/bin/gpu_stats,sha256=TOSrbVdioeRBoPwintMJRLnXJnRLL-tt9AFQjUbsAdE,10557208
|
53
53
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
|
-
wandb/cli/
|
54
|
+
wandb/cli/beta.py,sha256=JaDq3Q2t8ECsAgvZ-8AtgiawDydZnasQdXtECIf9ODY,5357
|
55
|
+
wandb/cli/cli.py,sha256=plStdLfs3JXGnzl-BvwzkT5mNQ24rsd0G9Em7E1eV1Q,93039
|
55
56
|
wandb/docker/__init__.py,sha256=1NktT5nl7XJ35vj7Pq71p49_Vwet2HBLBc2_D7e86sM,10552
|
56
57
|
wandb/docker/auth.py,sha256=I68SFCcbmZr18XqVxVCM75eTB7YhCebgb3dcsFiIYHQ,15032
|
57
58
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
58
59
|
wandb/docker/www_authenticate.py,sha256=eQd0ap8LpZkS9ImRn2gdgl7gnHeKprdqjClrZOaCsQo,2805
|
59
60
|
wandb/errors/__init__.py,sha256=Tlij_4c-SxruLN-p0sDfDpF-HktBcHeAbztwGqQ84cU,293
|
60
61
|
wandb/errors/errors.py,sha256=EQy3yZld3hDZA5hOoe34Xcpj7JKJzOg5AkWMMs9ob2E,897
|
61
|
-
wandb/errors/term.py,sha256
|
62
|
+
wandb/errors/term.py,sha256=-v2zG_qqZ6BF-OfCbeW60IA-OcYpbTGXnBHvXlApk9U,10499
|
62
63
|
wandb/errors/util.py,sha256=EtipkN-l12IT5OAyqhmZyTqYiqplS-Tz5SPp2bjfsJo,1712
|
63
64
|
wandb/errors/warnings.py,sha256=kyLP3bfXSmlztp8nOepLtfTdM-03N-i7Ho1Y568BOtk,57
|
64
65
|
wandb/filesync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -182,42 +183,42 @@ wandb/proto/wandb_settings_pb2.py,sha256=g5NT8BLXrE1Y7zWMM768zRoW98dBLE9TNuwttXn
|
|
182
183
|
wandb/proto/wandb_telemetry_pb2.py,sha256=ReY9N2qSt46o7m1ou1khvYSYYImrzo5ro90g_9m8QsM,322
|
183
184
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
184
185
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
185
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
186
|
-
wandb/proto/v3/wandb_server_pb2.py,sha256=
|
187
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
186
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=sbxE-0jaPbV3niI6ZwnPpwVexbMOPdn4ZML9PsyUktI,111455
|
187
|
+
wandb/proto/v3/wandb_server_pb2.py,sha256=v_A6xNDUCKToBeUTgr1b6sqo51-PdqBEgLLKu8oloSU,15442
|
188
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=LW7OwZQlKtu2hZ1FZL0YC19iVdkIF16WdXEuyIRBjqU,20001
|
188
189
|
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=oJY8DOl3qdn-G2fUmzYKK1qiEaoFt3Kws_z34Xnb0oc,13756
|
189
190
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
191
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
191
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
192
|
-
wandb/proto/v4/wandb_server_pb2.py,sha256=
|
193
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
192
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=Gll2HTW_t44dQ8988XOO3ROLdJ9N9qlHyliYjMCW-1A,51066
|
193
|
+
wandb/proto/v4/wandb_server_pb2.py,sha256=MjXs9_8Gy8PKlIZuNZILp0fh2GDXctwKDL5BZhXydsA,6905
|
194
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=3UMKIax5vWS8uiUU4T0t7VfMqOcGa18GN8Dn6-nORxM,16732
|
194
195
|
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=ttxi2j58yb4FmtKQvxwKauhZHntPYQMvDVdsr5f-oHU,11203
|
195
196
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
196
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
197
|
-
wandb/proto/v5/wandb_server_pb2.py,sha256=
|
198
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
197
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=9lKc_NrYNyLTaJaaRz1ox-JfyYpJ6pOP297gPrgk6_w,55269
|
198
|
+
wandb/proto/v5/wandb_server_pb2.py,sha256=piGeVPCrHNCMMc9yIYKQtFRNSvfvB2fQKs8ANwApJu8,7463
|
199
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=MzbElDMueaPx-7OPnBTpbTdf2F_KZWoyMhT4dRaSX2c,17064
|
199
200
|
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=kL3OgFy39xy2ARUik0fWJRVBMD1QG1S8rQI-AmmMUA0,11473
|
200
|
-
wandb/sdk/__init__.py,sha256=
|
201
|
+
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
201
202
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
202
203
|
wandb/sdk/wandb_config.py,sha256=TCddmgheDApOE-OXcZdgihhCnTpoR5jj4zeohs-9Q8M,10854
|
203
204
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
204
|
-
wandb/sdk/wandb_init.py,sha256=
|
205
|
+
wandb/sdk/wandb_init.py,sha256=MYMeo1Xa1Lx4dygeQWNY9yXec7MqFqrXn4tGL-2vsSw,52400
|
205
206
|
wandb/sdk/wandb_login.py,sha256=aoP4bhSpTcDkngyBomcIimSmhvYFo12IlT86PLXhFA8,11243
|
206
207
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
207
208
|
wandb/sdk/wandb_require.py,sha256=mQ8igzUVENY0Qj94cTA_GWVGAuTETul6PMSBbUU-bFw,3045
|
208
209
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
209
|
-
wandb/sdk/wandb_run.py,sha256=
|
210
|
-
wandb/sdk/wandb_settings.py,sha256=
|
210
|
+
wandb/sdk/wandb_run.py,sha256=7rcWymD0Q1r7sQRA40rMr8AfW3fF1OjkcGtOrn8k_0A,156513
|
211
|
+
wandb/sdk/wandb_settings.py,sha256=Y9mzU4YAGYef5gobG75a9cQKKBBRfVMC36PDqrHqGC8,76402
|
211
212
|
wandb/sdk/wandb_setup.py,sha256=y9yInthNeupBLPS5NGiLIAfMfoAyEbr5Dc0woFf1c_I,13643
|
212
213
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
213
214
|
wandb/sdk/wandb_sweep.py,sha256=cboZB5qvLigAY3UeYifDTX1me_-Q4Y0EJ5UVEzYCXac,4000
|
214
215
|
wandb/sdk/wandb_sync.py,sha256=hPay3CjVANnPN8veYOi9SzHFJTUMG2efuM4mGjiady8,2316
|
215
|
-
wandb/sdk/wandb_watch.py,sha256
|
216
|
+
wandb/sdk/wandb_watch.py,sha256=-QXCDDczgyOad3RnWU_YLJmsNCj3wGfrfg74ywdnHOY,4842
|
216
217
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
218
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
218
|
+
wandb/sdk/artifacts/_validators.py,sha256=TLiRLkBZb7CMhR2ybdWTg68Z93uBQW3KiptijYHt-kM,4205
|
219
|
+
wandb/sdk/artifacts/artifact.py,sha256=x4jWWT_uhCT4_MQGseMDI_UoSZyIqBQFyI8RbO4ovfs,91438
|
219
220
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyTA9vscxJL5-8_eupknI,1501
|
220
|
-
wandb/sdk/artifacts/artifact_file_cache.py,sha256=
|
221
|
+
wandb/sdk/artifacts/artifact_file_cache.py,sha256=Ez5ocC-G6L8sEyZ9fRbF4u-4qkbCOQyoVJj_wxtklAM,9834
|
221
222
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=atSUDvKjkp6by6QY0w2FLMrFUg9UKc8TIrMVWGauV64,501
|
222
223
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=FxLmTw_5YRjM88AXJkINeQV89hcPAly-jO6Hd3iV-sM,2492
|
223
224
|
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=zRhOHWBfxzfupkW8hZRo9ZKLzl-UGXWFLjQ9bXslCew,8360
|
@@ -247,7 +248,7 @@ wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=m2s67vmRySPw
|
|
247
248
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
248
249
|
wandb/sdk/backend/backend.py,sha256=Qx8to55f2isO5kHgOaGcCWyGnjhE5Qu4mFhbMABXvZU,7625
|
249
250
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
250
|
-
wandb/sdk/data_types/_dtypes.py,sha256=
|
251
|
+
wandb/sdk/data_types/_dtypes.py,sha256=NdRfTto95YxLMMK89PONQvAz_Jaey8D7caTsZ_OlvW8,30092
|
251
252
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
252
253
|
wandb/sdk/data_types/audio.py,sha256=Pkq1BiczpTgXcNaJPNvBfpNkNZfkaY8v_xMpj5RKv2A,5369
|
253
254
|
wandb/sdk/data_types/bokeh.py,sha256=cB3Em5Rd0bWL1whbFTrfKafkO7cR2viEgyY9GZL6i4A,2539
|
@@ -262,7 +263,7 @@ wandb/sdk/data_types/saved_model.py,sha256=W1hbTABPsydot2uo2VID0PaJDC_Ec2ipIU-b2
|
|
262
263
|
wandb/sdk/data_types/table.py,sha256=sw9V68n06gYvT668t759x4v0se1yR4pcKqn8_lZWILg,44720
|
263
264
|
wandb/sdk/data_types/trace_tree.py,sha256=CFt4z9kZfwty3VAnGzH07u_5rFHH8R2R3pOvMbfUTU0,14705
|
264
265
|
wandb/sdk/data_types/utils.py,sha256=vkOUbH-ZErAt97F3-Xh6isALLYqh_JeZ1JaNPhewSzI,7911
|
265
|
-
wandb/sdk/data_types/video.py,sha256=
|
266
|
+
wandb/sdk/data_types/video.py,sha256=xSvLx95GZ6brWWbYqvoDmPYyCbosTqLnJ9vlyKdTQzA,9231
|
266
267
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
268
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
|
268
269
|
wandb/sdk/data_types/base_types/media.py,sha256=2WgapOXlF1udvNPYudM0IesKKJAyiS19IxtQD7Y66Q0,11887
|
@@ -276,7 +277,7 @@ wandb/sdk/integration_utils/auto_logging.py,sha256=evcVXab1KoC1THdHpCb5RhL14DJKs
|
|
276
277
|
wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
|
277
278
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
278
279
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
279
|
-
wandb/sdk/interface/interface.py,sha256=
|
280
|
+
wandb/sdk/interface/interface.py,sha256=vHdQQI0a2djDxphwxer6cRyH0LUKEN6ADeE1DGQjacY,34750
|
280
281
|
wandb/sdk/interface/interface_queue.py,sha256=eCvNpvwMe1GHJv_5M8R3ZSspmEvE02mXMstBDBEZy8A,1967
|
281
282
|
wandb/sdk/interface/interface_relay.py,sha256=vQUrk5KESKInZsXpOxWF4YcWRZFLJjNz1mdNywbWbbE,1514
|
282
283
|
wandb/sdk/interface/interface_shared.py,sha256=dPxBFuRStRyptnMreWMOSlo0hJoHOchcv0VJkIS6BmA,20045
|
@@ -296,14 +297,14 @@ wandb/sdk/internal/file_stream.py,sha256=MNWY5xAPHonGGMTDwQxS4PEZk0ZZRp16I_OOaUo
|
|
296
297
|
wandb/sdk/internal/flow_control.py,sha256=LO3iDyBbI4WGoDuVLjA_iv62PyiupdYkpSjxPIMGI7E,8584
|
297
298
|
wandb/sdk/internal/handler.py,sha256=VJg3kt9xFnvIiRzTmzQCA7yxJSr8zuf0Tvh66IFfgUY,33369
|
298
299
|
wandb/sdk/internal/internal.py,sha256=3JnUaCA5zx48kjgXqpFy8h5LRwVzvY2YCFUibZZfNOc,12738
|
299
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
300
|
+
wandb/sdk/internal/internal_api.py,sha256=n2B3dD33jN7qbXZjUi_Jqxf9YY27GK_iVC7QCo7P6ow,155362
|
300
301
|
wandb/sdk/internal/internal_util.py,sha256=RMBAsnVimA9UpC-qlT862nqxIXDAPm6KfonNmpvlRfc,2654
|
301
302
|
wandb/sdk/internal/job_builder.py,sha256=ivwKg2VnJg1ynpSZaukJbC3umnbYnbKITngeS4Q7x4I,22903
|
302
303
|
wandb/sdk/internal/profiler.py,sha256=C8-mPrAhPS6_l-Fj_zCOwmXaEqhjI9Wd0EAPXS9GAEI,2348
|
303
304
|
wandb/sdk/internal/progress.py,sha256=0nARkPJ4eVaElpjBl_UQAXeiPtujqcJkMz6OxuJJkps,2446
|
304
305
|
wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
|
305
306
|
wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,2442
|
306
|
-
wandb/sdk/internal/sender.py,sha256=
|
307
|
+
wandb/sdk/internal/sender.py,sha256=snSHq5a99YNL75cQsd4HAHCh6B7DmSlgm-QLQ57HT4U,65378
|
307
308
|
wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
|
308
309
|
wandb/sdk/internal/settings_static.py,sha256=m97hST3YWmpkmgnXbso0gfPFZ7k7Y4SJSM7NbJIZKTc,3526
|
309
310
|
wandb/sdk/internal/tb_watcher.py,sha256=jK6xk_oHdR9HzaGObS7aMDuJvsCTJgMjApE905vx3es,18725
|
@@ -358,7 +359,7 @@ wandb/sdk/launch/environment/azure_environment.py,sha256=2Yt-NVD-_eXR73-pp6CAneK
|
|
358
359
|
wandb/sdk/launch/environment/gcp_environment.py,sha256=0US6TKVKlvVl_Y_R17xm_j_MuJdiS-L31rkHZ4O4AIo,12734
|
359
360
|
wandb/sdk/launch/environment/local_environment.py,sha256=mO35r8XgxRvqxhmmkBx3xIymz1M2lKYGtnltRB1c9mM,2258
|
360
361
|
wandb/sdk/launch/inputs/files.py,sha256=BWGDmAfDPLja7zz0bUzYLaF3wH4cTPesD9LqDuJRUoU,4685
|
361
|
-
wandb/sdk/launch/inputs/internal.py,sha256=
|
362
|
+
wandb/sdk/launch/inputs/internal.py,sha256=xtEZ7znfUCL2ME7xZv5bD8I5C6hNpN2EqjgNduAPvFM,10054
|
362
363
|
wandb/sdk/launch/inputs/manage.py,sha256=O0IsTWhjUftihohRfK7DkT186LjHMMcE2NSMeG8IFBY,5003
|
363
364
|
wandb/sdk/launch/inputs/schema.py,sha256=Fs4CcxI0ifFagazbNp47uJP15JL3v43PAvVNO93f9XY,1418
|
364
365
|
wandb/sdk/launch/registry/abstract.py,sha256=eTiuMPEm0NnrTkU6M8UteZQfK50BN-n7tyev4nMA1oQ,1146
|
@@ -404,10 +405,11 @@ wandb/sdk/lib/ipython.py,sha256=jXjV7RDxgVppYep7ol5Q7uK7fVaWYnjR1GrWlLFLzCk,4576
|
|
404
405
|
wandb/sdk/lib/json_util.py,sha256=fAsYfaw8iMmx3KJ0wSthUSj_XpF1iAysad4XZY1kQdo,2584
|
405
406
|
wandb/sdk/lib/lazyloader.py,sha256=y9mToMsUOibWeL5I6P9e993IKYRLxMYFLeUTessw3L4,1877
|
406
407
|
wandb/sdk/lib/mailbox.py,sha256=A-YNGof7NwmttL_3M7RmVfkbciBEIEi8jKhcXN-sLhU,14248
|
407
|
-
wandb/sdk/lib/module.py,sha256=
|
408
|
+
wandb/sdk/lib/module.py,sha256=PzXfr7fEAIOLBXBxRgvriH1x_-unDDS890BGK4xm2vo,2176
|
408
409
|
wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
|
409
410
|
wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
|
410
|
-
wandb/sdk/lib/printer.py,sha256=
|
411
|
+
wandb/sdk/lib/printer.py,sha256=OiguGen-NOe8ykSpWRKQRsIlF4c3fCrVIDzQEdCTub4,14246
|
412
|
+
wandb/sdk/lib/progress.py,sha256=AijXZm-7OM3W_GmGsunrwsKWETTE4GxK5yDWXbWft4o,8536
|
411
413
|
wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2894
|
412
414
|
wandb/sdk/lib/redirect.py,sha256=eTNvQp4SFLgN5Kxwmh1BP0du8_7YZxcgoXsmE_2IHSM,26132
|
413
415
|
wandb/sdk/lib/reporting.py,sha256=sfjVyNtNVOWFIcKihS-9C0yJhCAaUOUP3N3TDdyA-Fc,2410
|
@@ -430,7 +432,7 @@ wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYm
|
|
430
432
|
wandb/sdk/service/server.py,sha256=sS8SQ57ssuvKMH5PX5aRD5v8HhwKXnTBiUWHViZ0hEI,3883
|
431
433
|
wandb/sdk/service/server_sock.py,sha256=c66bBF1_BSLDb3A_L3UDx5t-s2fZLSkJsnLQGYU5Vs4,9656
|
432
434
|
wandb/sdk/service/service.py,sha256=1puUmUQTA51VBrOWj5jCYHLbrNhM4N18b6PmBLrSOuE,8561
|
433
|
-
wandb/sdk/service/streams.py,sha256=
|
435
|
+
wandb/sdk/service/streams.py,sha256=hqZ_tAeKNZGUkXFXtDCQrU0AKrMD8V9Q4-bK7cx3yns,14720
|
434
436
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
435
437
|
wandb/sdk/verify/verify.py,sha256=2C4C_l8EPGBXZw1PyXyHxnbVMuypHQhBkK5vV15xjG0,16521
|
436
438
|
wandb/sync/__init__.py,sha256=BzzKmWKjsrCTBAj24d-lJOEPkFUmTfvaK2MeXplSwcc,93
|
@@ -819,8 +821,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=cJIaJ2EQso
|
|
819
821
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2NpFcq9UVLIS-tsS0TS_Qw8akhKxn2eY,1506
|
820
822
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
|
821
823
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
|
822
|
-
wandb-0.18.
|
823
|
-
wandb-0.18.
|
824
|
-
wandb-0.18.
|
825
|
-
wandb-0.18.
|
826
|
-
wandb-0.18.
|
824
|
+
wandb-0.18.4.dist-info/METADATA,sha256=nAMA8yQIkWQwyxK037Wd0ww1Hq2ySvOxTBs9hxktXLM,9700
|
825
|
+
wandb-0.18.4.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
826
|
+
wandb-0.18.4.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
827
|
+
wandb-0.18.4.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
828
|
+
wandb-0.18.4.dist-info/RECORD,,
|
wandb/bin/nvidia_gpu_stats
DELETED
Binary file
|
File without changes
|
File without changes
|
File without changes
|