wandb 0.18.2__py3-none-win32.whl → 0.18.4__py3-none-win32.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.exe +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 +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 +45 -42
- {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.1
|
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=l98RmjAb67Bg8obZQw8UzDVOCEWzBHYFNwZd6SMx4SQ,3953
|
2
|
-
wandb/__init__.py,sha256=
|
3
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb/__init__.py,sha256=2J8e8R56ueZ32vvVQWCIqwBRRK3dUiQ0zHfgxz3YSwk,7485
|
3
|
+
wandb/__init__.pyi,sha256=onQGIO5sKDoz2Dgp1a8ST87p84O-MZNdlP3IlWKIvM4,45841
|
4
4
|
wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
|
5
5
|
wandb/_globals.py,sha256=NwgYSB2tl2Z5t1Tn1xpLtfkcmPy_dF01u-xxgnCbzoc,721
|
6
|
-
wandb/data_types.py,sha256=
|
7
|
-
wandb/env.py,sha256=
|
6
|
+
wandb/data_types.py,sha256=gtoJYT8fOCekYAhw0Xn7aUefQ8EbpCYd-ZPFa2e_gf4,2343
|
7
|
+
wandb/env.py,sha256=ucAMbT0JhnlQavXc3OgdtbL0gtmhOlXY4VslY4ZdAMI,14078
|
8
8
|
wandb/jupyter.py,sha256=DYxWYu0IMSNeGoTcei1gr-HOAZyHurhj5qtR_tkxf1U,17849
|
9
9
|
wandb/magic.py,sha256=grKCI_AKHF4vYtTXS-Ts7FeK3sdFB8t2JRqmFwjR-F0,62
|
10
10
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
11
|
wandb/sklearn.py,sha256=8wlo8mLyekq6yRZBgluzPj4J-RP3wkLaEWm0yh7gvWw,838
|
12
12
|
wandb/trigger.py,sha256=d9TizmMPsvr0k9_3SBK2nq-Mb95bTzf9DZ1aE_F0ASo,644
|
13
|
-
wandb/util.py,sha256=
|
13
|
+
wandb/util.py,sha256=HW4BfoLUNPzQfdqWlXJeRUS5Fqj4AtbWhT-5iWLE0aw,64130
|
14
14
|
wandb/wandb_agent.py,sha256=QEnqQpVFY39FHnsutVLjkNkk1mahdpErLe_IQC1S6wU,21705
|
15
15
|
wandb/wandb_controller.py,sha256=mIwttTH5-b0O_kxlcpZRxI17L5PbB1KkKWFDwgbi0Xg,25525
|
16
16
|
wandb/wandb_run.py,sha256=EyOjZsthYkfV5SSorQIFmEkszZwvKfZKZCxIwzoM2Oc,164
|
17
17
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
18
|
wandb/agents/pyagent.py,sha256=ocUr8AZh5kFP3U_79peb-RbBLt3B9kzPWqKjcX7qHbU,13777
|
19
19
|
wandb/analytics/__init__.py,sha256=ntvkloUY6ZO8irNqA4xi06Q8IC_6pu1VB2_1EKORczc,53
|
20
|
-
wandb/analytics/sentry.py,sha256=
|
20
|
+
wandb/analytics/sentry.py,sha256=3EbSJ2H9ka56vz364-CqGLEFhISUGd68Ea05ctjdrYo,8827
|
21
21
|
wandb/apis/__init__.py,sha256=DNAnd_UEdahhjkTjWPlJoYNxJX026W3K0qGqkbpgYno,1386
|
22
22
|
wandb/apis/attrs.py,sha256=j11iaNnVbjnDSYUBpSJvaOvO9q7hx4PqieKvWGumvHw,1300
|
23
23
|
wandb/apis/internal.py,sha256=Pl69givRVnUjkAExN7LddKWMv2kmhZ96Ctbf1yKOuZc,7693
|
@@ -31,7 +31,7 @@ wandb/apis/importers/internals/internal.py,sha256=tOAOJZNZXvDBRh43_ZKF_MrLxBXi_r
|
|
31
31
|
wandb/apis/importers/internals/protocols.py,sha256=tsbbin85gbd9aDEZdAOwdopb0omoVabKpaFKUZ3_AEg,3076
|
32
32
|
wandb/apis/importers/internals/util.py,sha256=2bTcLqJjG7MWj6qVvmrmjP5VVkPLOSq9zr7zPM0Z_Pc,2161
|
33
33
|
wandb/apis/public/__init__.py,sha256=sVe4PFIojfDnw9mvVtQn1GHynb7UG7yIcPWrfNCoYP0,1104
|
34
|
-
wandb/apis/public/api.py,sha256
|
34
|
+
wandb/apis/public/api.py,sha256=3q7PUvymD0hFj4EpsLZ0t6iIERd2TmOaHQikN7Vdd7w,49604
|
35
35
|
wandb/apis/public/artifacts.py,sha256=W8MUTG0_wTu5eRW9NFWmiOOamIuM0Ve7xP-jkO1VLYM,34877
|
36
36
|
wandb/apis/public/const.py,sha256=aK9Fcp1clmTHWj0C24fTRU3ecP5u91dPmp298kLiBdM,125
|
37
37
|
wandb/apis/public/files.py,sha256=CSwcJwudu1VOTAoD53gB3aTMXnFX1pkTKGwtdrF73nA,5865
|
@@ -40,7 +40,7 @@ wandb/apis/public/jobs.py,sha256=vNBjLw--3M6mRDoLFL1jFtdD3wty44Xk6eW1D6f-ZSs,231
|
|
40
40
|
wandb/apis/public/projects.py,sha256=TWTf_bvGJr-pTNKY_quNytP7KW0oimpDQ_FasOR-glA,4476
|
41
41
|
wandb/apis/public/query_generator.py,sha256=_9xgGz2P1QOVwH8EkvmEZK-HmV7mL1VHnPc4KuUEg1M,6159
|
42
42
|
wandb/apis/public/reports.py,sha256=1smFQQoQMj-TgCy9vEzDpDrLQG1TydB10WMfd1JCufM,16040
|
43
|
-
wandb/apis/public/runs.py,sha256=
|
43
|
+
wandb/apis/public/runs.py,sha256=yz6mRQvDiAml1yPAxbqa0fl9msenNFuGlVo6NMbvm4o,34701
|
44
44
|
wandb/apis/public/sweeps.py,sha256=sg94EiNI_QOc40TKGaY4rRjz3d74OeUKEGfjuuO6QnE,6783
|
45
45
|
wandb/apis/public/teams.py,sha256=nb6PNKtE66jlg2ERiXvHS5aHIAeRSOs-A2X535ei_kY,5687
|
46
46
|
wandb/apis/public/users.py,sha256=sn8YpF43Ab9y0Xs5nMMHdllTFxwsROI8TVv5NRhHtyI,3937
|
@@ -49,16 +49,18 @@ wandb/apis/reports/v1/__init__.py,sha256=dat5IoxIT4Ds0gJYh7kd_u01Lk2ArqgPtsF9PuV
|
|
49
49
|
wandb/apis/reports/v2/__init__.py,sha256=z6cC7mTR35UPLYFwjnDZxodFoOO7KcFWOwePJqwH2iI,270
|
50
50
|
wandb/apis/workspaces/__init__.py,sha256=l7rmQGzeR4XpAKiq5idMMPulve07fgDIMdl8MIQypFk,272
|
51
51
|
wandb/beta/workflows.py,sha256=ENy_lmIyn3k_FHdD2ZO8HBaXdeoLrsPVbEfL_KYW8Ps,10527
|
52
|
-
wandb/bin/
|
52
|
+
wandb/bin/gpu_stats.exe,sha256=XPJuni9YsFykgnvZmbPf6LLcrIRk4ruuS3vR9n7r7YI,8131584
|
53
|
+
wandb/bin/wandb-core,sha256=tf7nqrjiGryLvcHscjxNh_A-rWshrdecmc3T7aCyma0,30008832
|
53
54
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
|
-
wandb/cli/
|
55
|
+
wandb/cli/beta.py,sha256=SlPtEzMTPjBlAMheWvswNK-ctU4fje4_P8Qgtc75Yyo,5535
|
56
|
+
wandb/cli/cli.py,sha256=7qshbddQQge5lYYjlNwHxwdN_P_dUvzZUN9Q94Z9eGY,95877
|
55
57
|
wandb/docker/__init__.py,sha256=Wkv5q5xCf9MAzLjGzg_QpuatP6pURCoKsiWpTj7G1jM,10894
|
56
58
|
wandb/docker/auth.py,sha256=Qaf7C5t4mrGyswNTXKsxV3QBydY_RWqwP5teA8XZ_2I,15468
|
57
59
|
wandb/docker/wandb-entrypoint.sh,sha256=ksJ_wObRwZxZtdu1Ahc1X8VNB1U68a3nleioDDBO-jU,1021
|
58
60
|
wandb/docker/www_authenticate.py,sha256=eZleMjPqfGxy81QlyYVan2UTQkY3pxipgCenpIKW8NU,2899
|
59
61
|
wandb/errors/__init__.py,sha256=7H7jJlXTFaoRMI3TxIw7ZZ4xWEtJsLI__YjGLV_X-NA,310
|
60
62
|
wandb/errors/errors.py,sha256=HK1EcOt_adHsRJotyiKKr9YnvpGwzhBCPrNH2zu0LZg,934
|
61
|
-
wandb/errors/term.py,sha256=
|
63
|
+
wandb/errors/term.py,sha256=R-fA3u3HV7Z71KyhLh1yz0sPgtJKWiGfUCB4QXhHx_Y,10859
|
62
64
|
wandb/errors/util.py,sha256=DEdbUq-yD7AT_BxhWjAf08xGgKrPpKttYMlz0sp4Dx8,1769
|
63
65
|
wandb/errors/warnings.py,sha256=MVBIm1GGlSo-v4Yusn0C9tRO2_hIkT4FEL-zmdf7UKY,59
|
64
66
|
wandb/filesync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -182,42 +184,42 @@ wandb/proto/wandb_settings_pb2.py,sha256=Aq7nH9PsYXcPKFOPi0Oh2CAaCUpDoPfedycOleI
|
|
182
184
|
wandb/proto/wandb_telemetry_pb2.py,sha256=bNLhk5I9SDqNvzxi_anYorfvZjv8nG4cMZQvDS0BT9Q,332
|
183
185
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
184
186
|
wandb/proto/v3/wandb_base_pb2.py,sha256=zwma_gb3IOSfBJ1tvMIdmQtQQZLe29upb8Mqr4m9No4,2410
|
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=
|
187
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=FCA_jq-l0wGmd_ErKv2cit3Y_8jaoNK1kFYIpkw5cPw,113113
|
188
|
+
wandb/proto/v3/wandb_server_pb2.py,sha256=PK2SpH2Jxc51AfFzDGqPoRzyy_TbdhPjq9UP5OzQ3tw,15670
|
189
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=Drjt55lixmI-vmJHEsPQ1VyjxA4EGLFUegtCQnFWq-0,20113
|
188
190
|
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=RLJX_wJAhfI3yB4oFkHA9-PfKXhOhnEBlkyRNY1Qllw,13862
|
189
191
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
192
|
wandb/proto/v4/wandb_base_pb2.py,sha256=tl7f-74ItLSWCP_GDfAWm02sTEgUpWZGoP_vqEpvRE8,1452
|
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=
|
193
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=jdQwjttmjYQDN9XqeSZixd-BIOIkN1hNSZcBiLHlK8A,51436
|
194
|
+
wandb/proto/v4/wandb_server_pb2.py,sha256=0ayDQL3W_He8mfoFneJvGKlVRX8yoiKyNbHlrI_Ulkc,6972
|
195
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=ZzkvTIwO8h-oozVuJzHCXKeAqEx5Ny1mEDSaSsHKtow,16777
|
194
196
|
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=sOz1Dk0zvLoAZlAHaJLRxR9P3LP3u5dmyRbGOxEZoEY,11244
|
195
197
|
wandb/proto/v5/wandb_base_pb2.py,sha256=ES3U80f2YCt-fwiqaIrz7BGHVywwx6ibEDAnlWpohig,1603
|
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=
|
198
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=lI8SlqrqUWWXF6bKLKfNgowuXMr74caWY9J9Vssf67k,55640
|
199
|
+
wandb/proto/v5/wandb_server_pb2.py,sha256=AIYsjZedgtb54LsVHz1B-gOK3B-8tMmQgXduMisPMUY,7531
|
200
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=3BFUrMvLht-UpJWj7mlRLc9yQ7VFAfVw1MvfiVixbmo,17110
|
199
201
|
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=PHNVK8N8plstNIZz_tGhY0ea_YcPivfezVyRTxZwZAw,11515
|
200
|
-
wandb/sdk/__init__.py,sha256=
|
202
|
+
wandb/sdk/__init__.py,sha256=6lzqckLZUs7GpFZIwpgxGJwJDvhuyo-XCQnSrtZqE1c,850
|
201
203
|
wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
|
202
204
|
wandb/sdk/wandb_config.py,sha256=TNfyIVPhWKMxBOwHndOGr44r_3VhdvdDo0ymelBXIqs,11176
|
203
205
|
wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
|
204
|
-
wandb/sdk/wandb_init.py,sha256=
|
206
|
+
wandb/sdk/wandb_init.py,sha256=2vkBdGPMy5l1SQDDqH4ZitF0kM0_jdH2d6bvm3QOnyk,53671
|
205
207
|
wandb/sdk/wandb_login.py,sha256=ede31MmCVjh8f8Q69bOa9QFzdEwyhePV_HFTE5xtfeA,11592
|
206
208
|
wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
|
207
209
|
wandb/sdk/wandb_require.py,sha256=zGaCREn4PM0s1BfcY5EOGu9ftnCVxvigkkVCxrb42dU,3142
|
208
210
|
wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
|
209
|
-
wandb/sdk/wandb_run.py,sha256=
|
210
|
-
wandb/sdk/wandb_settings.py,sha256=
|
211
|
+
wandb/sdk/wandb_run.py,sha256=xsLL6O13Mrec3mBhAewqKMYKbfHQdTRTcyUkWGiFDg4,160682
|
212
|
+
wandb/sdk/wandb_settings.py,sha256=7blrw58ouhk4DDu295x0kbLkNPvRHfhmjjzOtiUQTGI,78405
|
211
213
|
wandb/sdk/wandb_setup.py,sha256=dpLOtIflyPRIzB4A_kpAaCDGRMcwTX33NLRTf8gpZ9Q,14052
|
212
214
|
wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
|
213
215
|
wandb/sdk/wandb_sweep.py,sha256=sq0jk4uuygoxkIksrv0nvWyABcJHe8ZuA-kCv0tPyno,4119
|
214
216
|
wandb/sdk/wandb_sync.py,sha256=pvK-aqJphEnDNxfEzu0fDUhyQt-mWvRXuhXNsfTBHqE,2397
|
215
|
-
wandb/sdk/wandb_watch.py,sha256=
|
217
|
+
wandb/sdk/wandb_watch.py,sha256=YIx-_qmA5EFlSo9CdQeR20gFAvVhZmyYv6CCBKWjPDo,4992
|
216
218
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
218
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
219
|
+
wandb/sdk/artifacts/_validators.py,sha256=Nctgb4_WLkIBt818pwIkqIkiuBUpbWt_ppvOwIsuqZM,4328
|
220
|
+
wandb/sdk/artifacts/artifact.py,sha256=_uQzAnOrCo7ZdpqAyVuq2SCUOWGvrWqzJMImtd_RSOc,93858
|
219
221
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
|
220
|
-
wandb/sdk/artifacts/artifact_file_cache.py,sha256=
|
222
|
+
wandb/sdk/artifacts/artifact_file_cache.py,sha256=mzSfyPcevticRx2Sf4BjsWdTIVD-pWMwWwY2MC64aJ0,10086
|
221
223
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=Y86c2ph4Fz1p5mfTpWMEPh1VhRzi-OyLGswa-NQDuUw,518
|
222
224
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=arAQf44ORWIL6K2i6dceLf-uwDkyAjWvSeGSNaZAK5g,2566
|
223
225
|
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=zCiWBKo24soGBc03PTsd1vH4m7BdR6d0CrlZrjv_JlI,8609
|
@@ -247,7 +249,7 @@ wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=4nQNkDfG_2Uq
|
|
247
249
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
248
250
|
wandb/sdk/backend/backend.py,sha256=IzgC3ooKvtSMOnxNwlvPe0kMQ_itAow18Ny6RpRrKuY,7847
|
249
251
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
250
|
-
wandb/sdk/data_types/_dtypes.py,sha256=
|
252
|
+
wandb/sdk/data_types/_dtypes.py,sha256=JYi0cqF2Lska0JF_gndyz-FfcS09Ozu735WIarU8HKo,31010
|
251
253
|
wandb/sdk/data_types/_private.py,sha256=vpatnpMcuWUtpSI-dY-YXs9zmffAgEXCoViIGS4yVT8,309
|
252
254
|
wandb/sdk/data_types/audio.py,sha256=Cvtx4RV23lNrPAAZDGRP49TX4TXYOqcJ5vEaQCXqABA,5534
|
253
255
|
wandb/sdk/data_types/bokeh.py,sha256=Q23GbuqK7Piwp7-4T97e34SNRV_p_4CdVXWcMXzNZjw,2609
|
@@ -262,7 +264,7 @@ wandb/sdk/data_types/saved_model.py,sha256=QgBd30SQlJsA1VK44InawoYvbVcKgK1c49ZYB
|
|
262
264
|
wandb/sdk/data_types/table.py,sha256=Bif-bxz2Pejg-4RN-I4PMPHovC_AZK9-FNAX1GLTlX8,45924
|
263
265
|
wandb/sdk/data_types/trace_tree.py,sha256=tn66_ACof2CunMSUefPHE9Jzax3glxV9U4yaIGue1w4,15143
|
264
266
|
wandb/sdk/data_types/utils.py,sha256=v79WPFuYWam4JbvoCR-9KVM_j2oxyyfvxUwIIT9oeQY,8140
|
265
|
-
wandb/sdk/data_types/video.py,sha256=
|
267
|
+
wandb/sdk/data_types/video.py,sha256=3eGe0lMeJBGnAZJXzdE1rTVkOs205sFmnjnikhzAkpY,9487
|
266
268
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
269
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=idI3dNB1e348AefsQC1GNpVqYl2raWzJmDfl2ITL-_w,1608
|
268
270
|
wandb/sdk/data_types/base_types/media.py,sha256=88tLQ-oHRmruHN5N5QFBz5scNNYXAI6H8phMOhR5WpY,12202
|
@@ -276,7 +278,7 @@ wandb/sdk/integration_utils/auto_logging.py,sha256=veVzow8oICc0MzGj2_HkyAVPAbW6r
|
|
276
278
|
wandb/sdk/integration_utils/data_logging.py,sha256=DtSEZB-TzxQKhjm9IXNxDeOAUZyDXGYrfRvVh2Cju54,20008
|
277
279
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
278
280
|
wandb/sdk/interface/constants.py,sha256=GKZ2hATTBCt7yU8kloafZR34yLChiI36O_VtxZZbQyg,64
|
279
|
-
wandb/sdk/interface/interface.py,sha256=
|
281
|
+
wandb/sdk/interface/interface.py,sha256=HuJ7Wf1atptoviuz6Uf6hL4c-dz1SN9FPk_RiCe6rF8,35724
|
280
282
|
wandb/sdk/interface/interface_queue.py,sha256=QxHmramXIHs4rQEzIk3qzF9ui5BPEAcXSGPt8TZjaEE,2026
|
281
283
|
wandb/sdk/interface/interface_relay.py,sha256=R28bIhebZux7PwFeJmO8wOOkm_uCjmQ2T5lKKy3sL-Y,1567
|
282
284
|
wandb/sdk/interface/interface_shared.py,sha256=ySSorYc8zP-lu4Lk223-Ty8KTouq1K7G6UNu8I1lZP8,20582
|
@@ -296,14 +298,14 @@ wandb/sdk/internal/file_stream.py,sha256=-euEOevpl32WiFyruJv3zgeIqAMKd2Owe9GUM5U
|
|
296
298
|
wandb/sdk/internal/flow_control.py,sha256=RL1lKVRwxV9vDwIMBz9L07p25eZgDi5XSDanHfbNzF8,8847
|
297
299
|
wandb/sdk/internal/handler.py,sha256=Nt0jAd1pqO7Cfn2o3vanevTRe_V5k-X8dfxHZX8OT9k,34270
|
298
300
|
wandb/sdk/internal/internal.py,sha256=HpClwL_Yq0eHGjqJ0D-VaGUv8eEKRlGbPuh8Hxep06w,13155
|
299
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
301
|
+
wandb/sdk/internal/internal_api.py,sha256=tah5tMZ0MUBWgBzYwyoo0g-Y7eYETx0-R6TIswbN6SQ,159837
|
300
302
|
wandb/sdk/internal/internal_util.py,sha256=LtusH3QYE12A4vH-7-gHXX0O7TfJ2haESf0_MYdYe50,2754
|
301
303
|
wandb/sdk/internal/job_builder.py,sha256=d034H4nE3H2BbtDAxcxftiDgdbBye9ljeZuDh_AjHyI,23532
|
302
304
|
wandb/sdk/internal/profiler.py,sha256=QM5R8-0oWE7WhllhpPEAEwCyB6Uk62HATz8e2F5qIUk,2426
|
303
305
|
wandb/sdk/internal/progress.py,sha256=Tfz1DJNlIj80-Ghb2b7TzHBftgXkfPWwwHlO2NK8UyA,2529
|
304
306
|
wandb/sdk/internal/run.py,sha256=rkEwqdaYPUh_oB-gdCnQ1JIpSHTMoOVadV9CJEgy-kA,707
|
305
307
|
wandb/sdk/internal/sample.py,sha256=QE80NZeW-UsUZBlnf9hG_2KNIZWmLzEpZStYTuL4fOI,2512
|
306
|
-
wandb/sdk/internal/sender.py,sha256=
|
308
|
+
wandb/sdk/internal/sender.py,sha256=fmGjP9ltzhU50tLNkgLOHakD66yjT5E_wWNli2dT8S0,67077
|
307
309
|
wandb/sdk/internal/sender_config.py,sha256=LZaQY4_bzb9003D2j6aynGqv-Mr2GwUGcNmnQrhJOJw,6964
|
308
310
|
wandb/sdk/internal/settings_static.py,sha256=tUieif_B36dCFqJKwfcr4bLF0KVgFhGN6q-vg3orRzw,3616
|
309
311
|
wandb/sdk/internal/tb_watcher.py,sha256=UgrW3IwszVLxzprT4iZ5cikHtrO47t27hAgKU6_0AiA,19243
|
@@ -358,7 +360,7 @@ wandb/sdk/launch/environment/azure_environment.py,sha256=75Wamar_QS4lr0RSjdsrENR
|
|
358
360
|
wandb/sdk/launch/environment/gcp_environment.py,sha256=68PDJaYlT_YXXqbFseXg_AlTR7CDF4R3Qonp6AXfs2g,13069
|
359
361
|
wandb/sdk/launch/environment/local_environment.py,sha256=UeG3fL5w4kbN9SCOvKlJaQwYYne0sB2dymwwcCxbi_s,2324
|
360
362
|
wandb/sdk/launch/inputs/files.py,sha256=wLBb6riNplCtUY_p0uVwyCYH8La7H6naUpB5RVGiMUU,4833
|
361
|
-
wandb/sdk/launch/inputs/internal.py,sha256=
|
363
|
+
wandb/sdk/launch/inputs/internal.py,sha256=rCkW-6oAjN4m1S0O7h7uJfcg0c1G1eEaI4sf12FKOtg,10369
|
362
364
|
wandb/sdk/launch/inputs/manage.py,sha256=OeU9nx_NnpCG2qxXsQgZRQiZBDGiW6046j0RUD9lYI8,5116
|
363
365
|
wandb/sdk/launch/inputs/schema.py,sha256=VUPQY6MDaF-zCiBjh66-MB52nGTY5DyI-FAHl-fNz-0,1457
|
364
366
|
wandb/sdk/launch/registry/abstract.py,sha256=rpPQlTfOTA6wWTU1DdtbnM9myJxQAwXrg4SQPbo9ORY,1194
|
@@ -404,10 +406,11 @@ wandb/sdk/lib/ipython.py,sha256=CD62OAa-FCKS4Z6SL201vavSVGwrsHt8mohNXG5I360,4722
|
|
404
406
|
wandb/sdk/lib/json_util.py,sha256=a3TtH5QIrVNeORPpblGvZvaF5VDItkD5luN_iwDpohQ,2664
|
405
407
|
wandb/sdk/lib/lazyloader.py,sha256=FSmLyrVc7r36bERkmllcX3wJ2zso7Q1oKJ3pQ9wV0VA,1940
|
406
408
|
wandb/sdk/lib/mailbox.py,sha256=_na8MSRxfo3Dnaryx-psd27jGO7PZbZoFmyGGjFwbLM,14708
|
407
|
-
wandb/sdk/lib/module.py,sha256=
|
409
|
+
wandb/sdk/lib/module.py,sha256=hCYzAeQ3JO6kX2-VTGXO_lSB6XHCkvwMfboXW6ZBvbE,2257
|
408
410
|
wandb/sdk/lib/paths.py,sha256=Knkww9wdMK4wqsj5B9aMEJDvIFoCf80xXl28It3FIG4,4635
|
409
411
|
wandb/sdk/lib/preinit.py,sha256=IDK_WXbcrfzXUNWZur505lHIY_cYs1IEWp26HMpIf74,1492
|
410
|
-
wandb/sdk/lib/printer.py,sha256=
|
412
|
+
wandb/sdk/lib/printer.py,sha256=TFqf-OsTH6CcdgUpGJO6QnX5s8DRzhPn2ICFGsDC_dk,14745
|
413
|
+
wandb/sdk/lib/progress.py,sha256=Kqvxx5TunWEmgKD8s9NxNC20HyhDX2hif3hq9mI_WZY,8810
|
411
414
|
wandb/sdk/lib/proto_util.py,sha256=YaGg9FoKtWmgQD8SkkKN630gyG93WoYY5JHqwdWaQKg,2984
|
412
415
|
wandb/sdk/lib/redirect.py,sha256=zMu3jBTLkH5_VMDqPxcRTchTMzUYuGakv5D0xvPdjGI,26977
|
413
416
|
wandb/sdk/lib/reporting.py,sha256=Y5oEuiRT5lGKeGI751OQ2fxR_LtlvQW3M35m7FdFS-8,2509
|
@@ -430,7 +433,7 @@ wandb/sdk/service/port_file.py,sha256=aYA40Y8d78NMwKuJRbG3aL4J4-xH8l8UvzPFFfrwQC
|
|
430
433
|
wandb/sdk/service/server.py,sha256=enNx-_w9ua1Dz2-M6m2S7LOQ9WYRbTiZntdTHZqMjx0,3999
|
431
434
|
wandb/sdk/service/server_sock.py,sha256=l8YjXcUKmHptvZN4d29NubU0cBYzZWD3pMIDlOrqVbo,9932
|
432
435
|
wandb/sdk/service/service.py,sha256=IRgN6XYyWzJ5cxpdT-f8bpVzwXkZbLQ4WCb9xtCL5s0,8803
|
433
|
-
wandb/sdk/service/streams.py,sha256=
|
436
|
+
wandb/sdk/service/streams.py,sha256=4yrusbrNkZpHU3ASys95LCuIM-bVlWwlFz7nMzW8IFw,15147
|
434
437
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
435
438
|
wandb/sdk/verify/verify.py,sha256=dhxs_Ocs8WVFyeodPquCPaTc17rB4Dti-h2JiTOahvs,17022
|
436
439
|
wandb/sync/__init__.py,sha256=4c2ia5m6KHQo4xU_kl-eQxfm22oiXOCiVYSqV3_vBLk,96
|
@@ -819,8 +822,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
|
|
819
822
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
|
820
823
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
|
821
824
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
|
822
|
-
wandb-0.18.
|
823
|
-
wandb-0.18.
|
824
|
-
wandb-0.18.
|
825
|
-
wandb-0.18.
|
826
|
-
wandb-0.18.
|
825
|
+
wandb-0.18.4.dist-info/METADATA,sha256=QOBf5Q_2GMaL9r9SOA6ADudEGQ3c8KQsHFT4TxefCF0,9700
|
826
|
+
wandb-0.18.4.dist-info/WHEEL,sha256=2DRd_I5Nluwhn03SIbdmN0V_7r9FqkBQixEKn2cGyEA,89
|
827
|
+
wandb-0.18.4.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
828
|
+
wandb-0.18.4.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
|
829
|
+
wandb-0.18.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|