wandb 0.16.4__py3-none-any.whl → 0.16.5__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 +2 -2
- wandb/agents/pyagent.py +1 -1
- wandb/apis/public/api.py +6 -6
- wandb/apis/reports/v2/interface.py +4 -8
- wandb/apis/reports/v2/internal.py +12 -45
- wandb/cli/cli.py +24 -3
- wandb/integration/ultralytics/callback.py +0 -1
- wandb/proto/v3/wandb_internal_pb2.py +332 -312
- wandb/proto/v3/wandb_settings_pb2.py +13 -3
- wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v4/wandb_internal_pb2.py +316 -312
- wandb/proto/v4/wandb_settings_pb2.py +5 -3
- wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
- wandb/sdk/artifacts/artifact.py +67 -17
- wandb/sdk/artifacts/artifact_manifest_entry.py +6 -1
- wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +1 -0
- wandb/sdk/artifacts/artifact_saver.py +1 -18
- wandb/sdk/artifacts/storage_handler.py +2 -1
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +13 -5
- wandb/sdk/interface/interface.py +42 -9
- wandb/sdk/interface/interface_shared.py +13 -7
- wandb/sdk/internal/file_stream.py +19 -0
- wandb/sdk/internal/handler.py +1 -4
- wandb/sdk/internal/internal_api.py +2 -0
- wandb/sdk/internal/job_builder.py +45 -17
- wandb/sdk/internal/sender.py +53 -28
- wandb/sdk/internal/settings_static.py +9 -0
- wandb/sdk/internal/system/system_info.py +4 -1
- wandb/sdk/launch/create_job.py +1 -0
- wandb/sdk/launch/runner/kubernetes_runner.py +20 -2
- wandb/sdk/launch/utils.py +5 -5
- wandb/sdk/lib/__init__.py +2 -5
- wandb/sdk/lib/_settings_toposort_generated.py +1 -0
- wandb/sdk/lib/filesystem.py +11 -1
- wandb/sdk/lib/run_moment.py +72 -0
- wandb/sdk/service/streams.py +1 -6
- wandb/sdk/wandb_init.py +12 -1
- wandb/sdk/wandb_login.py +43 -26
- wandb/sdk/wandb_run.py +158 -89
- wandb/sdk/wandb_settings.py +53 -16
- wandb/testing/relay.py +5 -6
- {wandb-0.16.4.dist-info → wandb-0.16.5.dist-info}/METADATA +1 -1
- {wandb-0.16.4.dist-info → wandb-0.16.5.dist-info}/RECORD +47 -46
- {wandb-0.16.4.dist-info → wandb-0.16.5.dist-info}/WHEEL +1 -1
- {wandb-0.16.4.dist-info → wandb-0.16.5.dist-info}/LICENSE +0 -0
- {wandb-0.16.4.dist-info → wandb-0.16.5.dist-info}/entry_points.txt +0 -0
- {wandb-0.16.4.dist-info → wandb-0.16.5.dist-info}/top_level.txt +0 -0
wandb/sdk/wandb_settings.py
CHANGED
@@ -45,6 +45,7 @@ from wandb.proto import wandb_settings_pb2
|
|
45
45
|
from wandb.sdk.internal.system.env_probe_helpers import is_aws_lambda
|
46
46
|
from wandb.sdk.lib import filesystem
|
47
47
|
from wandb.sdk.lib._settings_toposort_generated import SETTINGS_TOPOLOGICALLY_SORTED
|
48
|
+
from wandb.sdk.lib.run_moment import RunMoment
|
48
49
|
from wandb.sdk.wandb_setup import _EarlyLogger
|
49
50
|
|
50
51
|
from .lib import apikey
|
@@ -160,6 +161,14 @@ def _get_program() -> Optional[str]:
|
|
160
161
|
return None
|
161
162
|
|
162
163
|
|
164
|
+
def _runmoment_preprocessor(val: Any) -> Optional[RunMoment]:
|
165
|
+
if isinstance(val, RunMoment) or val is None:
|
166
|
+
return val
|
167
|
+
elif isinstance(val, str):
|
168
|
+
return RunMoment.from_uri(val)
|
169
|
+
raise UsageError(f"Could not parse value {val} as a RunMoment.")
|
170
|
+
|
171
|
+
|
163
172
|
def _get_program_relpath(
|
164
173
|
program: str, root: Optional[str] = None, _logger: Optional[_EarlyLogger] = None
|
165
174
|
) -> Optional[str]:
|
@@ -297,8 +306,8 @@ class SettingsData:
|
|
297
306
|
_cuda: str
|
298
307
|
_disable_meta: bool # Do not collect system metadata
|
299
308
|
_disable_service: (
|
300
|
-
bool
|
301
|
-
)
|
309
|
+
bool # Disable wandb-service, spin up internal process the old way
|
310
|
+
)
|
302
311
|
_disable_setproctitle: bool # Do not use setproctitle on internal process
|
303
312
|
_disable_stats: bool # Do not collect system metrics
|
304
313
|
_disable_viewer: bool # Prevent early viewer query
|
@@ -355,20 +364,18 @@ class SettingsData:
|
|
355
364
|
_stats_sample_rate_seconds: float
|
356
365
|
_stats_samples_to_average: int
|
357
366
|
_stats_join_assets: (
|
358
|
-
bool
|
359
|
-
)
|
367
|
+
bool # join metrics from different assets before sending to backend
|
368
|
+
)
|
360
369
|
_stats_neuron_monitor_config_path: (
|
361
|
-
str
|
362
|
-
)
|
370
|
+
str # path to place config file for neuron-monitor (AWS Trainium)
|
371
|
+
)
|
363
372
|
_stats_open_metrics_endpoints: Mapping[str, str] # open metrics endpoint names/urls
|
364
373
|
# open metrics filters in one of the two formats:
|
365
374
|
# - {"metric regex pattern, including endpoint name as prefix": {"label": "label value regex pattern"}}
|
366
375
|
# - ("metric regex pattern 1", "metric regex pattern 2", ...)
|
367
376
|
_stats_open_metrics_filters: Union[Sequence[str], Mapping[str, Mapping[str, str]]]
|
368
377
|
_stats_disk_paths: Sequence[str] # paths to monitor disk usage
|
369
|
-
_stats_buffer_size:
|
370
|
-
int
|
371
|
-
) # number of consolidated samples to buffer before flushing, available in run obj
|
378
|
+
_stats_buffer_size: int # number of consolidated samples to buffer before flushing, available in run obj
|
372
379
|
_tmp_code_dir: str
|
373
380
|
_tracelog: str
|
374
381
|
_unsaved_keys: Sequence[str]
|
@@ -393,6 +400,7 @@ class SettingsData:
|
|
393
400
|
entity: str
|
394
401
|
files_dir: str
|
395
402
|
force: bool
|
403
|
+
fork_from: Optional[RunMoment]
|
396
404
|
git_commit: str
|
397
405
|
git_remote: str
|
398
406
|
git_remote_url: str
|
@@ -805,6 +813,10 @@ class Settings(SettingsData):
|
|
805
813
|
),
|
806
814
|
},
|
807
815
|
force={"preprocessor": _str_as_bool},
|
816
|
+
fork_from={
|
817
|
+
"value": None,
|
818
|
+
"preprocessor": _runmoment_preprocessor,
|
819
|
+
},
|
808
820
|
git_remote={"value": "origin"},
|
809
821
|
heartbeat_seconds={"value": 30},
|
810
822
|
ignore_globs={
|
@@ -1575,6 +1587,14 @@ class Settings(SettingsData):
|
|
1575
1587
|
for key, value in v.items():
|
1576
1588
|
# we only support dicts with string values for now
|
1577
1589
|
mapping.value[key] = value
|
1590
|
+
elif isinstance(v, RunMoment):
|
1591
|
+
getattr(settings, k).CopyFrom(
|
1592
|
+
wandb_settings_pb2.RunMoment(
|
1593
|
+
run=v.run,
|
1594
|
+
value=v.value,
|
1595
|
+
metric=v.metric,
|
1596
|
+
)
|
1597
|
+
)
|
1578
1598
|
elif v is None:
|
1579
1599
|
# None is the default value for all settings, so we don't need to set it,
|
1580
1600
|
# i.e. None means that the value was not set.
|
@@ -1897,16 +1917,33 @@ class Settings(SettingsData):
|
|
1897
1917
|
f.write(json.dumps({"run_id": self.run_id}))
|
1898
1918
|
|
1899
1919
|
def _apply_login(
|
1900
|
-
self,
|
1920
|
+
self,
|
1921
|
+
login_settings: Dict[str, Any],
|
1922
|
+
_logger: Optional[_EarlyLogger] = None,
|
1901
1923
|
) -> None:
|
1902
|
-
|
1924
|
+
key_map = {
|
1925
|
+
"key": "api_key",
|
1926
|
+
"host": "base_url",
|
1927
|
+
"timeout": "login_timeout",
|
1928
|
+
}
|
1929
|
+
|
1930
|
+
# Rename keys and keep only the non-None values.
|
1931
|
+
#
|
1932
|
+
# The input keys are parameters to wandb.login(), but we use different
|
1933
|
+
# names for some of them in Settings.
|
1903
1934
|
login_settings = {
|
1904
|
-
|
1935
|
+
key_map.get(key, key): value
|
1936
|
+
for key, value in login_settings.items()
|
1937
|
+
if value is not None
|
1905
1938
|
}
|
1906
|
-
|
1907
|
-
|
1908
|
-
|
1909
|
-
|
1939
|
+
|
1940
|
+
if _logger:
|
1941
|
+
_logger.info(f"Applying login settings: {_redact_dict(login_settings)}")
|
1942
|
+
|
1943
|
+
self.update(
|
1944
|
+
login_settings,
|
1945
|
+
source=Source.LOGIN,
|
1946
|
+
)
|
1910
1947
|
|
1911
1948
|
def _apply_run_start(self, run_start_settings: Dict[str, Any]) -> None:
|
1912
1949
|
# This dictionary maps from the "run message dict" to relevant fields in settings
|
wandb/testing/relay.py
CHANGED
@@ -486,11 +486,12 @@ class QueryResolver:
|
|
486
486
|
response_data: Dict[str, Any],
|
487
487
|
**kwargs: Any,
|
488
488
|
) -> Optional[Dict[str, Any]]:
|
489
|
+
results = []
|
489
490
|
for resolver in self.resolvers:
|
490
491
|
result = resolver.get("resolver")(request_data, response_data, **kwargs)
|
491
492
|
if result is not None:
|
492
|
-
|
493
|
-
return
|
493
|
+
results.append(result)
|
494
|
+
return results
|
494
495
|
|
495
496
|
|
496
497
|
class TokenizedCircularPattern:
|
@@ -768,14 +769,13 @@ class RelayServer:
|
|
768
769
|
response_data,
|
769
770
|
**kwargs,
|
770
771
|
)
|
772
|
+
for entry in snooped_context:
|
773
|
+
self.context.upsert(entry)
|
771
774
|
except Exception as e:
|
772
775
|
print("Failed to resolve context: ", e)
|
773
776
|
traceback.print_exc()
|
774
777
|
snooped_context = None
|
775
778
|
|
776
|
-
if snooped_context is not None:
|
777
|
-
self.context.upsert(snooped_context)
|
778
|
-
|
779
779
|
return None
|
780
780
|
|
781
781
|
def graphql(self) -> Mapping[str, str]:
|
@@ -815,7 +815,6 @@ class RelayServer:
|
|
815
815
|
print(relayed_response)
|
816
816
|
print(relayed_response.status_code, relayed_response.json())
|
817
817
|
print("*****************")
|
818
|
-
|
819
818
|
self.snoop_context(request, relayed_response, timer.elapsed, path=path)
|
820
819
|
|
821
820
|
return relayed_response.json()
|
@@ -1,4 +1,4 @@
|
|
1
|
-
wandb/__init__.py,sha256=
|
1
|
+
wandb/__init__.py,sha256=Q7HMJF7-XGvQzSWZshrS63fiYfyNi7cWqst7ZfH2tBA,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
|
@@ -14,7 +14,7 @@ wandb/wandb_controller.py,sha256=NfrTC33aP_YqiQwnZ9770_q2T2hwKhsXM8Rscyz0tKM,247
|
|
14
14
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
15
15
|
wandb/wandb_torch.py,sha256=3fDNHLsJVqLIGbTHhHbjOQT_hFgLHq6JGfW9dZ7Tr2E,21277
|
16
16
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
wandb/agents/pyagent.py,sha256=
|
17
|
+
wandb/agents/pyagent.py,sha256=KjWHOsE9vRjfYTIUyN1k7C6_spr4eQuNz6Xwl-eZncM,13443
|
18
18
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
19
19
|
wandb/analytics/sentry.py,sha256=r3bjb5YJPT2SMFSufNOerVFnDJ1Dg-UeRWfpG9TIjDE,8455
|
20
20
|
wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
|
@@ -30,7 +30,7 @@ wandb/apis/importers/internals/internal.py,sha256=lBCiYCottkyuyLAqewH_XeS9SfF9dY
|
|
30
30
|
wandb/apis/importers/internals/protocols.py,sha256=VGou5DlKT9zYGy72MalHffQicMVOOkKv98QkkjBYDzY,3186
|
31
31
|
wandb/apis/importers/internals/util.py,sha256=HvphFwhSxuYqg0omNhfP1GwZV6UzZN-m85CNaSUZXQs,2083
|
32
32
|
wandb/apis/public/__init__.py,sha256=ldsy9V8UQlRnsIf9E4qRMtYIdH89oQ8eiYThQsphXks,1070
|
33
|
-
wandb/apis/public/api.py,sha256=
|
33
|
+
wandb/apis/public/api.py,sha256=K_n378Do8bjLOZ2lcqpg8WY6IFnQHFQXQJRTj8tljyg,37155
|
34
34
|
wandb/apis/public/artifacts.py,sha256=cHo3gPFSgZrN87SBnE6NX5JNfFvbNUaj7gxlra9Dv6w,26039
|
35
35
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
36
36
|
wandb/apis/public/files.py,sha256=-xQgXY9f1umIk-eI5qQynBEi1Xv-_zkfWz7-ssaoAR4,5576
|
@@ -62,15 +62,15 @@ wandb/apis/reports/v2/__init__.py,sha256=mBihuVN3y73SAkILK3axEHynZLyVi8lUd005F8L
|
|
62
62
|
wandb/apis/reports/v2/blocks.py,sha256=_scD-AyzD1e05-gpJYiMAL9XNLooayP2npQUHaLNZdI,382
|
63
63
|
wandb/apis/reports/v2/expr_parsing.py,sha256=HkScdGk4m3sXTwp314Ygg_bRNlloyfvWIfZKcCK5voA,8246
|
64
64
|
wandb/apis/reports/v2/gql.py,sha256=WAJtZA8A_ym1clua503V-K7ZG8agtL38hLwLzQRgaEk,1328
|
65
|
-
wandb/apis/reports/v2/interface.py,sha256=
|
66
|
-
wandb/apis/reports/v2/internal.py,sha256=
|
65
|
+
wandb/apis/reports/v2/interface.py,sha256=2NkBjCtCGrkj74vs9i8aGS1uGlug7dhpE0Rk7c6eNdk,57578
|
66
|
+
wandb/apis/reports/v2/internal.py,sha256=7I1GAbMp-gBwFw4Z_3GqlGbk1hTf8Kv3jRCGLSCN3zk,26168
|
67
67
|
wandb/apis/reports/v2/metrics.py,sha256=CQu3LC_EDd3ofqb8HPcHyH4qzZQ_oRpSznR0ZEoNIrc,85
|
68
68
|
wandb/apis/reports/v2/panels.py,sha256=0mvlhY1o1LQ-0HNrZ_xfP5WM3ZrnK0gz35_n8RxbUxk,266
|
69
69
|
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=qkkVzB2974IP0A5GNYWAbJ_T_0HAZZQWgycCgAgh3Pg,94523
|
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
|
@@ -144,7 +144,7 @@ wandb/integration/tensorflow/estimator_hook.py,sha256=fi-UtjNZxUnDkzfbNP09iH074z
|
|
144
144
|
wandb/integration/torch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
145
145
|
wandb/integration/ultralytics/__init__.py,sha256=omtrUwOg6GWKWyunhIPclFdQmxW8XIXQaPoF1Ai5WxU,340
|
146
146
|
wandb/integration/ultralytics/bbox_utils.py,sha256=TFAiLqdp9ON2toR6nzJruNYy4D28CBx1kZUTPABjK8w,7876
|
147
|
-
wandb/integration/ultralytics/callback.py,sha256=
|
147
|
+
wandb/integration/ultralytics/callback.py,sha256=Nrs56DlL6C2AONFE4QdYV67zNFtXTU6gU6YrsB0hqB0,21263
|
148
148
|
wandb/integration/ultralytics/classification_utils.py,sha256=NZy8LA1GYf_qP9SptwIWw8FCaODteuLvbTAd7z_YzAs,3168
|
149
149
|
wandb/integration/ultralytics/mask_utils.py,sha256=uzUtDjg4C9_4Z6_fWo0wiylauYvmckZ9JQn0afd1NJg,7080
|
150
150
|
wandb/integration/ultralytics/pose_utils.py,sha256=HHV4sdni-by_Vq4ELvSVQyPp-pojTT6d2VOPwoEobus,3735
|
@@ -188,51 +188,51 @@ 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=xq6u0u7dH-VXvc-Ai4my1REWzFLbpj3efzL0nUPEvpM,104041
|
192
192
|
wandb/proto/v3/wandb_server_pb2.py,sha256=u7p14fy4XjKVcDnE54U1WwgC1Gpy6VWGA4MGU3aXyg4,13631
|
193
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
194
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
193
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=tejK-CFWowJqRu802RT7ChlKjZfGkmm-zieu6iGCY-4,19217
|
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=v0Otk-EUmZmjA7MloqXDNgpjgLp181kAMS_rdqRYqvQ,47498
|
198
198
|
wandb/proto/v4/wandb_server_pb2.py,sha256=YkapN5k621amFmIYKtV5xLww3TaB-6EeGI8Qq2_UY94,5991
|
199
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
200
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
199
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=fxSmTB4MWtiSPnROjN2_BFr0aoRBR06lLFaE4oYL6X0,15948
|
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=
|
207
|
-
wandb/sdk/wandb_login.py,sha256=
|
206
|
+
wandb/sdk/wandb_init.py,sha256=ql5ebWqk90GwCGxJ7rd4dAXgCK7Z8SKmaQV_-pAnAcc,50340
|
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=Sq9DlVb20aDVwFgb5v_5XIR5yyCxUy_yUx2Tcf1fC9E,157565
|
213
|
+
wandb/sdk/wandb_settings.py,sha256=b5_LIXJVAIY2lV2PZz2Hwg03KbD8M8x2XGVj6KgMyL0,75171
|
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=9Ot_-EtgUcl1LtMg5Ku2HwJKzD6WRUeY-ifzWqmETCI,85791
|
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
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
226
|
-
wandb/sdk/artifacts/artifact_saver.py,sha256=
|
225
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=1Qe7XPPlF6xDb2XzLq2DXmG7ac1_bY3hOsLNlsVR9DY,7158
|
226
|
+
wandb/sdk/artifacts/artifact_saver.py,sha256=8wpq3cWckSRFGpZqe1x6elUkg_1xUWME7SLgR8ISK9A,9681
|
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
|
230
230
|
wandb/sdk/artifacts/staging.py,sha256=_U3oH2S7fEevRkcYgo4nmwvdaoJnZR4V-bNiJVWlowA,854
|
231
|
-
wandb/sdk/artifacts/storage_handler.py,sha256=
|
231
|
+
wandb/sdk/artifacts/storage_handler.py,sha256=NwY6qrUqoeNvvJMZVwHje-mBwL1ibUeB7dYgHNTCaKA,1841
|
232
232
|
wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
|
233
233
|
wandb/sdk/artifacts/storage_policy.py,sha256=-RS0HGzqZXNlWZwgq_KVknn5ALtBkcuB8_5fdPRthMo,2492
|
234
234
|
wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
235
|
-
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=
|
235
|
+
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=Mv_0vFYb6a6aVS9as1G7Bcc2W9tmbUIJvokPQqZQBbU,3426
|
236
236
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
237
237
|
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=KdP8WaLRpnYu7G_pXXebT4y9hc4VjXjqEvuv4ySMbXQ,7578
|
238
238
|
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=uewuzKZJP1-jSd8dSWBFmd1fsEg3GL7elsHUU400Z7U,7604
|
@@ -245,7 +245,7 @@ wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=wHJdwFmwP8CKO
|
|
245
245
|
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=CzeDSvRKnnYd96zHS-sBbDQGZ7I86JB55_8R-YfUdO4,2560
|
246
246
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
|
247
247
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
|
248
|
-
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=
|
248
|
+
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=Jj7YO8zIsEqLIYZYgq8kp4YCckAVrjYVStXnvcQRylY,15153
|
249
249
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
250
250
|
wandb/sdk/backend/backend.py,sha256=aVJFViyPxV4yXViqpixhNWElbXR1NVxijeIX-NAIFAA,8308
|
251
251
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -274,10 +274,10 @@ 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=23RMf3KGwdb6yp1Oi7UOd9pElZ2MGQT1BnrVsbax9OY,32036
|
278
278
|
wandb/sdk/interface/interface_queue.py,sha256=eCvNpvwMe1GHJv_5M8R3ZSspmEvE02mXMstBDBEZy8A,1967
|
279
279
|
wandb/sdk/interface/interface_relay.py,sha256=vQUrk5KESKInZsXpOxWF4YcWRZFLJjNz1mdNywbWbbE,1514
|
280
|
-
wandb/sdk/interface/interface_shared.py,sha256=
|
280
|
+
wandb/sdk/interface/interface_shared.py,sha256=mUzrDTuuNXUIDQSYJ4jvxrU9JSTb5eWRE1ttyKfGT64,20811
|
281
281
|
wandb/sdk/interface/interface_sock.py,sha256=vA5vDMDuuenKkW8zHYfECM4OoSoqAi6hiLMJzqdepd8,1984
|
282
282
|
wandb/sdk/interface/message_future.py,sha256=5OMApIUKTXLHP98ph_jCdshuPZB_E0Uf3UGZpOQ8sik,685
|
283
283
|
wandb/sdk/interface/message_future_poll.py,sha256=drjrcBKswYPYJJQLFlj7UDXq7_zg7KNcObFVetsbvhQ,1410
|
@@ -290,27 +290,27 @@ wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
290
290
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
291
291
|
wandb/sdk/internal/datastore.py,sha256=k4mqn4s-rbZRDSaQcr0vLxD2FReAsfLVvn_FW7SQvp8,9845
|
292
292
|
wandb/sdk/internal/file_pusher.py,sha256=O92-lcy-BTICqmxBHwOR2h8fs4l3oyI2OpelTKWIEbg,6191
|
293
|
-
wandb/sdk/internal/file_stream.py,sha256=
|
293
|
+
wandb/sdk/internal/file_stream.py,sha256=sCh69V7elln6vvKPirNZLkIhqsZkIg97dfKwKniASyM,26346
|
294
294
|
wandb/sdk/internal/flow_control.py,sha256=LO3iDyBbI4WGoDuVLjA_iv62PyiupdYkpSjxPIMGI7E,8584
|
295
|
-
wandb/sdk/internal/handler.py,sha256=
|
295
|
+
wandb/sdk/internal/handler.py,sha256=KwAHMXV65UaS2vXYSbCiwDvb_PqEqPzDyCNlRX9ce-s,32734
|
296
296
|
wandb/sdk/internal/internal.py,sha256=xEPko89uIn5QOZMO8KTfEjPnEw9q-uJvIbHv9YF4a-0,12723
|
297
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
297
|
+
wandb/sdk/internal/internal_api.py,sha256=n4JDMp9d0VvAcRjVBpIxusudsVljkdI16vmSSPAJcSg,144348
|
298
298
|
wandb/sdk/internal/internal_util.py,sha256=1BI2ol9hhRukU7zBPbPhUcUXa58i4vLa4ocgBUya6pQ,2655
|
299
|
-
wandb/sdk/internal/job_builder.py,sha256=
|
299
|
+
wandb/sdk/internal/job_builder.py,sha256=1C3PdkuVL1_IvWqGThHorQEL8H6MqGJQwuEJRNNvr8Q,20870
|
300
300
|
wandb/sdk/internal/profiler.py,sha256=gbuY8jIkCzPXp0LkxmmWdp3KtXbtpllN5LexZUe8HA8,2347
|
301
301
|
wandb/sdk/internal/progress.py,sha256=PByxtt9tx3Y6GQcw3bKDBru44UXRnFL244RTe3NlAuc,3272
|
302
302
|
wandb/sdk/internal/run.py,sha256=zZVFW3o78iQO6Yl74pJnEI_X4Qi1b1Y5NXD3VDDxwkU,681
|
303
303
|
wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,2442
|
304
|
-
wandb/sdk/internal/sender.py,sha256=
|
304
|
+
wandb/sdk/internal/sender.py,sha256=9b2l-hJuLumVnUjhj0lLc0DjMOSRXLuc1C4DraJLoSI,63197
|
305
305
|
wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
|
306
|
-
wandb/sdk/internal/settings_static.py,sha256=
|
306
|
+
wandb/sdk/internal/settings_static.py,sha256=OC-umYSAjKUzfNFkOub1Z9dW9ZrYPPIrS_WVKO97jGU,3250
|
307
307
|
wandb/sdk/internal/tb_watcher.py,sha256=95vhk4q0RT1V7QHQAyxy2hreJvpWYv3scTQ1oAh--Xw,18688
|
308
308
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
309
309
|
wandb/sdk/internal/update.py,sha256=RdcNeci0VeQ6y1GAWy8MS6tgeZLwJs2YAixk_eZ4h5Y,3878
|
310
310
|
wandb/sdk/internal/writer.py,sha256=_W3OHh0Xs7x8HqEed20DFNMbh2SkK4P2pQfxbu_B1t0,7394
|
311
311
|
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
312
312
|
wandb/sdk/internal/system/env_probe_helpers.py,sha256=jIy6gbiaq37SzgcBGe6GepJho1VS5qNQThqOmu-g0OA,397
|
313
|
-
wandb/sdk/internal/system/system_info.py,sha256=
|
313
|
+
wandb/sdk/internal/system/system_info.py,sha256=0xGz6NBtUy3bmg42SVnx367KzkqA0KrPOfDB1eg6YMo,9902
|
314
314
|
wandb/sdk/internal/system/system_monitor.py,sha256=5uJeNVoKfbToTWRx3w6LhbEmOIlz1IcPPP26NxW47EA,8880
|
315
315
|
wandb/sdk/internal/system/assets/__init__.py,sha256=MYjvhda8QWI55ygVE8hzLULgJhrJPMftB3z4F660Hso,522
|
316
316
|
wandb/sdk/internal/system/assets/aggregators.py,sha256=EzJp_YjvYORcBH6g58OsqGtmy55HqYHYMAvaIsp2Iwg,1093
|
@@ -331,11 +331,11 @@ wandb/sdk/launch/__init__.py,sha256=VFClnbYvX93eHr_-N6QwHqFkiSWP94fVqvgAyY6-mUo,
|
|
331
331
|
wandb/sdk/launch/_launch.py,sha256=KMQnYWll8LAycohJ5FRUuolAvv56C92a2_UvHMq66c8,12298
|
332
332
|
wandb/sdk/launch/_launch_add.py,sha256=AYJuYkF4RyGMhiPF1LcVT0jJtBaokC_syoKXtwRqaIg,8832
|
333
333
|
wandb/sdk/launch/_project_spec.py,sha256=eLnaPsgha74ZSdqux3fVYtjrWrhx6tza2wJJgh7PvGg,23395
|
334
|
-
wandb/sdk/launch/create_job.py,sha256=
|
334
|
+
wandb/sdk/launch/create_job.py,sha256=ckfS2KrL8LSfzVlTQgihwcQEpWo0QhPVTo-XcmYbzjE,16796
|
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=VehQXgRezA65JNFkDXgJG9ZdsLOGRm5JdpqVOLd8hEQ,29443
|
339
339
|
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
340
340
|
wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
|
341
341
|
wandb/sdk/launch/agent/agent.py,sha256=HSYzrzVc8v3NX8WK6dE2jEt6Bkav_nDd9xM-TjM1Ams,33045
|
@@ -363,7 +363,7 @@ wandb/sdk/launch/registry/local_registry.py,sha256=ROM-fKmkgEGArlVCkQq_CbEiG9fSG
|
|
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
365
|
wandb/sdk/launch/runner/kubernetes_monitor.py,sha256=pbrJJTB73-vA0mrwLQpF8HE8pQ_CGm0c9-j9R4rzhGs,16531
|
366
|
-
wandb/sdk/launch/runner/kubernetes_runner.py,sha256=
|
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
|
@@ -372,9 +372,9 @@ wandb/sdk/launch/sweeps/__init__.py,sha256=qQ96Pq9fXRIs-w8y3jy_Z6fKz9DIJ8zrMjwEZ
|
|
372
372
|
wandb/sdk/launch/sweeps/scheduler.py,sha256=qXxf69K_5v_arHAuxv84zpvWwke-Jc_wfvTehSMHnOM,26666
|
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
|
-
wandb/sdk/lib/__init__.py,sha256=
|
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=5EyljciFSwTB6P2pgJlIbix-QIuC66g5HehX_PJinSk,5132
|
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
|
@@ -386,7 +386,7 @@ wandb/sdk/lib/disabled.py,sha256=-REmuFxa43C5k4pzhR8k7EshPUUHRdqsgL8qi0Jt2gA,357
|
|
386
386
|
wandb/sdk/lib/exit_hooks.py,sha256=_4oozaRQCJi8NJfZvHsA8livvFb0trZKLOGB8_UcHGk,1540
|
387
387
|
wandb/sdk/lib/file_stream_utils.py,sha256=nGzraU0hjn5t8RDtSDM4jjcQL2SBIuu3m6unFUUyDR0,4023
|
388
388
|
wandb/sdk/lib/filenames.py,sha256=GvzWOq85BO_Od7f69PkRKS6zYhQ88dTCtMr3c19jLEk,2006
|
389
|
-
wandb/sdk/lib/filesystem.py,sha256=
|
389
|
+
wandb/sdk/lib/filesystem.py,sha256=AqtdDb78OPuEJpyyk94vKik7bR9Wg7J3u8LRQgT8B-E,14135
|
390
390
|
wandb/sdk/lib/fsm.py,sha256=t6WBBgonEJwFEiBIya3xe-rvarVmXlJwzBGf6fhh0Xc,5284
|
391
391
|
wandb/sdk/lib/gitlib.py,sha256=RdeGxqE7seQJbso2qNjxHGs--789qqGOniBGGE-UxeU,7734
|
392
392
|
wandb/sdk/lib/gql_request.py,sha256=4-4HY6IOetwcL8EUaoFc_u3pojnNtEN4NN6-5EtT-MY,2400
|
@@ -405,6 +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=-_xWnktxlB21obnogPfGeaeIaf8mCS-MIZSMepBL3ZM,2193
|
408
409
|
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
409
410
|
wandb/sdk/lib/server.py,sha256=R8E-IqjtAvC7yLChNf2GxRNXrzJ8OMPph3RPU0IzxHo,1684
|
410
411
|
wandb/sdk/lib/sock_client.py,sha256=-KUS5JYHX8qjYjl2sCqyGr2i-tf2LjwbRPCoKYzKzRQ,10387
|
@@ -422,7 +423,7 @@ wandb/sdk/service/server_sock.py,sha256=QIA-2_qdZKmcJSnbaw5ofxKllaW17NXalCUozV_I
|
|
422
423
|
wandb/sdk/service/service.py,sha256=8bxFlranXQvb5l_AcepLqFGIkX0w69gg8BgOfrxSuJg,9706
|
423
424
|
wandb/sdk/service/service_base.py,sha256=S6et2dWmlHgHvXyHfAiMyU_7cfHwE8ZJp4JhqTpDffM,1288
|
424
425
|
wandb/sdk/service/service_sock.py,sha256=CGpZ3JWG9FQiUkpb-oZCBlv9lX700eYzZ0PaVPzPH9A,2274
|
425
|
-
wandb/sdk/service/streams.py,sha256=
|
426
|
+
wandb/sdk/service/streams.py,sha256=MWkqP6E-Fv6-8Br3FSXG7mZBEwyll7ik8URPNbV1P3I,14904
|
426
427
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
427
428
|
wandb/sdk/verify/verify.py,sha256=DYKjniv4Pg67S8wPleFkx0xYJIXbMMQZBGFnGMGPza4,16520
|
428
429
|
wandb/sklearn/__init__.py,sha256=aWYFigKCNvEhTILHouDyo7j8pUZayo5v2AnRdbYp2vM,860
|
@@ -446,7 +447,7 @@ wandb/sklearn/plot/regressor.py,sha256=yw3sFuWGDeD_mByi-Xuef79_4zdpE6ODJyIPiYEY0
|
|
446
447
|
wandb/sklearn/plot/shared.py,sha256=_BMOiBmwNO_vIH5f2SDQcPASrJabxmRuKuELwA27-9k,2732
|
447
448
|
wandb/sync/__init__.py,sha256=BzzKmWKjsrCTBAj24d-lJOEPkFUmTfvaK2MeXplSwcc,93
|
448
449
|
wandb/sync/sync.py,sha256=pgWD3O-zGnNtdRNSAGSN1e-QUBByhPpRyciU69XtWkk,15644
|
449
|
-
wandb/testing/relay.py,sha256=
|
450
|
+
wandb/testing/relay.py,sha256=xI9mp3Slh5XeMMoliske0hvyLXVUqoxk5lhvWNlVQtY,29483
|
450
451
|
wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
451
452
|
wandb/vendor/gql-0.2.0/setup.py,sha256=_osNap_aCOVvTlDwP9f-aI10TJbpIflxcG6fEQoAxNs,1314
|
452
453
|
wandb/vendor/gql-0.2.0/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -832,9 +833,9 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2
|
|
832
833
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
|
833
834
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
|
834
835
|
wandb/xgboost/__init__.py,sha256=GRixyb89ki1Znfw48RRiRPxZnK41aEj1L48bBG6-Kh0,230
|
835
|
-
wandb-0.16.
|
836
|
-
wandb-0.16.
|
837
|
-
wandb-0.16.
|
838
|
-
wandb-0.16.
|
839
|
-
wandb-0.16.
|
840
|
-
wandb-0.16.
|
836
|
+
wandb-0.16.5.dist-info/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
837
|
+
wandb-0.16.5.dist-info/METADATA,sha256=gjvEiKJ0HfmAZakBv6aUyrF1XO40A7x-m-3c5t2_WVY,10188
|
838
|
+
wandb-0.16.5.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
839
|
+
wandb-0.16.5.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
840
|
+
wandb-0.16.5.dist-info/top_level.txt,sha256=gPLPSekU6Labh_9yJz7WLb6Q9DK72I02_ARvDEG9Xsw,6
|
841
|
+
wandb-0.16.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|