wandb 0.16.5__py3-none-any.whl → 0.16.6__py3-none-any.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.
- wandb/__init__.py +1 -1
- wandb/cli/cli.py +5 -2
- wandb/integration/openai/fine_tuning.py +74 -37
- wandb/proto/v3/wandb_internal_pb2.py +192 -192
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_internal_pb2.py +192 -192
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/sdk/artifacts/artifact.py +25 -9
- wandb/sdk/artifacts/artifact_saver.py +16 -19
- wandb/sdk/interface/interface.py +18 -6
- wandb/sdk/launch/_launch.py +5 -0
- wandb/sdk/launch/_project_spec.py +5 -20
- wandb/sdk/launch/agent/agent.py +80 -37
- wandb/sdk/launch/agent/config.py +8 -0
- wandb/sdk/launch/builder/kaniko_builder.py +149 -134
- wandb/sdk/launch/create_job.py +43 -48
- wandb/sdk/launch/runner/kubernetes_monitor.py +3 -1
- wandb/sdk/launch/sweeps/scheduler.py +3 -1
- wandb/sdk/launch/utils.py +18 -0
- wandb/sdk/lib/_settings_toposort_generated.py +1 -0
- wandb/sdk/lib/run_moment.py +7 -1
- wandb/sdk/wandb_init.py +2 -8
- wandb/sdk/wandb_run.py +50 -34
- wandb/sdk/wandb_settings.py +2 -0
- {wandb-0.16.5.dist-info → wandb-0.16.6.dist-info}/METADATA +1 -1
- {wandb-0.16.5.dist-info → wandb-0.16.6.dist-info}/RECORD +30 -30
- {wandb-0.16.5.dist-info → wandb-0.16.6.dist-info}/LICENSE +0 -0
- {wandb-0.16.5.dist-info → wandb-0.16.6.dist-info}/WHEEL +0 -0
- {wandb-0.16.5.dist-info → wandb-0.16.6.dist-info}/entry_points.txt +0 -0
- {wandb-0.16.5.dist-info → wandb-0.16.6.dist-info}/top_level.txt +0 -0
wandb/sdk/wandb_run.py
CHANGED
@@ -1961,55 +1961,67 @@ class Run:
|
|
1961
1961
|
with telemetry.context(run=self) as tel:
|
1962
1962
|
tel.feature.save = True
|
1963
1963
|
|
1964
|
-
#
|
1965
|
-
|
1966
|
-
|
1967
|
-
|
1964
|
+
# Files in the files directory matched by the glob, including old and
|
1965
|
+
# new ones.
|
1966
|
+
globbed_files = set(
|
1967
|
+
pathlib.Path(
|
1968
1968
|
self._settings.files_dir,
|
1969
1969
|
).glob(relative_glob_str)
|
1970
|
-
|
1970
|
+
)
|
1971
1971
|
|
1972
|
-
had_symlinked_files = len(
|
1972
|
+
had_symlinked_files = len(globbed_files) > 0
|
1973
1973
|
is_star_glob = "*" in relative_glob_str
|
1974
1974
|
|
1975
1975
|
# The base_path may itself be a glob, so we can't do
|
1976
1976
|
# base_path.glob(relative_glob_str)
|
1977
1977
|
for path_str in glob.glob(str(base_path / relative_glob_str)):
|
1978
|
-
|
1978
|
+
source_path = pathlib.Path(path_str).absolute()
|
1979
1979
|
|
1980
1980
|
# We can't use relative_to() because base_path may be a glob.
|
1981
|
-
|
1981
|
+
relative_path = pathlib.Path(*source_path.parts[len(base_path.parts) :])
|
1982
1982
|
|
1983
|
-
|
1983
|
+
target_path = pathlib.Path(self._settings.files_dir, relative_path)
|
1984
|
+
globbed_files.add(target_path)
|
1984
1985
|
|
1985
|
-
|
1986
|
-
|
1986
|
+
# If the file is already where it needs to be, don't create a symlink.
|
1987
|
+
if source_path.resolve() == target_path.resolve():
|
1988
|
+
continue
|
1989
|
+
|
1990
|
+
target_path.parent.mkdir(parents=True, exist_ok=True)
|
1987
1991
|
|
1988
1992
|
# Delete the symlink if it exists.
|
1989
1993
|
try:
|
1990
|
-
|
1994
|
+
target_path.unlink()
|
1991
1995
|
except FileNotFoundError:
|
1992
1996
|
# In Python 3.8, we would pass missing_ok=True, but as of now
|
1993
1997
|
# we support down to Python 3.7.
|
1994
1998
|
pass
|
1995
1999
|
|
1996
|
-
|
2000
|
+
target_path.symlink_to(source_path)
|
1997
2001
|
|
1998
2002
|
# Inform users that new files aren't detected automatically.
|
1999
2003
|
if not had_symlinked_files and is_star_glob:
|
2000
|
-
file_str = f"{len(
|
2001
|
-
if len(
|
2004
|
+
file_str = f"{len(globbed_files)} file"
|
2005
|
+
if len(globbed_files) > 1:
|
2002
2006
|
file_str += "s"
|
2003
2007
|
wandb.termwarn(
|
2004
2008
|
f"Symlinked {file_str} into the W&B run directory, "
|
2005
2009
|
"call wandb.save again to sync new files."
|
2006
2010
|
)
|
2007
2011
|
|
2008
|
-
files_dict: FilesDict = {
|
2012
|
+
files_dict: FilesDict = {
|
2013
|
+
"files": [
|
2014
|
+
(
|
2015
|
+
GlobStr(str(f.relative_to(self._settings.files_dir))),
|
2016
|
+
policy,
|
2017
|
+
)
|
2018
|
+
for f in globbed_files
|
2019
|
+
]
|
2020
|
+
}
|
2009
2021
|
if self._backend and self._backend.interface:
|
2010
2022
|
self._backend.interface.publish_files(files_dict)
|
2011
2023
|
|
2012
|
-
return
|
2024
|
+
return [str(f) for f in globbed_files]
|
2013
2025
|
|
2014
2026
|
@_run_decorator._attach
|
2015
2027
|
def restore(
|
@@ -2341,16 +2353,17 @@ class Run:
|
|
2341
2353
|
if self._settings._offline:
|
2342
2354
|
return
|
2343
2355
|
if self._backend and self._backend.interface:
|
2344
|
-
|
2345
|
-
|
2346
|
-
|
2347
|
-
|
2348
|
-
|
2349
|
-
|
2350
|
-
|
2351
|
-
|
2352
|
-
|
2353
|
-
|
2356
|
+
if not self._settings._disable_update_check:
|
2357
|
+
logger.info("communicating current version")
|
2358
|
+
version_handle = self._backend.interface.deliver_check_version(
|
2359
|
+
current_version=wandb.__version__
|
2360
|
+
)
|
2361
|
+
version_result = version_handle.wait(timeout=30)
|
2362
|
+
if not version_result:
|
2363
|
+
version_handle.abandon()
|
2364
|
+
else:
|
2365
|
+
self._check_version = version_result.response.check_version_response
|
2366
|
+
logger.info("got version response %s", self._check_version)
|
2354
2367
|
|
2355
2368
|
def _on_start(self) -> None:
|
2356
2369
|
# would like to move _set_global to _on_ready to unify _on_start and _on_attach
|
@@ -3585,7 +3598,7 @@ class Run:
|
|
3585
3598
|
if settings._offline or settings.silent:
|
3586
3599
|
return
|
3587
3600
|
|
3588
|
-
|
3601
|
+
run_url = settings.run_url
|
3589
3602
|
project_url = settings.project_url
|
3590
3603
|
sweep_url = settings.sweep_url
|
3591
3604
|
|
@@ -3596,7 +3609,7 @@ class Run:
|
|
3596
3609
|
|
3597
3610
|
if printer._html:
|
3598
3611
|
if not wandb.jupyter.maybe_display():
|
3599
|
-
run_line = f"<strong>{printer.link(
|
3612
|
+
run_line = f"<strong>{printer.link(run_url, run_name)}</strong>"
|
3600
3613
|
project_line, sweep_line = "", ""
|
3601
3614
|
|
3602
3615
|
# TODO(settings): make settings the source of truth
|
@@ -3628,7 +3641,7 @@ class Run:
|
|
3628
3641
|
f'{printer.emoji("broom")} View sweep at {printer.link(sweep_url)}'
|
3629
3642
|
)
|
3630
3643
|
printer.display(
|
3631
|
-
f'{printer.emoji("rocket")} View run at {printer.link(
|
3644
|
+
f'{printer.emoji("rocket")} View run at {printer.link(run_url)}',
|
3632
3645
|
)
|
3633
3646
|
|
3634
3647
|
# TODO(settings) use `wandb_settings` (if self.settings.anonymous == "true":)
|
@@ -3871,10 +3884,13 @@ class Run:
|
|
3871
3884
|
else:
|
3872
3885
|
info = []
|
3873
3886
|
if settings.run_name and settings.run_url:
|
3874
|
-
|
3875
|
-
|
3876
|
-
|
3877
|
-
|
3887
|
+
info.append(
|
3888
|
+
f"{printer.emoji('rocket')} View run {printer.name(settings.run_name)} at: {printer.link(settings.run_url)}"
|
3889
|
+
)
|
3890
|
+
if settings.project_url:
|
3891
|
+
info.append(
|
3892
|
+
f"{printer.emoji('star')} View project at: {printer.link(settings.project_url)}"
|
3893
|
+
)
|
3878
3894
|
if poll_exit_response and poll_exit_response.file_counts:
|
3879
3895
|
logger.info("logging synced files")
|
3880
3896
|
file_counts = poll_exit_response.file_counts
|
wandb/sdk/wandb_settings.py
CHANGED
@@ -310,6 +310,7 @@ class SettingsData:
|
|
310
310
|
)
|
311
311
|
_disable_setproctitle: bool # Do not use setproctitle on internal process
|
312
312
|
_disable_stats: bool # Do not collect system metrics
|
313
|
+
_disable_update_check: bool # Disable version check
|
313
314
|
_disable_viewer: bool # Prevent early viewer query
|
314
315
|
_disable_machine_info: bool # Disable automatic machine info collection
|
315
316
|
_except_exit: bool
|
@@ -656,6 +657,7 @@ class Settings(SettingsData):
|
|
656
657
|
"preprocessor": _str_as_bool,
|
657
658
|
"hook": lambda x: self._disable_machine_info or x,
|
658
659
|
},
|
660
|
+
_disable_update_check={"preprocessor": _str_as_bool},
|
659
661
|
_disable_viewer={"preprocessor": _str_as_bool},
|
660
662
|
_extra_http_headers={"preprocessor": _str_as_json},
|
661
663
|
# Retry filestream requests for 2 hours before dropping chunk (how do we recover?)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
wandb/__init__.py,sha256=
|
1
|
+
wandb/__init__.py,sha256=a5VZObQuyKlqEKJjqbW_qkYDTYVnmJyyiJRsUzQBRTk,7112
|
2
2
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
3
3
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
4
4
|
wandb/data_types.py,sha256=SQGBJdZYNyJpkRmSHORA18660rg7z8KVOfqrzeyykU0,73127
|
@@ -70,7 +70,7 @@ wandb/beta/workflows.py,sha256=u22a9f6R8iaBIlIGnih97T9BS_Wuq3_PuPO_vSWXAy8,9976
|
|
70
70
|
wandb/bin/apple_gpu_stats,sha256=-CVDIPhgV1f_jjM1dkXJgmo6AQY4wjy1xCGg1e8zn0w,337072
|
71
71
|
wandb/catboost/__init__.py,sha256=kgsxRzur9liL-CPOVubjNVJ_FEDiktbyA7gQQXxG1n0,226
|
72
72
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
|
-
wandb/cli/cli.py,sha256=
|
73
|
+
wandb/cli/cli.py,sha256=Dn01fexRduAsBytBP1E1LAq7MjZ__rtIQNARQFkz_wQ,94725
|
74
74
|
wandb/docker/__init__.py,sha256=Mn-3a98-b6y1gfBeFTzd_LYeAQUUM-1059MNET3z3Jg,10545
|
75
75
|
wandb/docker/auth.py,sha256=I68SFCcbmZr18XqVxVCM75eTB7YhCebgb3dcsFiIYHQ,15032
|
76
76
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
@@ -123,7 +123,7 @@ wandb/integration/lightning/fabric/logger.py,sha256=92_Ki0SxeKE45YPorkCBC-QFuv7t
|
|
123
123
|
wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
|
124
124
|
wandb/integration/metaflow/metaflow.py,sha256=AnrtyukBS5qBNfEbK3skc-oomgXIH8OyBMrSVtsqi3Q,11669
|
125
125
|
wandb/integration/openai/__init__.py,sha256=T6x9lIFfw2NzOSi46wi3otY_-DSwyMgnIjMIOIod7iU,66
|
126
|
-
wandb/integration/openai/fine_tuning.py,sha256=
|
126
|
+
wandb/integration/openai/fine_tuning.py,sha256=FDOsxggAwhbK4KCQl7jJH7LzMf4kmIECfIJc8qCiXUE,17592
|
127
127
|
wandb/integration/openai/openai.py,sha256=zGD1kj6yjDP1IfAAYRcltuXD5Bf569CSnMHMf4rDm54,496
|
128
128
|
wandb/integration/openai/resolver.py,sha256=KrndobRki0C9SNRL8SgPISea0-D7-1g8kvJMcFMN7SA,8164
|
129
129
|
wandb/integration/prodigy/__init__.py,sha256=1-Hg98Y4T1kSNAbrlR9TUrr7dwL1Gxxa-Exu0fsfxl0,66
|
@@ -188,42 +188,42 @@ wandb/proto/wandb_settings_pb2.py,sha256=8niHsAuapIljCb5w27q2va0dFM2n8CzkgNk_KWO
|
|
188
188
|
wandb/proto/wandb_telemetry_pb2.py,sha256=bhx6d4Gt6P8l3DTRS0NcjPelrkjVGMPkriohzGNi7dY,239
|
189
189
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
190
|
wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4Nzw,2248
|
191
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
191
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=7QIKywFdhW2L8hJjpcbUsLce1acxn53l6iY4X1A4RpM,103956
|
192
192
|
wandb/proto/v3/wandb_server_pb2.py,sha256=u7p14fy4XjKVcDnE54U1WwgC1Gpy6VWGA4MGU3aXyg4,13631
|
193
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
193
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=LjfdMc4fh79TWHcJLgQe3bPWHq-r3VGf9IUS1WIoubE,19305
|
194
194
|
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=LvnXiIIZ5TWpOa-UnOK0x6Pa4acSR4K4SkzUxc1OsDc,12969
|
195
195
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
196
196
|
wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
|
197
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
197
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=ECmkAqR3oLQniRsNECgApV0hnGd53PeYRD6tmIQ2OZg,47413
|
198
198
|
wandb/proto/v4/wandb_server_pb2.py,sha256=YkapN5k621amFmIYKtV5xLww3TaB-6EeGI8Qq2_UY94,5991
|
199
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
199
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=VpgkytFHyLDCjrnQhfHRA4o1VMlDvrR5R9qswzGCJKU,16036
|
200
200
|
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=WoQeDcFrkHjJs9qtaE2APyWy4lqifii_0fkBIQ5ku7c,10416
|
201
201
|
wandb/sacred/__init__.py,sha256=2sCLXqvkwjEqOvPFdtAtmo80PY4hky7rj4owO5PoJWQ,80
|
202
202
|
wandb/sdk/__init__.py,sha256=g8BQ6gQ_WDIH682ayRuKzD6QZXL8NW5CZKBLJOem5iU,805
|
203
203
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
204
204
|
wandb/sdk/wandb_config.py,sha256=ZFEJEk7YoXTIySzHRGOIyyhgvbMUqTnUFAIlu-ZzGUo,10804
|
205
205
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
206
|
-
wandb/sdk/wandb_init.py,sha256=
|
206
|
+
wandb/sdk/wandb_init.py,sha256=Gi-55QFdov7hv3mb-9imXpegTTynZOPwwWbrP9MRirA,50039
|
207
207
|
wandb/sdk/wandb_login.py,sha256=_lU4nDDJEdT5VYL0s5aevMGVerzQlGI9Ee-zNmcW_t4,10660
|
208
208
|
wandb/sdk/wandb_manager.py,sha256=cJPPry9kNJUMbtziysucjGXHZpAHStMF1HyJCfezsFE,6654
|
209
209
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
210
210
|
wandb/sdk/wandb_require.py,sha256=CsclI4T0RUhPGIOEtGbjtrtFmYj9NFtgAgHUEddVyNg,2732
|
211
211
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
212
|
-
wandb/sdk/wandb_run.py,sha256=
|
213
|
-
wandb/sdk/wandb_settings.py,sha256=
|
212
|
+
wandb/sdk/wandb_run.py,sha256=K5clG7oSajF4pdBIfzlGd7RPMHbzIdcAzUpM2OJcZYM,158177
|
213
|
+
wandb/sdk/wandb_settings.py,sha256=pXogf7Z6d_btKr4lKGtjhS4JM4Sf2hEQDkrgtfV_Vn4,75294
|
214
214
|
wandb/sdk/wandb_setup.py,sha256=IRXIXGXZEzt8zeBaWSGgKvpQ3i7evCiKuy-fS9ew-iA,11077
|
215
215
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
216
216
|
wandb/sdk/wandb_sweep.py,sha256=wPhKVjdUVNXCtIB5Bpz0c7JKHv9vLigY6TESNLa7SE4,3746
|
217
217
|
wandb/sdk/wandb_sync.py,sha256=KhxDOHR7x8q54hAlsEx4ta1dAW1ZnzTUMr7VwJyCL5c,2273
|
218
218
|
wandb/sdk/wandb_watch.py,sha256=dz0DIZvGXRvrE2aLNuiQQfUuFo9KDDCfSDWUncBu57U,3892
|
219
219
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
220
|
-
wandb/sdk/artifacts/artifact.py,sha256
|
220
|
+
wandb/sdk/artifacts/artifact.py,sha256=-p3sUcWINjWHM05j0TFDVay1avYiDF4Z5Cqmtc8hwGA,86323
|
221
221
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=GAwxH3FLnDiGv8CgusV6O4K3vOvYTAD6X_5XLD38whk,1500
|
222
222
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=rqtJygixZ9izXU7AgaKXMt0NDxWAGQLlc30lwtqzkaU,8150
|
223
223
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=iGDZpamolVCx1yrTtRDXTXx1htNGY6Vtc4L9gAMNLuM,472
|
224
224
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=EZr1bkFcpuHFiRo-um7p_vKrx81pvkqxwha0rzl5Jhk,2496
|
225
225
|
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=1Qe7XPPlF6xDb2XzLq2DXmG7ac1_bY3hOsLNlsVR9DY,7158
|
226
|
-
wandb/sdk/artifacts/artifact_saver.py,sha256=
|
226
|
+
wandb/sdk/artifacts/artifact_saver.py,sha256=6ymJLn2NKw4_ajfV7HmqqQ2ct0reAprJ3LZHG8lJisM,9570
|
227
227
|
wandb/sdk/artifacts/artifact_state.py,sha256=oUh-Q7LzVmOBxJXkXK39bz3fAxZxYlQts5v5JDhze40,235
|
228
228
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=rSolWpp8Tlk9218jN1fkJ76WH1zlvxgxB-uAiFRQzEo,85
|
229
229
|
wandb/sdk/artifacts/exceptions.py,sha256=ZAY2svJRSmhu9Opok1-iFeSxWrW2A_rs9yWKRdwUHG0,1851
|
@@ -274,7 +274,7 @@ wandb/sdk/integration_utils/auto_logging.py,sha256=ls9ohoy82AD06KLsyTl-By3qQPNBp
|
|
274
274
|
wandb/sdk/integration_utils/data_logging.py,sha256=idnP58NtIKNwOaYeGvL7wmzWp0RzCsaJ3ch690YMIxk,19465
|
275
275
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
276
276
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
277
|
-
wandb/sdk/interface/interface.py,sha256=
|
277
|
+
wandb/sdk/interface/interface.py,sha256=DQI5Y2rcM5RdVDZDMAeYVXofXbT5jgyUWYgi2fHdGuc,32474
|
278
278
|
wandb/sdk/interface/interface_queue.py,sha256=eCvNpvwMe1GHJv_5M8R3ZSspmEvE02mXMstBDBEZy8A,1967
|
279
279
|
wandb/sdk/interface/interface_relay.py,sha256=vQUrk5KESKInZsXpOxWF4YcWRZFLJjNz1mdNywbWbbE,1514
|
280
280
|
wandb/sdk/interface/interface_shared.py,sha256=mUzrDTuuNXUIDQSYJ4jvxrU9JSTb5eWRE1ttyKfGT64,20811
|
@@ -328,25 +328,25 @@ wandb/sdk/internal/system/assets/open_metrics.py,sha256=uWxSwjidBLzJuI00eLAzu3r8
|
|
328
328
|
wandb/sdk/internal/system/assets/tpu.py,sha256=nwv3C9a6dgD1hc0461Rh28NQkWbNQ5fJOXsw6lOQ-Gw,4901
|
329
329
|
wandb/sdk/internal/system/assets/trainium.py,sha256=HpfLVFnSftVbaNuwTJP7W9A05_5WHjQq5tMGf-jY7U4,13405
|
330
330
|
wandb/sdk/launch/__init__.py,sha256=VFClnbYvX93eHr_-N6QwHqFkiSWP94fVqvgAyY6-mUo,210
|
331
|
-
wandb/sdk/launch/_launch.py,sha256=
|
331
|
+
wandb/sdk/launch/_launch.py,sha256=v0cezR15RKgpDMJY0JAXRKd9h6tGkFqf8cKHIhe0yjw,12572
|
332
332
|
wandb/sdk/launch/_launch_add.py,sha256=AYJuYkF4RyGMhiPF1LcVT0jJtBaokC_syoKXtwRqaIg,8832
|
333
|
-
wandb/sdk/launch/_project_spec.py,sha256=
|
334
|
-
wandb/sdk/launch/create_job.py,sha256=
|
333
|
+
wandb/sdk/launch/_project_spec.py,sha256=bwhSlh2oBr5qKG5ZWUISwSub54h7qV6QI8ZcqPbGPLQ,22997
|
334
|
+
wandb/sdk/launch/create_job.py,sha256=4g--sGvDmlDNIBSMhv_qFNxDssQ9uayh0jNU6pMWci4,16632
|
335
335
|
wandb/sdk/launch/errors.py,sha256=CC1M5x7FnyyO3VVcWtqH6LgJReTS-g0nqqC-yKiEr_w,305
|
336
336
|
wandb/sdk/launch/git_reference.py,sha256=6pTVlD7-BICWoraN8PsAzCKu64GV7g_GzqMSD9w3Sos,3758
|
337
337
|
wandb/sdk/launch/loader.py,sha256=IfNRTnK3Ul3fPcxaFon8N28IbuK7KoIKbXEwu6PZurs,8926
|
338
|
-
wandb/sdk/launch/utils.py,sha256=
|
338
|
+
wandb/sdk/launch/utils.py,sha256=Tiv3So-zZwRxEkOvKfza2oHOdyzfo_Psjv8GtBcmHDQ,29946
|
339
339
|
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
340
340
|
wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
|
341
|
-
wandb/sdk/launch/agent/agent.py,sha256=
|
342
|
-
wandb/sdk/launch/agent/config.py,sha256
|
341
|
+
wandb/sdk/launch/agent/agent.py,sha256=b_fm86m2PyZzr3TEPDgH6wv2OerPvCLmespVHp7VYoE,34805
|
342
|
+
wandb/sdk/launch/agent/config.py,sha256=-HJ1HSeiTVGBgfKrIgohA7jNZ_IBJlw9XBmXzqizHrM,6892
|
343
343
|
wandb/sdk/launch/agent/job_status_tracker.py,sha256=HaWU-VbXGe6m8VvM2y6riQ2Iwb2j62ugoJsR9wzUIpU,1813
|
344
344
|
wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=Xn6cs_QOJKX3OGIwoTinJLmrPZ08aeoevyQRPHoaf6s,1514
|
345
345
|
wandb/sdk/launch/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
346
346
|
wandb/sdk/launch/builder/abstract.py,sha256=FYQ4iX5dgG2Zpom6kArlI0Jwr8V9GTBAXARtqb3nP5c,2641
|
347
347
|
wandb/sdk/launch/builder/build.py,sha256=2kkwnR1YLfYlAUwpXQBcz91qtt_PKotyD-i0kKuyPpg,24682
|
348
348
|
wandb/sdk/launch/builder/docker_builder.py,sha256=lbnvOu3vOTJ83tH2yEb0uNtF-4g9wgENF8E2Cia7MZs,6727
|
349
|
-
wandb/sdk/launch/builder/kaniko_builder.py,sha256=
|
349
|
+
wandb/sdk/launch/builder/kaniko_builder.py,sha256=UGjY8Txh4Oz8CX_R5mHcR9ov_8RTifaaN6pFiCWDsxk,23207
|
350
350
|
wandb/sdk/launch/builder/noop.py,sha256=QQ02cEvbWnB--HOhW-rfO3qwEkRIZbGKCDlYn8NhjGo,1899
|
351
351
|
wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=KbW2cmZm55NvOmcDL0A_lKIbeLe_FYKHJJYELKNYUKc,7226
|
352
352
|
wandb/sdk/launch/environment/abstract.py,sha256=oDtHI34UaN3ZYevoMHwT5mL2yz6O3GlrBKDp1kUAbP8,950
|
@@ -362,19 +362,19 @@ wandb/sdk/launch/registry/google_artifact_registry.py,sha256=vVvGsQ1HXWKprtyVB0H
|
|
362
362
|
wandb/sdk/launch/registry/local_registry.py,sha256=ROM-fKmkgEGArlVCkQq_CbEiG9fSGw2Jz0mBvuSX_LQ,1780
|
363
363
|
wandb/sdk/launch/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
364
364
|
wandb/sdk/launch/runner/abstract.py,sha256=4R6mvpwg8WnqFH844X07BcBq__beyIFx0zMdZ9s8BJE,5858
|
365
|
-
wandb/sdk/launch/runner/kubernetes_monitor.py,sha256=
|
365
|
+
wandb/sdk/launch/runner/kubernetes_monitor.py,sha256=dcjXC_wB3lBz4MePN4JB_A8aK-gn7K8nEhu8MfWIsIc,16675
|
366
366
|
wandb/sdk/launch/runner/kubernetes_runner.py,sha256=vbM3Hy1WTBf90pgbMzqnqaptLZOBOSWVwKM8D4llyP8,33088
|
367
367
|
wandb/sdk/launch/runner/local_container.py,sha256=DogQyPtp2kT7w47npDmEu92aDdIoeynnJzSCuzTEILw,10036
|
368
368
|
wandb/sdk/launch/runner/local_process.py,sha256=EawHS0CcSQcJxJMdTFI_-TE_xRWvdDpt8gbwU1NU2ZE,3467
|
369
369
|
wandb/sdk/launch/runner/sagemaker_runner.py,sha256=5-MmGnWizadoFNhW9zSAKhWgtJlKzrVFWZzeD_3GW5w,15177
|
370
370
|
wandb/sdk/launch/runner/vertex_runner.py,sha256=PqfduJhT99v3A85lwokPQ-CZJYpW96P-2xp1kCBGXOE,8366
|
371
371
|
wandb/sdk/launch/sweeps/__init__.py,sha256=qQ96Pq9fXRIs-w8y3jy_Z6fKz9DIJ8zrMjwEZLrDGB8,913
|
372
|
-
wandb/sdk/launch/sweeps/scheduler.py,sha256=
|
372
|
+
wandb/sdk/launch/sweeps/scheduler.py,sha256=dK3EfqVW2lJfbHKxIIk0O0pdEUShYUg-6TEMFKt_EMM,26721
|
373
373
|
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=XeuTH44rbaQPc0ngpD-evsQaG0i_WSWiOz-JvtrPFJw,2999
|
374
374
|
wandb/sdk/launch/sweeps/utils.py,sha256=h2XNww9syjGTqi41ZmLVFII-kqBXPbQolFjY29Nf4Rg,9824
|
375
375
|
wandb/sdk/lib/__init__.py,sha256=53BA5lIOtUXciXZcPpNsFbp-iUPzI5gQFxplTykNmOE,183
|
376
376
|
wandb/sdk/lib/_settings_toposort_generate.py,sha256=FQZPNGKnUcApOHjT_SYFC5APLxniN2aJJ8UnvdS2dV4,4843
|
377
|
-
wandb/sdk/lib/_settings_toposort_generated.py,sha256=
|
377
|
+
wandb/sdk/lib/_settings_toposort_generated.py,sha256=lDAczxNDtb5n4eWBw2EN02S8QGvb6mkn5KYiFizI1UY,5161
|
378
378
|
wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
|
379
379
|
wandb/sdk/lib/_wburls_generated.py,sha256=xK2udBlEmJFNH1WD5VHQKfKIWijlb7zAR0mqC5sa47k,428
|
380
380
|
wandb/sdk/lib/apikey.py,sha256=hTtRD1Ve1ywQYeRycQG4yaG2MgA1eYtsWNsXzLkDUI8,8604
|
@@ -405,7 +405,7 @@ wandb/sdk/lib/proto_util.py,sha256=7cQd3KKGfW8c6dejQf885JzQTonIiOvRHJYu8kC6QUE,2
|
|
405
405
|
wandb/sdk/lib/redirect.py,sha256=BthQVySsQHpayzA_grFzlK5GXGa5NLclO7Vi9-pEh1Y,26073
|
406
406
|
wandb/sdk/lib/reporting.py,sha256=sfjVyNtNVOWFIcKihS-9C0yJhCAaUOUP3N3TDdyA-Fc,2410
|
407
407
|
wandb/sdk/lib/retry.py,sha256=aSKtlpQWCqmNyZ3ZbWndSDE-7B6exzvHONPS-MdnAq4,10082
|
408
|
-
wandb/sdk/lib/run_moment.py,sha256
|
408
|
+
wandb/sdk/lib/run_moment.py,sha256=zFnLv_0xq-fuyK3cGt-letX5ZNzgFcnAqvdDpB6UvXo,2306
|
409
409
|
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
410
410
|
wandb/sdk/lib/server.py,sha256=R8E-IqjtAvC7yLChNf2GxRNXrzJ8OMPph3RPU0IzxHo,1684
|
411
411
|
wandb/sdk/lib/sock_client.py,sha256=-KUS5JYHX8qjYjl2sCqyGr2i-tf2LjwbRPCoKYzKzRQ,10387
|
@@ -833,9 +833,9 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2
|
|
833
833
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
|
834
834
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
|
835
835
|
wandb/xgboost/__init__.py,sha256=GRixyb89ki1Znfw48RRiRPxZnK41aEj1L48bBG6-Kh0,230
|
836
|
-
wandb-0.16.
|
837
|
-
wandb-0.16.
|
838
|
-
wandb-0.16.
|
839
|
-
wandb-0.16.
|
840
|
-
wandb-0.16.
|
841
|
-
wandb-0.16.
|
836
|
+
wandb-0.16.6.dist-info/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
837
|
+
wandb-0.16.6.dist-info/METADATA,sha256=PVNMDmk2J2uwGPIW-B9GcPJEP1ULn57U9JxbTPuVNZA,10188
|
838
|
+
wandb-0.16.6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
839
|
+
wandb-0.16.6.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
840
|
+
wandb-0.16.6.dist-info/top_level.txt,sha256=gPLPSekU6Labh_9yJz7WLb6Q9DK72I02_ARvDEG9Xsw,6
|
841
|
+
wandb-0.16.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|