wandb 0.17.8rc1__py3-none-win_amd64.whl → 0.18.0__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 +8 -7
- wandb/__init__.pyi +134 -14
- wandb/analytics/sentry.py +1 -1
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +15 -10
- wandb/data_types.py +1 -0
- wandb/env.py +4 -3
- 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 -4
- wandb/jupyter.py +18 -3
- wandb/proto/v3/wandb_internal_pb2.py +238 -228
- 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 +230 -228
- 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 +230 -228
- 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/_validators.py +45 -0
- wandb/sdk/artifacts/artifact.py +109 -56
- wandb/sdk/artifacts/artifact_manifest_entry.py +10 -2
- wandb/sdk/artifacts/artifact_saver.py +6 -0
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +31 -0
- wandb/sdk/interface/interface.py +7 -4
- wandb/sdk/internal/internal_api.py +16 -6
- wandb/sdk/internal/sender.py +1 -0
- wandb/sdk/internal/system/assets/gpu_amd.py +11 -2
- wandb/sdk/internal/system/assets/trainium.py +2 -1
- wandb/sdk/internal/tb_watcher.py +1 -1
- wandb/sdk/launch/inputs/internal.py +2 -2
- wandb/sdk/lib/_settings_toposort_generated.py +3 -3
- wandb/sdk/service/server_sock.py +1 -1
- wandb/sdk/service/service.py +6 -2
- wandb/sdk/wandb_init.py +12 -3
- wandb/sdk/wandb_login.py +1 -0
- wandb/sdk/wandb_manager.py +0 -3
- wandb/sdk/wandb_require.py +7 -2
- wandb/sdk/wandb_run.py +40 -14
- wandb/sdk/wandb_settings.py +32 -12
- wandb/sdk/wandb_setup.py +3 -0
- {wandb-0.17.8rc1.dist-info → wandb-0.18.0.dist-info}/METADATA +52 -58
- {wandb-0.17.8rc1.dist-info → wandb-0.18.0.dist-info}/RECORD +54 -54
- wandb/testing/relay.py +0 -874
- /wandb/{viz.py → sdk/lib/viz.py} +0 -0
- {wandb-0.17.8rc1.dist-info → wandb-0.18.0.dist-info}/WHEEL +0 -0
- {wandb-0.17.8rc1.dist-info → wandb-0.18.0.dist-info}/entry_points.txt +0 -0
- {wandb-0.17.8rc1.dist-info → wandb-0.18.0.dist-info}/licenses/LICENSE +0 -0
wandb/sdk/wandb_settings.py
CHANGED
@@ -355,7 +355,7 @@ class SettingsData:
|
|
355
355
|
] # custom proxy servers for the requests to W&B [scheme -> url]
|
356
356
|
_python: str
|
357
357
|
_runqueue_item_id: str
|
358
|
-
|
358
|
+
_require_legacy_service: bool
|
359
359
|
_save_requirements: bool
|
360
360
|
_service_transport: str
|
361
361
|
_service_wait: float
|
@@ -363,8 +363,11 @@ class SettingsData:
|
|
363
363
|
_start_datetime: str
|
364
364
|
_start_time: float
|
365
365
|
_stats_pid: int # (internal) base pid for system stats
|
366
|
-
|
367
|
-
|
366
|
+
_stats_sampling_interval: float # sampling interval for system stats
|
367
|
+
_stats_sample_rate_seconds: float # badly-named sampling interval, deprecated
|
368
|
+
_stats_samples_to_average: (
|
369
|
+
int # number of samples to average before reporting, deprecated
|
370
|
+
)
|
368
371
|
_stats_join_assets: (
|
369
372
|
bool # join metrics from different assets before sending to backend
|
370
373
|
)
|
@@ -404,8 +407,8 @@ class SettingsData:
|
|
404
407
|
entity: str
|
405
408
|
files_dir: str
|
406
409
|
force: bool
|
407
|
-
fork_from:
|
408
|
-
resume_from:
|
410
|
+
fork_from: RunMoment
|
411
|
+
resume_from: RunMoment
|
409
412
|
git_commit: str
|
410
413
|
git_remote: str
|
411
414
|
git_remote_url: str
|
@@ -475,8 +478,6 @@ class SettingsData:
|
|
475
478
|
sync_dir: str
|
476
479
|
sync_file: str
|
477
480
|
sync_symlink_latest: str
|
478
|
-
system_sample: int
|
479
|
-
system_sample_seconds: int
|
480
481
|
table_raise_on_max_row_limit_exceeded: bool
|
481
482
|
timespec: str
|
482
483
|
tmp_dir: str
|
@@ -618,7 +619,7 @@ class Property:
|
|
618
619
|
|
619
620
|
|
620
621
|
class Settings(SettingsData):
|
621
|
-
"""
|
622
|
+
"""Settings for the W&B SDK."""
|
622
623
|
|
623
624
|
def _default_props(self) -> Dict[str, Dict[str, Any]]:
|
624
625
|
"""Initialize instance attributes (individual settings) as Property objects.
|
@@ -650,7 +651,7 @@ class Settings(SettingsData):
|
|
650
651
|
},
|
651
652
|
_disable_service={
|
652
653
|
"value": False,
|
653
|
-
"preprocessor":
|
654
|
+
"preprocessor": self._process_disable_service,
|
654
655
|
"is_policy": True,
|
655
656
|
},
|
656
657
|
_disable_setproctitle={"value": False, "preprocessor": _str_as_bool},
|
@@ -717,7 +718,7 @@ class Settings(SettingsData):
|
|
717
718
|
# TODO: deprecate and ask the user to use http_proxy and https_proxy instead
|
718
719
|
"preprocessor": _str_as_json,
|
719
720
|
},
|
720
|
-
|
721
|
+
_require_legacy_service={"value": False, "preprocessor": _str_as_bool},
|
721
722
|
_save_requirements={"value": True, "preprocessor": _str_as_bool},
|
722
723
|
_service_wait={
|
723
724
|
"value": 30,
|
@@ -729,6 +730,11 @@ class Settings(SettingsData):
|
|
729
730
|
"auto_hook": True,
|
730
731
|
},
|
731
732
|
_start_datetime={"preprocessor": _datetime_as_str},
|
733
|
+
_stats_sampling_interval={
|
734
|
+
"value": 10.0,
|
735
|
+
"preprocessor": float,
|
736
|
+
"validator": self._validate__stats_sampling_interval,
|
737
|
+
},
|
732
738
|
_stats_sample_rate_seconds={
|
733
739
|
"value": 2.0,
|
734
740
|
"preprocessor": float,
|
@@ -955,8 +961,6 @@ class Settings(SettingsData):
|
|
955
961
|
"value": "latest-run",
|
956
962
|
"hook": lambda x: self._path_convert(self.wandb_dir, x),
|
957
963
|
},
|
958
|
-
system_sample={"value": 15},
|
959
|
-
system_sample_seconds={"value": 2},
|
960
964
|
table_raise_on_max_row_limit_exceeded={
|
961
965
|
"value": False,
|
962
966
|
"preprocessor": _str_as_bool,
|
@@ -1172,12 +1176,28 @@ class Settings(SettingsData):
|
|
1172
1176
|
|
1173
1177
|
return True
|
1174
1178
|
|
1179
|
+
@staticmethod
|
1180
|
+
def _process_disable_service(value: Union[str, bool]) -> bool:
|
1181
|
+
value = _str_as_bool(value)
|
1182
|
+
if value:
|
1183
|
+
wandb.termwarn(
|
1184
|
+
"Disabling the wandb service is deprecated as of version 0.18.0 and will be removed in future versions. ",
|
1185
|
+
repeat=False,
|
1186
|
+
)
|
1187
|
+
return value
|
1188
|
+
|
1175
1189
|
@staticmethod
|
1176
1190
|
def _validate__service_wait(value: float) -> bool:
|
1177
1191
|
if value <= 0:
|
1178
1192
|
raise UsageError("_service_wait must be a positive number")
|
1179
1193
|
return True
|
1180
1194
|
|
1195
|
+
@staticmethod
|
1196
|
+
def _validate__stats_sampling_interval(value: float) -> bool:
|
1197
|
+
if value < 0.1:
|
1198
|
+
raise UsageError("sampling interval must be >= 0.1 seconds")
|
1199
|
+
return True
|
1200
|
+
|
1181
1201
|
@staticmethod
|
1182
1202
|
def _validate__stats_sample_rate_seconds(value: float) -> bool:
|
1183
1203
|
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.
|
3
|
+
Version: 0.18.0
|
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
|
@@ -50,10 +50,10 @@ Requires-Dist: click!=8.0.0,>=7.1
|
|
50
50
|
Requires-Dist: docker-pycreds>=0.4.0
|
51
51
|
Requires-Dist: gitpython!=3.1.29,>=1.0.0
|
52
52
|
Requires-Dist: platformdirs
|
53
|
-
Requires-Dist: protobuf!=4.21.0,<6,>=3.12.0; python_version < '3.9' and sys_platform == 'linux'
|
54
|
-
Requires-Dist: protobuf!=4.21.0,<6,>=3.15.0; python_version == '3.9' and sys_platform == 'linux'
|
55
|
-
Requires-Dist: protobuf!=4.21.0,<6,>=3.19.0; python_version > '3.9' and sys_platform == 'linux'
|
56
|
-
Requires-Dist: protobuf!=4.21.0,<6,>=3.19.0; sys_platform != 'linux'
|
53
|
+
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.12.0; python_version < '3.9' and sys_platform == 'linux'
|
54
|
+
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.15.0; python_version == '3.9' and sys_platform == 'linux'
|
55
|
+
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.19.0; python_version > '3.9' and sys_platform == 'linux'
|
56
|
+
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.19.0; sys_platform != 'linux'
|
57
57
|
Requires-Dist: psutil>=5.0.0
|
58
58
|
Requires-Dist: pyyaml
|
59
59
|
Requires-Dist: requests<3,>=2.0.0
|
@@ -127,92 +127,86 @@ Description-Content-Type: text/markdown
|
|
127
127
|
|
128
128
|
# Weights and Biases [![PyPI](https://img.shields.io/pypi/v/wandb)](https://pypi.python.org/pypi/wandb) [![Conda (channel only)](https://img.shields.io/conda/vn/conda-forge/wandb)](https://anaconda.org/conda-forge/wandb) [![CircleCI](https://img.shields.io/circleci/build/github/wandb/wandb/main)](https://circleci.com/gh/wandb/wandb) [![Codecov](https://img.shields.io/codecov/c/gh/wandb/wandb)](https://codecov.io/gh/wandb/wandb)
|
129
129
|
|
130
|
-
Use W&B to build better models faster. Track and visualize all the pieces of your machine learning pipeline, from datasets to production models.
|
130
|
+
Use W&B to build better models faster. Track and visualize all the pieces of your machine learning pipeline, from datasets to production machine learning models. Get started with W&B today, [sign up for an account!](https://wandb.com?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=readme)
|
131
131
|
|
132
|
-
- Quickly identify model regressions. Use W&B to visualize results in real time, all in a central dashboard.
|
133
|
-
- Focus on the interesting ML. Spend less time manually tracking results in spreadsheets and text files.
|
134
|
-
- Capture dataset versions with W&B Artifacts to identify how changing data affects your resulting models.
|
135
|
-
- Reproduce any model, with saved code, hyperparameters, launch commands, input data, and resulting model weights.
|
136
132
|
|
137
|
-
[Sign up for a free account →](https://wandb.ai/login?signup=true)
|
138
133
|
|
139
|
-
|
134
|
+
See the [W&B Developer Guide](https://docs.wandb.ai/?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=documentation) and [API Reference Guide](https://docs.wandb.ai/ref?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=documentation) for a full technical description of the W&B platform.
|
140
135
|
|
141
|
-
|
142
|
-
- Search, compare, and visualize training runs
|
143
|
-
- Analyze system usage metrics alongside runs
|
144
|
-
- Collaborate with team members
|
145
|
-
- Replicate historic results
|
146
|
-
- Run parameter sweeps
|
147
|
-
- Keep records of experiments available forever
|
136
|
+
|
148
137
|
|
149
|
-
|
138
|
+
# Quickstart
|
150
139
|
|
151
|
-
|
140
|
+
Get started with W&B in four steps:
|
141
|
+
|
142
|
+
1. First, sign up for a [W&B account](https://wandb.ai/login?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=quickstart).
|
143
|
+
|
144
|
+
2. Second, install the W&B SDK with [pip](https://pip.pypa.io/en/stable/). Navigate to your terminal and type the following command:
|
152
145
|
|
153
146
|
```shell
|
154
147
|
pip install wandb
|
155
148
|
```
|
156
149
|
|
157
|
-
|
150
|
+
3. Third, log into W&B:
|
158
151
|
|
159
152
|
```python
|
160
|
-
|
153
|
+
wandb.login()
|
154
|
+
```
|
161
155
|
|
162
|
-
|
163
|
-
args = ...
|
156
|
+
4. Use the example code snippet below as a template to integrate W&B to your Python script:
|
164
157
|
|
165
|
-
|
166
|
-
wandb
|
158
|
+
```python
|
159
|
+
import wandb
|
167
160
|
|
161
|
+
# Start a W&B Run with wandb.init
|
162
|
+
run = wandb.init(project="my_first_project")
|
168
163
|
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
epoch, loss, val_loss = ...
|
173
|
-
# Framework agnostic / custom metrics
|
174
|
-
wandb.log({"epoch": epoch, "loss": loss, "val_loss": val_loss})
|
175
|
-
```
|
164
|
+
# Save model inputs and hyperparameters in a wandb.config object
|
165
|
+
config = run.config
|
166
|
+
config.learning_rate = 0.01
|
176
167
|
|
177
|
-
|
168
|
+
# Model training code here ...
|
178
169
|
|
179
|
-
|
180
|
-
|
170
|
+
# Log metrics over time to visualize performance with wandb.log
|
171
|
+
for i in range(10):
|
172
|
+
run.log({"loss": ...})
|
173
|
+
|
174
|
+
# Mark the run as finished, and finish uploading all data
|
175
|
+
run.finish()
|
181
176
|
```
|
182
177
|
|
183
|
-
|
178
|
+
For example, if the preceding code was stored in a script called train.py:
|
184
179
|
|
185
|
-
|
180
|
+
```shell
|
181
|
+
python train.py
|
182
|
+
```
|
186
183
|
|
187
|
-
|
184
|
+
You will see a URL in your terminal logs when your script starts and finishes. Data is staged locally in a directory named _wandb_ relative to your script. Navigate to the W&B App to view a dashboard of your first W&B Experiment. Use the W&B App to compare multiple experiments in a unified place, dive into the results of a single run, and much more!
|
188
185
|
|
189
|
-
|
186
|
+
|
190
187
|
|
191
|
-
|
188
|
+
# Integrations
|
192
189
|
|
193
|
-
|
194
|
-
[![Watch the video](https://i.imgur.com/PW0Ejlc.png)](https://youtu.be/EeqhOSvNX-A)
|
195
|
-
[Introduction video →](https://youtu.be/EeqhOSvNX-A)
|
190
|
+
Use your favorite framework with W&B. W&B integrations make it fast and easy to set up experiment tracking and data versioning inside existing projects. For more information on how to integrate W&B with the framework of your choice, see [W&B Integrations](https://docs.wandb.ai/guides/integrations) in the W&B Developer Guide.
|
196
191
|
|
197
|
-
|
192
|
+
|
198
193
|
|
199
|
-
|
194
|
+
# Contribution guidelines
|
195
|
+
Weights & Biases ❤️ open source, and we welcome contributions from the community! See the [Contribution guide](https://github.com/wandb/wandb/blob/main/CONTRIBUTING.md) for more information on the development workflow and the internals of the wandb library. For wandb bugs and feature requests, visit [GitHub Issues](https://github.com/wandb/wandb/issues) or contact support@wandb.com.
|
200
196
|
|
201
|
-
|
197
|
+
|
202
198
|
|
203
|
-
|
199
|
+
# Academic Researchers
|
200
|
+
Reach out to W&B Support at support@wandb.com to get a [free academic license](https://www.wandb.com/academic) for you and your research group.
|
204
201
|
|
205
|
-
|
202
|
+
|
206
203
|
|
207
|
-
#
|
208
|
-
If you'd like a free academic account for your research group, [reach out to us →](https://www.wandb.com/academic)
|
204
|
+
# W&B Community
|
209
205
|
|
210
|
-
|
211
|
-
[![](https://i.imgur.com/loKLiez.png)](https://www.wandb.com/academic)
|
206
|
+
Be a part of the growing W&B Community and interact with the W&B team in our [Discord](https://wandb.me/discord). Stay connected with the latest ML updates and tutorials with [W&B Fully Connected](https://wandb.ai/fully-connected).
|
212
207
|
|
213
|
-
|
214
|
-
Got questions, feedback or want to join a community of ML engineers working on exciting projects?
|
208
|
+
|
215
209
|
|
216
|
-
|
210
|
+
# License
|
217
211
|
|
218
|
-
[
|
212
|
+
[MIT License](https://github.com/wandb/wandb/blob/main/LICENSE)
|
@@ -1,16 +1,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=WXOSYJRYUTAAvDHoZZVip-7GqiY8fjya5OiKqy6hKXU,7152
|
3
|
+
wandb/__init__.pyi,sha256=t8_8Vfc8MH9QoGy01mH7RST04nKet1FeckaCsZdmhW8,43083
|
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=
|
8
|
-
wandb/jupyter.py,sha256=
|
6
|
+
wandb/data_types.py,sha256=STLXycfB0twDwS6ZhZjNm8KY7UQoX4Mu2lehs0hOfmc,75323
|
7
|
+
wandb/env.py,sha256=LsA177in6KjJjB_wFLFq3XA4MkASpVyPC_rAPBtXmVA,14148
|
8
|
+
wandb/jupyter.py,sha256=DYxWYu0IMSNeGoTcei1gr-HOAZyHurhj5qtR_tkxf1U,17849
|
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
|
@@ -18,7 +17,7 @@ wandb/wandb_torch.py,sha256=1_LOxzsgyWLhE2JEXwX6OwqKFS-ltusKixBWkJEjKRo,21826
|
|
18
17
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
18
|
wandb/agents/pyagent.py,sha256=ocUr8AZh5kFP3U_79peb-RbBLt3B9kzPWqKjcX7qHbU,13777
|
20
19
|
wandb/analytics/__init__.py,sha256=ntvkloUY6ZO8irNqA4xi06Q8IC_6pu1VB2_1EKORczc,53
|
21
|
-
wandb/analytics/sentry.py,sha256=
|
20
|
+
wandb/analytics/sentry.py,sha256=e1xKTvKM_sIwUhzUS8DoMB5Z7jDDWy8tbaBfJPpesGY,8766
|
22
21
|
wandb/apis/__init__.py,sha256=DNAnd_UEdahhjkTjWPlJoYNxJX026W3K0qGqkbpgYno,1386
|
23
22
|
wandb/apis/attrs.py,sha256=j11iaNnVbjnDSYUBpSJvaOvO9q7hx4PqieKvWGumvHw,1300
|
24
23
|
wandb/apis/internal.py,sha256=VNXFvIghrhfk_TnxaC3cqGT_qpeRL8i-VEFSjr2T9ww,7582
|
@@ -50,9 +49,9 @@ 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=g96lxz9YhvKPhF_0febskNjUSvbgWMqcm5avTf3IdZo,11575296
|
54
53
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
|
-
wandb/cli/cli.py,sha256=
|
54
|
+
wandb/cli/cli.py,sha256=QBfYSGuJOFqb9afUiJjuSN6pPe5KgiNIJRQbmSPDn-M,101461
|
56
55
|
wandb/docker/__init__.py,sha256=Wkv5q5xCf9MAzLjGzg_QpuatP6pURCoKsiWpTj7G1jM,10894
|
57
56
|
wandb/docker/auth.py,sha256=Qaf7C5t4mrGyswNTXKsxV3QBydY_RWqwP5teA8XZ_2I,15468
|
58
57
|
wandb/docker/wandb-entrypoint.sh,sha256=ksJ_wObRwZxZtdu1Ahc1X8VNB1U68a3nleioDDBO-jU,1021
|
@@ -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=HWArjweckdyJIBZgYAlWh9gxeimaDEVb6JK-aMt4uzE,14574
|
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,46 +159,47 @@ 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=Ez8pa-BBk45TJ8DZU0SP_HcvVMT9xde781rrf28IfDs,109400
|
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=jdJs9TCgaC6fK9gROdksA6WDZnRnkgKdmtOYdgK2LkU,19818
|
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=LTMuD5n2WSOggvAaDQh18KfeM-RU5_S0-CLdgyQuBrY,49697
|
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=t3UMGFy-S1agG83xiLP_zpI8jR2ynuGuVnmqQHkmMeA,16482
|
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=Wwaxg99XFl8S2rFr7L6VzroSTfFZJQ0mLhMeK_CVhTo,53757
|
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=TWlkOW3HPZrQCDJ_AhzwKtyFwCl4cQxa_Kvi_d7Qm08,16791
|
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=
|
183
|
-
wandb/sdk/wandb_login.py,sha256=
|
184
|
-
wandb/sdk/wandb_manager.py,sha256=
|
181
|
+
wandb/sdk/wandb_init.py,sha256=fVnDy8DDnlTgw8SB1rKDUJE9jl-n-TpbrBl7K_fO1NI,53264
|
182
|
+
wandb/sdk/wandb_login.py,sha256=ede31MmCVjh8f8Q69bOa9QFzdEwyhePV_HFTE5xtfeA,11592
|
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=zGaCREn4PM0s1BfcY5EOGu9ftnCVxvigkkVCxrb42dU,3142
|
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=AlQt2iFxBW7GE3MMaplbJoEIBccgEB60AL7d6D7DXKE,169046
|
188
|
+
wandb/sdk/wandb_settings.py,sha256=Vgps9h3NUbIMhsO9YlTHaC1TDgP7xk38sdx_S12JZRA,78146
|
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/
|
195
|
+
wandb/sdk/artifacts/_validators.py,sha256=ABXtYx9x8JrKXC2ijtLUKOdTBLUS6H3yQDl9arq1eKY,1485
|
196
|
+
wandb/sdk/artifacts/artifact.py,sha256=KVAGTFnfwbwI1_GAQe2gozHD-feJ1UHhVEP6vsQREmk,93670
|
197
197
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
|
198
198
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=rjIKi5oBrev_NVgI60oydvWGl95KsBmYGYeax1XsKFY,10091
|
199
199
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=6k5VvyWyRfMCJsBDST3IBs91uctfIZdxZ74DJg-Pa00,488
|
200
200
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=Pdm08YTD-73vsqZRTT0cpFejRkdZJkG0lQYlUwv4HJ8,2575
|
201
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
202
|
-
wandb/sdk/artifacts/artifact_saver.py,sha256=
|
201
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=zEO7-V4uEDMqIcHUNhy795e1R8WXE8RHH-mawBSQ9lw,8671
|
202
|
+
wandb/sdk/artifacts/artifact_saver.py,sha256=fskkWKXBgu3MVurm3Xi3ybsaFknisOkMv37HIPDoTNg,9752
|
203
203
|
wandb/sdk/artifacts/artifact_state.py,sha256=4-89kUayoLpJ1EHQTnex_PEEh-Y2F8Aq5_yQ2il7Sao,247
|
204
204
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=5h2GzpVsw1uA3h3piuYr-qU4qcQZDAOz3X5QcSSxnfo,93
|
205
205
|
wandb/sdk/artifacts/exceptions.py,sha256=9640Af_1gF8HJHc-FUliW3USR8Mhi1iib1PuEi-_t5Y,1908
|
@@ -211,7 +211,7 @@ wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
211
211
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=yPCqepEFwlfKIaCJCSDFex8aaHPELLia1AYbd-HIwVU,3523
|
212
212
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
213
213
|
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=svpl0KIexXnBiVqLDq7-nQcDUzr9y8XuXO4LFICRrKU,8328
|
214
|
-
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=
|
214
|
+
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=0jbBGlF3WSp_eOpTYpNLvm8PiCodnXBRJkV44_83zV8,8823
|
215
215
|
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=LK2Mvq4Pmiwos5x_-ueMRIEKryva2hnTWvvTStmyrzk,4206
|
216
216
|
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=8BcJc_8P5WYxM9xqZOoZhcbH_4xCoqhNzpWh41jLOUA,5474
|
217
217
|
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=hrX75b3Ro-M2OC5ZCpzaiS_02b8IKRjIpx89XLLGrVE,1930
|
@@ -250,7 +250,7 @@ wandb/sdk/integration_utils/auto_logging.py,sha256=veVzow8oICc0MzGj2_HkyAVPAbW6r
|
|
250
250
|
wandb/sdk/integration_utils/data_logging.py,sha256=DtSEZB-TzxQKhjm9IXNxDeOAUZyDXGYrfRvVh2Cju54,20008
|
251
251
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
252
252
|
wandb/sdk/interface/constants.py,sha256=GKZ2hATTBCt7yU8kloafZR34yLChiI36O_VtxZZbQyg,64
|
253
|
-
wandb/sdk/interface/interface.py,sha256=
|
253
|
+
wandb/sdk/interface/interface.py,sha256=SCMw2DWgEx3t7lieyqlYKo22d8yFDzwB7ZCr59JcOn8,36435
|
254
254
|
wandb/sdk/interface/interface_queue.py,sha256=QxHmramXIHs4rQEzIk3qzF9ui5BPEAcXSGPt8TZjaEE,2026
|
255
255
|
wandb/sdk/interface/interface_relay.py,sha256=R28bIhebZux7PwFeJmO8wOOkm_uCjmQ2T5lKKy3sL-Y,1567
|
256
256
|
wandb/sdk/interface/interface_shared.py,sha256=fKWiRPcs7TGGUZa0xAU1gqRWnoA-DmFEC9uXFZihens,21028
|
@@ -270,17 +270,17 @@ wandb/sdk/internal/file_stream.py,sha256=-euEOevpl32WiFyruJv3zgeIqAMKd2Owe9GUM5U
|
|
270
270
|
wandb/sdk/internal/flow_control.py,sha256=RL1lKVRwxV9vDwIMBz9L07p25eZgDi5XSDanHfbNzF8,8847
|
271
271
|
wandb/sdk/internal/handler.py,sha256=uT1ea5igLQ2vJPA4QiFhNMmawdGoEgZzw4z4ndDO93E,34665
|
272
272
|
wandb/sdk/internal/internal.py,sha256=HpClwL_Yq0eHGjqJ0D-VaGUv8eEKRlGbPuh8Hxep06w,13155
|
273
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
273
|
+
wandb/sdk/internal/internal_api.py,sha256=Z-Q22GkaXeXDAn4J5vPY728Oyxu_vlLtE7jxNJ0lX-o,151824
|
274
274
|
wandb/sdk/internal/internal_util.py,sha256=LtusH3QYE12A4vH-7-gHXX0O7TfJ2haESf0_MYdYe50,2754
|
275
275
|
wandb/sdk/internal/job_builder.py,sha256=d034H4nE3H2BbtDAxcxftiDgdbBye9ljeZuDh_AjHyI,23532
|
276
276
|
wandb/sdk/internal/profiler.py,sha256=QM5R8-0oWE7WhllhpPEAEwCyB6Uk62HATz8e2F5qIUk,2426
|
277
277
|
wandb/sdk/internal/progress.py,sha256=Tfz1DJNlIj80-Ghb2b7TzHBftgXkfPWwwHlO2NK8UyA,2529
|
278
278
|
wandb/sdk/internal/run.py,sha256=rkEwqdaYPUh_oB-gdCnQ1JIpSHTMoOVadV9CJEgy-kA,707
|
279
279
|
wandb/sdk/internal/sample.py,sha256=QE80NZeW-UsUZBlnf9hG_2KNIZWmLzEpZStYTuL4fOI,2512
|
280
|
-
wandb/sdk/internal/sender.py,sha256=
|
280
|
+
wandb/sdk/internal/sender.py,sha256=VNPzLuajHbUkpEWQ3KqUh3NKEHVaLc4tY6qbv62P0YQ,68800
|
281
281
|
wandb/sdk/internal/sender_config.py,sha256=LZaQY4_bzb9003D2j6aynGqv-Mr2GwUGcNmnQrhJOJw,6964
|
282
282
|
wandb/sdk/internal/settings_static.py,sha256=tUieif_B36dCFqJKwfcr4bLF0KVgFhGN6q-vg3orRzw,3616
|
283
|
-
wandb/sdk/internal/tb_watcher.py,sha256=
|
283
|
+
wandb/sdk/internal/tb_watcher.py,sha256=8nWGmp0mR2TBa_ZjJgo5VWlYKnR76Sifm7tGpOYwYG8,19246
|
284
284
|
wandb/sdk/internal/thread_local_settings.py,sha256=f6uzjTa0d6twZ9aFHzdUlUqv3gy6AnbOZoWYm95DxKA,545
|
285
285
|
wandb/sdk/internal/update.py,sha256=PaIDapIkR7PqH__8WgQh3s0b_9rlrfCeMJpbTVRqAx4,3968
|
286
286
|
wandb/sdk/internal/writer.py,sha256=Vz2RvD74NVtREI93GvXyFPbJlCBJ9tbCWGI1Ca0eEfc,7600
|
@@ -294,7 +294,7 @@ wandb/sdk/internal/system/assets/asset_registry.py,sha256=08uPqgNQDyLTiKrW73Q6hQ
|
|
294
294
|
wandb/sdk/internal/system/assets/cpu.py,sha256=a8KChZZt05nJk4JxPhKDQCVwEU74vQzLIoR_0gh1au4,4737
|
295
295
|
wandb/sdk/internal/system/assets/disk.py,sha256=KcWyQtYX7C4zKRmJr6vpbRDqJ9B-MSM_PJs3IRNvO9w,6505
|
296
296
|
wandb/sdk/internal/system/assets/gpu.py,sha256=BMHlst1D7QxCDKihC_p-3MSmG8VgahGMxbVd59-9EhE,14130
|
297
|
-
wandb/sdk/internal/system/assets/gpu_amd.py,sha256=
|
297
|
+
wandb/sdk/internal/system/assets/gpu_amd.py,sha256=nvLK4g_8YBR3fDKLgJRyAQ2_eBW2SidtzESp2ts7zwI,7714
|
298
298
|
wandb/sdk/internal/system/assets/gpu_apple.py,sha256=htF5aUCT555uGNfmjPANHNwjqSe0qr9QqiZvrYC6fI4,5456
|
299
299
|
wandb/sdk/internal/system/assets/interfaces.py,sha256=0rT0O6CEnzYr5ZDfHB2qdFgF4V8pvjOmEj2N1lXKD5o,6755
|
300
300
|
wandb/sdk/internal/system/assets/ipu.py,sha256=WCOfXLjX69DB10DoeoHPjCNfiPvlgG9x0MqKFhxbwzw,5490
|
@@ -302,7 +302,7 @@ wandb/sdk/internal/system/assets/memory.py,sha256=7sEmPUferQn40UU8f5hf9Xc6Ti4FH6
|
|
302
302
|
wandb/sdk/internal/system/assets/network.py,sha256=3tUX4iALSI5nphsEj8Ck0TlAVHn0Plw93bf_4z8W4D4,3517
|
303
303
|
wandb/sdk/internal/system/assets/open_metrics.py,sha256=eyzVBj3kbVtG-1SpEP23OPJauASHCGZoY2oDvQjo6TM,10040
|
304
304
|
wandb/sdk/internal/system/assets/tpu.py,sha256=PeHgZ_KntzMeRvEXsutRKhYgYjITxPCx6lrSsOtm7q4,5055
|
305
|
-
wandb/sdk/internal/system/assets/trainium.py,sha256=
|
305
|
+
wandb/sdk/internal/system/assets/trainium.py,sha256=XbjhBwLZiZ64InsylomhTkf8m-jJY3n0Q6gNtoYdfZk,13854
|
306
306
|
wandb/sdk/launch/__init__.py,sha256=tsiLFVElWgdxjfRWGj0V2MOi0oaggmHpYwzc_Ful1qw,363
|
307
307
|
wandb/sdk/launch/_launch.py,sha256=bJnB_p0O2FojyNN_ZXGjT4_pIlX-wHc0kL0O373YDBk,12138
|
308
308
|
wandb/sdk/launch/_launch_add.py,sha256=bE3o3UzwJsoN50IysEcqU8TIVCWad73gh8dcARPEs08,9047
|
@@ -333,7 +333,7 @@ wandb/sdk/launch/environment/azure_environment.py,sha256=75Wamar_QS4lr0RSjdsrENR
|
|
333
333
|
wandb/sdk/launch/environment/gcp_environment.py,sha256=68PDJaYlT_YXXqbFseXg_AlTR7CDF4R3Qonp6AXfs2g,13069
|
334
334
|
wandb/sdk/launch/environment/local_environment.py,sha256=UeG3fL5w4kbN9SCOvKlJaQwYYne0sB2dymwwcCxbi_s,2324
|
335
335
|
wandb/sdk/launch/inputs/files.py,sha256=wLBb6riNplCtUY_p0uVwyCYH8La7H6naUpB5RVGiMUU,4833
|
336
|
-
wandb/sdk/launch/inputs/internal.py,sha256=
|
336
|
+
wandb/sdk/launch/inputs/internal.py,sha256=OCvNGpr5admeeiNY5A-i3h90cmyRreCw0A8RJ5iqvh4,10373
|
337
337
|
wandb/sdk/launch/inputs/manage.py,sha256=OeU9nx_NnpCG2qxXsQgZRQiZBDGiW6046j0RUD9lYI8,5116
|
338
338
|
wandb/sdk/launch/inputs/schema.py,sha256=VUPQY6MDaF-zCiBjh66-MB52nGTY5DyI-FAHl-fNz-0,1457
|
339
339
|
wandb/sdk/launch/registry/abstract.py,sha256=rpPQlTfOTA6wWTU1DdtbnM9myJxQAwXrg4SQPbo9ORY,1194
|
@@ -356,7 +356,7 @@ wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=KeRVj_cjabVR6ZY4Qx5IqiH3nQHeT8
|
|
356
356
|
wandb/sdk/launch/sweeps/utils.py,sha256=MJCKDZY7SQ2Wrv1EWUCFo1YflMkuJAYIZFAswP0VCDw,10153
|
357
357
|
wandb/sdk/lib/__init__.py,sha256=_sOt85qPxtPyM_LaN0IE6dO1CImzwXJXzVHC7R24VBE,188
|
358
358
|
wandb/sdk/lib/_settings_toposort_generate.py,sha256=eA4xFE750evX-Upox1SpXvAoNffNAy7_C-9ydyeC4Qw,5002
|
359
|
-
wandb/sdk/lib/_settings_toposort_generated.py,sha256=
|
359
|
+
wandb/sdk/lib/_settings_toposort_generated.py,sha256=shTqsWw3q-guimJcdwUu7TAAVbGSrIIAy77gVAheyeI,5521
|
360
360
|
wandb/sdk/lib/_wburls_generate.py,sha256=qW6UXaZOHKT_z13MW_Lt3KVhfswutNoNydFs69OwgqI,465
|
361
361
|
wandb/sdk/lib/_wburls_generated.py,sha256=ZDmX_ZYGg5Ag3WNu_Ti-vLB3ctN0NNr-dYkiCiXPQW4,450
|
362
362
|
wandb/sdk/lib/apikey.py,sha256=DxCVjZQ8mCgxfxAojREqzDhn1Y4PTIMAlSGj0Qm6H8Y,9484
|
@@ -397,13 +397,14 @@ wandb/sdk/lib/telemetry.py,sha256=1_QPck47Zj0b5dA37lIfpev1tHaHJHoNaiXKjyvdPoA,28
|
|
397
397
|
wandb/sdk/lib/timed_input.py,sha256=XF03SXTQj0AysHiIV-LKtbwxtSUx0E7xts7zDPs9kJQ,3362
|
398
398
|
wandb/sdk/lib/timer.py,sha256=Ar1t8f3OFAA4PB2fB2MT9D41y3g2Or56wSAYezvdXqo,459
|
399
399
|
wandb/sdk/lib/tracelog.py,sha256=IvK-t8cQ4AIMZ0hXBqDkJZdX-fBNSwZ422zsRw_nT5M,7827
|
400
|
+
wandb/sdk/lib/viz.py,sha256=o5K7rLL1we5qw9XIxfzk1nyNmf-Y6bKS0UKpWpQAUGw,3578
|
400
401
|
wandb/sdk/lib/wburls.py,sha256=m2CWuFtFPD9R4SzEEsKN-iSwCKiKr6dhOi8_WYrvzHY,1481
|
401
402
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
402
403
|
wandb/sdk/service/_startup_debug.py,sha256=piYn6Jg-uR5W-EkablqikEpenyYPQuoQynrPq-iccdo,610
|
403
404
|
wandb/sdk/service/port_file.py,sha256=aYA40Y8d78NMwKuJRbG3aL4J4-xH8l8UvzPFFfrwQCY,1599
|
404
405
|
wandb/sdk/service/server.py,sha256=C_HDOBV8-SIB6pZrTUCR1lDGsd3ih5LSYw_BAAFjrmw,4128
|
405
|
-
wandb/sdk/service/server_sock.py,sha256=
|
406
|
-
wandb/sdk/service/service.py,sha256=
|
406
|
+
wandb/sdk/service/server_sock.py,sha256=l8YjXcUKmHptvZN4d29NubU0cBYzZWD3pMIDlOrqVbo,9932
|
407
|
+
wandb/sdk/service/service.py,sha256=YvJupj5Y0PY6UBUgC_ChFEmXfUKV_RM33SNVojpcc-8,9748
|
407
408
|
wandb/sdk/service/service_base.py,sha256=Mg2zpiOUOEo5T0rZIuZIkwxEIL_ZNO5Pjbgi9lctFPA,1338
|
408
409
|
wandb/sdk/service/service_sock.py,sha256=-zhAl031NNWwsBkOataxfKrBZdlJPttcHb2ujcgySxE,2344
|
409
410
|
wandb/sdk/service/streams.py,sha256=LtBxli28GEKeK7fMXmqivt_ru2Ofn9Gmr76yPwcus3Y,15246
|
@@ -430,7 +431,6 @@ wandb/sklearn/plot/regressor.py,sha256=60Gaj3iKPORvFT0QM7CtdfvI86AuxoTmFVVNPJp7K
|
|
430
431
|
wandb/sklearn/plot/shared.py,sha256=4fKeR4DhTaTNt-0tPSRKFOt5YuKgK6lGQz4mCm6xJDc,2824
|
431
432
|
wandb/sync/__init__.py,sha256=4c2ia5m6KHQo4xU_kl-eQxfm22oiXOCiVYSqV3_vBLk,96
|
432
433
|
wandb/sync/sync.py,sha256=6-6uhJKRXQrJL7uDa0TpxnrpGwLYUtJIAUGdHIBV9G4,16099
|
433
|
-
wandb/testing/relay.py,sha256=0aKZ5P4d71cJOrUf_Uc0Sqzoe7Qmjd26PVvp5uIcYaA,30682
|
434
434
|
wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
435
435
|
wandb/vendor/gql-0.2.0/setup.py,sha256=kBbCby6fkBsmi9c2XtO2lGqfuYZvwLp6KVL1VtZSBp8,1354
|
436
436
|
wandb/vendor/gql-0.2.0/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -815,8 +815,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
|
|
815
815
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
|
816
816
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
|
817
817
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
|
818
|
-
wandb-0.
|
819
|
-
wandb-0.
|
820
|
-
wandb-0.
|
821
|
-
wandb-0.
|
822
|
-
wandb-0.
|
818
|
+
wandb-0.18.0.dist-info/METADATA,sha256=aNU_ge6Ud0qGCnWTyRuinVR-H0L5KTUrOL5kRIECAs0,9617
|
819
|
+
wandb-0.18.0.dist-info/WHEEL,sha256=M1tmngCHfER8pIPuS8Dt7mqF1TawUl-fJoa23auO3MM,93
|
820
|
+
wandb-0.18.0.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
821
|
+
wandb-0.18.0.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
|
822
|
+
wandb-0.18.0.dist-info/RECORD,,
|