wandb 0.17.7__py3-none-macosx_11_0_arm64.whl → 0.17.8__py3-none-macosx_11_0_arm64.whl
Sign up to get free protection for your applications and to get access to all the features.
- package_readme.md +47 -53
- wandb/__init__.py +8 -4
- wandb/__init__.pyi +964 -0
- wandb/bin/apple_gpu_stats +0 -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 +41 -40
- {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.3
|
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 [![PyPI](https://img.shields.io/pypi/v/wandb)](https://pypi.python.org/pypi/wandb) [![Conda (channel only)](https://img.shields.io/conda/vn/conda-forge/wandb)](https://anaconda.org/conda-forge/wandb) [![CircleCI](https://img.shields.io/circleci/build/github/wandb/wandb/main)](https://circleci.com/gh/wandb/wandb) [![Codecov](https://img.shields.io/codecov/c/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
|
-
[![Watch the video](https://i.imgur.com/PW0Ejlc.png)](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://i.imgur.com/loKLiez.png)](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,16 +1,17 @@
|
|
1
|
-
package_readme.md,sha256=
|
2
|
-
wandb-0.17.
|
3
|
-
wandb-0.17.
|
4
|
-
wandb-0.17.
|
5
|
-
wandb-0.17.
|
6
|
-
wandb-0.17.
|
1
|
+
package_readme.md,sha256=1v4WgKja-54kllY4clEr85vGFQAGaCo-JrtTZfsG4zM,3864
|
2
|
+
wandb-0.17.8.dist-info/RECORD,,
|
3
|
+
wandb-0.17.8.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
|
4
|
+
wandb-0.17.8.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
5
|
+
wandb-0.17.8.dist-info/METADATA,sha256=2ROke30Ng_6i7uQiaOD7NScB7QPGT53_pVEuGG5Rq2U,9581
|
6
|
+
wandb-0.17.8.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
7
7
|
wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
|
8
|
-
wandb/env.py,sha256=
|
8
|
+
wandb/env.py,sha256=IMnRFsZtV2ySzi7K1yaAurqk91Hoy79Dc8hQLQ96to8,13983
|
9
|
+
wandb/__init__.pyi,sha256=CXDdmoa52_lutV6Pg4WOOQLIix--hYXIvTQls_ybI3s,37164
|
9
10
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
10
11
|
wandb/util.py,sha256=NCcgpBVkmYA1ysO0XpEwRRXjb_pXjM_L4lHqUkWtXkc,61474
|
11
12
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
12
|
-
wandb/__init__.py,sha256=
|
13
|
-
wandb/data_types.py,sha256=
|
13
|
+
wandb/__init__.py,sha256=KoSkmK5hjAOufGYB91TsQFP5CPY6y1sPh8mrqbAcOeY,7072
|
14
|
+
wandb/data_types.py,sha256=PB9sFue9cT6W-eZ2HwQrIoaJ5LLhdMICNAYlXjKboZs,73250
|
14
15
|
wandb/wandb_controller.py,sha256=Mp6szfycF_F8fFhxuDTSMpN4Vvc6D0Ix2gZBSSYOOS0,24804
|
15
16
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
17
|
wandb/wandb_torch.py,sha256=DGY0jsWashL02iXGce-5XypfSJIbBWfLsCrmixqNTCY,21276
|
@@ -71,37 +72,37 @@ wandb/proto/wandb_base_pb2.py,sha256=HjakgSUcYSm6X7B-nvckrmMjaUKGuUh_KE97AuFBat8
|
|
71
72
|
wandb/proto/wandb_internal_pb2.py,sha256=nIbQS1O4z7n2U0SWGxViHUnjReEBblhht3rZ7pQ0MTs,542
|
72
73
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
74
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
74
|
-
wandb/proto/wandb_deprecated.py,sha256=
|
75
|
+
wandb/proto/wandb_deprecated.py,sha256=7HItZjjDwQBnRjShPd0mRavswX7_At79Sx7Zyr6cReU,1865
|
75
76
|
wandb/proto/wandb_telemetry_pb2.py,sha256=ReY9N2qSt46o7m1ou1khvYSYYImrzo5ro90g_9m8QsM,322
|
76
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
77
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=53RdnfcvHy2kHTJyIUr_zWjwI0m6qzO0OhUBPNtWnzY,16819
|
77
78
|
wandb/proto/v5/wandb_server_pb2.py,sha256=8uKB9qS4F3QjKSlj1aL8eEXZiBIVuTGIZWvCsbs2qEQ,6477
|
78
79
|
wandb/proto/v5/wandb_base_pb2.py,sha256=_RqGlyLs6WbBXyh2m6xke8OQyjQeRFKDwh8Brn9PAN4,1441
|
79
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
80
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
81
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
80
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=Dyl87bykdMMoMBO3QCqAFQoVpNO2YznwIVqxrl9aqT0,52994
|
81
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=fayIMfpWvl7eJUISNRHwXONGu0_w0cBjS-wlMJLbKeY,11285
|
82
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=JQ8vqWQZJkwVKH9vACJIADaY6B2g7JtRO_x59zYtOCM,16511
|
82
83
|
wandb/proto/v4/wandb_server_pb2.py,sha256=YkapN5k621amFmIYKtV5xLww3TaB-6EeGI8Qq2_UY94,5991
|
83
84
|
wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
|
84
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
85
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=OfZhbvC1AKzopIaYoNAFZeigrMimcnKD4e-E7Db_44g,48959
|
85
86
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
87
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
87
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=44AlYQ3OqBIbGZQQzFKP6AVRk756XDuLKIFoh_x0SWg,11039
|
88
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=gn-Ku4lWZwDXQ_G69O5q3vW2etzT1uB7ee4KeyRXQGk,19780
|
88
89
|
wandb/proto/v3/wandb_server_pb2.py,sha256=u7p14fy4XjKVcDnE54U1WwgC1Gpy6VWGA4MGU3aXyg4,13631
|
89
90
|
wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4Nzw,2248
|
90
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
91
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=weqiU13YTHDonvUmqDUWEt4_Xq3H6V_NlaX8_x36IIU,107058
|
91
92
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
92
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
93
|
-
wandb/bin/wandb-core,sha256=
|
94
|
-
wandb/bin/apple_gpu_stats,sha256=
|
93
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=6gJgUQDbOLucecndQeSxpwc6SirwayvuiDxye1hxKuI,13592
|
94
|
+
wandb/bin/wandb-core,sha256=TPC-xKu22ce6zf8b-G4aDMSONBqWknr3sV2fPb_o5fI,10785586
|
95
|
+
wandb/bin/apple_gpu_stats,sha256=35DKJCm81Y6MAB9yuUcTCL6Dzp0SbeTnZUOzoOdh2t4,1386888
|
95
96
|
wandb/integration/magic.py,sha256=8b7GkkntZb-jJ7L0OF4M7mS1yJKtMI_o3jfsTufWMr4,17246
|
96
97
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
98
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
99
|
wandb/integration/yolov8/yolov8.py,sha256=srryantZqO65pj1x52MiKD5m2SzdQc4nIsj4o1GPK8o,11371
|
99
|
-
wandb/integration/keras/keras.py,sha256=
|
100
|
-
wandb/integration/keras/__init__.py,sha256=
|
100
|
+
wandb/integration/keras/keras.py,sha256=LT6ot3iAcJQhkxHLywocUjtndwzXiWyEY2ZJi7dUY2M,44149
|
101
|
+
wandb/integration/keras/__init__.py,sha256=8_vNA4cEbj1lg2pgMz-c5Iu1XJQtX9x5_vNGrv4NBdE,345
|
101
102
|
wandb/integration/keras/callbacks/tables_builder.py,sha256=kmqwNGVbDaHo6pNfltUK5BED0g1oIwmtJOCGZZk-FAg,8840
|
102
103
|
wandb/integration/keras/callbacks/__init__.py,sha256=sY5AMC3x28iA815fqbqkkArtjctqG-m9N2D5FnyR0no,223
|
103
|
-
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=
|
104
|
-
wandb/integration/keras/callbacks/metrics_logger.py,sha256=
|
104
|
+
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=tSsUmpIJiKZsxB-rVmV2i9uTIYJVI3iXeJ-AjU0GaBo,8665
|
105
|
+
wandb/integration/keras/callbacks/metrics_logger.py,sha256=yEzLI6i5P6yWdgW4gYKXlLH_cYbv6bi1jDVjbKPFNO4,5038
|
105
106
|
wandb/integration/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
107
|
wandb/integration/lightning/fabric/__init__.py,sha256=RFhr2VkC0D8b6bAXUMZzcVzqDQaoOozfP_HOogAWi9o,94
|
107
108
|
wandb/integration/lightning/fabric/logger.py,sha256=DSW0VUJyxQjkRAzi4t1YiOXWgvic5n4erKPxD3h81xI,27229
|
@@ -166,7 +167,7 @@ wandb/old/summary.py,sha256=eqpzQB5CfzTKZta6tB-nVUh0ZmiLwISqjSAt4yvwocE,13952
|
|
166
167
|
wandb/old/settings.py,sha256=IrS10skC9gCTb8NgTWeRFgsTYL1bw36e-rG_xECk-yo,6374
|
167
168
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
169
|
wandb/cli/cli.py,sha256=MlMkNpr6m62E6mEGkmXgFUKBYCSmdMRv-93rSM2SISw,98297
|
169
|
-
wandb/testing/relay.py,sha256=
|
170
|
+
wandb/testing/relay.py,sha256=d03OUsx6yA9L69-L-ck-qRGKpclGx4OVeYrSLmxyAVQ,30013
|
170
171
|
wandb/sklearn/__init__.py,sha256=bDnzytR60EFQblaAZdw76WlJBmfG-O7NrKavIEY97Ck,861
|
171
172
|
wandb/sklearn/utils.py,sha256=dfHxglqT6UlPl8ulgZNWrElfW04cdBWrFfEtDp3pvZw,5903
|
172
173
|
wandb/sklearn/plot/classifier.py,sha256=xtuztUURWZz0rEmfHh9G8nRqvQtcUHqMC6rG6gZXJjM,11736
|
@@ -188,22 +189,22 @@ wandb/sklearn/calculate/feature_importances.py,sha256=MyhIsOac3P43wDyExblzfFK54Z
|
|
188
189
|
wandb/sklearn/calculate/confusion_matrix.py,sha256=rBBhABYe3a_6Czadt3eU3iu5kKHe6pg3Zn5IQpBbTn4,2543
|
189
190
|
wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
191
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
191
|
-
wandb/sdk/wandb_config.py,sha256=
|
192
|
+
wandb/sdk/wandb_config.py,sha256=TCddmgheDApOE-OXcZdgihhCnTpoR5jj4zeohs-9Q8M,10854
|
192
193
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
193
|
-
wandb/sdk/wandb_run.py,sha256=
|
194
|
+
wandb/sdk/wandb_run.py,sha256=SdI-JLUXsq4_Y_6knK4f64nqfsGddOrSFX__Ce73YeU,163791
|
194
195
|
wandb/sdk/wandb_sync.py,sha256=KhxDOHR7x8q54hAlsEx4ta1dAW1ZnzTUMr7VwJyCL5c,2273
|
195
196
|
wandb/sdk/__init__.py,sha256=g8BQ6gQ_WDIH682ayRuKzD6QZXL8NW5CZKBLJOem5iU,805
|
196
|
-
wandb/sdk/wandb_init.py,sha256=
|
197
|
+
wandb/sdk/wandb_init.py,sha256=Xqs6sypxrUxzS4PXehMyle-UqA5zEVh3C0txByJIF74,51440
|
197
198
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
198
|
-
wandb/sdk/wandb_settings.py,sha256=
|
199
|
+
wandb/sdk/wandb_settings.py,sha256=2kksLjHKDv9BMiMIzXaKsZsQL03A3QAmSCuVWHXySi4,75830
|
199
200
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
200
201
|
wandb/sdk/wandb_watch.py,sha256=2LGjshxCywHhlxHU3-APmgWsoQjMSxJdqA8J75KAmIU,3898
|
201
202
|
wandb/sdk/wandb_login.py,sha256=HnjrtkZRO3yoYBWkrCxEzM2jsIejYOxHz7VoENYeGqI,11191
|
202
203
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
203
|
-
wandb/sdk/wandb_require.py,sha256=
|
204
|
+
wandb/sdk/wandb_require.py,sha256=gHx6stH3AZi5OoY5IlBJhgwxhniT90A4F6z8Wy5u3Zw,3697
|
204
205
|
wandb/sdk/wandb_sweep.py,sha256=cboZB5qvLigAY3UeYifDTX1me_-Q4Y0EJ5UVEzYCXac,4000
|
205
|
-
wandb/sdk/wandb_manager.py,sha256=
|
206
|
-
wandb/sdk/wandb_setup.py,sha256=
|
206
|
+
wandb/sdk/wandb_manager.py,sha256=CW2rRta519DcUTBqWMiu90L8nHaT_7S-Iq2jFA9N4ck,6884
|
207
|
+
wandb/sdk/wandb_setup.py,sha256=uHG5bp4IcJxFVrQboM3m-VIUqe845TLqATiB-nbv0ew,13204
|
207
208
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
208
209
|
wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
|
209
210
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -226,11 +227,11 @@ wandb/sdk/artifacts/storage_policy.py,sha256=iDZmHBINhrXoeUbc7s5MKCd0r5JCc5QPN3V
|
|
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/artifact.py,sha256=E336yad5FRb51H3xQcAQcOR2UpZKHsfi27Z_7Um54Q4,88887
|
230
231
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=EsXD2bQyFhFYK2NICUZ3jtXf-r0hC63-6lqyU_cHcPw,9840
|
231
232
|
wandb/sdk/artifacts/artifact_saver.py,sha256=tG3QiqB-CUrEC_2Qus1AsJHCInhgaFDqdDmZQ1ja798,9285
|
232
233
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
233
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
234
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=SfjfdzAIHEpbvQ1tOorfOMpITPgIyEnsJyUARgrnS7I,8424
|
234
235
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=eSx_51ETukZ3PehIJkrNBd_Q1E6CowEZSbrLmaWiwiY,2503
|
235
236
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=8dnqz8ri-3zAygk-ihn9JQsRaeYUwF7Av_pUqUoJxt0,473
|
236
237
|
wandb/sdk/artifacts/exceptions.py,sha256=2rVhtgZixcnjcMkR2Mr_sGp9KnqTDILwcqecyZDDwWY,1852
|
@@ -248,7 +249,7 @@ wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=egJykO-DwvXocKvnnU6
|
|
248
249
|
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=fHGoZ-qK3Se7879VoWIn7clDd-g7VKcpdvy-1sLH9p0,8122
|
249
250
|
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=2JPEQ88CyX1F454o8N7TGWEbC2p5OugXiuD1n9X9-Oo,5335
|
250
251
|
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=0rw0ABqThgOmthmmOt4wAOfHexHxCs74ROlj1Nh_fCw,4093
|
251
|
-
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256
|
252
|
+
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=-wfTy3LGnjxlolDH8DAlOMVoW7GYjlSSY6KHPvnfqck,8597
|
252
253
|
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=Yz5tC0d37JQjVCYJbte_5E33frAcI2A7q5mepSmMLN4,2577
|
253
254
|
wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
254
255
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=ZQyFPm2ab0VtIpJjYW2jxuAb85u4S7n7IB69RnPycMU,3433
|
@@ -262,7 +263,7 @@ wandb/sdk/data_types/_dtypes.py,sha256=EYlrwR2VUiygXborpL0a821PCHshqEkFbusVy-pAh
|
|
262
263
|
wandb/sdk/data_types/utils.py,sha256=qVfISB7ycwBleVo6vQpphomwwP-KaJKtoWuV-GGpkmU,6318
|
263
264
|
wandb/sdk/data_types/saved_model.py,sha256=W1hbTABPsydot2uo2VID0PaJDC_Ec2ipIU-b2QUTs-g,16381
|
264
265
|
wandb/sdk/data_types/plotly.py,sha256=m75HRKSCdd9-cu-odpZ5d2Tu8KwmR_LVdW9u0H-68AE,2918
|
265
|
-
wandb/sdk/data_types/video.py,sha256=
|
266
|
+
wandb/sdk/data_types/video.py,sha256=Z-Fc29TSwzHgUQ9LUkW16VvpQa2o6XPLx-EhnGjaUpU,8829
|
266
267
|
wandb/sdk/data_types/image.py,sha256=EBkgMVp1L4YWuKarXyzfKuFtW5pPJB_l24oMIrcXLIU,25634
|
267
268
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
268
269
|
wandb/sdk/data_types/base_types/media.py,sha256=2WgapOXlF1udvNPYudM0IesKKJAyiS19IxtQD7Y66Q0,11887
|
@@ -332,7 +333,7 @@ wandb/sdk/internal/internal.py,sha256=3JnUaCA5zx48kjgXqpFy8h5LRwVzvY2YCFUibZZfNO
|
|
332
333
|
wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
|
333
334
|
wandb/sdk/internal/job_builder.py,sha256=ivwKg2VnJg1ynpSZaukJbC3umnbYnbKITngeS4Q7x4I,22903
|
334
335
|
wandb/sdk/internal/internal_api.py,sha256=_dqVnH5JkCS1_X05j_bzam8kSEjInLsPHsylLSImPig,147139
|
335
|
-
wandb/sdk/internal/handler.py,sha256=
|
336
|
+
wandb/sdk/internal/handler.py,sha256=kARUdsmcfD8T4STnx7VQppuPG0w8r0gUqdejxXkQ5Gw,33754
|
336
337
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
337
338
|
wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
|
338
339
|
wandb/sdk/internal/settings_static.py,sha256=m97hST3YWmpkmgnXbso0gfPFZ7k7Y4SJSM7NbJIZKTc,3526
|
@@ -405,7 +406,7 @@ wandb/sdk/lib/hashutil.py,sha256=3T0DyZZPZ6VXrYrmLzusdoAtD1JsuXsx0_iNuyqim9M,174
|
|
405
406
|
wandb/sdk/lib/module.py,sha256=f-NFgDi87ai-3r-jN9T3cAZQ3fhivxi4RWhzc9GPb98,1830
|
406
407
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
407
408
|
wandb/sdk/lib/gql_request.py,sha256=4-4HY6IOetwcL8EUaoFc_u3pojnNtEN4NN6-5EtT-MY,2400
|
408
|
-
wandb/sdk/lib/_settings_toposort_generated.py,sha256=
|
409
|
+
wandb/sdk/lib/_settings_toposort_generated.py,sha256=0zGTqg3kS1TgaGDXZanO8lyvIFlcKdapeE0W8ELCIjs,5279
|
409
410
|
wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
|
410
411
|
wandb/sdk/lib/apikey.py,sha256=O9kdOEVAa9EedVZyCsh-CdSKo6T-FjhqGk7-n-jXPYY,9211
|
411
412
|
wandb/sdk/lib/printer.py,sha256=QoiAd68b3fGrtuve2QJOvy20O6IGLsyffOrKFXUPXDs,9641
|
@@ -413,7 +414,7 @@ wandb/sdk/lib/fsm.py,sha256=rUON10HAMDumB0JOE5BDsBgk1F4KbdynGnfSZFuWDEA,5250
|
|
413
414
|
wandb/sdk/lib/lazyloader.py,sha256=y9mToMsUOibWeL5I6P9e993IKYRLxMYFLeUTessw3L4,1877
|
414
415
|
wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
|
415
416
|
wandb/sdk/lib/reporting.py,sha256=sfjVyNtNVOWFIcKihS-9C0yJhCAaUOUP3N3TDdyA-Fc,2410
|
416
|
-
wandb/sdk/service/service.py,sha256=
|
417
|
+
wandb/sdk/service/service.py,sha256=wsxS6vRgXku2ZXocWqB6pRkN82pLtg4HMlqqX-OiptE,9520
|
417
418
|
wandb/sdk/service/server.py,sha256=FOWWSk6xxknnATKdi9zkmG4N9rk6BCMpFit7hMV0qOw,4009
|
418
419
|
wandb/sdk/service/streams.py,sha256=Vgg1Zk5dYGZYo2sgwwZDaGy8H7qZSlNJN5bVGXjasmU,14822
|
419
420
|
wandb/sdk/service/_startup_debug.py,sha256=0-evSjgwjb2LiOP952eScrfSWL8PrAXPOKPgZbio5_M,588
|
File without changes
|
File without changes
|
File without changes
|