wandb 0.17.7__py3-none-win32.whl → 0.17.8__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.
- package_readme.md +47 -53
- wandb/__init__.py +8 -4
- wandb/__init__.pyi +964 -0
- wandb/bin/wandb-core +0 -0
- wandb/data_types.py +1 -0
- wandb/env.py +13 -0
- wandb/integration/keras/__init__.py +2 -5
- wandb/integration/keras/callbacks/metrics_logger.py +10 -4
- wandb/integration/keras/callbacks/model_checkpoint.py +0 -5
- wandb/integration/keras/keras.py +11 -0
- wandb/proto/v3/wandb_internal_pb2.py +24 -24
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v3/wandb_telemetry_pb2.py +12 -12
- wandb/proto/v4/wandb_internal_pb2.py +24 -24
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_telemetry_pb2.py +12 -12
- wandb/proto/v5/wandb_internal_pb2.py +24 -24
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_telemetry_pb2.py +12 -12
- wandb/proto/wandb_deprecated.py +2 -0
- wandb/sdk/artifacts/artifact.py +21 -25
- wandb/sdk/artifacts/artifact_manifest_entry.py +10 -2
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +31 -0
- wandb/sdk/data_types/video.py +2 -2
- wandb/sdk/internal/handler.py +5 -1
- wandb/sdk/lib/_settings_toposort_generated.py +1 -0
- wandb/sdk/service/service.py +7 -2
- wandb/sdk/wandb_config.py +3 -0
- wandb/sdk/wandb_init.py +4 -1
- wandb/sdk/wandb_manager.py +0 -3
- wandb/sdk/wandb_require.py +22 -1
- wandb/sdk/wandb_run.py +28 -24
- wandb/sdk/wandb_settings.py +25 -1
- wandb/sdk/wandb_setup.py +3 -0
- wandb/testing/relay.py +7 -1
- {wandb-0.17.7.dist-info → wandb-0.17.8.dist-info}/METADATA +48 -54
- {wandb-0.17.7.dist-info → wandb-0.17.8.dist-info}/RECORD +40 -39
- {wandb-0.17.7.dist-info → wandb-0.17.8.dist-info}/WHEEL +0 -0
- {wandb-0.17.7.dist-info → wandb-0.17.8.dist-info}/entry_points.txt +0 -0
- {wandb-0.17.7.dist-info → wandb-0.17.8.dist-info}/licenses/LICENSE +0 -0
wandb/sdk/wandb_settings.py
CHANGED
@@ -356,6 +356,7 @@ class SettingsData:
|
|
356
356
|
_python: str
|
357
357
|
_runqueue_item_id: str
|
358
358
|
_require_core: bool
|
359
|
+
_require_legacy_service: bool
|
359
360
|
_save_requirements: bool
|
360
361
|
_service_transport: str
|
361
362
|
_service_wait: float
|
@@ -650,7 +651,7 @@ class Settings(SettingsData):
|
|
650
651
|
},
|
651
652
|
_disable_service={
|
652
653
|
"value": False,
|
653
|
-
"preprocessor":
|
654
|
+
"preprocessor": self._process_disable_service,
|
654
655
|
"is_policy": True,
|
655
656
|
},
|
656
657
|
_disable_setproctitle={"value": False, "preprocessor": _str_as_bool},
|
@@ -718,6 +719,7 @@ class Settings(SettingsData):
|
|
718
719
|
"preprocessor": _str_as_json,
|
719
720
|
},
|
720
721
|
_require_core={"value": False, "preprocessor": _str_as_bool},
|
722
|
+
_require_legacy_service={"value": False, "preprocessor": _str_as_bool},
|
721
723
|
_save_requirements={"value": True, "preprocessor": _str_as_bool},
|
722
724
|
_service_wait={
|
723
725
|
"value": 30,
|
@@ -1172,6 +1174,16 @@ class Settings(SettingsData):
|
|
1172
1174
|
|
1173
1175
|
return True
|
1174
1176
|
|
1177
|
+
@staticmethod
|
1178
|
+
def _process_disable_service(value: Union[str, bool]) -> bool:
|
1179
|
+
value = _str_as_bool(value)
|
1180
|
+
if value:
|
1181
|
+
wandb.termwarn(
|
1182
|
+
"Disabling the wandb service is deprecated as of version 0.18.0 and will be removed in version 0.19.0.",
|
1183
|
+
repeat=False,
|
1184
|
+
)
|
1185
|
+
return value
|
1186
|
+
|
1175
1187
|
@staticmethod
|
1176
1188
|
def _validate__service_wait(value: float) -> bool:
|
1177
1189
|
if value <= 0:
|
@@ -1875,9 +1887,21 @@ class Settings(SettingsData):
|
|
1875
1887
|
|
1876
1888
|
# update settings
|
1877
1889
|
self.update(init_settings, source=Source.INIT)
|
1890
|
+
self._handle_fork_logic()
|
1878
1891
|
self._handle_rewind_logic()
|
1879
1892
|
self._handle_resume_logic()
|
1880
1893
|
|
1894
|
+
def _handle_fork_logic(self) -> None:
|
1895
|
+
if self.fork_from is None:
|
1896
|
+
return
|
1897
|
+
|
1898
|
+
if self.run_id is not None and (self.fork_from.run == self.run_id):
|
1899
|
+
raise ValueError(
|
1900
|
+
"Provided `run_id` is the same as the run to `fork_from`. "
|
1901
|
+
"Please provide a different `run_id` or remove the `run_id` argument. "
|
1902
|
+
"If you want to rewind the current run, please use `resume_from` instead."
|
1903
|
+
)
|
1904
|
+
|
1881
1905
|
def _handle_rewind_logic(self) -> None:
|
1882
1906
|
if self.resume_from is None:
|
1883
1907
|
return
|
wandb/sdk/wandb_setup.py
CHANGED
@@ -18,6 +18,7 @@ import threading
|
|
18
18
|
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union
|
19
19
|
|
20
20
|
import wandb
|
21
|
+
from wandb.sdk.lib import import_hooks
|
21
22
|
|
22
23
|
from . import wandb_manager, wandb_settings
|
23
24
|
from .lib import config_util, server, tracelog
|
@@ -268,6 +269,8 @@ class _WandbSetup__WandbSetup: # noqa: N801
|
|
268
269
|
self._config = config_dict
|
269
270
|
|
270
271
|
def _teardown(self, exit_code: Optional[int] = None) -> None:
|
272
|
+
import_hooks.unregister_all_post_import_hooks()
|
273
|
+
|
271
274
|
if not self._manager:
|
272
275
|
return
|
273
276
|
|
wandb/testing/relay.py
CHANGED
@@ -192,7 +192,7 @@ class Context:
|
|
192
192
|
if self._config is not None:
|
193
193
|
return deepcopy(self._config)
|
194
194
|
|
195
|
-
self._config = {k: v["config"] for (k, v) in self._entries.items()}
|
195
|
+
self._config = {k: v["config"] for (k, v) in self._entries.items() if k}
|
196
196
|
return deepcopy(self._config)
|
197
197
|
|
198
198
|
# @property
|
@@ -209,6 +209,9 @@ class Context:
|
|
209
209
|
# return telemetry
|
210
210
|
|
211
211
|
# convenience data access methods
|
212
|
+
def get_run_config(self, run_id: str) -> Dict[str, Any]:
|
213
|
+
return self.config.get(run_id, {})
|
214
|
+
|
212
215
|
def get_run_telemetry(self, run_id: str) -> Dict[str, Any]:
|
213
216
|
return self.config.get(run_id, {}).get("_wandb", {}).get("value", {}).get("t")
|
214
217
|
|
@@ -268,6 +271,9 @@ class Context:
|
|
268
271
|
def get_run(self, run_id: str) -> Dict[str, Any]:
|
269
272
|
return self._entries.get(run_id, {})
|
270
273
|
|
274
|
+
def get_run_ids(self) -> List[str]:
|
275
|
+
return [k for k in self._entries.keys() if k]
|
276
|
+
|
271
277
|
# todo: add getter (by run_id) utilities for other properties
|
272
278
|
|
273
279
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.17.
|
3
|
+
Version: 0.17.8
|
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
|
@@ -127,92 +127,86 @@ Description-Content-Type: text/markdown
|
|
127
127
|
|
128
128
|
# Weights and Biases [](https://pypi.python.org/pypi/wandb) [](https://anaconda.org/conda-forge/wandb) [](https://circleci.com/gh/wandb/wandb) [](https://codecov.io/gh/wandb/wandb)
|
129
129
|
|
130
|
-
Use W&B to build better models faster. Track and visualize all the pieces of your machine learning pipeline, from datasets to production models.
|
130
|
+
Use W&B to build better models faster. Track and visualize all the pieces of your machine learning pipeline, from datasets to production machine learning models. Get started with W&B today, [sign up for an account!](https://wandb.com?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=readme)
|
131
131
|
|
132
|
-
- Quickly identify model regressions. Use W&B to visualize results in real time, all in a central dashboard.
|
133
|
-
- Focus on the interesting ML. Spend less time manually tracking results in spreadsheets and text files.
|
134
|
-
- Capture dataset versions with W&B Artifacts to identify how changing data affects your resulting models.
|
135
|
-
- Reproduce any model, with saved code, hyperparameters, launch commands, input data, and resulting model weights.
|
136
132
|
|
137
|
-
[Sign up for a free account →](https://wandb.ai/login?signup=true)
|
138
133
|
|
139
|
-
|
134
|
+
See the [W&B Developer Guide](https://docs.wandb.ai/?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=documentation) and [API Reference Guide](https://docs.wandb.ai/ref?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=documentation) for a full technical description of the W&B platform.
|
140
135
|
|
141
|
-
|
142
|
-
- Search, compare, and visualize training runs
|
143
|
-
- Analyze system usage metrics alongside runs
|
144
|
-
- Collaborate with team members
|
145
|
-
- Replicate historic results
|
146
|
-
- Run parameter sweeps
|
147
|
-
- Keep records of experiments available forever
|
136
|
+
|
148
137
|
|
149
|
-
|
138
|
+
# Quickstart
|
150
139
|
|
151
|
-
|
140
|
+
Get started with W&B in four steps:
|
141
|
+
|
142
|
+
1. First, sign up for a [W&B account](https://wandb.ai/login?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=quickstart).
|
143
|
+
|
144
|
+
2. Second, install the W&B SDK with [pip](https://pip.pypa.io/en/stable/). Navigate to your terminal and type the following command:
|
152
145
|
|
153
146
|
```shell
|
154
147
|
pip install wandb
|
155
148
|
```
|
156
149
|
|
157
|
-
|
150
|
+
3. Third, log into W&B:
|
158
151
|
|
159
152
|
```python
|
160
|
-
|
153
|
+
wandb.login()
|
154
|
+
```
|
161
155
|
|
162
|
-
|
163
|
-
args = ...
|
156
|
+
4. Use the example code snippet below as a template to integrate W&B to your Python script:
|
164
157
|
|
165
|
-
|
166
|
-
wandb
|
158
|
+
```python
|
159
|
+
import wandb
|
167
160
|
|
161
|
+
# Start a W&B Run with wandb.init
|
162
|
+
run = wandb.init(project="my_first_project")
|
168
163
|
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
epoch, loss, val_loss = ...
|
173
|
-
# Framework agnostic / custom metrics
|
174
|
-
wandb.log({"epoch": epoch, "loss": loss, "val_loss": val_loss})
|
175
|
-
```
|
164
|
+
# Save model inputs and hyperparameters in a wandb.config object
|
165
|
+
config = run.config
|
166
|
+
config.learning_rate = 0.01
|
176
167
|
|
177
|
-
|
168
|
+
# Model training code here ...
|
178
169
|
|
179
|
-
|
180
|
-
|
170
|
+
# Log metrics over time to visualize performance with wandb.log
|
171
|
+
for i in range(10):
|
172
|
+
run.log({"loss": ...})
|
173
|
+
|
174
|
+
# Mark the run as finished, and finish uploading all data
|
175
|
+
run.finish()
|
181
176
|
```
|
182
177
|
|
183
|
-
|
178
|
+
For example, if the preceding code was stored in a script called train.py:
|
184
179
|
|
185
|
-
|
180
|
+
```shell
|
181
|
+
python train.py
|
182
|
+
```
|
186
183
|
|
187
|
-
|
184
|
+
You will see a URL in your terminal logs when your script starts and finishes. Data is staged locally in a directory named _wandb_ relative to your script. Navigate to the W&B App to view a dashboard of your first W&B Experiment. Use the W&B App to compare multiple experiments in a unified place, dive into the results of a single run, and much more!
|
188
185
|
|
189
|
-
|
186
|
+
|
190
187
|
|
191
|
-
|
188
|
+
# Integrations
|
192
189
|
|
193
|
-
|
194
|
-
[](https://youtu.be/EeqhOSvNX-A)
|
195
|
-
[Introduction video →](https://youtu.be/EeqhOSvNX-A)
|
190
|
+
Use your favorite framework with W&B. W&B integrations make it fast and easy to set up experiment tracking and data versioning inside existing projects. For more information on how to integrate W&B with the framework of your choice, see [W&B Integrations](https://docs.wandb.ai/guides/integrations) in the W&B Developer Guide.
|
196
191
|
|
197
|
-
|
192
|
+
|
198
193
|
|
199
|
-
|
194
|
+
# Contribution guidelines
|
195
|
+
Weights & Biases ❤️ open source, and we welcome contributions from the community! See the [Contribution guide](https://github.com/wandb/wandb/blob/main/CONTRIBUTING.md) for more information on the development workflow and the internals of the wandb library. For wandb bugs and feature requests, visit [GitHub Issues](https://github.com/wandb/wandb/issues) or contact support@wandb.com.
|
200
196
|
|
201
|
-
|
197
|
+
|
202
198
|
|
203
|
-
|
199
|
+
# Academic Researchers
|
200
|
+
Reach out to W&B Support at support@wandb.com to get a [free academic license](https://www.wandb.com/academic) for you and your research group.
|
204
201
|
|
205
|
-
|
202
|
+
|
206
203
|
|
207
|
-
#
|
208
|
-
If you'd like a free academic account for your research group, [reach out to us →](https://www.wandb.com/academic)
|
204
|
+
# W&B Community
|
209
205
|
|
210
|
-
|
211
|
-
[](https://www.wandb.com/academic)
|
206
|
+
Be a part of the growing W&B Community and interact with the W&B team in our [Discord](https://wandb.me/discord). Stay connected with the latest ML updates and tutorials with [W&B Fully Connected](https://wandb.ai/fully-connected).
|
212
207
|
|
213
|
-
|
214
|
-
Got questions, feedback or want to join a community of ML engineers working on exciting projects?
|
208
|
+
|
215
209
|
|
216
|
-
|
210
|
+
# License
|
217
211
|
|
218
|
-
[
|
212
|
+
[MIT License](https://github.com/wandb/wandb/blob/main/LICENSE)
|
@@ -1,9 +1,10 @@
|
|
1
|
-
package_readme.md,sha256=
|
2
|
-
wandb/__init__.py,sha256=
|
1
|
+
package_readme.md,sha256=l98RmjAb67Bg8obZQw8UzDVOCEWzBHYFNwZd6SMx4SQ,3953
|
2
|
+
wandb/__init__.py,sha256=Zj0ZDbpyQDeqgqn3LaodLf4vCt8IUD6MCvMBN8Ni-ds,7320
|
3
|
+
wandb/__init__.pyi,sha256=HyHkUyLzRGwXsIYBVpmFmxgQRpcT9UGKlOgQfxY_Png,38128
|
3
4
|
wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
|
4
5
|
wandb/_globals.py,sha256=NwgYSB2tl2Z5t1Tn1xpLtfkcmPy_dF01u-xxgnCbzoc,721
|
5
|
-
wandb/data_types.py,sha256=
|
6
|
-
wandb/env.py,sha256=
|
6
|
+
wandb/data_types.py,sha256=STLXycfB0twDwS6ZhZjNm8KY7UQoX4Mu2lehs0hOfmc,75323
|
7
|
+
wandb/env.py,sha256=vmSEMKZv8HW05hW9bfdj98feQF5urCqto4QpwL9S4aY,14514
|
7
8
|
wandb/jupyter.py,sha256=k35p4hRr_lwMyyVO1ahDuB6EO9GmU4Lt8GGCWnMtDP0,17454
|
8
9
|
wandb/magic.py,sha256=grKCI_AKHF4vYtTXS-Ts7FeK3sdFB8t2JRqmFwjR-F0,62
|
9
10
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -49,7 +50,7 @@ wandb/apis/reports/v1/__init__.py,sha256=dat5IoxIT4Ds0gJYh7kd_u01Lk2ArqgPtsF9PuV
|
|
49
50
|
wandb/apis/reports/v2/__init__.py,sha256=z6cC7mTR35UPLYFwjnDZxodFoOO7KcFWOwePJqwH2iI,270
|
50
51
|
wandb/apis/workspaces/__init__.py,sha256=l7rmQGzeR4XpAKiq5idMMPulve07fgDIMdl8MIQypFk,272
|
51
52
|
wandb/beta/workflows.py,sha256=ENy_lmIyn3k_FHdD2ZO8HBaXdeoLrsPVbEfL_KYW8Ps,10527
|
52
|
-
wandb/bin/wandb-core,sha256=
|
53
|
+
wandb/bin/wandb-core,sha256=5AT-LFG6OZ2aGfL4b-nkNchw0MSTx31rCFr7mbnIIx4,11386880
|
53
54
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
55
|
wandb/cli/cli.py,sha256=KH4tpD9x8Kpt8sg_FaGnP2Xr4huvoVNiApzVLijlhJw,101301
|
55
56
|
wandb/docker/__init__.py,sha256=Wkv5q5xCf9MAzLjGzg_QpuatP6pURCoKsiWpTj7G1jM,10894
|
@@ -84,11 +85,11 @@ wandb/integration/gym/__init__.py,sha256=PIeFnDO_doNmGsD2Jo-_RS0ybF_oeytxDWUNNeY
|
|
84
85
|
wandb/integration/huggingface/__init__.py,sha256=lq8UoDQn3w7Rt3ELTMXmhYPQoNX03tYnMDaHUV9VRBs,60
|
85
86
|
wandb/integration/huggingface/huggingface.py,sha256=S6FhJvsJFJbgsuj4eAMeTn0aFl-PExdhpwo1FRFGwwc,461
|
86
87
|
wandb/integration/huggingface/resolver.py,sha256=5i7-SN6t-7cMYCAODw5Jlsxtw5v_aWlpvZS3Gy8atFU,8071
|
87
|
-
wandb/integration/keras/__init__.py,sha256=
|
88
|
-
wandb/integration/keras/keras.py,sha256=
|
88
|
+
wandb/integration/keras/__init__.py,sha256=wS3TotWqE93ppCG-LcpIYQrh-d14jiuZtDseJ1LOiGk,356
|
89
|
+
wandb/integration/keras/keras.py,sha256=rfgJTxo003aia_at54EiYGEOqpJ2EKTxzFyxWPA3HDE,45240
|
89
90
|
wandb/integration/keras/callbacks/__init__.py,sha256=c9Wkvv3i-Xz40SDBWHHDhPod8y26HdO0vq1jF6tTlro,228
|
90
|
-
wandb/integration/keras/callbacks/metrics_logger.py,sha256=
|
91
|
-
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=
|
91
|
+
wandb/integration/keras/callbacks/metrics_logger.py,sha256=CL6rM4gUXUeeMOSJC_zisTnEp5EUgeYmppMt6YYseyI,5174
|
92
|
+
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=K10UNmF8oaNGw_Q6yJeLfS4gJf0i9j2fL1bKTrPHX1Y,8860
|
92
93
|
wandb/integration/keras/callbacks/tables_builder.py,sha256=WZhGAZu0OVavItPLa8jBk3z94jeZCg70ASDsbwy5vMc,9066
|
93
94
|
wandb/integration/kfp/__init__.py,sha256=wXFFdr8IgU_YNGovusyQDuus09mgOiofLk4YRptvR2c,142
|
94
95
|
wandb/integration/kfp/helpers.py,sha256=M_IacPmgELzwbfQZ3NFjQFuhm3lktZjgSeJGWJj1Etg,1044
|
@@ -150,7 +151,7 @@ wandb/plot/scatter.py,sha256=isERKmGw1CMZ51XArgfRPecEZmx31BrzOzi7XXcF4QU,1033
|
|
150
151
|
wandb/plot/utils.py,sha256=VcEpRjRT9VVyYAjKRIyZVHCwypgmKtsciAMdi-TIqe4,6986
|
151
152
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
152
153
|
wandb/proto/wandb_base_pb2.py,sha256=ghevLr0QyHSMeS6QWyR9EbQC2L8wFLBNm97R_fbkYhk,317
|
153
|
-
wandb/proto/wandb_deprecated.py,sha256=
|
154
|
+
wandb/proto/wandb_deprecated.py,sha256=KJ3Zh4jPNQXs0zQj-EKvO81LIfd2xrBOQ59tb6TryTY,1916
|
154
155
|
wandb/proto/wandb_generate_deprecated.py,sha256=TI_VzIaVnXbkd4B889pThMvXS1Xbjhj90ZUzdG3B4g0,1190
|
155
156
|
wandb/proto/wandb_generate_proto.py,sha256=FJDGS38j8H6yZYqsy1-19RcdmvdnXT4XP3Eq4-1bxI8,1327
|
156
157
|
wandb/proto/wandb_internal_pb2.py,sha256=he7ajUeCki-mFVaFAE4JjmbQh-ZhWDK5AKGGAl7fbrw,558
|
@@ -159,45 +160,45 @@ wandb/proto/wandb_settings_pb2.py,sha256=Aq7nH9PsYXcPKFOPi0Oh2CAaCUpDoPfedycOleI
|
|
159
160
|
wandb/proto/wandb_telemetry_pb2.py,sha256=bNLhk5I9SDqNvzxi_anYorfvZjv8nG4cMZQvDS0BT9Q,332
|
160
161
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
161
162
|
wandb/proto/v3/wandb_base_pb2.py,sha256=TfmnqqxmajAojyOq2NgCBbyybb0DZQViQCw1H0WzXo4,2302
|
162
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
163
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=O1IUvxLrVqh_NK1o5xv3B4ZJtGI23WJ0hepU5EN2orc,108655
|
163
164
|
wandb/proto/v3/wandb_server_pb2.py,sha256=_UR_gBIiHMYiG4CjU2zTKD16Qrd0dXqslA_7VeqXpb8,13838
|
164
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
165
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
165
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=cRialj-3-Pc-U3QF14f8Pg74-RO2T4Hzl0Y4-DyGrJM,19891
|
166
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=M1UsKR5wum-0idrgls9vQq2wRR9YIjIX5N-vdm-DMvE,13697
|
166
167
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
167
168
|
wandb/proto/v4/wandb_base_pb2.py,sha256=C-hDafnFQQtkzyq4MkgwenHl4CJqJ6z7itKjLnFis54,1344
|
168
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
169
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=Il8867fXW13o3g0PTOAVmlKvA16hedq8zjQthsuOlrU,49316
|
169
170
|
wandb/proto/v4/wandb_server_pb2.py,sha256=0m6kJn4oG2RAdi1WFR9g6baiZfeB25F3snCIFhl90k8,6053
|
170
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
171
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
171
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=fZW6jW9JhtxEkSX90hdA62cQOkLWyNi-t8f1K17Zlgg,16555
|
172
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=m0wYP0uxJrLr0y36zO3-LNJLSfQhwxW4IE-GzapuOL4,11079
|
172
173
|
wandb/proto/v5/wandb_base_pb2.py,sha256=JegTdMe2YWCrglu-GpI2lVqFxRHoP8hQc2n8bPpv1zE,1471
|
173
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
174
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=kh_bv4r4XnknBGObepZVVgrHqGr7DDlabHitQ4SWmvA,53352
|
174
175
|
wandb/proto/v5/wandb_server_pb2.py,sha256=icyGXLmqZLS6gDQsdYO_G75pXVII_JweUNIa_HOaWnA,6540
|
175
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
176
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
176
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=MVCjwt3bjZIYiYKEn_Nf53Te1N8kN2jb9WP-372qggM,16864
|
177
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=cp5aP6F7t1qVBSMS4YDvnf9NExjii37i-_XPecvQBP0,11326
|
177
178
|
wandb/sdk/__init__.py,sha256=b1OXibT1Wey9UW21vfki3rPPN4yJOFvy4M-qDEIdQmY,842
|
178
179
|
wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
|
179
|
-
wandb/sdk/wandb_config.py,sha256=
|
180
|
+
wandb/sdk/wandb_config.py,sha256=TNfyIVPhWKMxBOwHndOGr44r_3VhdvdDo0ymelBXIqs,11176
|
180
181
|
wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
|
181
|
-
wandb/sdk/wandb_init.py,sha256=
|
182
|
+
wandb/sdk/wandb_init.py,sha256=rP-88DEHFcLdL1GUGY-ECJbHBQOQW2APGG-p86uAF9M,52683
|
182
183
|
wandb/sdk/wandb_login.py,sha256=j_ElYf9eBgMGTfQ1X0HCe_DDiO8eejbDUJ18JwW8IEM,11539
|
183
|
-
wandb/sdk/wandb_manager.py,sha256=
|
184
|
+
wandb/sdk/wandb_manager.py,sha256=PyNwmr6R23l4e2afUfAwcw1zIRghYRR_N4Y6HKROfxY,7116
|
184
185
|
wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
|
185
|
-
wandb/sdk/wandb_require.py,sha256=
|
186
|
+
wandb/sdk/wandb_require.py,sha256=wcdFbi0aT6z0QjjMr8Rm4VLm_4Td3dDM1nsLFZ43YKE,3810
|
186
187
|
wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
|
187
|
-
wandb/sdk/wandb_run.py,sha256=
|
188
|
-
wandb/sdk/wandb_settings.py,sha256=
|
189
|
-
wandb/sdk/wandb_setup.py,sha256=
|
188
|
+
wandb/sdk/wandb_run.py,sha256=xPI46cHr0yD0jnmL07HmsNpTyCMHIKyEi0FcPDpffbI,168142
|
189
|
+
wandb/sdk/wandb_settings.py,sha256=jT1aytEIpelVo4sg2SylRrGw58QUEXxbY1pj_saQSrY,77821
|
190
|
+
wandb/sdk/wandb_setup.py,sha256=s3KlYrIp4BU0Tsv3lD8pl9zfv4zNIsRHPBx3Y4tsglg,13604
|
190
191
|
wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
|
191
192
|
wandb/sdk/wandb_sweep.py,sha256=sq0jk4uuygoxkIksrv0nvWyABcJHe8ZuA-kCv0tPyno,4119
|
192
193
|
wandb/sdk/wandb_sync.py,sha256=Y_eZ_xW3q9oRAlFUo7s9n2V55z6SP-rd5xr5g6HDKR0,2348
|
193
194
|
wandb/sdk/wandb_watch.py,sha256=--65AwGFLLj1sSUvI4cZunjvhdxXnFTktpzaxEFtdJk,4026
|
194
195
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
195
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
196
|
+
wandb/sdk/artifacts/artifact.py,sha256=Sscbfn2rGGTyDsCNfbT4YAjLBxc8vVq18MGafsjrq1A,91247
|
196
197
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
|
197
198
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=rjIKi5oBrev_NVgI60oydvWGl95KsBmYGYeax1XsKFY,10091
|
198
199
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=6k5VvyWyRfMCJsBDST3IBs91uctfIZdxZ74DJg-Pa00,488
|
199
200
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=Pdm08YTD-73vsqZRTT0cpFejRkdZJkG0lQYlUwv4HJ8,2575
|
200
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
201
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=zEO7-V4uEDMqIcHUNhy795e1R8WXE8RHH-mawBSQ9lw,8671
|
201
202
|
wandb/sdk/artifacts/artifact_saver.py,sha256=lGy_3NwreN53_q7cmdiiXJL5yTA2QEQXidWO5vHTxGc,9546
|
202
203
|
wandb/sdk/artifacts/artifact_state.py,sha256=4-89kUayoLpJ1EHQTnex_PEEh-Y2F8Aq5_yQ2il7Sao,247
|
203
204
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=5h2GzpVsw1uA3h3piuYr-qU4qcQZDAOz3X5QcSSxnfo,93
|
@@ -210,7 +211,7 @@ wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
210
211
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=yPCqepEFwlfKIaCJCSDFex8aaHPELLia1AYbd-HIwVU,3523
|
211
212
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
212
213
|
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=svpl0KIexXnBiVqLDq7-nQcDUzr9y8XuXO4LFICRrKU,8328
|
213
|
-
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=
|
214
|
+
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=0jbBGlF3WSp_eOpTYpNLvm8PiCodnXBRJkV44_83zV8,8823
|
214
215
|
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=LK2Mvq4Pmiwos5x_-ueMRIEKryva2hnTWvvTStmyrzk,4206
|
215
216
|
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=8BcJc_8P5WYxM9xqZOoZhcbH_4xCoqhNzpWh41jLOUA,5474
|
216
217
|
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=hrX75b3Ro-M2OC5ZCpzaiS_02b8IKRjIpx89XLLGrVE,1930
|
@@ -235,7 +236,7 @@ wandb/sdk/data_types/plotly.py,sha256=TqVQIDzOdG9o5zavzkG0tvhVS9AqCEG8wKqqi0gkoM
|
|
235
236
|
wandb/sdk/data_types/saved_model.py,sha256=QgBd30SQlJsA1VK44InawoYvbVcKgK1c49ZYBpWAOp8,16827
|
236
237
|
wandb/sdk/data_types/trace_tree.py,sha256=hL8DU_MMvq6Au6dz32RpqnzqwAw10KmZjgefyrxzvg8,15132
|
237
238
|
wandb/sdk/data_types/utils.py,sha256=GNNyZtCMHXIq4P3v5IzO4m019eTo-S--AXURvt8Djvg,6498
|
238
|
-
wandb/sdk/data_types/video.py,sha256=
|
239
|
+
wandb/sdk/data_types/video.py,sha256=h1Uv9tg1DRLGw9HY-nz8yIrdnkcGoiptPt43LceYypI,9076
|
239
240
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
240
241
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=idI3dNB1e348AefsQC1GNpVqYl2raWzJmDfl2ITL-_w,1608
|
241
242
|
wandb/sdk/data_types/base_types/media.py,sha256=88tLQ-oHRmruHN5N5QFBz5scNNYXAI6H8phMOhR5WpY,12202
|
@@ -267,7 +268,7 @@ wandb/sdk/internal/datastore.py,sha256=1zjcplHyt6qRJBW2udYru6IuCe_GIuKgoCL9S4eha
|
|
267
268
|
wandb/sdk/internal/file_pusher.py,sha256=p2a19_6mP0QJYtY1IwHXvahsx6Oj2lTRSmv6mhEibjM,6284
|
268
269
|
wandb/sdk/internal/file_stream.py,sha256=-euEOevpl32WiFyruJv3zgeIqAMKd2Owe9GUM5UI2ec,26619
|
269
270
|
wandb/sdk/internal/flow_control.py,sha256=RL1lKVRwxV9vDwIMBz9L07p25eZgDi5XSDanHfbNzF8,8847
|
270
|
-
wandb/sdk/internal/handler.py,sha256=
|
271
|
+
wandb/sdk/internal/handler.py,sha256=uT1ea5igLQ2vJPA4QiFhNMmawdGoEgZzw4z4ndDO93E,34665
|
271
272
|
wandb/sdk/internal/internal.py,sha256=HpClwL_Yq0eHGjqJ0D-VaGUv8eEKRlGbPuh8Hxep06w,13155
|
272
273
|
wandb/sdk/internal/internal_api.py,sha256=5k7sHeYEdhFJde3Ilx_j6N3T5ATrBCCju054MQN90Sk,151416
|
273
274
|
wandb/sdk/internal/internal_util.py,sha256=LtusH3QYE12A4vH-7-gHXX0O7TfJ2haESf0_MYdYe50,2754
|
@@ -355,7 +356,7 @@ wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=KeRVj_cjabVR6ZY4Qx5IqiH3nQHeT8
|
|
355
356
|
wandb/sdk/launch/sweeps/utils.py,sha256=MJCKDZY7SQ2Wrv1EWUCFo1YflMkuJAYIZFAswP0VCDw,10153
|
356
357
|
wandb/sdk/lib/__init__.py,sha256=_sOt85qPxtPyM_LaN0IE6dO1CImzwXJXzVHC7R24VBE,188
|
357
358
|
wandb/sdk/lib/_settings_toposort_generate.py,sha256=eA4xFE750evX-Upox1SpXvAoNffNAy7_C-9ydyeC4Qw,5002
|
358
|
-
wandb/sdk/lib/_settings_toposort_generated.py,sha256=
|
359
|
+
wandb/sdk/lib/_settings_toposort_generated.py,sha256=ejEOb9pRlN5kjcr4EbPxLZYm0XxN-tzjzfcMkbv9Mio,5529
|
359
360
|
wandb/sdk/lib/_wburls_generate.py,sha256=qW6UXaZOHKT_z13MW_Lt3KVhfswutNoNydFs69OwgqI,465
|
360
361
|
wandb/sdk/lib/_wburls_generated.py,sha256=ZDmX_ZYGg5Ag3WNu_Ti-vLB3ctN0NNr-dYkiCiXPQW4,450
|
361
362
|
wandb/sdk/lib/apikey.py,sha256=DxCVjZQ8mCgxfxAojREqzDhn1Y4PTIMAlSGj0Qm6H8Y,9484
|
@@ -402,7 +403,7 @@ wandb/sdk/service/_startup_debug.py,sha256=piYn6Jg-uR5W-EkablqikEpenyYPQuoQynrPq
|
|
402
403
|
wandb/sdk/service/port_file.py,sha256=aYA40Y8d78NMwKuJRbG3aL4J4-xH8l8UvzPFFfrwQCY,1599
|
403
404
|
wandb/sdk/service/server.py,sha256=C_HDOBV8-SIB6pZrTUCR1lDGsd3ih5LSYw_BAAFjrmw,4128
|
404
405
|
wandb/sdk/service/server_sock.py,sha256=jG3ZCQcVUdr4LnTgF0j6Gds1M_wKrPbvjZUocSSWQT8,9932
|
405
|
-
wandb/sdk/service/service.py,sha256=
|
406
|
+
wandb/sdk/service/service.py,sha256=QFTvIZIdxPX1dckBo7aADsvEYA1rjiIbMhgvXbJ7E0g,9792
|
406
407
|
wandb/sdk/service/service_base.py,sha256=Mg2zpiOUOEo5T0rZIuZIkwxEIL_ZNO5Pjbgi9lctFPA,1338
|
407
408
|
wandb/sdk/service/service_sock.py,sha256=-zhAl031NNWwsBkOataxfKrBZdlJPttcHb2ujcgySxE,2344
|
408
409
|
wandb/sdk/service/streams.py,sha256=LtBxli28GEKeK7fMXmqivt_ru2Ofn9Gmr76yPwcus3Y,15246
|
@@ -429,7 +430,7 @@ wandb/sklearn/plot/regressor.py,sha256=60Gaj3iKPORvFT0QM7CtdfvI86AuxoTmFVVNPJp7K
|
|
429
430
|
wandb/sklearn/plot/shared.py,sha256=4fKeR4DhTaTNt-0tPSRKFOt5YuKgK6lGQz4mCm6xJDc,2824
|
430
431
|
wandb/sync/__init__.py,sha256=4c2ia5m6KHQo4xU_kl-eQxfm22oiXOCiVYSqV3_vBLk,96
|
431
432
|
wandb/sync/sync.py,sha256=6-6uhJKRXQrJL7uDa0TpxnrpGwLYUtJIAUGdHIBV9G4,16099
|
432
|
-
wandb/testing/relay.py,sha256=
|
433
|
+
wandb/testing/relay.py,sha256=xxZDVgN0LY14BPwOFcqLG9BMM9ZRbbUxN1g0jv8M79A,30893
|
433
434
|
wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
434
435
|
wandb/vendor/gql-0.2.0/setup.py,sha256=kBbCby6fkBsmi9c2XtO2lGqfuYZvwLp6KVL1VtZSBp8,1354
|
435
436
|
wandb/vendor/gql-0.2.0/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -814,8 +815,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
|
|
814
815
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
|
815
816
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
|
816
817
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
|
817
|
-
wandb-0.17.
|
818
|
-
wandb-0.17.
|
819
|
-
wandb-0.17.
|
820
|
-
wandb-0.17.
|
821
|
-
wandb-0.17.
|
818
|
+
wandb-0.17.8.dist-info/METADATA,sha256=TEWJKOgdPDLQJZP1LKRLCVi_1SeVJgnq09nMSZCIOaM,9581
|
819
|
+
wandb-0.17.8.dist-info/WHEEL,sha256=2DRd_I5Nluwhn03SIbdmN0V_7r9FqkBQixEKn2cGyEA,89
|
820
|
+
wandb-0.17.8.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
821
|
+
wandb-0.17.8.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
|
822
|
+
wandb-0.17.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|