wandb 0.17.6__py3-none-win_amd64.whl → 0.17.8__py3-none-win_amd64.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 +10 -19
- wandb/__init__.pyi +964 -0
- wandb/agents/pyagent.py +1 -2
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +21 -0
- wandb/data_types.py +4 -3
- 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/integration/kfp/wandb_logging.py +1 -1
- wandb/integration/lightning/fabric/logger.py +1 -1
- wandb/integration/openai/fine_tuning.py +13 -5
- wandb/integration/ultralytics/pose_utils.py +0 -1
- 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 +22 -26
- wandb/sdk/artifacts/artifact_manifest_entry.py +10 -2
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +31 -0
- wandb/sdk/data_types/_dtypes.py +5 -5
- wandb/sdk/data_types/base_types/media.py +3 -1
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +3 -1
- wandb/sdk/data_types/helper_types/image_mask.py +3 -1
- wandb/sdk/data_types/image.py +3 -1
- wandb/sdk/data_types/saved_model.py +3 -1
- wandb/sdk/data_types/video.py +2 -2
- wandb/sdk/interface/interface.py +17 -16
- wandb/sdk/interface/interface_shared.py +6 -9
- wandb/sdk/internal/datastore.py +1 -1
- wandb/sdk/internal/handler.py +5 -3
- wandb/sdk/internal/internal.py +1 -1
- wandb/sdk/internal/job_builder.py +5 -2
- wandb/sdk/internal/tb_watcher.py +2 -2
- wandb/sdk/internal/update.py +2 -2
- wandb/sdk/launch/builder/kaniko_builder.py +13 -5
- wandb/sdk/launch/create_job.py +2 -0
- wandb/sdk/lib/_settings_toposort_generated.py +1 -0
- wandb/sdk/lib/apikey.py +1 -1
- wandb/sdk/service/service.py +7 -2
- wandb/sdk/service/streams.py +2 -4
- wandb/sdk/wandb_config.py +4 -1
- wandb/sdk/wandb_init.py +59 -8
- wandb/sdk/wandb_manager.py +0 -3
- wandb/sdk/wandb_require.py +22 -1
- wandb/sdk/wandb_run.py +137 -92
- wandb/sdk/wandb_settings.py +26 -2
- wandb/sdk/wandb_setup.py +69 -3
- wandb/sdk/wandb_sweep.py +5 -2
- wandb/testing/relay.py +7 -1
- {wandb-0.17.6.dist-info → wandb-0.17.8.dist-info}/METADATA +48 -54
- {wandb-0.17.6.dist-info → wandb-0.17.8.dist-info}/RECORD +64 -63
- {wandb-0.17.6.dist-info → wandb-0.17.8.dist-info}/WHEEL +0 -0
- {wandb-0.17.6.dist-info → wandb-0.17.8.dist-info}/entry_points.txt +0 -0
- {wandb-0.17.6.dist-info → wandb-0.17.8.dist-info}/licenses/LICENSE +0 -0
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 [![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,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
|
@@ -15,7 +16,7 @@ wandb/wandb_controller.py,sha256=mIwttTH5-b0O_kxlcpZRxI17L5PbB1KkKWFDwgbi0Xg,255
|
|
15
16
|
wandb/wandb_run.py,sha256=EyOjZsthYkfV5SSorQIFmEkszZwvKfZKZCxIwzoM2Oc,164
|
16
17
|
wandb/wandb_torch.py,sha256=1_LOxzsgyWLhE2JEXwX6OwqKFS-ltusKixBWkJEjKRo,21826
|
17
18
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
-
wandb/agents/pyagent.py,sha256=
|
19
|
+
wandb/agents/pyagent.py,sha256=ocUr8AZh5kFP3U_79peb-RbBLt3B9kzPWqKjcX7qHbU,13777
|
19
20
|
wandb/analytics/__init__.py,sha256=ntvkloUY6ZO8irNqA4xi06Q8IC_6pu1VB2_1EKORczc,53
|
20
21
|
wandb/analytics/sentry.py,sha256=f7S7XXH5BMxDNQyUh7So2gv8vHHjf-pHkmsA6xzT6Z8,8756
|
21
22
|
wandb/apis/__init__.py,sha256=DNAnd_UEdahhjkTjWPlJoYNxJX026W3K0qGqkbpgYno,1386
|
@@ -49,9 +50,9 @@ 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
|
-
wandb/cli/cli.py,sha256=
|
55
|
+
wandb/cli/cli.py,sha256=KH4tpD9x8Kpt8sg_FaGnP2Xr4huvoVNiApzVLijlhJw,101301
|
55
56
|
wandb/docker/__init__.py,sha256=Wkv5q5xCf9MAzLjGzg_QpuatP6pURCoKsiWpTj7G1jM,10894
|
56
57
|
wandb/docker/auth.py,sha256=Qaf7C5t4mrGyswNTXKsxV3QBydY_RWqwP5teA8XZ_2I,15468
|
57
58
|
wandb/docker/wandb-entrypoint.sh,sha256=ksJ_wObRwZxZtdu1Ahc1X8VNB1U68a3nleioDDBO-jU,1021
|
@@ -84,26 +85,26 @@ 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
|
95
96
|
wandb/integration/kfp/kfp_patch.py,sha256=xmCT_5OihY6_et8EAO3mh4wAHc4wue8Iy2Q-lds6AaY,13415
|
96
|
-
wandb/integration/kfp/wandb_logging.py,sha256=
|
97
|
+
wandb/integration/kfp/wandb_logging.py,sha256=ZpwRnpN63p88J7KWxQeMXo3puhF4uJBOGCW8XY5p9_0,6349
|
97
98
|
wandb/integration/langchain/__init__.py,sha256=qd8J15XbCMtAB20rVJAbSp8NOkOYNITCVbb-htHwi0U,69
|
98
99
|
wandb/integration/langchain/wandb_tracer.py,sha256=EyC_d6CjkDD2efwqizSpYy3tJWscy4NiwkOhuMT50jg,2265
|
99
100
|
wandb/integration/lightgbm/__init__.py,sha256=Y9DCMTx3Sv27N8VOfXVGnvNZuue8vCVW-bezqtQxkkQ,8218
|
100
101
|
wandb/integration/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
101
102
|
wandb/integration/lightning/fabric/__init__.py,sha256=_KF_WmU4ynBy9WT8EVXZw0cwDtF2t1TQ_GzUDQLXeAg,97
|
102
|
-
wandb/integration/lightning/fabric/logger.py,sha256=
|
103
|
+
wandb/integration/lightning/fabric/logger.py,sha256=lz3uq5pDmruTuAv0CJ1X57KyjMpUF308Mpq8PmVo8Pc,27991
|
103
104
|
wandb/integration/metaflow/__init__.py,sha256=yoTkbO85zdlJwL5f8HmXXVVNDTcIPyYwuHNhysTzkv4,112
|
104
105
|
wandb/integration/metaflow/metaflow.py,sha256=EOHlQWXdCKv-pmJQ9gxFOSv5bciLbgAe8tb4LAPwie8,12280
|
105
106
|
wandb/integration/openai/__init__.py,sha256=negbYxbmhe4hA7Zl41FA5FnZ1JP6G6IYUTK4lS4YSqs,69
|
106
|
-
wandb/integration/openai/fine_tuning.py,sha256=
|
107
|
+
wandb/integration/openai/fine_tuning.py,sha256=N1kMMO_upPY7roW2dOHe80J7FeOjIQbkfCR0aM1_oM4,19009
|
107
108
|
wandb/integration/openai/openai.py,sha256=43Lm8sk_VksyRf8g6TJqbNlTlwA3ujaZxF5wfhqtjQk,518
|
108
109
|
wandb/integration/openai/resolver.py,sha256=NqntihlyuiEqNYrpxnRMSVWdVPSAcQxFfJJwAXBkPCc,8404
|
109
110
|
wandb/integration/prodigy/__init__.py,sha256=yA8FAF3nqy5AnpzLYRCH3DNwmnXLYsJ55RY-G2m1kWg,69
|
@@ -127,7 +128,7 @@ wandb/integration/ultralytics/bbox_utils.py,sha256=8-ZgDn80nHBAKDN7R01Ll53ph90hD
|
|
127
128
|
wandb/integration/ultralytics/callback.py,sha256=2xdEiD4l-ROnel35kc7r3KGX52Tg_k2wO08aSreyThU,21787
|
128
129
|
wandb/integration/ultralytics/classification_utils.py,sha256=b_EGdLZkf1sjJuJwmp7segl_-47T-99d0Yyrn57j3xM,3251
|
129
130
|
wandb/integration/ultralytics/mask_utils.py,sha256=8Bue8DMcR8J1sXrZaz-6u58GOZMuwj5c0V75KrV3S1A,7282
|
130
|
-
wandb/integration/ultralytics/pose_utils.py,sha256=
|
131
|
+
wandb/integration/ultralytics/pose_utils.py,sha256=8rqsRiTAT-mQ3LgARAKQXdgfBTOh0j4q9li8RJjP7LY,3812
|
131
132
|
wandb/integration/xgboost/__init__.py,sha256=WGqILO3kWero1jaSRwLkEJ4JDOeVw8LQT0xI8142mwA,354
|
132
133
|
wandb/integration/xgboost/xgboost.py,sha256=u435VMwYobHj1hrV4XMNVakWz5gBjI64xXNNQUXYUEE,6689
|
133
134
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -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
|
-
wandb/sdk/wandb_sweep.py,sha256=
|
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
|
@@ -224,35 +225,35 @@ wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=LynEL6zRwO7Y
|
|
224
225
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
225
226
|
wandb/sdk/backend/backend.py,sha256=zdW9iehb6PRRdQ_vfftUa5naOgWwjV1QFDWijoysQ0c,8548
|
226
227
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
|
-
wandb/sdk/data_types/_dtypes.py,sha256=
|
228
|
+
wandb/sdk/data_types/_dtypes.py,sha256=9Gb3OGcTZ_KXVuFEEgurvCjl0AqMcJjmu3Os_-NWwZY,30952
|
228
229
|
wandb/sdk/data_types/_private.py,sha256=vpatnpMcuWUtpSI-dY-YXs9zmffAgEXCoViIGS4yVT8,309
|
229
230
|
wandb/sdk/data_types/histogram.py,sha256=7Rym2_9mIXPJPwINeDRuGHWJOYS3bzQCUCRp64VxKA4,3298
|
230
231
|
wandb/sdk/data_types/html.py,sha256=WJAkfrSjoP3KQwTOo6u8fmPIz8V8iX6DIKalXgubFWk,3624
|
231
|
-
wandb/sdk/data_types/image.py,sha256=
|
232
|
+
wandb/sdk/data_types/image.py,sha256=G9c-VzwykWREXSKd3khyjFtXeUP0btvzNDx6-0B37qQ,26323
|
232
233
|
wandb/sdk/data_types/molecule.py,sha256=x6s_8xBStCrEsHsaQR5lAmslx4TCX8qqOWxEt-KmuDY,8839
|
233
234
|
wandb/sdk/data_types/object_3d.py,sha256=FQMH8kwjzK7xbfIC6L33SJ1bTTP0gC1HmGlwYeZ-uGA,16558
|
234
235
|
wandb/sdk/data_types/plotly.py,sha256=TqVQIDzOdG9o5zavzkG0tvhVS9AqCEG8wKqqi0gkoMA,3000
|
235
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
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
|
-
wandb/sdk/data_types/base_types/media.py,sha256=
|
242
|
+
wandb/sdk/data_types/base_types/media.py,sha256=88tLQ-oHRmruHN5N5QFBz5scNNYXAI6H8phMOhR5WpY,12202
|
242
243
|
wandb/sdk/data_types/base_types/wb_value.py,sha256=XPJApZANfBF3Cnetkme-V1c2lpXA56HDkA0JwZexB6s,11359
|
243
244
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
244
|
-
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=
|
245
|
+
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=6Pat60hXavQzJsQtW78BPY9_AfPzZXMT3e9eFjNGEO4,13082
|
245
246
|
wandb/sdk/data_types/helper_types/classes.py,sha256=A59I1s4u7fdS68UoVQJgYqr1PTQdFpfqJA8lsKOmTNI,5679
|
246
|
-
wandb/sdk/data_types/helper_types/image_mask.py,sha256=
|
247
|
+
wandb/sdk/data_types/helper_types/image_mask.py,sha256=jHCNDs2wd1IePdEKVcFd75CWe5AgAOdYQLd1T-Y35To,8816
|
247
248
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
248
249
|
wandb/sdk/integration_utils/auto_logging.py,sha256=veVzow8oICc0MzGj2_HkyAVPAbW6rwD_1I20JpEC7oI,8587
|
249
250
|
wandb/sdk/integration_utils/data_logging.py,sha256=DtSEZB-TzxQKhjm9IXNxDeOAUZyDXGYrfRvVh2Cju54,20008
|
250
251
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
251
252
|
wandb/sdk/interface/constants.py,sha256=GKZ2hATTBCt7yU8kloafZR34yLChiI36O_VtxZZbQyg,64
|
252
|
-
wandb/sdk/interface/interface.py,sha256=
|
253
|
+
wandb/sdk/interface/interface.py,sha256=ePE7Ktb8rr6eK_QyYH2s5ezzirxUes3wgm0Dmq65APA,36297
|
253
254
|
wandb/sdk/interface/interface_queue.py,sha256=QxHmramXIHs4rQEzIk3qzF9ui5BPEAcXSGPt8TZjaEE,2026
|
254
255
|
wandb/sdk/interface/interface_relay.py,sha256=R28bIhebZux7PwFeJmO8wOOkm_uCjmQ2T5lKKy3sL-Y,1567
|
255
|
-
wandb/sdk/interface/interface_shared.py,sha256=
|
256
|
+
wandb/sdk/interface/interface_shared.py,sha256=fKWiRPcs7TGGUZa0xAU1gqRWnoA-DmFEC9uXFZihens,21028
|
256
257
|
wandb/sdk/interface/interface_sock.py,sha256=aurQAyibPjE19ZWi2lCCDsLjo4v3Pi5f59rL1VZ9J0w,2045
|
257
258
|
wandb/sdk/interface/message_future.py,sha256=SlMF8psfA1AW3iVuB_PVLo41bC4U-AAvek1Zlh31mdE,712
|
258
259
|
wandb/sdk/interface/message_future_poll.py,sha256=8a7GcNtCyohHUnxoJ5sx6RRQa2Vu_hjiBqeQ-UQ0RTc,1460
|
@@ -263,15 +264,15 @@ wandb/sdk/interface/router_sock.py,sha256=xS50HSO_mG_xxVNpLoKqbHcsptBGjTFUc3-cHb
|
|
263
264
|
wandb/sdk/interface/summary_record.py,sha256=NZOachyUirH7MATnxNUu5PVfVvDHNUFbEkCvRyoEFUo,1744
|
264
265
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
265
266
|
wandb/sdk/internal/context.py,sha256=HNcOpyptz_03YGlZV3BVzPrBXDoMhtLBxvM2-Z_5xXs,2607
|
266
|
-
wandb/sdk/internal/datastore.py,sha256=
|
267
|
+
wandb/sdk/internal/datastore.py,sha256=1zjcplHyt6qRJBW2udYru6IuCe_GIuKgoCL9S4ehakk,10140
|
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/internal.py,sha256=
|
271
|
+
wandb/sdk/internal/handler.py,sha256=uT1ea5igLQ2vJPA4QiFhNMmawdGoEgZzw4z4ndDO93E,34665
|
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
|
274
|
-
wandb/sdk/internal/job_builder.py,sha256=
|
275
|
+
wandb/sdk/internal/job_builder.py,sha256=d034H4nE3H2BbtDAxcxftiDgdbBye9ljeZuDh_AjHyI,23532
|
275
276
|
wandb/sdk/internal/profiler.py,sha256=QM5R8-0oWE7WhllhpPEAEwCyB6Uk62HATz8e2F5qIUk,2426
|
276
277
|
wandb/sdk/internal/progress.py,sha256=Tfz1DJNlIj80-Ghb2b7TzHBftgXkfPWwwHlO2NK8UyA,2529
|
277
278
|
wandb/sdk/internal/run.py,sha256=rkEwqdaYPUh_oB-gdCnQ1JIpSHTMoOVadV9CJEgy-kA,707
|
@@ -279,9 +280,9 @@ wandb/sdk/internal/sample.py,sha256=QE80NZeW-UsUZBlnf9hG_2KNIZWmLzEpZStYTuL4fOI,
|
|
279
280
|
wandb/sdk/internal/sender.py,sha256=FYvi9I7jAEXINGs8N1GoU6b485T6YgijkahNKgpNlB8,68767
|
280
281
|
wandb/sdk/internal/sender_config.py,sha256=LZaQY4_bzb9003D2j6aynGqv-Mr2GwUGcNmnQrhJOJw,6964
|
281
282
|
wandb/sdk/internal/settings_static.py,sha256=tUieif_B36dCFqJKwfcr4bLF0KVgFhGN6q-vg3orRzw,3616
|
282
|
-
wandb/sdk/internal/tb_watcher.py,sha256=
|
283
|
+
wandb/sdk/internal/tb_watcher.py,sha256=oHbVjIohjpbuWbcW9Npc6ts5xKmJnTWB5Nz5t-0gPro,19238
|
283
284
|
wandb/sdk/internal/thread_local_settings.py,sha256=f6uzjTa0d6twZ9aFHzdUlUqv3gy6AnbOZoWYm95DxKA,545
|
284
|
-
wandb/sdk/internal/update.py,sha256=
|
285
|
+
wandb/sdk/internal/update.py,sha256=PaIDapIkR7PqH__8WgQh3s0b_9rlrfCeMJpbTVRqAx4,3968
|
285
286
|
wandb/sdk/internal/writer.py,sha256=Vz2RvD74NVtREI93GvXyFPbJlCBJ9tbCWGI1Ca0eEfc,7600
|
286
287
|
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
287
288
|
wandb/sdk/internal/system/env_probe_helpers.py,sha256=DBq4Gg6mTbqdjxUDHSOlcV0Ul_aFF-oOvhKqhzb1xWY,410
|
@@ -306,7 +307,7 @@ wandb/sdk/launch/__init__.py,sha256=tsiLFVElWgdxjfRWGj0V2MOi0oaggmHpYwzc_Ful1qw,
|
|
306
307
|
wandb/sdk/launch/_launch.py,sha256=bJnB_p0O2FojyNN_ZXGjT4_pIlX-wHc0kL0O373YDBk,12138
|
307
308
|
wandb/sdk/launch/_launch_add.py,sha256=bE3o3UzwJsoN50IysEcqU8TIVCWad73gh8dcARPEs08,9047
|
308
309
|
wandb/sdk/launch/_project_spec.py,sha256=k3k0Hjs_aHyPnf29ntcc9WiL1ciHYh2JheuWTlobCSg,22314
|
309
|
-
wandb/sdk/launch/create_job.py,sha256=
|
310
|
+
wandb/sdk/launch/create_job.py,sha256=CKOURdVKUfLQZDg-r-eBZf1SnN51_b3azTjCncRN4SA,17895
|
310
311
|
wandb/sdk/launch/errors.py,sha256=ry-q97_2vU_aWtTJPCOgqly2TgIJsCiKnywpdXXjnw8,324
|
311
312
|
wandb/sdk/launch/git_reference.py,sha256=5pswecUCOOo2UUrfA5I9q6zrFe80M5IGODLNzXxDlgo,3867
|
312
313
|
wandb/sdk/launch/loader.py,sha256=gka4OPM9Co3xyjNXFkrHW2IgRHrAMZqqqkiLx4E-YpE,9176
|
@@ -322,7 +323,7 @@ wandb/sdk/launch/builder/abstract.py,sha256=CNEtAIn0obqJyVNyyLqgjTzF8A4MR4aWlLUd
|
|
322
323
|
wandb/sdk/launch/builder/build.py,sha256=pkun64Vi44xWT5o8Eg5kS2EYpZuejdCpKulREPl1CCk,11164
|
323
324
|
wandb/sdk/launch/builder/context_manager.py,sha256=pri9aPNLZm8MQIJVekmSIc604PdXOlTKbbyS867i22M,9853
|
324
325
|
wandb/sdk/launch/builder/docker_builder.py,sha256=a3Ijnqr8eW3G0Eoqq053CpsED7evoncjk-PfQ7IqsWw,6493
|
325
|
-
wandb/sdk/launch/builder/kaniko_builder.py,sha256=
|
326
|
+
wandb/sdk/launch/builder/kaniko_builder.py,sha256=vmoBe0TwcafSx64SCq2r2dkRNiZLxrX9jZiAmp7K4Eo,24513
|
326
327
|
wandb/sdk/launch/builder/noop.py,sha256=Mr_3IKCmfwX45xztku4uVzeGZh2fbuwylNbNBS3Pjmk,1958
|
327
328
|
wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=6B701GOEwMADcr3mciAX8fULD-5mr0aTWieL0flvB3c,7504
|
328
329
|
wandb/sdk/launch/builder/templates/dockerfile.py,sha256=b-wKn1YguEjxmNAHeRBD0pwur1w_ixtkre2znyZHxS0,2356
|
@@ -355,10 +356,10 @@ 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
|
-
wandb/sdk/lib/apikey.py,sha256=
|
362
|
+
wandb/sdk/lib/apikey.py,sha256=DxCVjZQ8mCgxfxAojREqzDhn1Y4PTIMAlSGj0Qm6H8Y,9484
|
362
363
|
wandb/sdk/lib/capped_dict.py,sha256=HuFhPHl0e_pK6ETDxYh5RIPO-46I3EjXgzFdqbJTXDs,846
|
363
364
|
wandb/sdk/lib/config_util.py,sha256=KaSu8CSO1XFHJRBwo-OW0r802isltB3cFO3U1LeM-ec,3018
|
364
365
|
wandb/sdk/lib/console.py,sha256=9G6FtYE3e6NvPps8yZPttVzG7Ti8t87pn0oD2vPg-lI,1070
|
@@ -402,10 +403,10 @@ 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
|
-
wandb/sdk/service/streams.py,sha256=
|
409
|
+
wandb/sdk/service/streams.py,sha256=LtBxli28GEKeK7fMXmqivt_ru2Ofn9Gmr76yPwcus3Y,15246
|
409
410
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
410
411
|
wandb/sdk/verify/verify.py,sha256=dhxs_Ocs8WVFyeodPquCPaTc17rB4Dti-h2JiTOahvs,17022
|
411
412
|
wandb/sklearn/__init__.py,sha256=iNUQBd44gurNllaA1bOUaU5kg9Edk8XcI7WsCSj_dEo,898
|
@@ -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=M1tmngCHfER8pIPuS8Dt7mqF1TawUl-fJoa23auO3MM,93
|
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
|