wandb 0.17.6__py3-none-any.whl → 0.17.8__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. package_readme.md +47 -53
  2. wandb/__init__.py +10 -19
  3. wandb/__init__.pyi +964 -0
  4. wandb/agents/pyagent.py +1 -2
  5. wandb/bin/nvidia_gpu_stats +0 -0
  6. wandb/cli/cli.py +21 -0
  7. wandb/data_types.py +4 -3
  8. wandb/env.py +13 -0
  9. wandb/integration/keras/__init__.py +2 -5
  10. wandb/integration/keras/callbacks/metrics_logger.py +10 -4
  11. wandb/integration/keras/callbacks/model_checkpoint.py +0 -5
  12. wandb/integration/keras/keras.py +11 -0
  13. wandb/integration/kfp/wandb_logging.py +1 -1
  14. wandb/integration/lightning/fabric/logger.py +1 -1
  15. wandb/integration/openai/fine_tuning.py +13 -5
  16. wandb/integration/ultralytics/pose_utils.py +0 -1
  17. wandb/proto/v3/wandb_internal_pb2.py +24 -24
  18. wandb/proto/v3/wandb_settings_pb2.py +2 -2
  19. wandb/proto/v3/wandb_telemetry_pb2.py +12 -12
  20. wandb/proto/v4/wandb_internal_pb2.py +24 -24
  21. wandb/proto/v4/wandb_settings_pb2.py +2 -2
  22. wandb/proto/v4/wandb_telemetry_pb2.py +12 -12
  23. wandb/proto/v5/wandb_internal_pb2.py +24 -24
  24. wandb/proto/v5/wandb_settings_pb2.py +2 -2
  25. wandb/proto/v5/wandb_telemetry_pb2.py +12 -12
  26. wandb/proto/wandb_deprecated.py +2 -0
  27. wandb/sdk/artifacts/artifact.py +22 -26
  28. wandb/sdk/artifacts/artifact_manifest_entry.py +10 -2
  29. wandb/sdk/artifacts/storage_handlers/gcs_handler.py +31 -0
  30. wandb/sdk/data_types/_dtypes.py +5 -5
  31. wandb/sdk/data_types/base_types/media.py +3 -1
  32. wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +3 -1
  33. wandb/sdk/data_types/helper_types/image_mask.py +3 -1
  34. wandb/sdk/data_types/image.py +3 -1
  35. wandb/sdk/data_types/saved_model.py +3 -1
  36. wandb/sdk/data_types/video.py +2 -2
  37. wandb/sdk/interface/interface.py +17 -16
  38. wandb/sdk/interface/interface_shared.py +6 -9
  39. wandb/sdk/internal/datastore.py +1 -1
  40. wandb/sdk/internal/handler.py +5 -3
  41. wandb/sdk/internal/internal.py +1 -1
  42. wandb/sdk/internal/job_builder.py +5 -2
  43. wandb/sdk/internal/tb_watcher.py +2 -2
  44. wandb/sdk/internal/update.py +2 -2
  45. wandb/sdk/launch/builder/kaniko_builder.py +13 -5
  46. wandb/sdk/launch/create_job.py +2 -0
  47. wandb/sdk/lib/_settings_toposort_generated.py +1 -0
  48. wandb/sdk/lib/apikey.py +1 -1
  49. wandb/sdk/service/service.py +7 -2
  50. wandb/sdk/service/streams.py +2 -4
  51. wandb/sdk/wandb_config.py +4 -1
  52. wandb/sdk/wandb_init.py +59 -8
  53. wandb/sdk/wandb_manager.py +0 -3
  54. wandb/sdk/wandb_require.py +22 -1
  55. wandb/sdk/wandb_run.py +137 -92
  56. wandb/sdk/wandb_settings.py +26 -2
  57. wandb/sdk/wandb_setup.py +69 -3
  58. wandb/sdk/wandb_sweep.py +5 -2
  59. wandb/testing/relay.py +7 -1
  60. {wandb-0.17.6.dist-info → wandb-0.17.8.dist-info}/METADATA +48 -54
  61. {wandb-0.17.6.dist-info → wandb-0.17.8.dist-info}/RECORD +64 -63
  62. {wandb-0.17.6.dist-info → wandb-0.17.8.dist-info}/WHEEL +0 -0
  63. {wandb-0.17.6.dist-info → wandb-0.17.8.dist-info}/entry_points.txt +0 -0
  64. {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.3
2
2
  Name: wandb
3
- Version: 0.17.6
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
- ## Features
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
- - Store hyper-parameters used in a training run
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
- [Documentation →](https://docs.wandb.com)
138
+ # Quickstart
150
139
 
151
- ## Quickstart
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
- In your training script:
150
+ 3. Third, log into W&B:
158
151
 
159
152
  ```python
160
- import wandb
153
+ wandb.login()
154
+ ```
161
155
 
162
- # Your custom arguments defined here
163
- args = ...
156
+ 4. Use the example code snippet below as a template to integrate W&B to your Python script:
164
157
 
165
- wandb.init(config=args, project="my-project")
166
- wandb.config["more"] = "custom"
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
- def training_loop():
170
- while True:
171
- # Do some machine learning
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
- If you're already using Tensorboard or [TensorboardX](https://github.com/lanpa/tensorboardX), you can integrate with one line:
168
+ # Model training code here ...
178
169
 
179
- ```python
180
- wandb.init(sync_tensorboard=True)
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
- ## Running your script
178
+ For example, if the preceding code was stored in a script called train.py:
184
179
 
185
- Run `wandb login` from your terminal to signup or authenticate your machine (we store your api key in ~/.netrc). You can also set the `WANDB_API_KEY` environment variable with a key from your [settings](https://app.wandb.ai/settings).
180
+ ```shell
181
+ python train.py
182
+ ```
186
183
 
187
- Run your script with `python my_script.py` and all metadata will be synced to the cloud. 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. If you want to test your script without syncing to the cloud you can set the environment variable `WANDB_MODE=dryrun`.
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
- If you are using [docker](https://docker.com) to run your code, we provide a wrapper command `wandb docker` that mounts your current directory, sets environment variables, and ensures the wandb library is installed. Training your models in docker gives you the ability to restore the exact code and environment with the `wandb restore` command.
186
+  
190
187
 
191
- ## Web Interface
188
+ # Integrations
192
189
 
193
- [Sign up for a free account ](https://wandb.com)
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
- ## Detailed Usage
192
+  
198
193
 
199
- Framework specific and detailed usage can be found in our [documentation](http://docs.wandb.com/).
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
- ## Testing
197
+  
202
198
 
203
- To run basic test use `make test`. More detailed information can be found at CONTRIBUTING.md.
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
- We use [circleci](https://circleci.com) for CI.
202
+  
206
203
 
207
- # Academic Researchers
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
- We make it easy to cite W&B in your published paper. [Learn more ](https://www.wandb.com/academic)
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
- ## Community
214
- Got questions, feedback or want to join a community of ML engineers working on exciting projects?
208
+  
215
209
 
216
- <a href="https://bit.ly/wb-slack"><img src="https://svgshare.com/i/M93.svg" alt="slack" width="55"/></a> Join our [slack](https://bit.ly/wb-slack) community.
210
+ # License
217
211
 
218
- [![Twitter](https://img.shields.io/twitter/follow/weights_biases?style=social)](https://twitter.com/weights_biases) Follow us on [Twitter](https://twitter.com/weights_biases).
212
+ [MIT License](https://github.com/wandb/wandb/blob/main/LICENSE)
@@ -1,9 +1,10 @@
1
- package_readme.md,sha256=xigFCsrzePKq72pDIEfkoVzb-NzDRsKpXXI0FMJ-6jg,4382
2
- wandb/__init__.py,sha256=5r0f16Vpq9NA9cKhNALc6x2TMchvwEuvHWPEjPFIz18,7277
1
+ package_readme.md,sha256=1v4WgKja-54kllY4clEr85vGFQAGaCo-JrtTZfsG4zM,3864
2
+ wandb/__init__.py,sha256=KoSkmK5hjAOufGYB91TsQFP5CPY6y1sPh8mrqbAcOeY,7072
3
+ wandb/__init__.pyi,sha256=CXDdmoa52_lutV6Pg4WOOQLIix--hYXIvTQls_ybI3s,37164
3
4
  wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
4
5
  wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
5
- wandb/data_types.py,sha256=bLOoBCVdFa6sGce4RhJe47eu8on4Q20GtwndC8nwFfk,73169
6
- wandb/env.py,sha256=dOTxEshJk5w-uIGA_3DESU-SlipSFiTAm_omQtw_fKw,13522
6
+ wandb/data_types.py,sha256=PB9sFue9cT6W-eZ2HwQrIoaJ5LLhdMICNAYlXjKboZs,73250
7
+ wandb/env.py,sha256=IMnRFsZtV2ySzi7K1yaAurqk91Hoy79Dc8hQLQ96to8,13983
7
8
  wandb/jupyter.py,sha256=tPnqX9kvAOpWpyz1f-uXrmUvj2V3hx0ANHKeXNxGF1o,16954
8
9
  wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
9
10
  wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -15,7 +16,7 @@ wandb/wandb_controller.py,sha256=Mp6szfycF_F8fFhxuDTSMpN4Vvc6D0Ix2gZBSSYOOS0,248
15
16
  wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
16
17
  wandb/wandb_torch.py,sha256=DGY0jsWashL02iXGce-5XypfSJIbBWfLsCrmixqNTCY,21276
17
18
  wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- wandb/agents/pyagent.py,sha256=sf6TDxJk0Q6HUZc87BIyqP779Ttv58LhdH3kyCpF6t8,13442
19
+ wandb/agents/pyagent.py,sha256=Ee9IDQhfy0-CyH7erTYq64bA-M1jJCIv35j327cvJHU,13414
19
20
  wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
20
21
  wandb/analytics/sentry.py,sha256=Bdx6GLuruzabyaH7XAtSzyNhbeElKTP-3FQJdyO-qq8,8490
21
22
  wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
@@ -49,9 +50,9 @@ wandb/apis/reports/v1/__init__.py,sha256=x4CDMwUYT3FwgdQnaj0ZA5gc0e6c5JjboChrnXP
49
50
  wandb/apis/reports/v2/__init__.py,sha256=KFrIs_vw2k49bTUHZCkqx9CzXcbNl192cYBWViKdPc0,262
50
51
  wandb/apis/workspaces/__init__.py,sha256=ZLuZVu1MTNZ9ZWFMk-t6TXGQWDhiaI5liEl-5WN1mi4,264
51
52
  wandb/beta/workflows.py,sha256=bk12HDWnxI4uuP0KyUbfclrTSoRVXrJibAuO_QBB5tI,10239
52
- wandb/bin/nvidia_gpu_stats,sha256=X-ctfLlbR2TwLMHCwvHUTgsjB90A8Tx0Mmxo7ePv_pM,1731072
53
+ wandb/bin/nvidia_gpu_stats,sha256=Oi40uwumAZdXXFRhfW7B0tXgRUyT91LIVrmozDylDTM,7293720
53
54
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- wandb/cli/cli.py,sha256=zU-ewOgkvLXrcYlpEPNf_EYlp5No_MHtn37mfZF0U2k,97755
55
+ wandb/cli/cli.py,sha256=MlMkNpr6m62E6mEGkmXgFUKBYCSmdMRv-93rSM2SISw,98297
55
56
  wandb/docker/__init__.py,sha256=1NktT5nl7XJ35vj7Pq71p49_Vwet2HBLBc2_D7e86sM,10552
56
57
  wandb/docker/auth.py,sha256=I68SFCcbmZr18XqVxVCM75eTB7YhCebgb3dcsFiIYHQ,15032
57
58
  wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
@@ -84,26 +85,26 @@ wandb/integration/gym/__init__.py,sha256=0jeYkdGZFby6Rf8QlqltvKrZEZdlaaB9JPX7GhA
84
85
  wandb/integration/huggingface/__init__.py,sha256=Ui-JiM_yel2YZuS9U_LyReL3mhBZZSIUNLBODjS4l4Q,57
85
86
  wandb/integration/huggingface/huggingface.py,sha256=KYP0dCYERORLNE1Sk6jfp0krHF2BQ4q4qOlF-0H-vrI,443
86
87
  wandb/integration/huggingface/resolver.py,sha256=Atc0vwdPar5yKzTcJF6Fu2i7h7a6TX0W9B2HdeToqrI,7858
87
- wandb/integration/keras/__init__.py,sha256=3srXSrJ6rixzVJaN85em4X00sRfeNN_HPjz22lKzj5A,425
88
- wandb/integration/keras/keras.py,sha256=OhIfD5r6wQFsN_Vvuk8pcwClTMHkVXFEktwtOHPuC3o,43707
88
+ wandb/integration/keras/__init__.py,sha256=8_vNA4cEbj1lg2pgMz-c5Iu1XJQtX9x5_vNGrv4NBdE,345
89
+ wandb/integration/keras/keras.py,sha256=LT6ot3iAcJQhkxHLywocUjtndwzXiWyEY2ZJi7dUY2M,44149
89
90
  wandb/integration/keras/callbacks/__init__.py,sha256=sY5AMC3x28iA815fqbqkkArtjctqG-m9N2D5FnyR0no,223
90
- wandb/integration/keras/callbacks/metrics_logger.py,sha256=1wgLGtWpIRnwE_RSjA5p1ZoJup9v62ExGc8x5olLhoM,4853
91
- wandb/integration/keras/callbacks/model_checkpoint.py,sha256=LP9fUypcPhC7X95PVGImccDPAI6yAasI357syWOqrBo,8947
91
+ wandb/integration/keras/callbacks/metrics_logger.py,sha256=yEzLI6i5P6yWdgW4gYKXlLH_cYbv6bi1jDVjbKPFNO4,5038
92
+ wandb/integration/keras/callbacks/model_checkpoint.py,sha256=tSsUmpIJiKZsxB-rVmV2i9uTIYJVI3iXeJ-AjU0GaBo,8665
92
93
  wandb/integration/keras/callbacks/tables_builder.py,sha256=kmqwNGVbDaHo6pNfltUK5BED0g1oIwmtJOCGZZk-FAg,8840
93
94
  wandb/integration/kfp/__init__.py,sha256=WhBhg3mQopGNDbWzGJ8Xyld8w3FAAvmP1G1Wtv_QaC0,136
94
95
  wandb/integration/kfp/helpers.py,sha256=yEVO9rrz27hc4nk3WwNL3v1aRAUlS-OlXMC8Rj0G1tI,1016
95
96
  wandb/integration/kfp/kfp_patch.py,sha256=LtfhPzLGewQ1MT-Hbcd--C_mgnLMwu5dlchVgB41pcc,13091
96
- wandb/integration/kfp/wandb_logging.py,sha256=phHOPDkVspa3vy0AOrU2Dc6SHFu0-XiEXouuyNEyuF8,6163
97
+ wandb/integration/kfp/wandb_logging.py,sha256=fYMImccQagOm6HB-dTV7O1LvH_1jJ-qrd7ngTUu7WVo,6167
97
98
  wandb/integration/langchain/__init__.py,sha256=afRoYH4bPOw6Tyrn9YvuYHzbSae97iQT-Ufi0puJqNw,66
98
99
  wandb/integration/langchain/wandb_tracer.py,sha256=EnzIi-qCCjLDJZf3FlKbdAcgdJTOHRFqHU2Ml-PxYEU,2217
99
100
  wandb/integration/lightgbm/__init__.py,sha256=kCW5E0FjwcDLnWWyxHEIPGj4KRq9EYDqk6-2i7k3WcU,7979
100
101
  wandb/integration/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
102
  wandb/integration/lightning/fabric/__init__.py,sha256=RFhr2VkC0D8b6bAXUMZzcVzqDQaoOozfP_HOogAWi9o,94
102
- wandb/integration/lightning/fabric/logger.py,sha256=fcsssD1TW7asJO9Cm0jImWbob6GI7wbLSjY21YDxibI,27231
103
+ wandb/integration/lightning/fabric/logger.py,sha256=DSW0VUJyxQjkRAzi4t1YiOXWgvic5n4erKPxD3h81xI,27229
103
104
  wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
104
105
  wandb/integration/metaflow/metaflow.py,sha256=jNo8XevmMSzB5ZXUthqG6QlFzkLMCJ0rWdF-suW1Y3M,11897
105
106
  wandb/integration/openai/__init__.py,sha256=T6x9lIFfw2NzOSi46wi3otY_-DSwyMgnIjMIOIod7iU,66
106
- wandb/integration/openai/fine_tuning.py,sha256=llwNMungu4b4ZfRNORWD8U6jMCo7RjHLO3Yz7fIUIvY,18209
107
+ wandb/integration/openai/fine_tuning.py,sha256=9iJCvyZJtLLkZHW8FDG4LPiT8-ZgKcgCP4nG1g2w6gg,18529
107
108
  wandb/integration/openai/openai.py,sha256=zGD1kj6yjDP1IfAAYRcltuXD5Bf569CSnMHMf4rDm54,496
108
109
  wandb/integration/openai/resolver.py,sha256=KrndobRki0C9SNRL8SgPISea0-D7-1g8kvJMcFMN7SA,8164
109
110
  wandb/integration/prodigy/__init__.py,sha256=1-Hg98Y4T1kSNAbrlR9TUrr7dwL1Gxxa-Exu0fsfxl0,66
@@ -127,7 +128,7 @@ wandb/integration/ultralytics/bbox_utils.py,sha256=TFAiLqdp9ON2toR6nzJruNYy4D28C
127
128
  wandb/integration/ultralytics/callback.py,sha256=Nrs56DlL6C2AONFE4QdYV67zNFtXTU6gU6YrsB0hqB0,21263
128
129
  wandb/integration/ultralytics/classification_utils.py,sha256=NZy8LA1GYf_qP9SptwIWw8FCaODteuLvbTAd7z_YzAs,3168
129
130
  wandb/integration/ultralytics/mask_utils.py,sha256=uzUtDjg4C9_4Z6_fWo0wiylauYvmckZ9JQn0afd1NJg,7080
130
- wandb/integration/ultralytics/pose_utils.py,sha256=HHV4sdni-by_Vq4ELvSVQyPp-pojTT6d2VOPwoEobus,3735
131
+ wandb/integration/ultralytics/pose_utils.py,sha256=oknJAy_eoyokJY1u03uk_MpR7kKrJIK4wSRBK5lJGyw,3709
131
132
  wandb/integration/xgboost/__init__.py,sha256=Pwmii-OI64seJjfwM28cS4BdkEN2_Ms_qMGdwp3QRn8,343
132
133
  wandb/integration/xgboost/xgboost.py,sha256=n-J5VGyjnGlgtUaumPqvs8I2WNXSDvfGGKV6qLpbTGM,6500
133
134
  wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -150,7 +151,7 @@ wandb/plot/scatter.py,sha256=zGLuF_TwzD8ETw3ZJmK1o6y2YnLvF5FB5FSKZfO_r24,1001
150
151
  wandb/plot/utils.py,sha256=Ri1W9_NYQijFcPv9BfGLGMKdQk_AZ8dnw1TiHJ0LANE,6803
151
152
  wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
153
  wandb/proto/wandb_base_pb2.py,sha256=HjakgSUcYSm6X7B-nvckrmMjaUKGuUh_KE97AuFBat8,307
153
- wandb/proto/wandb_deprecated.py,sha256=gUko3QJhhLVSc2kumJwbFPMcxYHID4KQQkQR5PLj05I,1784
154
+ wandb/proto/wandb_deprecated.py,sha256=7HItZjjDwQBnRjShPd0mRavswX7_At79Sx7Zyr6cReU,1865
154
155
  wandb/proto/wandb_generate_deprecated.py,sha256=emT11ZJbjUU0wfhAS6l6AokaXyy9ekVEF1jOHR6I5kE,1156
155
156
  wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
156
157
  wandb/proto/wandb_internal_pb2.py,sha256=nIbQS1O4z7n2U0SWGxViHUnjReEBblhht3rZ7pQ0MTs,542
@@ -159,45 +160,45 @@ wandb/proto/wandb_settings_pb2.py,sha256=g5NT8BLXrE1Y7zWMM768zRoW98dBLE9TNuwttXn
159
160
  wandb/proto/wandb_telemetry_pb2.py,sha256=ReY9N2qSt46o7m1ou1khvYSYYImrzo5ro90g_9m8QsM,322
160
161
  wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
162
  wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4Nzw,2248
162
- wandb/proto/v3/wandb_internal_pb2.py,sha256=rOrOXUmb2sCiO_1iSt9ZOHsGP4zQZAoSE9mdmGiDSNY,106975
163
+ wandb/proto/v3/wandb_internal_pb2.py,sha256=weqiU13YTHDonvUmqDUWEt4_Xq3H6V_NlaX8_x36IIU,107058
163
164
  wandb/proto/v3/wandb_server_pb2.py,sha256=u7p14fy4XjKVcDnE54U1WwgC1Gpy6VWGA4MGU3aXyg4,13631
164
- wandb/proto/v3/wandb_settings_pb2.py,sha256=gHpozRTJamYHPJOpHcRhnlXz05qYzmeVP_xL4U-0TGk,19693
165
- wandb/proto/v3/wandb_telemetry_pb2.py,sha256=axM3e2QS6tZsoAt4Jutx5-fHqgWoFAVls3Ju_1zpxnc,13510
165
+ wandb/proto/v3/wandb_settings_pb2.py,sha256=gn-Ku4lWZwDXQ_G69O5q3vW2etzT1uB7ee4KeyRXQGk,19780
166
+ wandb/proto/v3/wandb_telemetry_pb2.py,sha256=6gJgUQDbOLucecndQeSxpwc6SirwayvuiDxye1hxKuI,13592
166
167
  wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
168
  wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
168
- wandb/proto/v4/wandb_internal_pb2.py,sha256=UvYDAiUSDi0_DFncGed8krpr7NFGRvPSB8uu4H1O0X8,48876
169
+ wandb/proto/v4/wandb_internal_pb2.py,sha256=OfZhbvC1AKzopIaYoNAFZeigrMimcnKD4e-E7Db_44g,48959
169
170
  wandb/proto/v4/wandb_server_pb2.py,sha256=YkapN5k621amFmIYKtV5xLww3TaB-6EeGI8Qq2_UY94,5991
170
- wandb/proto/v4/wandb_settings_pb2.py,sha256=_YpMkBUDqj7KKpS58hSrv8MOWEaF2TbJ1aBnTF9k8Zc,16424
171
- wandb/proto/v4/wandb_telemetry_pb2.py,sha256=sMXGd4Er7kTiqPOr6wS3apQcaqQ0DDqfZjgeWnRP7pc,10957
171
+ wandb/proto/v4/wandb_settings_pb2.py,sha256=JQ8vqWQZJkwVKH9vACJIADaY6B2g7JtRO_x59zYtOCM,16511
172
+ wandb/proto/v4/wandb_telemetry_pb2.py,sha256=44AlYQ3OqBIbGZQQzFKP6AVRk756XDuLKIFoh_x0SWg,11039
172
173
  wandb/proto/v5/wandb_base_pb2.py,sha256=_RqGlyLs6WbBXyh2m6xke8OQyjQeRFKDwh8Brn9PAN4,1441
173
- wandb/proto/v5/wandb_internal_pb2.py,sha256=Rhmw_xQ0MqQGACO6qz8AnHlQPCQUjxzOekTDSbPayvU,52911
174
+ wandb/proto/v5/wandb_internal_pb2.py,sha256=Dyl87bykdMMoMBO3QCqAFQoVpNO2YznwIVqxrl9aqT0,52994
174
175
  wandb/proto/v5/wandb_server_pb2.py,sha256=8uKB9qS4F3QjKSlj1aL8eEXZiBIVuTGIZWvCsbs2qEQ,6477
175
- wandb/proto/v5/wandb_settings_pb2.py,sha256=7MyaeLDcp1xQIhkiPSs-_aiLiEzT5gMUckE1wAsLhVc,16732
176
- wandb/proto/v5/wandb_telemetry_pb2.py,sha256=vDEcPXbRKSlVBM6QckRgd95Tmn7U-s2PwK-b8zS-TU8,11203
176
+ wandb/proto/v5/wandb_settings_pb2.py,sha256=53RdnfcvHy2kHTJyIUr_zWjwI0m6qzO0OhUBPNtWnzY,16819
177
+ wandb/proto/v5/wandb_telemetry_pb2.py,sha256=fayIMfpWvl7eJUISNRHwXONGu0_w0cBjS-wlMJLbKeY,11285
177
178
  wandb/sdk/__init__.py,sha256=g8BQ6gQ_WDIH682ayRuKzD6QZXL8NW5CZKBLJOem5iU,805
178
179
  wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
179
- wandb/sdk/wandb_config.py,sha256=ZFEJEk7YoXTIySzHRGOIyyhgvbMUqTnUFAIlu-ZzGUo,10804
180
+ wandb/sdk/wandb_config.py,sha256=TCddmgheDApOE-OXcZdgihhCnTpoR5jj4zeohs-9Q8M,10854
180
181
  wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
181
- wandb/sdk/wandb_init.py,sha256=hsDGM0f45GrPc4DGd7zHbPZmtNZuTzxgtI6MoKL0Jgs,49594
182
+ wandb/sdk/wandb_init.py,sha256=Xqs6sypxrUxzS4PXehMyle-UqA5zEVh3C0txByJIF74,51440
182
183
  wandb/sdk/wandb_login.py,sha256=HnjrtkZRO3yoYBWkrCxEzM2jsIejYOxHz7VoENYeGqI,11191
183
- wandb/sdk/wandb_manager.py,sha256=U4lGjNhUgdiDtKwLUQ4JnE57MVO_RArkwYmvufOHPkg,7000
184
+ wandb/sdk/wandb_manager.py,sha256=CW2rRta519DcUTBqWMiu90L8nHaT_7S-Iq2jFA9N4ck,6884
184
185
  wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
185
- wandb/sdk/wandb_require.py,sha256=HGSkS0IEBnPEn_33jo3an27qtdx2bCxeEwQ0iri9OJk,2858
186
+ wandb/sdk/wandb_require.py,sha256=gHx6stH3AZi5OoY5IlBJhgwxhniT90A4F6z8Wy5u3Zw,3697
186
187
  wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
187
- wandb/sdk/wandb_run.py,sha256=E7vZSBEl9stHP33Etlh5x2oXNN45-zASyEVOCnKoINw,162545
188
- wandb/sdk/wandb_settings.py,sha256=aYrwqJtHNUHzRm4YlHwODsrwIiC9VLQDM_OQg_CUFFg,74818
189
- wandb/sdk/wandb_setup.py,sha256=qLVyjVQuWss6ORjBkKFAtsuziR7uwWrgLwnOydd5lLU,10909
188
+ wandb/sdk/wandb_run.py,sha256=SdI-JLUXsq4_Y_6knK4f64nqfsGddOrSFX__Ce73YeU,163791
189
+ wandb/sdk/wandb_settings.py,sha256=2kksLjHKDv9BMiMIzXaKsZsQL03A3QAmSCuVWHXySi4,75830
190
+ wandb/sdk/wandb_setup.py,sha256=uHG5bp4IcJxFVrQboM3m-VIUqe845TLqATiB-nbv0ew,13204
190
191
  wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
191
- wandb/sdk/wandb_sweep.py,sha256=GR_Px6p2jr_HvmtmgKaaawLLNMMAA3yv2pkca82ahNo,3888
192
+ wandb/sdk/wandb_sweep.py,sha256=cboZB5qvLigAY3UeYifDTX1me_-Q4Y0EJ5UVEzYCXac,4000
192
193
  wandb/sdk/wandb_sync.py,sha256=KhxDOHR7x8q54hAlsEx4ta1dAW1ZnzTUMr7VwJyCL5c,2273
193
194
  wandb/sdk/wandb_watch.py,sha256=2LGjshxCywHhlxHU3-APmgWsoQjMSxJdqA8J75KAmIU,3898
194
195
  wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
- wandb/sdk/artifacts/artifact.py,sha256=67ZJ9US8tqTm6CvmDe--6Mbtp_ybGzHOIgIj8DgqLTU,88884
196
+ wandb/sdk/artifacts/artifact.py,sha256=E336yad5FRb51H3xQcAQcOR2UpZKHsfi27Z_7Um54Q4,88887
196
197
  wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyTA9vscxJL5-8_eupknI,1501
197
198
  wandb/sdk/artifacts/artifact_file_cache.py,sha256=EsXD2bQyFhFYK2NICUZ3jtXf-r0hC63-6lqyU_cHcPw,9840
198
199
  wandb/sdk/artifacts/artifact_instance_cache.py,sha256=8dnqz8ri-3zAygk-ihn9JQsRaeYUwF7Av_pUqUoJxt0,473
199
200
  wandb/sdk/artifacts/artifact_manifest.py,sha256=eSx_51ETukZ3PehIJkrNBd_Q1E6CowEZSbrLmaWiwiY,2503
200
- wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=QfdQzvvdFaTTdgkqItDFwsdinwCmm2jpHZ-R769kMic,8198
201
+ wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=SfjfdzAIHEpbvQ1tOorfOMpITPgIyEnsJyUARgrnS7I,8424
201
202
  wandb/sdk/artifacts/artifact_saver.py,sha256=tG3QiqB-CUrEC_2Qus1AsJHCInhgaFDqdDmZQ1ja798,9285
202
203
  wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
203
204
  wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
@@ -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=ZQyFPm2ab0VtIpJjYW2jxuAb85u4S7n7IB69RnPycMU,3433
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=fHGoZ-qK3Se7879VoWIn7clDd-g7VKcpdvy-1sLH9p0,8122
213
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=xIk-6AxqEe8JOzMaw79jZEcGoGHUemJExLSnJ-5DyIY,7423
214
+ wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=-wfTy3LGnjxlolDH8DAlOMVoW7GYjlSSY6KHPvnfqck,8597
214
215
  wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=0rw0ABqThgOmthmmOt4wAOfHexHxCs74ROlj1Nh_fCw,4093
215
216
  wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=2JPEQ88CyX1F454o8N7TGWEbC2p5OugXiuD1n9X9-Oo,5335
216
217
  wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=egJykO-DwvXocKvnnU6MvvVBI_XTsZhPAcXsrM6mgSE,1876
@@ -224,35 +225,35 @@ wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=HeVyF5FCYGP5
224
225
  wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
226
  wandb/sdk/backend/backend.py,sha256=aVJFViyPxV4yXViqpixhNWElbXR1NVxijeIX-NAIFAA,8308
226
227
  wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
- wandb/sdk/data_types/_dtypes.py,sha256=4oUPnxA7S9OB3RvmHG8qEvGqH_CENetY_5eSLakv7C8,30038
228
+ wandb/sdk/data_types/_dtypes.py,sha256=EYlrwR2VUiygXborpL0a821PCHshqEkFbusVy-pAhrc,30038
228
229
  wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
229
230
  wandb/sdk/data_types/histogram.py,sha256=BiIYj3yY-9oetopHf_cwPp9Z7mKS7bm3ve_ZMX0hwUg,3202
230
231
  wandb/sdk/data_types/html.py,sha256=GAcNfVwwMG_LoS4d64DvIY8pluitwsUvwcP6spwxgcA,3509
231
- wandb/sdk/data_types/image.py,sha256=60A-1yejnqprAt8GB6F8CJo0J0AZqWG_HjT7AB_lRqQ,25615
232
+ wandb/sdk/data_types/image.py,sha256=EBkgMVp1L4YWuKarXyzfKuFtW5pPJB_l24oMIrcXLIU,25634
232
233
  wandb/sdk/data_types/molecule.py,sha256=wZzxT_OKuM2CAZxc38o6COfrGgz9t8JCKuy0fd21A9w,8598
233
234
  wandb/sdk/data_types/object_3d.py,sha256=8thDL0U7BL-M-D86pL0sCsEDzLj4puAp0APVtdqN1Mc,16084
234
235
  wandb/sdk/data_types/plotly.py,sha256=m75HRKSCdd9-cu-odpZ5d2Tu8KwmR_LVdW9u0H-68AE,2918
235
- wandb/sdk/data_types/saved_model.py,sha256=EG5gAcheTyzCZdBsrKvEZc11i0xtlhQzwQ3U-ra6nOI,16362
236
+ wandb/sdk/data_types/saved_model.py,sha256=W1hbTABPsydot2uo2VID0PaJDC_Ec2ipIU-b2QUTs-g,16381
236
237
  wandb/sdk/data_types/trace_tree.py,sha256=KoKIsRuLG7sxTpeor-g1F_CbmY1AXn3KWnitxkVcfCM,14694
237
238
  wandb/sdk/data_types/utils.py,sha256=qVfISB7ycwBleVo6vQpphomwwP-KaJKtoWuV-GGpkmU,6318
238
- wandb/sdk/data_types/video.py,sha256=Wq0hRLnBHXAKUZXb0gDAvRbY8YvlVziqfRK2gmXE2Zc,8859
239
+ wandb/sdk/data_types/video.py,sha256=Z-Fc29TSwzHgUQ9LUkW16VvpQa2o6XPLx-EhnGjaUpU,8829
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=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
241
- wandb/sdk/data_types/base_types/media.py,sha256=Dx-ecZ27fAK2nXtIJX9chvHxlnUFgeq9FM65YSDhz5Q,11868
242
+ wandb/sdk/data_types/base_types/media.py,sha256=2WgapOXlF1udvNPYudM0IesKKJAyiS19IxtQD7Y66Q0,11887
242
243
  wandb/sdk/data_types/base_types/wb_value.py,sha256=gSfzBsMXYAC-lFY5hqAJicMq6tQ1XEHRybmTbpdGmSs,11085
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=U5VTLrNqsl7G7YCRNAChWU67bEXuD4b6VmblFMMCTFc,12768
245
+ wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=SxWZjiC-04SCyXvQGQCMnZvLwqs00mGAgMnlGfxkPBs,12787
245
246
  wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZYRj8rvSmT7fl9ds,5520
246
- wandb/sdk/data_types/helper_types/image_mask.py,sha256=0yH--sX92Qa_MNX8EVJvDGu_M1zSPtC4oCWDWFA2e2o,8562
247
+ wandb/sdk/data_types/helper_types/image_mask.py,sha256=6HSYv7RpjaczQM1ga3UF_S_GzNbfkkvS0OJGmH-_brE,8581
247
248
  wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
248
249
  wandb/sdk/integration_utils/auto_logging.py,sha256=evcVXab1KoC1THdHpCb5RhL14DJKs-fpH2jnBH_iBIg,8348
249
250
  wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
250
251
  wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
251
252
  wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
252
- wandb/sdk/interface/interface.py,sha256=2UiU2FuDH5eqCYPXaUE-hqgmhxPe51FRLC61_wBhqdU,35405
253
+ wandb/sdk/interface/interface.py,sha256=0ThfutXXoBqUyLJ19-evmj5olcs5ORn9Es1d2Ilfqcs,35304
253
254
  wandb/sdk/interface/interface_queue.py,sha256=eCvNpvwMe1GHJv_5M8R3ZSspmEvE02mXMstBDBEZy8A,1967
254
255
  wandb/sdk/interface/interface_relay.py,sha256=vQUrk5KESKInZsXpOxWF4YcWRZFLJjNz1mdNywbWbbE,1514
255
- wandb/sdk/interface/interface_shared.py,sha256=DymRmUQvfStEdW1iWryBaOdyVYArYCV1fn5cevx4mUM,20635
256
+ wandb/sdk/interface/interface_shared.py,sha256=gisOvCIOZjZkO8-T3UYs4S8e42lu-j16mw5fZgJl9k0,20479
256
257
  wandb/sdk/interface/interface_sock.py,sha256=vA5vDMDuuenKkW8zHYfECM4OoSoqAi6hiLMJzqdepd8,1984
257
258
  wandb/sdk/interface/message_future.py,sha256=5OMApIUKTXLHP98ph_jCdshuPZB_E0Uf3UGZpOQ8sik,685
258
259
  wandb/sdk/interface/message_future_poll.py,sha256=drjrcBKswYPYJJQLFlj7UDXq7_zg7KNcObFVetsbvhQ,1410
@@ -263,15 +264,15 @@ wandb/sdk/interface/router_sock.py,sha256=7-J3SFhnaqPohYaUyljwpbsvYPBXA-ZTENYnXx
263
264
  wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
264
265
  wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
265
266
  wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
266
- wandb/sdk/internal/datastore.py,sha256=GMO5KIZN4y8Z4t4K2_pxFuXT1kGQsAbwKtDUkQvwJgc,9845
267
+ wandb/sdk/internal/datastore.py,sha256=Ju7oQMg0CRvVoL2D4wqDER8fopao8JCuKvRP7OOXFNQ,9843
267
268
  wandb/sdk/internal/file_pusher.py,sha256=rUPk6knhvJiNQIw62gsA_K98LYAaqoUJySfztHwMsOw,6103
268
269
  wandb/sdk/internal/file_stream.py,sha256=MNWY5xAPHonGGMTDwQxS4PEZk0ZZRp16I_OOaUonB2Y,25924
269
270
  wandb/sdk/internal/flow_control.py,sha256=LO3iDyBbI4WGoDuVLjA_iv62PyiupdYkpSjxPIMGI7E,8584
270
- wandb/sdk/internal/handler.py,sha256=6ClMK8iga0bHrd17410SL0LrpH1Tk43dfGBpofMzxnQ,33688
271
- wandb/sdk/internal/internal.py,sha256=AUPsOXGwag2UjHg1rQz1zGGWXhywJo85Hoc62ZQ0uCc,12722
271
+ wandb/sdk/internal/handler.py,sha256=kARUdsmcfD8T4STnx7VQppuPG0w8r0gUqdejxXkQ5Gw,33754
272
+ wandb/sdk/internal/internal.py,sha256=3JnUaCA5zx48kjgXqpFy8h5LRwVzvY2YCFUibZZfNOc,12738
272
273
  wandb/sdk/internal/internal_api.py,sha256=_dqVnH5JkCS1_X05j_bzam8kSEjInLsPHsylLSImPig,147139
273
274
  wandb/sdk/internal/internal_util.py,sha256=RMBAsnVimA9UpC-qlT862nqxIXDAPm6KfonNmpvlRfc,2654
274
- wandb/sdk/internal/job_builder.py,sha256=vftff8ZIrVB65nJkEZ3CW5qSrbzFHzQeVbbpHrunou8,22700
275
+ wandb/sdk/internal/job_builder.py,sha256=ivwKg2VnJg1ynpSZaukJbC3umnbYnbKITngeS4Q7x4I,22903
275
276
  wandb/sdk/internal/profiler.py,sha256=C8-mPrAhPS6_l-Fj_zCOwmXaEqhjI9Wd0EAPXS9GAEI,2348
276
277
  wandb/sdk/internal/progress.py,sha256=0nARkPJ4eVaElpjBl_UQAXeiPtujqcJkMz6OxuJJkps,2446
277
278
  wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
@@ -279,9 +280,9 @@ wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,
279
280
  wandb/sdk/internal/sender.py,sha256=0xpKjGk4Iu7kakuOM8APiIPF6g9GDOgfK6iSwbSzrdk,67039
280
281
  wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
281
282
  wandb/sdk/internal/settings_static.py,sha256=m97hST3YWmpkmgnXbso0gfPFZ7k7Y4SJSM7NbJIZKTc,3526
282
- wandb/sdk/internal/tb_watcher.py,sha256=95vhk4q0RT1V7QHQAyxy2hreJvpWYv3scTQ1oAh--Xw,18688
283
+ wandb/sdk/internal/tb_watcher.py,sha256=kVVK9sXfqmyugzVo87p4FM9fckvJNkmBVXQFoPRZvjU,18720
283
284
  wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
284
- wandb/sdk/internal/update.py,sha256=4laKC_JnnVObHZCBgNCKKrItY6yAXWeIHttqfydmGKw,3884
285
+ wandb/sdk/internal/update.py,sha256=FrTY_vqZGeirIHjSQvgvJGslII2r7nmUde9_rBQtYyY,3855
285
286
  wandb/sdk/internal/writer.py,sha256=_W3OHh0Xs7x8HqEed20DFNMbh2SkK4P2pQfxbu_B1t0,7394
286
287
  wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
287
288
  wandb/sdk/internal/system/env_probe_helpers.py,sha256=jIy6gbiaq37SzgcBGe6GepJho1VS5qNQThqOmu-g0OA,397
@@ -306,7 +307,7 @@ wandb/sdk/launch/__init__.py,sha256=2B1J5HbUCeGq7gowbBgYy8-gYiD7kvxNFxbSphVjqhI,
306
307
  wandb/sdk/launch/_launch.py,sha256=84FPMRRSbAR0nRdYpjg7CFm_bM0yiJDXfZUV1bJEQwg,11808
307
308
  wandb/sdk/launch/_launch_add.py,sha256=4IwwiQENXV-x4Y5RpzSYYv2B4cGNkV54JWfQmwNKxLA,8792
308
309
  wandb/sdk/launch/_project_spec.py,sha256=lkDkVeAjg8wJylHJHHbFsX3jK3gdXXLj3PzIJIaxRV4,21748
309
- wandb/sdk/launch/create_job.py,sha256=vwIexSB1h9YrB2sSgMr_UlBZGlFJU0XPXfQs5iuzNDM,17298
310
+ wandb/sdk/launch/create_job.py,sha256=7a7KB6-sK7Eu_RrzOjwPdTXQjvpezSPeWZAU1lAC-E0,17367
310
311
  wandb/sdk/launch/errors.py,sha256=CC1M5x7FnyyO3VVcWtqH6LgJReTS-g0nqqC-yKiEr_w,305
311
312
  wandb/sdk/launch/git_reference.py,sha256=6pTVlD7-BICWoraN8PsAzCKu64GV7g_GzqMSD9w3Sos,3758
312
313
  wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
@@ -322,7 +323,7 @@ wandb/sdk/launch/builder/abstract.py,sha256=s8h5rMSf021YFk0bNvAnYSXfh6Yj1f3MwrQx
322
323
  wandb/sdk/launch/builder/build.py,sha256=_QrUMlawsXaEn_NpgeuKRFdzxDnuO4KeUeHtqlcIX7I,10867
323
324
  wandb/sdk/launch/builder/context_manager.py,sha256=p8rVZj7TDolsU4DEY0HRTgXBt_ht31Bv4GODMRxQSms,9618
324
325
  wandb/sdk/launch/builder/docker_builder.py,sha256=0HbPxwWuCHXogmIc6o18nvBaHIx-xcWOQfHnfOJIgcI,6316
325
- wandb/sdk/launch/builder/kaniko_builder.py,sha256=xAxnNRK9RGb_sa5VmCbL8jsBpQqN3xqlpNlMGptXMJs,23666
326
+ wandb/sdk/launch/builder/kaniko_builder.py,sha256=6PrVSvIe78UGmkO8lNW_hEJGIDQyDr7K_zQOxcRjXwA,23918
326
327
  wandb/sdk/launch/builder/noop.py,sha256=A--UUfqkcZxCpTmBKbL6JvkE_emcJRXIkAhAfVv5u7k,1900
327
328
  wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=AuI7GXUoW3MdPWVTkSjhxZQTmW4Rk_nTNllHbZzfoDQ,7316
328
329
  wandb/sdk/launch/builder/templates/dockerfile.py,sha256=X8D6n6tyyh69oNHeFiUp-d8ClEtMpHSjwk45N12CR68,2264
@@ -355,10 +356,10 @@ wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=NUMvKJYSdtrW5KGf0GsLBZWJL0vJbC
355
356
  wandb/sdk/launch/sweeps/utils.py,sha256=TbsAvn3eQnp5js0SvMmPVoP5vaT5bXMPL-ISWyZvVlQ,9837
356
357
  wandb/sdk/lib/__init__.py,sha256=53BA5lIOtUXciXZcPpNsFbp-iUPzI5gQFxplTykNmOE,183
357
358
  wandb/sdk/lib/_settings_toposort_generate.py,sha256=FQZPNGKnUcApOHjT_SYFC5APLxniN2aJJ8UnvdS2dV4,4843
358
- wandb/sdk/lib/_settings_toposort_generated.py,sha256=nyrWX5CwtemVmCSzIFxfsQE6iOu5obC5YEZSrlANzkY,5248
359
+ wandb/sdk/lib/_settings_toposort_generated.py,sha256=0zGTqg3kS1TgaGDXZanO8lyvIFlcKdapeE0W8ELCIjs,5279
359
360
  wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
360
361
  wandb/sdk/lib/_wburls_generated.py,sha256=xK2udBlEmJFNH1WD5VHQKfKIWijlb7zAR0mqC5sa47k,428
361
- wandb/sdk/lib/apikey.py,sha256=RvrD3PuNT3_y_dcJFLUFM1xAzejhXig2YDNdeW5Ucy8,9195
362
+ wandb/sdk/lib/apikey.py,sha256=O9kdOEVAa9EedVZyCsh-CdSKo6T-FjhqGk7-n-jXPYY,9211
362
363
  wandb/sdk/lib/capped_dict.py,sha256=T2CNkmzfWeFgXOsFmx5IDPzgYmP1jxaVAb-nn3-qBBE,820
363
364
  wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
364
365
  wandb/sdk/lib/console.py,sha256=GH32XoKZLFiKsP7Tajtss7dfjnyyo7fLVJzvQ86B8TE,1031
@@ -402,10 +403,10 @@ wandb/sdk/service/_startup_debug.py,sha256=0-evSjgwjb2LiOP952eScrfSWL8PrAXPOKPgZ
402
403
  wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
403
404
  wandb/sdk/service/server.py,sha256=FOWWSk6xxknnATKdi9zkmG4N9rk6BCMpFit7hMV0qOw,4009
404
405
  wandb/sdk/service/server_sock.py,sha256=QIA-2_qdZKmcJSnbaw5ofxKllaW17NXalCUozV_ItmQ,9656
405
- wandb/sdk/service/service.py,sha256=BoM-tURMebqdp04na_sz76zj4BkN08uWIn0yOCSu8DY,9436
406
+ wandb/sdk/service/service.py,sha256=wsxS6vRgXku2ZXocWqB6pRkN82pLtg4HMlqqX-OiptE,9520
406
407
  wandb/sdk/service/service_base.py,sha256=S6et2dWmlHgHvXyHfAiMyU_7cfHwE8ZJp4JhqTpDffM,1288
407
408
  wandb/sdk/service/service_sock.py,sha256=CGpZ3JWG9FQiUkpb-oZCBlv9lX700eYzZ0PaVPzPH9A,2274
408
- wandb/sdk/service/streams.py,sha256=1RJP9fPYGFQUjJelAdCKWIRYoZu_dHVD7JYy_l3yiyQ,14904
409
+ wandb/sdk/service/streams.py,sha256=Vgg1Zk5dYGZYo2sgwwZDaGy8H7qZSlNJN5bVGXjasmU,14822
409
410
  wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
410
411
  wandb/sdk/verify/verify.py,sha256=2C4C_l8EPGBXZw1PyXyHxnbVMuypHQhBkK5vV15xjG0,16521
411
412
  wandb/sklearn/__init__.py,sha256=bDnzytR60EFQblaAZdw76WlJBmfG-O7NrKavIEY97Ck,861
@@ -429,7 +430,7 @@ wandb/sklearn/plot/regressor.py,sha256=04-bp4luoebhm3cVg1w0CfRMMZVSFr5Nob5384QXr
429
430
  wandb/sklearn/plot/shared.py,sha256=1AFangiXD7q_313IznXt6dnx7tp-d-n6nx51TA7R1l8,2733
430
431
  wandb/sync/__init__.py,sha256=BzzKmWKjsrCTBAj24d-lJOEPkFUmTfvaK2MeXplSwcc,93
431
432
  wandb/sync/sync.py,sha256=N0FS2I3-rLBdnJQZo2UH2Ble_ulDdZXSpOi9ABC7EYo,15656
432
- wandb/testing/relay.py,sha256=DTL9-ZQugqiID97PYRkym3zEJYmDeyh-7E0uzqNg0CI,29808
433
+ wandb/testing/relay.py,sha256=d03OUsx6yA9L69-L-ck-qRGKpclGx4OVeYrSLmxyAVQ,30013
433
434
  wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
434
435
  wandb/vendor/gql-0.2.0/setup.py,sha256=_osNap_aCOVvTlDwP9f-aI10TJbpIflxcG6fEQoAxNs,1314
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=cJIaJ2EQso
814
815
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2NpFcq9UVLIS-tsS0TS_Qw8akhKxn2eY,1506
815
816
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
816
817
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
817
- wandb-0.17.6.dist-info/METADATA,sha256=sA30Cq64WviW81dma6PmmSrI8kNJx693Gcv9ydTbjz4,10099
818
- wandb-0.17.6.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
819
- wandb-0.17.6.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
820
- wandb-0.17.6.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
821
- wandb-0.17.6.dist-info/RECORD,,
818
+ wandb-0.17.8.dist-info/METADATA,sha256=2ROke30Ng_6i7uQiaOD7NScB7QPGT53_pVEuGG5Rq2U,9581
819
+ wandb-0.17.8.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
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=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
822
+ wandb-0.17.8.dist-info/RECORD,,
File without changes