wandb 0.17.8rc1__py3-none-win_amd64.whl → 0.17.9__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package_readme.md +47 -53
- wandb/__init__.py +12 -6
- wandb/__init__.pyi +112 -2
- 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 +12 -1
- wandb/integration/openai/fine_tuning.py +5 -5
- wandb/integration/tensorboard/log.py +1 -1
- wandb/proto/v3/wandb_internal_pb2.py +31 -21
- 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 +23 -21
- 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 +23 -21
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_telemetry_pb2.py +12 -12
- wandb/proto/wandb_deprecated.py +4 -0
- wandb/sdk/__init__.py +1 -1
- wandb/sdk/artifacts/artifact.py +9 -11
- wandb/sdk/artifacts/artifact_manifest_entry.py +10 -2
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +31 -0
- wandb/sdk/internal/system/assets/trainium.py +2 -1
- wandb/sdk/internal/tb_watcher.py +1 -1
- wandb/sdk/lib/_settings_toposort_generated.py +5 -3
- wandb/sdk/service/service.py +7 -2
- wandb/sdk/wandb_init.py +5 -1
- wandb/sdk/wandb_manager.py +0 -3
- wandb/sdk/wandb_require.py +22 -1
- wandb/sdk/wandb_run.py +14 -4
- wandb/sdk/wandb_settings.py +32 -10
- wandb/sdk/wandb_setup.py +3 -0
- {wandb-0.17.8rc1.dist-info → wandb-0.17.9.dist-info}/METADATA +48 -54
- {wandb-0.17.8rc1.dist-info → wandb-0.17.9.dist-info}/RECORD +42 -43
- wandb/testing/relay.py +0 -874
- /wandb/{viz.py → sdk/lib/viz.py} +0 -0
- {wandb-0.17.8rc1.dist-info → wandb-0.17.9.dist-info}/WHEEL +0 -0
- {wandb-0.17.8rc1.dist-info → wandb-0.17.9.dist-info}/entry_points.txt +0 -0
- {wandb-0.17.8rc1.dist-info → wandb-0.17.9.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
|
@@ -363,8 +364,11 @@ class SettingsData:
|
|
363
364
|
_start_datetime: str
|
364
365
|
_start_time: float
|
365
366
|
_stats_pid: int # (internal) base pid for system stats
|
366
|
-
|
367
|
-
|
367
|
+
_stats_sampling_interval: float # sampling interval for system stats
|
368
|
+
_stats_sample_rate_seconds: float # badly-named sampling interval, deprecated
|
369
|
+
_stats_samples_to_average: (
|
370
|
+
int # number of samples to average before reporting, deprecated
|
371
|
+
)
|
368
372
|
_stats_join_assets: (
|
369
373
|
bool # join metrics from different assets before sending to backend
|
370
374
|
)
|
@@ -404,8 +408,8 @@ class SettingsData:
|
|
404
408
|
entity: str
|
405
409
|
files_dir: str
|
406
410
|
force: bool
|
407
|
-
fork_from:
|
408
|
-
resume_from:
|
411
|
+
fork_from: RunMoment
|
412
|
+
resume_from: RunMoment
|
409
413
|
git_commit: str
|
410
414
|
git_remote: str
|
411
415
|
git_remote_url: str
|
@@ -475,8 +479,6 @@ class SettingsData:
|
|
475
479
|
sync_dir: str
|
476
480
|
sync_file: str
|
477
481
|
sync_symlink_latest: str
|
478
|
-
system_sample: int
|
479
|
-
system_sample_seconds: int
|
480
482
|
table_raise_on_max_row_limit_exceeded: bool
|
481
483
|
timespec: str
|
482
484
|
tmp_dir: str
|
@@ -618,7 +620,7 @@ class Property:
|
|
618
620
|
|
619
621
|
|
620
622
|
class Settings(SettingsData):
|
621
|
-
"""
|
623
|
+
"""Settings for the W&B SDK."""
|
622
624
|
|
623
625
|
def _default_props(self) -> Dict[str, Dict[str, Any]]:
|
624
626
|
"""Initialize instance attributes (individual settings) as Property objects.
|
@@ -650,7 +652,7 @@ class Settings(SettingsData):
|
|
650
652
|
},
|
651
653
|
_disable_service={
|
652
654
|
"value": False,
|
653
|
-
"preprocessor":
|
655
|
+
"preprocessor": self._process_disable_service,
|
654
656
|
"is_policy": True,
|
655
657
|
},
|
656
658
|
_disable_setproctitle={"value": False, "preprocessor": _str_as_bool},
|
@@ -718,6 +720,7 @@ class Settings(SettingsData):
|
|
718
720
|
"preprocessor": _str_as_json,
|
719
721
|
},
|
720
722
|
_require_core={"value": False, "preprocessor": _str_as_bool},
|
723
|
+
_require_legacy_service={"value": False, "preprocessor": _str_as_bool},
|
721
724
|
_save_requirements={"value": True, "preprocessor": _str_as_bool},
|
722
725
|
_service_wait={
|
723
726
|
"value": 30,
|
@@ -729,6 +732,11 @@ class Settings(SettingsData):
|
|
729
732
|
"auto_hook": True,
|
730
733
|
},
|
731
734
|
_start_datetime={"preprocessor": _datetime_as_str},
|
735
|
+
_stats_sampling_interval={
|
736
|
+
"value": 10.0,
|
737
|
+
"preprocessor": float,
|
738
|
+
"validator": self._validate__stats_sampling_interval,
|
739
|
+
},
|
732
740
|
_stats_sample_rate_seconds={
|
733
741
|
"value": 2.0,
|
734
742
|
"preprocessor": float,
|
@@ -955,8 +963,6 @@ class Settings(SettingsData):
|
|
955
963
|
"value": "latest-run",
|
956
964
|
"hook": lambda x: self._path_convert(self.wandb_dir, x),
|
957
965
|
},
|
958
|
-
system_sample={"value": 15},
|
959
|
-
system_sample_seconds={"value": 2},
|
960
966
|
table_raise_on_max_row_limit_exceeded={
|
961
967
|
"value": False,
|
962
968
|
"preprocessor": _str_as_bool,
|
@@ -1172,12 +1178,28 @@ class Settings(SettingsData):
|
|
1172
1178
|
|
1173
1179
|
return True
|
1174
1180
|
|
1181
|
+
@staticmethod
|
1182
|
+
def _process_disable_service(value: Union[str, bool]) -> bool:
|
1183
|
+
value = _str_as_bool(value)
|
1184
|
+
if value:
|
1185
|
+
wandb.termwarn(
|
1186
|
+
"Disabling the wandb service is deprecated as of version 0.18.0 and will be removed in version 0.19.0.",
|
1187
|
+
repeat=False,
|
1188
|
+
)
|
1189
|
+
return value
|
1190
|
+
|
1175
1191
|
@staticmethod
|
1176
1192
|
def _validate__service_wait(value: float) -> bool:
|
1177
1193
|
if value <= 0:
|
1178
1194
|
raise UsageError("_service_wait must be a positive number")
|
1179
1195
|
return True
|
1180
1196
|
|
1197
|
+
@staticmethod
|
1198
|
+
def _validate__stats_sampling_interval(value: float) -> bool:
|
1199
|
+
if value < 0.1:
|
1200
|
+
raise UsageError("sampling interval must be >= 0.1 seconds")
|
1201
|
+
return True
|
1202
|
+
|
1181
1203
|
@staticmethod
|
1182
1204
|
def _validate__stats_sample_rate_seconds(value: float) -> bool:
|
1183
1205
|
if value < 0.1:
|
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
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.17.
|
3
|
+
Version: 0.17.9
|
4
4
|
Summary: A CLI and library for interacting with the Weights & Biases API.
|
5
5
|
Project-URL: Source, https://github.com/wandb/wandb
|
6
6
|
Project-URL: Bug Reports, https://github.com/wandb/wandb/issues
|
@@ -127,92 +127,86 @@ Description-Content-Type: text/markdown
|
|
127
127
|
|
128
128
|
# Weights and Biases [](https://pypi.python.org/pypi/wandb) [](https://anaconda.org/conda-forge/wandb) [](https://circleci.com/gh/wandb/wandb) [](https://codecov.io/gh/wandb/wandb)
|
129
129
|
|
130
|
-
Use W&B to build better models faster. Track and visualize all the pieces of your machine learning pipeline, from datasets to production models.
|
130
|
+
Use W&B to build better models faster. Track and visualize all the pieces of your machine learning pipeline, from datasets to production machine learning models. Get started with W&B today, [sign up for an account!](https://wandb.com?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=readme)
|
131
131
|
|
132
|
-
- Quickly identify model regressions. Use W&B to visualize results in real time, all in a central dashboard.
|
133
|
-
- Focus on the interesting ML. Spend less time manually tracking results in spreadsheets and text files.
|
134
|
-
- Capture dataset versions with W&B Artifacts to identify how changing data affects your resulting models.
|
135
|
-
- Reproduce any model, with saved code, hyperparameters, launch commands, input data, and resulting model weights.
|
136
132
|
|
137
|
-
[Sign up for a free account →](https://wandb.ai/login?signup=true)
|
138
133
|
|
139
|
-
|
134
|
+
See the [W&B Developer Guide](https://docs.wandb.ai/?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=documentation) and [API Reference Guide](https://docs.wandb.ai/ref?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=documentation) for a full technical description of the W&B platform.
|
140
135
|
|
141
|
-
|
142
|
-
- Search, compare, and visualize training runs
|
143
|
-
- Analyze system usage metrics alongside runs
|
144
|
-
- Collaborate with team members
|
145
|
-
- Replicate historic results
|
146
|
-
- Run parameter sweeps
|
147
|
-
- Keep records of experiments available forever
|
136
|
+
|
148
137
|
|
149
|
-
|
138
|
+
# Quickstart
|
150
139
|
|
151
|
-
|
140
|
+
Get started with W&B in four steps:
|
141
|
+
|
142
|
+
1. First, sign up for a [W&B account](https://wandb.ai/login?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=quickstart).
|
143
|
+
|
144
|
+
2. Second, install the W&B SDK with [pip](https://pip.pypa.io/en/stable/). Navigate to your terminal and type the following command:
|
152
145
|
|
153
146
|
```shell
|
154
147
|
pip install wandb
|
155
148
|
```
|
156
149
|
|
157
|
-
|
150
|
+
3. Third, log into W&B:
|
158
151
|
|
159
152
|
```python
|
160
|
-
|
153
|
+
wandb.login()
|
154
|
+
```
|
161
155
|
|
162
|
-
|
163
|
-
args = ...
|
156
|
+
4. Use the example code snippet below as a template to integrate W&B to your Python script:
|
164
157
|
|
165
|
-
|
166
|
-
wandb
|
158
|
+
```python
|
159
|
+
import wandb
|
167
160
|
|
161
|
+
# Start a W&B Run with wandb.init
|
162
|
+
run = wandb.init(project="my_first_project")
|
168
163
|
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
epoch, loss, val_loss = ...
|
173
|
-
# Framework agnostic / custom metrics
|
174
|
-
wandb.log({"epoch": epoch, "loss": loss, "val_loss": val_loss})
|
175
|
-
```
|
164
|
+
# Save model inputs and hyperparameters in a wandb.config object
|
165
|
+
config = run.config
|
166
|
+
config.learning_rate = 0.01
|
176
167
|
|
177
|
-
|
168
|
+
# Model training code here ...
|
178
169
|
|
179
|
-
|
180
|
-
|
170
|
+
# Log metrics over time to visualize performance with wandb.log
|
171
|
+
for i in range(10):
|
172
|
+
run.log({"loss": ...})
|
173
|
+
|
174
|
+
# Mark the run as finished, and finish uploading all data
|
175
|
+
run.finish()
|
181
176
|
```
|
182
177
|
|
183
|
-
|
178
|
+
For example, if the preceding code was stored in a script called train.py:
|
184
179
|
|
185
|
-
|
180
|
+
```shell
|
181
|
+
python train.py
|
182
|
+
```
|
186
183
|
|
187
|
-
|
184
|
+
You will see a URL in your terminal logs when your script starts and finishes. Data is staged locally in a directory named _wandb_ relative to your script. Navigate to the W&B App to view a dashboard of your first W&B Experiment. Use the W&B App to compare multiple experiments in a unified place, dive into the results of a single run, and much more!
|
188
185
|
|
189
|
-
|
186
|
+
|
190
187
|
|
191
|
-
|
188
|
+
# Integrations
|
192
189
|
|
193
|
-
|
194
|
-
[](https://youtu.be/EeqhOSvNX-A)
|
195
|
-
[Introduction video →](https://youtu.be/EeqhOSvNX-A)
|
190
|
+
Use your favorite framework with W&B. W&B integrations make it fast and easy to set up experiment tracking and data versioning inside existing projects. For more information on how to integrate W&B with the framework of your choice, see [W&B Integrations](https://docs.wandb.ai/guides/integrations) in the W&B Developer Guide.
|
196
191
|
|
197
|
-
|
192
|
+
|
198
193
|
|
199
|
-
|
194
|
+
# Contribution guidelines
|
195
|
+
Weights & Biases ❤️ open source, and we welcome contributions from the community! See the [Contribution guide](https://github.com/wandb/wandb/blob/main/CONTRIBUTING.md) for more information on the development workflow and the internals of the wandb library. For wandb bugs and feature requests, visit [GitHub Issues](https://github.com/wandb/wandb/issues) or contact support@wandb.com.
|
200
196
|
|
201
|
-
|
197
|
+
|
202
198
|
|
203
|
-
|
199
|
+
# Academic Researchers
|
200
|
+
Reach out to W&B Support at support@wandb.com to get a [free academic license](https://www.wandb.com/academic) for you and your research group.
|
204
201
|
|
205
|
-
|
202
|
+
|
206
203
|
|
207
|
-
#
|
208
|
-
If you'd like a free academic account for your research group, [reach out to us →](https://www.wandb.com/academic)
|
204
|
+
# W&B Community
|
209
205
|
|
210
|
-
|
211
|
-
[](https://www.wandb.com/academic)
|
206
|
+
Be a part of the growing W&B Community and interact with the W&B team in our [Discord](https://wandb.me/discord). Stay connected with the latest ML updates and tutorials with [W&B Fully Connected](https://wandb.ai/fully-connected).
|
212
207
|
|
213
|
-
|
214
|
-
Got questions, feedback or want to join a community of ML engineers working on exciting projects?
|
208
|
+
|
215
209
|
|
216
|
-
|
210
|
+
# License
|
217
211
|
|
218
|
-
[
|
212
|
+
[MIT License](https://github.com/wandb/wandb/blob/main/LICENSE)
|
@@ -1,16 +1,15 @@
|
|
1
|
-
package_readme.md,sha256=
|
2
|
-
wandb/__init__.py,sha256=
|
3
|
-
wandb/__init__.pyi,sha256=
|
1
|
+
package_readme.md,sha256=l98RmjAb67Bg8obZQw8UzDVOCEWzBHYFNwZd6SMx4SQ,3953
|
2
|
+
wandb/__init__.py,sha256=mdyBvunG4z8DdkdIl99zUXval_Smr3sToBHqELW_KvM,7357
|
3
|
+
wandb/__init__.pyi,sha256=pyxWz3xFLD0M2GFBedLwvwJBMDD6hkc8oMoaCgLRbRs,42242
|
4
4
|
wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
|
5
5
|
wandb/_globals.py,sha256=NwgYSB2tl2Z5t1Tn1xpLtfkcmPy_dF01u-xxgnCbzoc,721
|
6
|
-
wandb/data_types.py,sha256=
|
7
|
-
wandb/env.py,sha256=
|
6
|
+
wandb/data_types.py,sha256=STLXycfB0twDwS6ZhZjNm8KY7UQoX4Mu2lehs0hOfmc,75323
|
7
|
+
wandb/env.py,sha256=vmSEMKZv8HW05hW9bfdj98feQF5urCqto4QpwL9S4aY,14514
|
8
8
|
wandb/jupyter.py,sha256=k35p4hRr_lwMyyVO1ahDuB6EO9GmU4Lt8GGCWnMtDP0,17454
|
9
9
|
wandb/magic.py,sha256=grKCI_AKHF4vYtTXS-Ts7FeK3sdFB8t2JRqmFwjR-F0,62
|
10
10
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
11
|
wandb/trigger.py,sha256=d9TizmMPsvr0k9_3SBK2nq-Mb95bTzf9DZ1aE_F0ASo,644
|
12
12
|
wandb/util.py,sha256=EjXi4XTOeogINglkBDOQiAJI8Got_cGcfg_RO6H4Pc8,63419
|
13
|
-
wandb/viz.py,sha256=o5K7rLL1we5qw9XIxfzk1nyNmf-Y6bKS0UKpWpQAUGw,3578
|
14
13
|
wandb/wandb_agent.py,sha256=QEnqQpVFY39FHnsutVLjkNkk1mahdpErLe_IQC1S6wU,21705
|
15
14
|
wandb/wandb_controller.py,sha256=mIwttTH5-b0O_kxlcpZRxI17L5PbB1KkKWFDwgbi0Xg,25525
|
16
15
|
wandb/wandb_run.py,sha256=EyOjZsthYkfV5SSorQIFmEkszZwvKfZKZCxIwzoM2Oc,164
|
@@ -50,7 +49,7 @@ wandb/apis/reports/v1/__init__.py,sha256=dat5IoxIT4Ds0gJYh7kd_u01Lk2ArqgPtsF9PuV
|
|
50
49
|
wandb/apis/reports/v2/__init__.py,sha256=z6cC7mTR35UPLYFwjnDZxodFoOO7KcFWOwePJqwH2iI,270
|
51
50
|
wandb/apis/workspaces/__init__.py,sha256=l7rmQGzeR4XpAKiq5idMMPulve07fgDIMdl8MIQypFk,272
|
52
51
|
wandb/beta/workflows.py,sha256=ENy_lmIyn3k_FHdD2ZO8HBaXdeoLrsPVbEfL_KYW8Ps,10527
|
53
|
-
wandb/bin/wandb-core,sha256=
|
52
|
+
wandb/bin/wandb-core,sha256=ve0HukJDZUVqHyuEn1ciRZd-rP1qmlatumaWG8YTOG8,11382784
|
54
53
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
54
|
wandb/cli/cli.py,sha256=KH4tpD9x8Kpt8sg_FaGnP2Xr4huvoVNiApzVLijlhJw,101301
|
56
55
|
wandb/docker/__init__.py,sha256=Wkv5q5xCf9MAzLjGzg_QpuatP6pURCoKsiWpTj7G1jM,10894
|
@@ -85,11 +84,11 @@ wandb/integration/gym/__init__.py,sha256=PIeFnDO_doNmGsD2Jo-_RS0ybF_oeytxDWUNNeY
|
|
85
84
|
wandb/integration/huggingface/__init__.py,sha256=lq8UoDQn3w7Rt3ELTMXmhYPQoNX03tYnMDaHUV9VRBs,60
|
86
85
|
wandb/integration/huggingface/huggingface.py,sha256=S6FhJvsJFJbgsuj4eAMeTn0aFl-PExdhpwo1FRFGwwc,461
|
87
86
|
wandb/integration/huggingface/resolver.py,sha256=5i7-SN6t-7cMYCAODw5Jlsxtw5v_aWlpvZS3Gy8atFU,8071
|
88
|
-
wandb/integration/keras/__init__.py,sha256=
|
89
|
-
wandb/integration/keras/keras.py,sha256
|
87
|
+
wandb/integration/keras/__init__.py,sha256=wS3TotWqE93ppCG-LcpIYQrh-d14jiuZtDseJ1LOiGk,356
|
88
|
+
wandb/integration/keras/keras.py,sha256=-SI1PKijMQ7TR7TamxlqNpFjbF5eD8r6erezvdrp37Y,45246
|
90
89
|
wandb/integration/keras/callbacks/__init__.py,sha256=c9Wkvv3i-Xz40SDBWHHDhPod8y26HdO0vq1jF6tTlro,228
|
91
|
-
wandb/integration/keras/callbacks/metrics_logger.py,sha256=
|
92
|
-
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=
|
90
|
+
wandb/integration/keras/callbacks/metrics_logger.py,sha256=CL6rM4gUXUeeMOSJC_zisTnEp5EUgeYmppMt6YYseyI,5174
|
91
|
+
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=K10UNmF8oaNGw_Q6yJeLfS4gJf0i9j2fL1bKTrPHX1Y,8860
|
93
92
|
wandb/integration/keras/callbacks/tables_builder.py,sha256=WZhGAZu0OVavItPLa8jBk3z94jeZCg70ASDsbwy5vMc,9066
|
94
93
|
wandb/integration/kfp/__init__.py,sha256=wXFFdr8IgU_YNGovusyQDuus09mgOiofLk4YRptvR2c,142
|
95
94
|
wandb/integration/kfp/helpers.py,sha256=M_IacPmgELzwbfQZ3NFjQFuhm3lktZjgSeJGWJj1Etg,1044
|
@@ -104,7 +103,7 @@ wandb/integration/lightning/fabric/logger.py,sha256=lz3uq5pDmruTuAv0CJ1X57KyjMpU
|
|
104
103
|
wandb/integration/metaflow/__init__.py,sha256=yoTkbO85zdlJwL5f8HmXXVVNDTcIPyYwuHNhysTzkv4,112
|
105
104
|
wandb/integration/metaflow/metaflow.py,sha256=EOHlQWXdCKv-pmJQ9gxFOSv5bciLbgAe8tb4LAPwie8,12280
|
106
105
|
wandb/integration/openai/__init__.py,sha256=negbYxbmhe4hA7Zl41FA5FnZ1JP6G6IYUTK4lS4YSqs,69
|
107
|
-
wandb/integration/openai/fine_tuning.py,sha256=
|
106
|
+
wandb/integration/openai/fine_tuning.py,sha256=k58OEjNRrHuiwCzmXRhNIb18Jz8QDjorv9_hZZC0r7s,19035
|
108
107
|
wandb/integration/openai/openai.py,sha256=43Lm8sk_VksyRf8g6TJqbNlTlwA3ujaZxF5wfhqtjQk,518
|
109
108
|
wandb/integration/openai/resolver.py,sha256=NqntihlyuiEqNYrpxnRMSVWdVPSAcQxFfJJwAXBkPCc,8404
|
110
109
|
wandb/integration/prodigy/__init__.py,sha256=yA8FAF3nqy5AnpzLYRCH3DNwmnXLYsJ55RY-G2m1kWg,69
|
@@ -118,7 +117,7 @@ wandb/integration/sagemaker/resources.py,sha256=4pbopJBHyTXn1RuwsGeHyYIluQnBzOGv
|
|
118
117
|
wandb/integration/sb3/__init__.py,sha256=X919ypvknbvlmHJrSMGnTk81f9bUH3eil8Ac6l8vXRA,63
|
119
118
|
wandb/integration/sb3/sb3.py,sha256=lFx5P3KCpE4MfFfE-Dy7cSa0vkk4hC3Bxwo_JmKOqPc,5063
|
120
119
|
wandb/integration/tensorboard/__init__.py,sha256=YhRPA469tZPMdQ5z0jxVYboGFvrBbe7OI7djfqh_veQ,223
|
121
|
-
wandb/integration/tensorboard/log.py,sha256=
|
120
|
+
wandb/integration/tensorboard/log.py,sha256=B2qhv0SUlbzZeEKxdri-nXK9LuMHfJN9cf_NRFZVL1E,14670
|
122
121
|
wandb/integration/tensorboard/monkeypatch.py,sha256=Li7Wz9mXnY9CcvglXypLoJReOnSfWWNuFVtDlnfOrXk,7013
|
123
122
|
wandb/integration/tensorflow/__init__.py,sha256=vc4iWvSGqgLhucdrUisgsA3Xy2KU63nkcYN0gKD_eZs,130
|
124
123
|
wandb/integration/tensorflow/estimator_hook.py,sha256=hZn70hR-nZT3RspXqCFatQx3ePL7qpd0ZniQRqhn1eg,1810
|
@@ -151,7 +150,7 @@ wandb/plot/scatter.py,sha256=isERKmGw1CMZ51XArgfRPecEZmx31BrzOzi7XXcF4QU,1033
|
|
151
150
|
wandb/plot/utils.py,sha256=VcEpRjRT9VVyYAjKRIyZVHCwypgmKtsciAMdi-TIqe4,6986
|
152
151
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
153
152
|
wandb/proto/wandb_base_pb2.py,sha256=ghevLr0QyHSMeS6QWyR9EbQC2L8wFLBNm97R_fbkYhk,317
|
154
|
-
wandb/proto/wandb_deprecated.py,sha256=
|
153
|
+
wandb/proto/wandb_deprecated.py,sha256=E01Q8a1DMcHr41L5TeUv-Q8XaqFnkF6uwc6dTFvDMw0,2041
|
155
154
|
wandb/proto/wandb_generate_deprecated.py,sha256=TI_VzIaVnXbkd4B889pThMvXS1Xbjhj90ZUzdG3B4g0,1190
|
156
155
|
wandb/proto/wandb_generate_proto.py,sha256=FJDGS38j8H6yZYqsy1-19RcdmvdnXT4XP3Eq4-1bxI8,1327
|
157
156
|
wandb/proto/wandb_internal_pb2.py,sha256=he7ajUeCki-mFVaFAE4JjmbQh-ZhWDK5AKGGAl7fbrw,558
|
@@ -160,45 +159,45 @@ wandb/proto/wandb_settings_pb2.py,sha256=Aq7nH9PsYXcPKFOPi0Oh2CAaCUpDoPfedycOleI
|
|
160
159
|
wandb/proto/wandb_telemetry_pb2.py,sha256=bNLhk5I9SDqNvzxi_anYorfvZjv8nG4cMZQvDS0BT9Q,332
|
161
160
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
161
|
wandb/proto/v3/wandb_base_pb2.py,sha256=TfmnqqxmajAojyOq2NgCBbyybb0DZQViQCw1H0WzXo4,2302
|
163
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
162
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=x3_fAxq6PyXI5EC8WulHd2VpzaMMZyjgIsTWl_qnLqo,109366
|
164
163
|
wandb/proto/v3/wandb_server_pb2.py,sha256=_UR_gBIiHMYiG4CjU2zTKD16Qrd0dXqslA_7VeqXpb8,13838
|
165
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
166
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
164
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=b5uILaS8eDJF7-p-UFszf5jT_faUZDz-tF9rebrMQhY,19874
|
165
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=8cxU3RwyBdBne9jOgr55Q7fNNkC87WvU3ueF9wY5aEA,13754
|
167
166
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
167
|
wandb/proto/v4/wandb_base_pb2.py,sha256=C-hDafnFQQtkzyq4MkgwenHl4CJqJ6z7itKjLnFis54,1344
|
169
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
168
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=rc4HmI207IXzQC0sGUflen2ut_TBBpd_-qugYw8dGt8,49663
|
170
169
|
wandb/proto/v4/wandb_server_pb2.py,sha256=0m6kJn4oG2RAdi1WFR9g6baiZfeB25F3snCIFhl90k8,6053
|
171
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
172
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
170
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=pARfKFz6YOqgFw5Z0wc5BHH-rcZ18da91l-BHW6onLs,16538
|
171
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=yCQmotRThmnjbravlbl900QlLKL0sihGgIQ5W099QSU,11136
|
173
172
|
wandb/proto/v5/wandb_base_pb2.py,sha256=JegTdMe2YWCrglu-GpI2lVqFxRHoP8hQc2n8bPpv1zE,1471
|
174
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
173
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=qy20Wxyez04afy8uf3tOh10Wkc6eEVOfcbRF_rA6M-g,53723
|
175
174
|
wandb/proto/v5/wandb_server_pb2.py,sha256=icyGXLmqZLS6gDQsdYO_G75pXVII_JweUNIa_HOaWnA,6540
|
176
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
177
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
178
|
-
wandb/sdk/__init__.py,sha256=
|
175
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=7MmEMDpZDR1-MeqA62Zwt4Qrnr-dGVPrVad7L9OequM,16847
|
176
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=q31eyUWPnxpGWRF809HWou6Qu4l6UjxPJScF44-OXrE,11383
|
177
|
+
wandb/sdk/__init__.py,sha256=Xfy69O6Lk3HgzSA03Q6CYVx3J_TJEQcuwISGsOTwXzs,846
|
179
178
|
wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
|
180
179
|
wandb/sdk/wandb_config.py,sha256=TNfyIVPhWKMxBOwHndOGr44r_3VhdvdDo0ymelBXIqs,11176
|
181
180
|
wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
|
182
|
-
wandb/sdk/wandb_init.py,sha256=
|
181
|
+
wandb/sdk/wandb_init.py,sha256=SOxKzNHec7i1_n5-2Jed0lOKqoyB_huyJ8-jYWCf-70,52707
|
183
182
|
wandb/sdk/wandb_login.py,sha256=j_ElYf9eBgMGTfQ1X0HCe_DDiO8eejbDUJ18JwW8IEM,11539
|
184
|
-
wandb/sdk/wandb_manager.py,sha256=
|
183
|
+
wandb/sdk/wandb_manager.py,sha256=PyNwmr6R23l4e2afUfAwcw1zIRghYRR_N4Y6HKROfxY,7116
|
185
184
|
wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
|
186
|
-
wandb/sdk/wandb_require.py,sha256=
|
185
|
+
wandb/sdk/wandb_require.py,sha256=wcdFbi0aT6z0QjjMr8Rm4VLm_4Td3dDM1nsLFZ43YKE,3810
|
187
186
|
wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
|
188
|
-
wandb/sdk/wandb_run.py,sha256=
|
189
|
-
wandb/sdk/wandb_settings.py,sha256=
|
190
|
-
wandb/sdk/wandb_setup.py,sha256=
|
187
|
+
wandb/sdk/wandb_run.py,sha256=nd8O0Ur33QkSz27g8jVclDjmgJHkyt0P6F8wHpP72q0,168639
|
188
|
+
wandb/sdk/wandb_settings.py,sha256=lbUfy4J4T4UlfRSoCFVcTvk2oEtUvZPrFS4IIRJTdSw,78244
|
189
|
+
wandb/sdk/wandb_setup.py,sha256=s3KlYrIp4BU0Tsv3lD8pl9zfv4zNIsRHPBx3Y4tsglg,13604
|
191
190
|
wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
|
192
191
|
wandb/sdk/wandb_sweep.py,sha256=sq0jk4uuygoxkIksrv0nvWyABcJHe8ZuA-kCv0tPyno,4119
|
193
192
|
wandb/sdk/wandb_sync.py,sha256=Y_eZ_xW3q9oRAlFUo7s9n2V55z6SP-rd5xr5g6HDKR0,2348
|
194
193
|
wandb/sdk/wandb_watch.py,sha256=--65AwGFLLj1sSUvI4cZunjvhdxXnFTktpzaxEFtdJk,4026
|
195
194
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
196
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
195
|
+
wandb/sdk/artifacts/artifact.py,sha256=Sscbfn2rGGTyDsCNfbT4YAjLBxc8vVq18MGafsjrq1A,91247
|
197
196
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
|
198
197
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=rjIKi5oBrev_NVgI60oydvWGl95KsBmYGYeax1XsKFY,10091
|
199
198
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=6k5VvyWyRfMCJsBDST3IBs91uctfIZdxZ74DJg-Pa00,488
|
200
199
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=Pdm08YTD-73vsqZRTT0cpFejRkdZJkG0lQYlUwv4HJ8,2575
|
201
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
200
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=zEO7-V4uEDMqIcHUNhy795e1R8WXE8RHH-mawBSQ9lw,8671
|
202
201
|
wandb/sdk/artifacts/artifact_saver.py,sha256=lGy_3NwreN53_q7cmdiiXJL5yTA2QEQXidWO5vHTxGc,9546
|
203
202
|
wandb/sdk/artifacts/artifact_state.py,sha256=4-89kUayoLpJ1EHQTnex_PEEh-Y2F8Aq5_yQ2il7Sao,247
|
204
203
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=5h2GzpVsw1uA3h3piuYr-qU4qcQZDAOz3X5QcSSxnfo,93
|
@@ -211,7 +210,7 @@ wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
211
210
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=yPCqepEFwlfKIaCJCSDFex8aaHPELLia1AYbd-HIwVU,3523
|
212
211
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
213
212
|
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=svpl0KIexXnBiVqLDq7-nQcDUzr9y8XuXO4LFICRrKU,8328
|
214
|
-
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=
|
213
|
+
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=0jbBGlF3WSp_eOpTYpNLvm8PiCodnXBRJkV44_83zV8,8823
|
215
214
|
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=LK2Mvq4Pmiwos5x_-ueMRIEKryva2hnTWvvTStmyrzk,4206
|
216
215
|
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=8BcJc_8P5WYxM9xqZOoZhcbH_4xCoqhNzpWh41jLOUA,5474
|
217
216
|
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=hrX75b3Ro-M2OC5ZCpzaiS_02b8IKRjIpx89XLLGrVE,1930
|
@@ -280,7 +279,7 @@ wandb/sdk/internal/sample.py,sha256=QE80NZeW-UsUZBlnf9hG_2KNIZWmLzEpZStYTuL4fOI,
|
|
280
279
|
wandb/sdk/internal/sender.py,sha256=FYvi9I7jAEXINGs8N1GoU6b485T6YgijkahNKgpNlB8,68767
|
281
280
|
wandb/sdk/internal/sender_config.py,sha256=LZaQY4_bzb9003D2j6aynGqv-Mr2GwUGcNmnQrhJOJw,6964
|
282
281
|
wandb/sdk/internal/settings_static.py,sha256=tUieif_B36dCFqJKwfcr4bLF0KVgFhGN6q-vg3orRzw,3616
|
283
|
-
wandb/sdk/internal/tb_watcher.py,sha256=
|
282
|
+
wandb/sdk/internal/tb_watcher.py,sha256=8nWGmp0mR2TBa_ZjJgo5VWlYKnR76Sifm7tGpOYwYG8,19246
|
284
283
|
wandb/sdk/internal/thread_local_settings.py,sha256=f6uzjTa0d6twZ9aFHzdUlUqv3gy6AnbOZoWYm95DxKA,545
|
285
284
|
wandb/sdk/internal/update.py,sha256=PaIDapIkR7PqH__8WgQh3s0b_9rlrfCeMJpbTVRqAx4,3968
|
286
285
|
wandb/sdk/internal/writer.py,sha256=Vz2RvD74NVtREI93GvXyFPbJlCBJ9tbCWGI1Ca0eEfc,7600
|
@@ -302,7 +301,7 @@ wandb/sdk/internal/system/assets/memory.py,sha256=7sEmPUferQn40UU8f5hf9Xc6Ti4FH6
|
|
302
301
|
wandb/sdk/internal/system/assets/network.py,sha256=3tUX4iALSI5nphsEj8Ck0TlAVHn0Plw93bf_4z8W4D4,3517
|
303
302
|
wandb/sdk/internal/system/assets/open_metrics.py,sha256=eyzVBj3kbVtG-1SpEP23OPJauASHCGZoY2oDvQjo6TM,10040
|
304
303
|
wandb/sdk/internal/system/assets/tpu.py,sha256=PeHgZ_KntzMeRvEXsutRKhYgYjITxPCx6lrSsOtm7q4,5055
|
305
|
-
wandb/sdk/internal/system/assets/trainium.py,sha256=
|
304
|
+
wandb/sdk/internal/system/assets/trainium.py,sha256=XbjhBwLZiZ64InsylomhTkf8m-jJY3n0Q6gNtoYdfZk,13854
|
306
305
|
wandb/sdk/launch/__init__.py,sha256=tsiLFVElWgdxjfRWGj0V2MOi0oaggmHpYwzc_Ful1qw,363
|
307
306
|
wandb/sdk/launch/_launch.py,sha256=bJnB_p0O2FojyNN_ZXGjT4_pIlX-wHc0kL0O373YDBk,12138
|
308
307
|
wandb/sdk/launch/_launch_add.py,sha256=bE3o3UzwJsoN50IysEcqU8TIVCWad73gh8dcARPEs08,9047
|
@@ -356,7 +355,7 @@ wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=KeRVj_cjabVR6ZY4Qx5IqiH3nQHeT8
|
|
356
355
|
wandb/sdk/launch/sweeps/utils.py,sha256=MJCKDZY7SQ2Wrv1EWUCFo1YflMkuJAYIZFAswP0VCDw,10153
|
357
356
|
wandb/sdk/lib/__init__.py,sha256=_sOt85qPxtPyM_LaN0IE6dO1CImzwXJXzVHC7R24VBE,188
|
358
357
|
wandb/sdk/lib/_settings_toposort_generate.py,sha256=eA4xFE750evX-Upox1SpXvAoNffNAy7_C-9ydyeC4Qw,5002
|
359
|
-
wandb/sdk/lib/_settings_toposort_generated.py,sha256=
|
358
|
+
wandb/sdk/lib/_settings_toposort_generated.py,sha256=gcd_y4jnW8P9ZN770Smp1KQ8uHa4P6dWS29YxmcgG2o,5652
|
360
359
|
wandb/sdk/lib/_wburls_generate.py,sha256=qW6UXaZOHKT_z13MW_Lt3KVhfswutNoNydFs69OwgqI,465
|
361
360
|
wandb/sdk/lib/_wburls_generated.py,sha256=ZDmX_ZYGg5Ag3WNu_Ti-vLB3ctN0NNr-dYkiCiXPQW4,450
|
362
361
|
wandb/sdk/lib/apikey.py,sha256=DxCVjZQ8mCgxfxAojREqzDhn1Y4PTIMAlSGj0Qm6H8Y,9484
|
@@ -397,13 +396,14 @@ wandb/sdk/lib/telemetry.py,sha256=1_QPck47Zj0b5dA37lIfpev1tHaHJHoNaiXKjyvdPoA,28
|
|
397
396
|
wandb/sdk/lib/timed_input.py,sha256=XF03SXTQj0AysHiIV-LKtbwxtSUx0E7xts7zDPs9kJQ,3362
|
398
397
|
wandb/sdk/lib/timer.py,sha256=Ar1t8f3OFAA4PB2fB2MT9D41y3g2Or56wSAYezvdXqo,459
|
399
398
|
wandb/sdk/lib/tracelog.py,sha256=IvK-t8cQ4AIMZ0hXBqDkJZdX-fBNSwZ422zsRw_nT5M,7827
|
399
|
+
wandb/sdk/lib/viz.py,sha256=o5K7rLL1we5qw9XIxfzk1nyNmf-Y6bKS0UKpWpQAUGw,3578
|
400
400
|
wandb/sdk/lib/wburls.py,sha256=m2CWuFtFPD9R4SzEEsKN-iSwCKiKr6dhOi8_WYrvzHY,1481
|
401
401
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
402
402
|
wandb/sdk/service/_startup_debug.py,sha256=piYn6Jg-uR5W-EkablqikEpenyYPQuoQynrPq-iccdo,610
|
403
403
|
wandb/sdk/service/port_file.py,sha256=aYA40Y8d78NMwKuJRbG3aL4J4-xH8l8UvzPFFfrwQCY,1599
|
404
404
|
wandb/sdk/service/server.py,sha256=C_HDOBV8-SIB6pZrTUCR1lDGsd3ih5LSYw_BAAFjrmw,4128
|
405
405
|
wandb/sdk/service/server_sock.py,sha256=jG3ZCQcVUdr4LnTgF0j6Gds1M_wKrPbvjZUocSSWQT8,9932
|
406
|
-
wandb/sdk/service/service.py,sha256=
|
406
|
+
wandb/sdk/service/service.py,sha256=QFTvIZIdxPX1dckBo7aADsvEYA1rjiIbMhgvXbJ7E0g,9792
|
407
407
|
wandb/sdk/service/service_base.py,sha256=Mg2zpiOUOEo5T0rZIuZIkwxEIL_ZNO5Pjbgi9lctFPA,1338
|
408
408
|
wandb/sdk/service/service_sock.py,sha256=-zhAl031NNWwsBkOataxfKrBZdlJPttcHb2ujcgySxE,2344
|
409
409
|
wandb/sdk/service/streams.py,sha256=LtBxli28GEKeK7fMXmqivt_ru2Ofn9Gmr76yPwcus3Y,15246
|
@@ -430,7 +430,6 @@ wandb/sklearn/plot/regressor.py,sha256=60Gaj3iKPORvFT0QM7CtdfvI86AuxoTmFVVNPJp7K
|
|
430
430
|
wandb/sklearn/plot/shared.py,sha256=4fKeR4DhTaTNt-0tPSRKFOt5YuKgK6lGQz4mCm6xJDc,2824
|
431
431
|
wandb/sync/__init__.py,sha256=4c2ia5m6KHQo4xU_kl-eQxfm22oiXOCiVYSqV3_vBLk,96
|
432
432
|
wandb/sync/sync.py,sha256=6-6uhJKRXQrJL7uDa0TpxnrpGwLYUtJIAUGdHIBV9G4,16099
|
433
|
-
wandb/testing/relay.py,sha256=0aKZ5P4d71cJOrUf_Uc0Sqzoe7Qmjd26PVvp5uIcYaA,30682
|
434
433
|
wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
435
434
|
wandb/vendor/gql-0.2.0/setup.py,sha256=kBbCby6fkBsmi9c2XtO2lGqfuYZvwLp6KVL1VtZSBp8,1354
|
436
435
|
wandb/vendor/gql-0.2.0/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -815,8 +814,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
|
|
815
814
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
|
816
815
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
|
817
816
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
|
818
|
-
wandb-0.17.
|
819
|
-
wandb-0.17.
|
820
|
-
wandb-0.17.
|
821
|
-
wandb-0.17.
|
822
|
-
wandb-0.17.
|
817
|
+
wandb-0.17.9.dist-info/METADATA,sha256=Da1MFZptfseTdoVTr_L-cI8IeXlUTOdZeBPhgyz74J8,9581
|
818
|
+
wandb-0.17.9.dist-info/WHEEL,sha256=M1tmngCHfER8pIPuS8Dt7mqF1TawUl-fJoa23auO3MM,93
|
819
|
+
wandb-0.17.9.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
820
|
+
wandb-0.17.9.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
|
821
|
+
wandb-0.17.9.dist-info/RECORD,,
|