wandb 0.15.4__py3-none-any.whl → 0.15.5__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- wandb/__init__.py +1 -1
- wandb/analytics/sentry.py +1 -0
- wandb/apis/internal.py +3 -0
- wandb/apis/public.py +18 -20
- wandb/beta/workflows.py +5 -6
- wandb/cli/cli.py +27 -27
- wandb/data_types.py +2 -0
- wandb/integration/langchain/wandb_tracer.py +16 -179
- wandb/integration/sagemaker/config.py +2 -2
- wandb/integration/tensorboard/log.py +4 -4
- wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
- wandb/proto/wandb_deprecated.py +3 -1
- wandb/sdk/__init__.py +1 -4
- wandb/sdk/artifacts/__init__.py +0 -14
- wandb/sdk/artifacts/artifact.py +1757 -277
- wandb/sdk/artifacts/artifact_manifest_entry.py +26 -6
- wandb/sdk/artifacts/artifact_state.py +10 -0
- wandb/sdk/artifacts/artifacts_cache.py +7 -8
- wandb/sdk/artifacts/exceptions.py +4 -4
- wandb/sdk/artifacts/storage_handler.py +2 -2
- wandb/sdk/artifacts/storage_handlers/azure_handler.py +16 -6
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +2 -2
- wandb/sdk/artifacts/storage_handlers/http_handler.py +2 -2
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py +2 -2
- wandb/sdk/artifacts/storage_handlers/multi_handler.py +2 -2
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +35 -32
- wandb/sdk/artifacts/storage_handlers/tracking_handler.py +2 -2
- wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +5 -9
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +2 -2
- wandb/sdk/artifacts/storage_policies/s3_bucket_policy.py +2 -2
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +24 -16
- wandb/sdk/artifacts/storage_policy.py +3 -3
- wandb/sdk/data_types/_dtypes.py +7 -12
- wandb/sdk/data_types/base_types/json_metadata.py +2 -2
- wandb/sdk/data_types/base_types/media.py +5 -6
- wandb/sdk/data_types/base_types/wb_value.py +12 -13
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +4 -5
- wandb/sdk/data_types/helper_types/classes.py +5 -8
- wandb/sdk/data_types/helper_types/image_mask.py +4 -5
- wandb/sdk/data_types/histogram.py +3 -3
- wandb/sdk/data_types/html.py +3 -4
- wandb/sdk/data_types/image.py +4 -5
- wandb/sdk/data_types/molecule.py +2 -2
- wandb/sdk/data_types/object_3d.py +3 -3
- wandb/sdk/data_types/plotly.py +2 -2
- wandb/sdk/data_types/saved_model.py +7 -8
- wandb/sdk/data_types/trace_tree.py +4 -4
- wandb/sdk/data_types/video.py +4 -4
- wandb/sdk/interface/interface.py +8 -10
- wandb/sdk/internal/file_stream.py +2 -3
- wandb/sdk/internal/internal_api.py +99 -4
- wandb/sdk/internal/job_builder.py +15 -7
- wandb/sdk/internal/sender.py +4 -0
- wandb/sdk/internal/settings_static.py +1 -0
- wandb/sdk/launch/_project_spec.py +9 -7
- wandb/sdk/launch/agent/agent.py +115 -58
- wandb/sdk/launch/agent/job_status_tracker.py +34 -0
- wandb/sdk/launch/agent/run_queue_item_file_saver.py +45 -0
- wandb/sdk/launch/builder/abstract.py +5 -1
- wandb/sdk/launch/builder/build.py +16 -10
- wandb/sdk/launch/builder/docker_builder.py +9 -2
- wandb/sdk/launch/builder/kaniko_builder.py +108 -22
- wandb/sdk/launch/builder/noop.py +3 -1
- wandb/sdk/launch/environment/aws_environment.py +2 -1
- wandb/sdk/launch/environment/azure_environment.py +124 -0
- wandb/sdk/launch/github_reference.py +30 -18
- wandb/sdk/launch/launch.py +1 -1
- wandb/sdk/launch/loader.py +15 -0
- wandb/sdk/launch/registry/azure_container_registry.py +132 -0
- wandb/sdk/launch/registry/elastic_container_registry.py +38 -4
- wandb/sdk/launch/registry/google_artifact_registry.py +46 -7
- wandb/sdk/launch/runner/abstract.py +19 -3
- wandb/sdk/launch/runner/kubernetes_runner.py +111 -47
- wandb/sdk/launch/runner/local_container.py +101 -48
- wandb/sdk/launch/runner/sagemaker_runner.py +59 -9
- wandb/sdk/launch/runner/vertex_runner.py +8 -4
- wandb/sdk/launch/sweeps/scheduler.py +102 -27
- wandb/sdk/launch/sweeps/utils.py +21 -0
- wandb/sdk/launch/utils.py +19 -7
- wandb/sdk/lib/_settings_toposort_generated.py +3 -0
- wandb/sdk/service/server.py +22 -9
- wandb/sdk/service/service.py +27 -8
- wandb/sdk/verify/verify.py +6 -9
- wandb/sdk/wandb_config.py +2 -4
- wandb/sdk/wandb_init.py +2 -0
- wandb/sdk/wandb_require.py +7 -0
- wandb/sdk/wandb_run.py +32 -35
- wandb/sdk/wandb_settings.py +10 -3
- wandb/testing/relay.py +15 -2
- wandb/util.py +55 -23
- {wandb-0.15.4.dist-info → wandb-0.15.5.dist-info}/METADATA +11 -8
- {wandb-0.15.4.dist-info → wandb-0.15.5.dist-info}/RECORD +97 -97
- wandb/integration/langchain/util.py +0 -191
- wandb/sdk/artifacts/invalid_artifact.py +0 -23
- wandb/sdk/artifacts/lazy_artifact.py +0 -162
- wandb/sdk/artifacts/local_artifact.py +0 -719
- wandb/sdk/artifacts/public_artifact.py +0 -1188
- {wandb-0.15.4.dist-info → wandb-0.15.5.dist-info}/LICENSE +0 -0
- {wandb-0.15.4.dist-info → wandb-0.15.5.dist-info}/WHEEL +0 -0
- {wandb-0.15.4.dist-info → wandb-0.15.5.dist-info}/entry_points.txt +0 -0
- {wandb-0.15.4.dist-info → wandb-0.15.5.dist-info}/top_level.txt +0 -0
wandb/util.py
CHANGED
@@ -21,7 +21,9 @@ import tempfile
|
|
21
21
|
import threading
|
22
22
|
import time
|
23
23
|
import traceback
|
24
|
+
import types
|
24
25
|
import urllib
|
26
|
+
from dataclasses import asdict, is_dataclass
|
25
27
|
from datetime import date, datetime, timedelta
|
26
28
|
from importlib import import_module
|
27
29
|
from sys import getsizeof
|
@@ -57,8 +59,7 @@ from wandb.sdk.lib.paths import FilePathStr, StrPath
|
|
57
59
|
if TYPE_CHECKING:
|
58
60
|
import wandb.sdk.internal.settings_static
|
59
61
|
import wandb.sdk.wandb_settings
|
60
|
-
from wandb.sdk.artifacts.
|
61
|
-
from wandb.sdk.artifacts.public_artifact import Artifact as PublicArtifact
|
62
|
+
from wandb.sdk.artifacts.artifact import Artifact
|
62
63
|
|
63
64
|
CheckRetryFnType = Callable[[Exception], Union[bool, timedelta]]
|
64
65
|
|
@@ -180,25 +181,59 @@ def vendor_import(name: str) -> Any:
|
|
180
181
|
return module
|
181
182
|
|
182
183
|
|
183
|
-
|
184
|
+
class LazyModuleState:
|
185
|
+
def __init__(self, module: types.ModuleType) -> None:
|
186
|
+
self.module = module
|
187
|
+
self.load_started = False
|
188
|
+
self.lock = threading.RLock()
|
189
|
+
|
190
|
+
def load(self) -> None:
|
191
|
+
with self.lock:
|
192
|
+
if self.load_started:
|
193
|
+
return
|
194
|
+
self.load_started = True
|
195
|
+
assert self.module.__spec__ is not None
|
196
|
+
assert self.module.__spec__.loader is not None
|
197
|
+
self.module.__spec__.loader.exec_module(self.module)
|
198
|
+
self.module.__class__ = types.ModuleType
|
199
|
+
|
200
|
+
|
201
|
+
class LazyModule(types.ModuleType):
|
202
|
+
def __getattribute__(self, name: str) -> Any:
|
203
|
+
state = object.__getattribute__(self, "__lazy_module_state__")
|
204
|
+
state.load()
|
205
|
+
return object.__getattribute__(self, name)
|
206
|
+
|
207
|
+
def __setattr__(self, name: str, value: Any) -> None:
|
208
|
+
state = object.__getattribute__(self, "__lazy_module_state__")
|
209
|
+
state.load()
|
210
|
+
object.__setattr__(self, name, value)
|
211
|
+
|
212
|
+
def __delattr__(self, name: str) -> None:
|
213
|
+
state = object.__getattribute__(self, "__lazy_module_state__")
|
214
|
+
state.load()
|
215
|
+
object.__delattr__(self, name)
|
216
|
+
|
217
|
+
|
218
|
+
def import_module_lazy(name: str) -> types.ModuleType:
|
184
219
|
"""Import a module lazily, only when it is used.
|
185
220
|
|
221
|
+
Inspired by importlib.util.LazyLoader, but improved so that the module loading is
|
222
|
+
thread-safe. Circular dependency between modules can lead to a deadlock if the two
|
223
|
+
modules are loaded from different threads.
|
224
|
+
|
186
225
|
:param (str) name: Dot-separated module path. E.g., 'scipy.stats'.
|
187
226
|
"""
|
188
227
|
try:
|
189
228
|
return sys.modules[name]
|
190
229
|
except KeyError:
|
191
|
-
|
192
|
-
if
|
230
|
+
spec = importlib.util.find_spec(name)
|
231
|
+
if spec is None:
|
193
232
|
raise ModuleNotFoundError
|
194
|
-
|
195
|
-
module =
|
233
|
+
module = importlib.util.module_from_spec(spec)
|
234
|
+
module.__lazy_module_state__ = LazyModuleState(module) # type: ignore
|
235
|
+
module.__class__ = LazyModule
|
196
236
|
sys.modules[name] = module
|
197
|
-
|
198
|
-
assert module_spec.loader is not None
|
199
|
-
lazy_loader = importlib.util.LazyLoader(module_spec.loader)
|
200
|
-
lazy_loader.exec_module(module)
|
201
|
-
|
202
237
|
return module
|
203
238
|
|
204
239
|
|
@@ -596,7 +631,7 @@ def json_friendly( # noqa: C901
|
|
596
631
|
|
597
632
|
|
598
633
|
def json_friendly_val(val: Any) -> Any:
|
599
|
-
"""Make any value (including dict, slice, sequence,
|
634
|
+
"""Make any value (including dict, slice, sequence, dataclass) JSON friendly."""
|
600
635
|
converted: Union[dict, list]
|
601
636
|
if isinstance(val, dict):
|
602
637
|
converted = {}
|
@@ -614,6 +649,9 @@ def json_friendly_val(val: Any) -> Any:
|
|
614
649
|
for value in val:
|
615
650
|
converted.append(json_friendly_val(value))
|
616
651
|
return converted
|
652
|
+
if is_dataclass(val) and not isinstance(val, type):
|
653
|
+
converted = asdict(val)
|
654
|
+
return converted
|
617
655
|
else:
|
618
656
|
if val.__class__.__module__ not in ("builtins", "__builtin__"):
|
619
657
|
val = str(val)
|
@@ -1500,16 +1538,14 @@ def check_windows_valid_filename(path: Union[int, str]) -> bool:
|
|
1500
1538
|
return not bool(re.search(RE_WINFNAMES, path)) # type: ignore
|
1501
1539
|
|
1502
1540
|
|
1503
|
-
def artifact_to_json(
|
1504
|
-
artifact: Union["LocalArtifact", "PublicArtifact"]
|
1505
|
-
) -> Dict[str, Any]:
|
1541
|
+
def artifact_to_json(artifact: "Artifact") -> Dict[str, Any]:
|
1506
1542
|
return {
|
1507
1543
|
"_type": "artifactVersion",
|
1508
1544
|
"_version": "v0",
|
1509
1545
|
"id": artifact.id,
|
1510
1546
|
"version": artifact.source_version,
|
1511
1547
|
"sequenceName": artifact.source_name.split(":")[0],
|
1512
|
-
"usedAs": artifact.
|
1548
|
+
"usedAs": artifact.use_as,
|
1513
1549
|
}
|
1514
1550
|
|
1515
1551
|
|
@@ -1519,11 +1555,7 @@ def check_dict_contains_nested_artifact(d: dict, nested: bool = False) -> bool:
|
|
1519
1555
|
contains_artifacts = check_dict_contains_nested_artifact(item, True)
|
1520
1556
|
if contains_artifacts:
|
1521
1557
|
return True
|
1522
|
-
elif (
|
1523
|
-
isinstance(item, wandb.Artifact)
|
1524
|
-
or isinstance(item, wandb.sdk.PublicArtifact)
|
1525
|
-
or _is_artifact_string(item)
|
1526
|
-
) and nested:
|
1558
|
+
elif (isinstance(item, wandb.Artifact) or _is_artifact_string(item)) and nested:
|
1527
1559
|
return True
|
1528
1560
|
return False
|
1529
1561
|
|
@@ -1603,7 +1635,7 @@ def _resolve_aliases(aliases: Optional[Union[str, Iterable[str]]]) -> List[str]:
|
|
1603
1635
|
|
1604
1636
|
|
1605
1637
|
def _is_artifact_object(v: Any) -> bool:
|
1606
|
-
return isinstance(v, wandb.Artifact)
|
1638
|
+
return isinstance(v, wandb.Artifact)
|
1607
1639
|
|
1608
1640
|
|
1609
1641
|
def _is_artifact_string(v: Any) -> bool:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.15.
|
3
|
+
Version: 0.15.5
|
4
4
|
Summary: A CLI and library for interacting with the Weights and Biases API.
|
5
5
|
Home-page: https://github.com/wandb/wandb
|
6
6
|
Author: Weights & Biases
|
@@ -24,7 +24,7 @@ Classifier: Topic :: System :: Monitoring
|
|
24
24
|
Requires-Python: >=3.6
|
25
25
|
Description-Content-Type: text/markdown
|
26
26
|
License-File: LICENSE
|
27
|
-
Requires-Dist: Click (!=8.0.0,>=7.
|
27
|
+
Requires-Dist: Click (!=8.0.0,>=7.1)
|
28
28
|
Requires-Dist: GitPython (!=3.1.29,>=1.0.0)
|
29
29
|
Requires-Dist: requests (<3,>=2.0.0)
|
30
30
|
Requires-Dist: psutil (>=5.0.0)
|
@@ -59,19 +59,22 @@ Requires-Dist: google-cloud-storage ; extra == 'kubeflow'
|
|
59
59
|
Requires-Dist: sh ; extra == 'kubeflow'
|
60
60
|
Provides-Extra: launch
|
61
61
|
Requires-Dist: awscli ; extra == 'launch'
|
62
|
-
Requires-Dist:
|
63
|
-
Requires-Dist:
|
64
|
-
Requires-Dist:
|
65
|
-
Requires-Dist: iso8601 ; extra == 'launch'
|
66
|
-
Requires-Dist: typing-extensions ; extra == 'launch'
|
62
|
+
Requires-Dist: azure-identity ; extra == 'launch'
|
63
|
+
Requires-Dist: azure-containerregistry ; extra == 'launch'
|
64
|
+
Requires-Dist: azure-storage-blob ; extra == 'launch'
|
67
65
|
Requires-Dist: boto3 ; extra == 'launch'
|
68
66
|
Requires-Dist: botocore ; extra == 'launch'
|
67
|
+
Requires-Dist: chardet ; extra == 'launch'
|
69
68
|
Requires-Dist: google-auth ; extra == 'launch'
|
69
|
+
Requires-Dist: google-cloud-artifact-registry ; extra == 'launch'
|
70
70
|
Requires-Dist: google-cloud-compute ; extra == 'launch'
|
71
71
|
Requires-Dist: google-cloud-storage ; extra == 'launch'
|
72
|
-
Requires-Dist:
|
72
|
+
Requires-Dist: iso8601 ; extra == 'launch'
|
73
73
|
Requires-Dist: kubernetes ; extra == 'launch'
|
74
74
|
Requires-Dist: optuna ; extra == 'launch'
|
75
|
+
Requires-Dist: nbconvert ; extra == 'launch'
|
76
|
+
Requires-Dist: nbformat ; extra == 'launch'
|
77
|
+
Requires-Dist: typing-extensions ; extra == 'launch'
|
75
78
|
Provides-Extra: media
|
76
79
|
Requires-Dist: numpy ; extra == 'media'
|
77
80
|
Requires-Dist: moviepy ; extra == 'media'
|
@@ -1,13 +1,13 @@
|
|
1
|
-
wandb/__init__.py,sha256=
|
1
|
+
wandb/__init__.py,sha256=YrkBQakXJikfADT9_1eK6D3DBvAjXFkLn81jNHwlnUs,6132
|
2
2
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
3
3
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
4
|
-
wandb/data_types.py,sha256=
|
4
|
+
wandb/data_types.py,sha256=km_1MlafOLINYuMbFloK7U-kp0fwdlW4aLONxZYTrhg,75504
|
5
5
|
wandb/env.py,sha256=heyS-HwMRWVfJIvn_YHmnEi0C-kSIf6kwM655qM_fTQ,10611
|
6
6
|
wandb/jupyter.py,sha256=32Oeq37SRrx5I_JSwLYi13t9zSMWXDwQtFB8CaQwpA8,16946
|
7
7
|
wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
|
8
8
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
wandb/trigger.py,sha256=s6pc7ol-s76i7YRNf4P13f9co2f4f8simzXkjcmSQG0,614
|
10
|
-
wandb/util.py,sha256=
|
10
|
+
wandb/util.py,sha256=bT-vU9J2L5ry9iviF4yC4SW7pzymBBtdbb0lJe7dMPs,55224
|
11
11
|
wandb/viz.py,sha256=hrRhuDuvgelF-qK0eoVmBJyJi1DjQ3vkmrgRKgM2lyg,3217
|
12
12
|
wandb/wandb_agent.py,sha256=qkCO5e4HGK6ISmpY_pG0fULpFwilBaYwakPiFGrcDnY,21115
|
13
13
|
wandb/wandb_controller.py,sha256=NfrTC33aP_YqiQwnZ9770_q2T2hwKhsXM8Rscyz0tKM,24766
|
@@ -16,11 +16,11 @@ wandb/wandb_torch.py,sha256=f_xxU4unLnNWiyLSPpTT86Iwx1MGhUyqkKX5NAJx0Qs,21999
|
|
16
16
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
wandb/agents/pyagent.py,sha256=_OfX03WX2STKrzo3bLe_87h1PL2cTDN3g43ZBK2SG4g,12978
|
18
18
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
19
|
-
wandb/analytics/sentry.py,sha256=
|
19
|
+
wandb/analytics/sentry.py,sha256=bidIRpp_VToHBHCEtyaE9uH97bseUkeDi6OzEulqesg,8712
|
20
20
|
wandb/apis/__init__.py,sha256=haXrAmHFoC3gL1_NphdalvaMKGSiiFWB2QCOIJUhPGc,1329
|
21
|
-
wandb/apis/internal.py,sha256=
|
21
|
+
wandb/apis/internal.py,sha256=s4FjC3pG9R3-x8SXEIm7hV021ujYALgqIaJVyt6GgaE,7115
|
22
22
|
wandb/apis/normalize.py,sha256=CkbtH11jPhiEl7apeWn0UKFJ_gwbaK4qkvDMvxwTxaw,2894
|
23
|
-
wandb/apis/public.py,sha256=
|
23
|
+
wandb/apis/public.py,sha256=UZ9z_cTbz4WKDsWB69Gl70aIE7rUEMvy6s5PoHkmQpk,142433
|
24
24
|
wandb/apis/importers/__init__.py,sha256=117C1xz4GGn1T3e3LOJ3GSSnQZrnWvZiS0AP_3B0K9Q,124
|
25
25
|
wandb/apis/importers/base.py,sha256=vPVc50s2naGmNkyfzLnybp7CPqamgUdiaDzylBeLc6A,10695
|
26
26
|
wandb/apis/importers/mlflow.py,sha256=7hnxt0CbB_A1A4mifU1irv496wSNLFVDi_tBsvIKFm4,3675
|
@@ -38,11 +38,11 @@ wandb/apis/reports/runset.py,sha256=HYblYs2ap6rBYGUSFeEYWH3n2ybfn4XlVfK9sSG75cg,
|
|
38
38
|
wandb/apis/reports/templates.py,sha256=LmYsgKVpfUgcaZ9SggwVhWCXQjFthmLxebRXN2pOjdg,161
|
39
39
|
wandb/apis/reports/util.py,sha256=gQ11JAvvk1mKgcY6ytMyyONG04LmcwkuLEixOW10als,11940
|
40
40
|
wandb/apis/reports/validators.py,sha256=8VieYNICXinPtgjNI1xBcxIykHIXp4Rt4zfidbX-N94,4282
|
41
|
-
wandb/beta/workflows.py,sha256=
|
41
|
+
wandb/beta/workflows.py,sha256=u22a9f6R8iaBIlIGnih97T9BS_Wuq3_PuPO_vSWXAy8,9976
|
42
42
|
wandb/bin/apple_gpu_stats,sha256=-CVDIPhgV1f_jjM1dkXJgmo6AQY4wjy1xCGg1e8zn0w,337072
|
43
43
|
wandb/catboost/__init__.py,sha256=kgsxRzur9liL-CPOVubjNVJ_FEDiktbyA7gQQXxG1n0,226
|
44
44
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
|
-
wandb/cli/cli.py,sha256=
|
45
|
+
wandb/cli/cli.py,sha256=BENl3fzqdVmuZjSYZL893SU5Gz8ns4Gs55bXy5cFpks,81744
|
46
46
|
wandb/docker/__init__.py,sha256=b9tYUfG35ecrtQNxH-AZFUYpizshfgiEbLomzoLcaFA,9674
|
47
47
|
wandb/docker/auth.py,sha256=d0uCK29uATBe6HKkbhbvdEYYbSIkdppiwzvWsgUqqMc,15065
|
48
48
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
@@ -81,8 +81,7 @@ wandb/integration/kfp/helpers.py,sha256=yEVO9rrz27hc4nk3WwNL3v1aRAUlS-OlXMC8Rj0G
|
|
81
81
|
wandb/integration/kfp/kfp_patch.py,sha256=ajNwLge9LruWE4BdpwNqUVOb9k3RUZ4PG5VO6ltjd0E,13098
|
82
82
|
wandb/integration/kfp/wandb_logging.py,sha256=pRrMSxU06fFgFBWuw_7pNbCz87nJrPSM3n2-E-ai62w,6159
|
83
83
|
wandb/integration/langchain/__init__.py,sha256=afRoYH4bPOw6Tyrn9YvuYHzbSae97iQT-Ufi0puJqNw,66
|
84
|
-
wandb/integration/langchain/
|
85
|
-
wandb/integration/langchain/wandb_tracer.py,sha256=9qHUOlKwMQPxnK7yO9fS9gC8ttKEHbGaNd0yg1-QYns,7523
|
84
|
+
wandb/integration/langchain/wandb_tracer.py,sha256=obG2FjVlyzspoRoREPzHDbyM4tl46dVQsDwJm-BJ7O4,2216
|
86
85
|
wandb/integration/lightgbm/__init__.py,sha256=ePZtdBQPlpZjbVsFdvDm96Hu9r_1vIjB7_x5MUwBaQ8,7058
|
87
86
|
wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
|
88
87
|
wandb/integration/metaflow/metaflow.py,sha256=AnrtyukBS5qBNfEbK3skc-oomgXIH8OyBMrSVtsqi3Q,11669
|
@@ -94,13 +93,13 @@ wandb/integration/prodigy/prodigy.py,sha256=Gx_mYF8CGr-A6aE6L2UuOYpICqWNYmCxBUyd
|
|
94
93
|
wandb/integration/sacred/__init__.py,sha256=5FPm_NRo1mZIT1i0k_x_6FIaH0h2Rqi0QGvu2H4vUe4,5759
|
95
94
|
wandb/integration/sagemaker/__init__.py,sha256=EUYDus1ohtXFwV62WZa_3h7Q3oTkeo8MUesgkFLOyjw,282
|
96
95
|
wandb/integration/sagemaker/auth.py,sha256=Ste5oGbOx8yCIP1-vO5dimKF5C90eUauqztjpakQel8,974
|
97
|
-
wandb/integration/sagemaker/config.py,sha256=
|
96
|
+
wandb/integration/sagemaker/config.py,sha256=XoH2D6TbsrNG0RznLmmFDvXV-D02sc-F8FWTbfBKp8o,849
|
98
97
|
wandb/integration/sagemaker/files.py,sha256=DcAP4h3DiEniB_NkP_g8nxvoWHkV3tn93Mk1GzABYyI,153
|
99
98
|
wandb/integration/sagemaker/resources.py,sha256=C0HTpXo0l3leohzY8Uu7VvsBchKwIZov_E06w25hGDs,1024
|
100
99
|
wandb/integration/sb3/__init__.py,sha256=w_VX7C6qAE1vK7xb24JchQtORxzfpXvl6YmZHUIskJM,60
|
101
100
|
wandb/integration/sb3/sb3.py,sha256=U3P6e3-fGOFoJdik5XCQipqfxSDpMPs619SXsO1g5Fo,4910
|
102
101
|
wandb/integration/tensorboard/__init__.py,sha256=Ivj8-XV4lGLg1JK2LdNxWlaLkqrJmXdyWTXf41ysib8,213
|
103
|
-
wandb/integration/tensorboard/log.py,sha256=
|
102
|
+
wandb/integration/tensorboard/log.py,sha256=OeiPQRxjeE4W6nIFgfKDRrflTLdMcUNCQmnE-iilP3k,14308
|
104
103
|
wandb/integration/tensorboard/monkeypatch.py,sha256=7S3i2vcmmIjEpY4f2Ro8OxfS5b2zgXYoTDoLmwcm7fw,6828
|
105
104
|
wandb/integration/tensorflow/__init__.py,sha256=8y7Acc7EAxKF-4vGXuZH6tsXeNNzqXisE2blNz9RNQk,125
|
106
105
|
wandb/integration/tensorflow/estimator_hook.py,sha256=fi-UtjNZxUnDkzfbNP09iH074z5x0ItZiB4dkvwMGNI,1756
|
@@ -137,7 +136,7 @@ wandb/plots/roc.py,sha256=Vo5IooGIqWezzXy7x1RiKhneJzW7szjUk5Dpo-HRhec,3433
|
|
137
136
|
wandb/plots/utils.py,sha256=XpOrIydyDk69nnUlcGxMMtV8VUO7Zq8ECNzUyQ5IRY0,7185
|
138
137
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
139
138
|
wandb/proto/wandb_base_pb2.py,sha256=qEn0atGozZcBIM5D0YVzax8cx2Sd0XiDU-YIHep_wZ8,229
|
140
|
-
wandb/proto/wandb_deprecated.py,sha256=
|
139
|
+
wandb/proto/wandb_deprecated.py,sha256=73Mh2Hz-ckjM0dq_hHPVsxNEeyNNiyCOcZdCdWCjPjY,1147
|
141
140
|
wandb/proto/wandb_internal_codegen.py,sha256=i1kieZpItvyKftv4qay2Ejnu0hyeffJ82laJvg0JDmg,4070
|
142
141
|
wandb/proto/wandb_internal_pb2.py,sha256=4YI1bDaC3PpJbB8LpqEhU4WlGI7CQcvs8rY1Jn4mOGc,237
|
143
142
|
wandb/proto/wandb_server_pb2.py,sha256=M6KrkWm66uODcsc7wdMMvD0q-3dfiuWs8YvaYKjEhYY,233
|
@@ -148,90 +147,87 @@ wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4
|
|
148
147
|
wandb/proto/v3/wandb_internal_pb2.py,sha256=tUitVYlr-IVOZQ-Y7sYggahdU22r1PXzVIPv5nf4TC0,79476
|
149
148
|
wandb/proto/v3/wandb_server_pb2.py,sha256=l8fk4O9pGC8_8oHxC3CacxDxW1KNy1ST49DS-s_VxIk,25856
|
150
149
|
wandb/proto/v3/wandb_server_pb2_grpc.py,sha256=wPgsoCB-OyZjN2f88vG1-SCFJtr6YOceKDSn2SolOiM,70982
|
151
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
150
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=83aGB3qF-3xVNO7jKg_-fn7pqx2XToJktqRRzzlrw0A,12408
|
152
151
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
153
152
|
wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
|
154
153
|
wandb/proto/v4/wandb_internal_pb2.py,sha256=QuKr-aTfa8yvGYw2bNc5CskHJ7C7JeSxWmz91jSIEnE,36148
|
155
154
|
wandb/proto/v4/wandb_server_pb2.py,sha256=GlaUcDwBOJnhRSuQW-ddGeyXrVVD1oj05pMprt6e5Is,13976
|
156
155
|
wandb/proto/v4/wandb_server_pb2_grpc.py,sha256=wPgsoCB-OyZjN2f88vG1-SCFJtr6YOceKDSn2SolOiM,70982
|
157
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
156
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=2Vtn4cleTdNdZpELRxaN61DtvB_wm38bAo7OGvc4Exk,9855
|
158
157
|
wandb/sacred/__init__.py,sha256=2sCLXqvkwjEqOvPFdtAtmo80PY4hky7rj4owO5PoJWQ,80
|
159
|
-
wandb/sdk/__init__.py,sha256=
|
158
|
+
wandb/sdk/__init__.py,sha256=9atCEEf_Y0R4gtjDvtr8zsLR7HaKD7PzNaUm8618jVE,722
|
160
159
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
161
|
-
wandb/sdk/wandb_config.py,sha256
|
160
|
+
wandb/sdk/wandb_config.py,sha256=1bN23pvTTWtZPqPp-X4ubUCAKqgUd7NKDq5ZGpVKNBs,9945
|
162
161
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
163
|
-
wandb/sdk/wandb_init.py,sha256=
|
162
|
+
wandb/sdk/wandb_init.py,sha256=Inf_S_Oa5fBDHX99dTBhs63QCldyLH3e61Lke1tYr_k,49161
|
164
163
|
wandb/sdk/wandb_login.py,sha256=CdOGFbW9wjAJAmcT71BZf45XBRK8nlsKur-ON5-a0Rk,10016
|
165
164
|
wandb/sdk/wandb_manager.py,sha256=RBqyE5KQn581-Ugipj4N7SUqbB5FAhknjHbVLfF6BX8,7026
|
166
165
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
167
|
-
wandb/sdk/wandb_require.py,sha256=
|
166
|
+
wandb/sdk/wandb_require.py,sha256=pOaOSlw1TQzaHtBQvTW5qAFtbRKix7HicqpzHTGklXE,2900
|
168
167
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
169
|
-
wandb/sdk/wandb_run.py,sha256=
|
168
|
+
wandb/sdk/wandb_run.py,sha256=rY1kgxbse6oQZ9kTxb3jGwMgnwEaDm8sinMpRSPU4i0,138723
|
170
169
|
wandb/sdk/wandb_save.py,sha256=RJeT-_cpmtUxqNk3AmFVW1Tb8k5s46ylmvb8cw54Vks,181
|
171
|
-
wandb/sdk/wandb_settings.py,sha256=
|
170
|
+
wandb/sdk/wandb_settings.py,sha256=uZ1iDVFzYF1i_0bbrg63DFmFum4w3StbGtBw80GgvA8,70105
|
172
171
|
wandb/sdk/wandb_setup.py,sha256=A-V4BO0Lrz8elnNhme0fQsg-TJx-YIEQBTX30Zo07j8,11079
|
173
172
|
wandb/sdk/wandb_summary.py,sha256=mhZPJ5zLGy2G7J7FGCPFCBIIfaXpLTVSI86drmaUFNY,4520
|
174
173
|
wandb/sdk/wandb_sweep.py,sha256=8EaZ6ES2n-WyUyBwPl6lGEMhH3hksssZamgCWu1t6f4,4652
|
175
174
|
wandb/sdk/wandb_watch.py,sha256=Yj573eCyEOc6ef4tqM7G9D-Epe_DtRveHQse1YrClO0,3876
|
176
|
-
wandb/sdk/artifacts/__init__.py,sha256=
|
177
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
175
|
+
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
176
|
+
wandb/sdk/artifacts/artifact.py,sha256=1pggn7aBjZcyN1asWJMuW7uBan1n2wy4iTZDG8h1xwg,75502
|
178
177
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=GAwxH3FLnDiGv8CgusV6O4K3vOvYTAD6X_5XLD38whk,1500
|
179
178
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=NO16pE-u6-j1seF5Vp3EcnjJ7jif0CL3DQ4E0ke2vtE,2361
|
180
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
179
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=4t9-uJKlgHgoR7rLuI_VydrTJWCT3-J_sTExEOSOlMk,5347
|
181
180
|
wandb/sdk/artifacts/artifact_saver.py,sha256=E3S0cc4-La5b7wOry6atwQnC_2-vE3YnemZNJeYOPE8,11719
|
182
|
-
wandb/sdk/artifacts/
|
183
|
-
wandb/sdk/artifacts/
|
184
|
-
wandb/sdk/artifacts/
|
185
|
-
wandb/sdk/artifacts/
|
186
|
-
wandb/sdk/artifacts/local_artifact.py,sha256=d2WdHNXiBdsyfH0wVAH6dngyQxWDgwbh8r7AZhz-3Uw,24169
|
187
|
-
wandb/sdk/artifacts/public_artifact.py,sha256=7WVbV7maRj22qwy5vfpm9CpnKXqliblpRaltSDtwTYg,39159
|
188
|
-
wandb/sdk/artifacts/storage_handler.py,sha256=T9yCqOH3nchYFFh-sGH7U99zjUOf_SS2hEtuOWPG26U,1870
|
181
|
+
wandb/sdk/artifacts/artifact_state.py,sha256=oUh-Q7LzVmOBxJXkXK39bz3fAxZxYlQts5v5JDhze40,235
|
182
|
+
wandb/sdk/artifacts/artifacts_cache.py,sha256=HMnVAfJ1xZHrvnf8qCqzS6zgayeRPKc0hoCDQuHnciw,6680
|
183
|
+
wandb/sdk/artifacts/exceptions.py,sha256=ZAY2svJRSmhu9Opok1-iFeSxWrW2A_rs9yWKRdwUHG0,1851
|
184
|
+
wandb/sdk/artifacts/storage_handler.py,sha256=xm-S5hQWkbII_fHhRlK83oLTnwgLPbjh2ycBrL3H4a8,1840
|
189
185
|
wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
|
190
|
-
wandb/sdk/artifacts/storage_policy.py,sha256=
|
186
|
+
wandb/sdk/artifacts/storage_policy.py,sha256=ClHha5OVSYwp9bjJgDmm_BR5MatWlSZQzt5MZbfJQnY,2167
|
191
187
|
wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
188
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=iCwQQSKwMKiv5Ee_ZAl3j2a2vGOMa4H26TrSXzu8Ngc,3672
|
193
189
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
194
|
-
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=
|
195
|
-
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=
|
196
|
-
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256
|
197
|
-
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=
|
198
|
-
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=
|
199
|
-
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=
|
200
|
-
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=
|
201
|
-
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=
|
202
|
-
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=
|
190
|
+
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=N4CMjzDDvQNnGQmryuQoC-LG2oyfIC79C6EXEuYpWjk,7487
|
191
|
+
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=Zj5_aFoTSOHFvfoFyzLYQbhaLk0DwVM2EHNC9Rv3lZc,8562
|
192
|
+
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=-eVSyWKCWKIjtKyKjyiII01jxtFgGtqIB8sghosf8I4,4080
|
193
|
+
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=KXxgnDL4E0cx9a8J66GQlOEJYWNcK4wOtXsSmIqXScQ,5242
|
194
|
+
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=uXP24q8f8ItHMLTJ7r3TqfjSNzm6Efm8dL3O1BDoe2c,1869
|
195
|
+
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=lEBnLcBUjgh5sK_2DXg4bNrr93rkwJZ1PGcb0futUtw,11775
|
196
|
+
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=mM_BsDhryiE9NkTOytUxoLpYizbFjICfNGAfRVHflPA,2524
|
197
|
+
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=zFtIPvgOl_Dy_-h30Es0SaAcaVrr3vWS8oKiSu0Fszc,4851
|
198
|
+
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=nTBURriVtlZXpK5trgJmT2AX--2SDv85pRSlAafBQuk,2580
|
203
199
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
204
|
-
wandb/sdk/artifacts/storage_policies/s3_bucket_policy.py,sha256=
|
205
|
-
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=
|
200
|
+
wandb/sdk/artifacts/storage_policies/s3_bucket_policy.py,sha256=JCpp0_dQ6QpDCvrJlzuqRbY4ql-hJUSB4Y5PryW3KQ0,2076
|
201
|
+
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=QJ6i-z3SNRxop0XMTWUDesQbMYe7AjvWS1bG4B67IpY,14037
|
206
202
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
207
203
|
wandb/sdk/backend/backend.py,sha256=Rca4XXpQQyVONnqk_oW8JrrJNdCGWC-DVD5QGG2pKfM,9137
|
208
204
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
209
|
-
wandb/sdk/data_types/_dtypes.py,sha256=
|
205
|
+
wandb/sdk/data_types/_dtypes.py,sha256=_F3suxZxJE8lf6TRw2_RMZUWcHYKZru9aKpyUn_ik5o,30148
|
210
206
|
wandb/sdk/data_types/_private.py,sha256=IEDH2Qu3YIVow2XbMs-7BhPo1qi42KkClSiRr6O6IVY,72
|
211
|
-
wandb/sdk/data_types/histogram.py,sha256=
|
212
|
-
wandb/sdk/data_types/html.py,sha256=
|
213
|
-
wandb/sdk/data_types/image.py,sha256=
|
214
|
-
wandb/sdk/data_types/molecule.py,sha256=
|
215
|
-
wandb/sdk/data_types/object_3d.py,sha256=
|
216
|
-
wandb/sdk/data_types/plotly.py,sha256=
|
217
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
218
|
-
wandb/sdk/data_types/trace_tree.py,sha256
|
207
|
+
wandb/sdk/data_types/histogram.py,sha256=BiIYj3yY-9oetopHf_cwPp9Z7mKS7bm3ve_ZMX0hwUg,3202
|
208
|
+
wandb/sdk/data_types/html.py,sha256=NED-Hal9jr0yU4hcq6TYHMezIlQfJJRhQHKma1G30Vk,3490
|
209
|
+
wandb/sdk/data_types/image.py,sha256=BWlHFHt17PLi5PwM_Kvv0_K0KTQBaUD_0aoYQIF4xZ4,24344
|
210
|
+
wandb/sdk/data_types/molecule.py,sha256=wZzxT_OKuM2CAZxc38o6COfrGgz9t8JCKuy0fd21A9w,8598
|
211
|
+
wandb/sdk/data_types/object_3d.py,sha256=hxqH0tpQ6Kus_c3lBwaSiQ6K7rWI-vD1m2fpBzJl03U,12516
|
212
|
+
wandb/sdk/data_types/plotly.py,sha256=m75HRKSCdd9-cu-odpZ5d2Tu8KwmR_LVdW9u0H-68AE,2918
|
213
|
+
wandb/sdk/data_types/saved_model.py,sha256=XKav4XRi50OJpqzWeQ30X08nFBWpq1dq5uACglry1mI,16360
|
214
|
+
wandb/sdk/data_types/trace_tree.py,sha256=jWjVGsUlk_wb7wMbuE7RfPEOnIFB4O2zD8yBFJCbQlI,4614
|
219
215
|
wandb/sdk/data_types/utils.py,sha256=uZnJSQOokfoWjjM--nBAG97B9VhWtxo_7PFIRXWRv6M,6149
|
220
|
-
wandb/sdk/data_types/video.py,sha256=
|
216
|
+
wandb/sdk/data_types/video.py,sha256=4jtALvKtFWXCz9Q0Ri8cAcdJi3RRk7fp0Jb85EKpGVw,8842
|
221
217
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
222
|
-
wandb/sdk/data_types/base_types/json_metadata.py,sha256=
|
223
|
-
wandb/sdk/data_types/base_types/media.py,sha256=
|
224
|
-
wandb/sdk/data_types/base_types/wb_value.py,sha256=
|
218
|
+
wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
|
219
|
+
wandb/sdk/data_types/base_types/media.py,sha256=cjQ2X3hb4oCyc4PqXH2t25qd4v_RdmSrLZoXxNeBqNI,11961
|
220
|
+
wandb/sdk/data_types/base_types/wb_value.py,sha256=sdc09QEn3lkBfHpFNyFsfPl28EJbirCn5lq4Hqpkc-8,11085
|
225
221
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
226
|
-
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=
|
227
|
-
wandb/sdk/data_types/helper_types/classes.py,sha256=
|
228
|
-
wandb/sdk/data_types/helper_types/image_mask.py,sha256=
|
222
|
+
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=tmRlzc3Ps3DL1LDRPLxQdlWL9fNOfDUq_HB3thjA9uE,12736
|
223
|
+
wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZYRj8rvSmT7fl9ds,5520
|
224
|
+
wandb/sdk/data_types/helper_types/image_mask.py,sha256=bXrg2-8A9L34Hmzd9FsnO0ZfoB96sf3GG2lWxh5G-YU,8561
|
229
225
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
230
226
|
wandb/sdk/integration_utils/auto_logging.py,sha256=-Mb2owhnvxxiz4nyIymf6CKKJagsGKFAlaVM_MNHUVI,7261
|
231
227
|
wandb/sdk/integration_utils/data_logging.py,sha256=kPBoELGQvCK6owfqBcn7qYn4zj-FNT40gjcdgVA4BJ4,19463
|
232
228
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
233
229
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
234
|
-
wandb/sdk/interface/interface.py,sha256=
|
230
|
+
wandb/sdk/interface/interface.py,sha256=FNMDTMgHLji1QLqyyGB-z32nwxa7BxA4EyxPyKfK6VE,29319
|
235
231
|
wandb/sdk/interface/interface_grpc.py,sha256=cM35_zf_PD0YbDTtu-mRyA3Ku-iPMc9Z0V_L4_7PO4Y,15482
|
236
232
|
wandb/sdk/interface/interface_queue.py,sha256=eCvNpvwMe1GHJv_5M8R3ZSspmEvE02mXMstBDBEZy8A,1967
|
237
233
|
wandb/sdk/interface/interface_relay.py,sha256=vQUrk5KESKInZsXpOxWF4YcWRZFLJjNz1mdNywbWbbE,1514
|
@@ -248,19 +244,19 @@ wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
248
244
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
249
245
|
wandb/sdk/internal/datastore.py,sha256=hSFz8GVXESSW7u759_782Joq2j5aVnkC4AumHI7Hs9o,9790
|
250
246
|
wandb/sdk/internal/file_pusher.py,sha256=P_yQDjK7VwYe9l6a1kSttVsk5_7Vzf5rscmGbIyJVeU,5574
|
251
|
-
wandb/sdk/internal/file_stream.py,sha256=
|
247
|
+
wandb/sdk/internal/file_stream.py,sha256=aSvk99IJ3JgunPjO9IWSLqnzh5CyMj5ZO2smxDNDvFc,25432
|
252
248
|
wandb/sdk/internal/flow_control.py,sha256=STZbGEwBtVHE8kMIh0PKLEsvPBiMc03EMs9WfGVsLhA,8586
|
253
249
|
wandb/sdk/internal/handler.py,sha256=srl904iB-e8BHP48eWnMvTIF6j6V6sKuW3y-3ARQtt0,32210
|
254
250
|
wandb/sdk/internal/internal.py,sha256=0NPQVjF44Op0kFAhRnfN9f01mP3B9raozTYK47QF1cs,12800
|
255
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
251
|
+
wandb/sdk/internal/internal_api.py,sha256=W2j7mLhKPZiPRh7ZBPRlYMl6sgNrbcQ_bdLDV6UbFcc,125806
|
256
252
|
wandb/sdk/internal/internal_util.py,sha256=1BI2ol9hhRukU7zBPbPhUcUXa58i4vLa4ocgBUya6pQ,2655
|
257
|
-
wandb/sdk/internal/job_builder.py,sha256=
|
253
|
+
wandb/sdk/internal/job_builder.py,sha256=dFlbRqH3Ugc39NbRnCCphrCr45JXTwNjPxoLohIqUec,12077
|
258
254
|
wandb/sdk/internal/profiler.py,sha256=ZpPXJJZhkml3ZL8HPbB-vZGAVPZUv0Wv-nWjOnCMXPg,2350
|
259
255
|
wandb/sdk/internal/progress.py,sha256=k1x9xthDDLGRN6Gw7qr5unaHYDkdcYxKM1jra5CC4k4,3273
|
260
256
|
wandb/sdk/internal/run.py,sha256=zZVFW3o78iQO6Yl74pJnEI_X4Qi1b1Y5NXD3VDDxwkU,681
|
261
257
|
wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,2442
|
262
|
-
wandb/sdk/internal/sender.py,sha256=
|
263
|
-
wandb/sdk/internal/settings_static.py,sha256=
|
258
|
+
wandb/sdk/internal/sender.py,sha256=fchB23e4mPP7_7g4pVYKgGNTaHaI6rN_v48mbiqkyF4,63587
|
259
|
+
wandb/sdk/internal/settings_static.py,sha256=YNOf8ZgqXzpr-3tfDnGizsYjGNLoRrJQPZtn2cOiaZs,3133
|
264
260
|
wandb/sdk/internal/tb_watcher.py,sha256=hz6vMNG9R6UIdjWopeDPrSDkaq8kW6B-iiVUOOSPv6M,18692
|
265
261
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
266
262
|
wandb/sdk/internal/update.py,sha256=VLtttroJVglx6hidllhp7KHpsF-mrrMex90K5q6ZGV4,3881
|
@@ -285,45 +281,49 @@ wandb/sdk/internal/system/assets/open_metrics.py,sha256=mjcC8wLIS5RbSfn_5GkhZi_Y
|
|
285
281
|
wandb/sdk/internal/system/assets/tpu.py,sha256=nwv3C9a6dgD1hc0461Rh28NQkWbNQ5fJOXsw6lOQ-Gw,4901
|
286
282
|
wandb/sdk/internal/system/assets/trainium.py,sha256=y9VUiCZZlI29APc7L5aSbPtrpjPWTxif6zPDSrHttbM,13409
|
287
283
|
wandb/sdk/launch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
288
|
-
wandb/sdk/launch/_project_spec.py,sha256
|
284
|
+
wandb/sdk/launch/_project_spec.py,sha256=-bUFJtRHPxsIgyBdeZZhw8LLiWtUqGqAse8P6CJR1aY,20796
|
289
285
|
wandb/sdk/launch/errors.py,sha256=CC1M5x7FnyyO3VVcWtqH6LgJReTS-g0nqqC-yKiEr_w,305
|
290
|
-
wandb/sdk/launch/github_reference.py,sha256=
|
291
|
-
wandb/sdk/launch/launch.py,sha256
|
286
|
+
wandb/sdk/launch/github_reference.py,sha256=11fmAtszeAg3LJdxWelHgWssApi0ks0bZDVF44Iu5dc,8565
|
287
|
+
wandb/sdk/launch/launch.py,sha256=-wzDgR-A-mBRc-RDtDJIOZ-gdYkShDP0MOZN4WIPF-Q,10206
|
292
288
|
wandb/sdk/launch/launch_add.py,sha256=DHDotr1OOGQrnAZtHAkWRCwIEM8fLSaBxSonikj8DxA,7727
|
293
|
-
wandb/sdk/launch/loader.py,sha256=
|
294
|
-
wandb/sdk/launch/utils.py,sha256=
|
289
|
+
wandb/sdk/launch/loader.py,sha256=Q_LqqRYIw6S70ObJiqXCZGsiDosiSIOTvYquZv-E9iE,9014
|
290
|
+
wandb/sdk/launch/utils.py,sha256=42j0PfAZYCKcc72WOOICdcwI0IyWv7WqG2Qiol07eI8,25325
|
295
291
|
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
296
292
|
wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
|
297
|
-
wandb/sdk/launch/agent/agent.py,sha256=
|
293
|
+
wandb/sdk/launch/agent/agent.py,sha256=7q8iA6NuOs8PiOvb86Y0T0i5VlFuTH3VuEozHY63tkA,24368
|
294
|
+
wandb/sdk/launch/agent/job_status_tracker.py,sha256=_JpiGoHqnZD55ycTqQTFQ6LzZrg5cep-P-pUdq3sr-8,1042
|
295
|
+
wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=EFcT6qojSC3s4MU_1FFCD0ohjrwyLWTgitC1UJOl5rk,1491
|
298
296
|
wandb/sdk/launch/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
299
|
-
wandb/sdk/launch/builder/abstract.py,sha256=
|
300
|
-
wandb/sdk/launch/builder/build.py,sha256=
|
301
|
-
wandb/sdk/launch/builder/docker_builder.py,sha256=
|
302
|
-
wandb/sdk/launch/builder/kaniko_builder.py,sha256=
|
303
|
-
wandb/sdk/launch/builder/noop.py,sha256=
|
297
|
+
wandb/sdk/launch/builder/abstract.py,sha256=rQvrYyn1WKaUoI34LBVGgOztRiyZu4oGNpr4cSpf6oM,2658
|
298
|
+
wandb/sdk/launch/builder/build.py,sha256=IE0f9UT9AxU_SWCQbMp6O63eeQTm8kXTVEqiK4ck7rI,20459
|
299
|
+
wandb/sdk/launch/builder/docker_builder.py,sha256=KXNcw5F2OgMmt6MJF20U9_uGTUpWhdoa4dVRp1bR5A0,6505
|
300
|
+
wandb/sdk/launch/builder/kaniko_builder.py,sha256=RMDmBsseb4QBvkgz1l6qhn3vZrMJ8_36_ZPTi9VKwPQ,20087
|
301
|
+
wandb/sdk/launch/builder/noop.py,sha256=YKoG0wCyXRXylR75gXlH65ztrSiqJOwnl06J145jSSc,1684
|
304
302
|
wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=7Zx1bChrrfL2wOxmPOPAn48ABisLwTpWBs_GYCUK2T0,7189
|
305
303
|
wandb/sdk/launch/environment/abstract.py,sha256=k65QRutKWOB6LFTrIMHP8GkWe5MWJYKk5YWFjWEIF3E,926
|
306
|
-
wandb/sdk/launch/environment/aws_environment.py,sha256=
|
304
|
+
wandb/sdk/launch/environment/aws_environment.py,sha256=PK2EvDit-x2yA1Ucnigv2zdEoP3JfJjCo_lLCg1ahko,10028
|
305
|
+
wandb/sdk/launch/environment/azure_environment.py,sha256=HCMpafl80CTfphLGf2QmHBsop9y8JPQrJWE-m-dIItM,4348
|
307
306
|
wandb/sdk/launch/environment/gcp_environment.py,sha256=-XdUUP42qaA08SB8BUGqQ-yTMcWVIz7p0x0Rm4UJ514,9943
|
308
307
|
wandb/sdk/launch/environment/local_environment.py,sha256=dRmyS0flrH0Xxzm_XFcG3iTJaK9wppiMFgZ3DnU5O_E,2227
|
309
308
|
wandb/sdk/launch/registry/abstract.py,sha256=3lCuTdqDAAIV_nmgGTfSd2gc1-02dTo5lY-KpuXj-wc,1400
|
310
|
-
wandb/sdk/launch/registry/
|
311
|
-
wandb/sdk/launch/registry/
|
309
|
+
wandb/sdk/launch/registry/azure_container_registry.py,sha256=D1wsBSt0q8sa7jTj4HGFUt-pn72jvbdfXNTctNfGz4U,4463
|
310
|
+
wandb/sdk/launch/registry/elastic_container_registry.py,sha256=GIvqKwD2HRDrOEVAsd6taIkTo2B6b7VESANyzB2fmaU,7442
|
311
|
+
wandb/sdk/launch/registry/google_artifact_registry.py,sha256=cTIS4A0Atwc58rKeb3iuhWakrgFsPjeYTxTwD-2nKLI,9404
|
312
312
|
wandb/sdk/launch/registry/local_registry.py,sha256=VusohprYxIq0RB46v_vCksdTDAnjmKu8f2JPzvNMVF8,1755
|
313
313
|
wandb/sdk/launch/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
314
|
-
wandb/sdk/launch/runner/abstract.py,sha256=
|
315
|
-
wandb/sdk/launch/runner/kubernetes_runner.py,sha256=
|
316
|
-
wandb/sdk/launch/runner/local_container.py,sha256=
|
314
|
+
wandb/sdk/launch/runner/abstract.py,sha256=k9g1W1o8Dsnrf2DU2Zy5cDvvJYe0ZioAOX0ylyCbKQU,5784
|
315
|
+
wandb/sdk/launch/runner/kubernetes_runner.py,sha256=iBFZRX1JRdtgStAF5cc_dSVUtryQCnzndv_r9lFlQA4,32315
|
316
|
+
wandb/sdk/launch/runner/local_container.py,sha256=KykwL5D18Yzdoh0BRuMUL9bIFzAlFe9iVpKJUp38Jcs,9919
|
317
317
|
wandb/sdk/launch/runner/local_process.py,sha256=ulZR2OmGuwx2m6t-o097u15SFP1XPAWS0D4ofPblgTU,3296
|
318
|
-
wandb/sdk/launch/runner/sagemaker_runner.py,sha256=
|
319
|
-
wandb/sdk/launch/runner/vertex_runner.py,sha256=
|
318
|
+
wandb/sdk/launch/runner/sagemaker_runner.py,sha256=AWRqaAU9PxGany6ifgMJCXKRDA9zPkG7OPNIOvMOoaI,14097
|
319
|
+
wandb/sdk/launch/runner/vertex_runner.py,sha256=XDtItc5g7sxz2HQ4sdwEFBNVuu71leBjaHO1rsQd2II,7439
|
320
320
|
wandb/sdk/launch/sweeps/__init__.py,sha256=qQ96Pq9fXRIs-w8y3jy_Z6fKz9DIJ8zrMjwEZLrDGB8,913
|
321
|
-
wandb/sdk/launch/sweeps/scheduler.py,sha256=
|
321
|
+
wandb/sdk/launch/sweeps/scheduler.py,sha256=wQT_YR-JvZn6GNI_nSlidW64sL6WCAnOnN0mTPH3GPI,25194
|
322
322
|
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=XeuTH44rbaQPc0ngpD-evsQaG0i_WSWiOz-JvtrPFJw,2999
|
323
|
-
wandb/sdk/launch/sweeps/utils.py,sha256=
|
323
|
+
wandb/sdk/launch/sweeps/utils.py,sha256=EKc6Yqwq9HJhI9PzQIwhp126sdvO3VmDaAqvy8JlFU0,9796
|
324
324
|
wandb/sdk/lib/__init__.py,sha256=K0x-PO-Ub5qblYhK0cGKLL4DQKShngxaWiK2Ab_2TaQ,151
|
325
325
|
wandb/sdk/lib/_settings_toposort_generate.py,sha256=k7JiWdPTiPVs27QFbs88bpIzzgKAru_VX_OKFZMfR6M,5306
|
326
|
-
wandb/sdk/lib/_settings_toposort_generated.py,sha256=
|
326
|
+
wandb/sdk/lib/_settings_toposort_generated.py,sha256=o-y-RP9wz2dU--nAIpPtukdM0vSV2JX32qUTW19i_3I,4332
|
327
327
|
wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
|
328
328
|
wandb/sdk/lib/_wburls_generated.py,sha256=VNnkfin4TRuiRGiQUA66onr3BEZhQLHw4Arkw4ue7R4,383
|
329
329
|
wandb/sdk/lib/apikey.py,sha256=HFMpwk_fc2f7I-xBgvTozpmibaU8MUQ9j-DWSq0iKeM,8700
|
@@ -365,16 +365,16 @@ wandb/sdk/lib/wburls.py,sha256=6KqAiTjrxPHlIw4j9Li6l66F9TPC7N5fwWKSMBk3k8A,1315
|
|
365
365
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
366
366
|
wandb/sdk/service/_startup_debug.py,sha256=t9XV0E2e6z1l7DGBc-JivqePi6BbTwh3MwpBU1pFhRA,594
|
367
367
|
wandb/sdk/service/port_file.py,sha256=OXiXpHA1XjLsoWizfOVaxR74w96j-KJI2XlnoVY-xH8,2002
|
368
|
-
wandb/sdk/service/server.py,sha256=
|
368
|
+
wandb/sdk/service/server.py,sha256=Fnz4-gmqiOQMad_3T4USLRPCE3b4d2jWqaujJi4XLXI,5637
|
369
369
|
wandb/sdk/service/server_grpc.py,sha256=e_cM6w8lyNUMefsavyyUG38-OlcKw2lJNjVPtyTkeFU,16202
|
370
370
|
wandb/sdk/service/server_sock.py,sha256=P42XcHWrpMVv9xf7hCUBVWityzA4IokHMu5VAHpQr88,9750
|
371
|
-
wandb/sdk/service/service.py,sha256=
|
371
|
+
wandb/sdk/service/service.py,sha256=__ZJ-VZ0q--UHU0Fc5H4GZHyPFktxutrX-jbYogvtm8,8428
|
372
372
|
wandb/sdk/service/service_base.py,sha256=9FRN4S9Tey7gkvPCmhz_rGyr6nnHD8ViKZdWEn71Vc8,2877
|
373
373
|
wandb/sdk/service/service_grpc.py,sha256=-2VtTnpgf56AgHcDHhwgA4EyEpiQan-0qP_nZgy8HGM,2458
|
374
374
|
wandb/sdk/service/service_sock.py,sha256=xPrt2ilchSACfp4-hQ-z1MOXzpour-Jr70swPH83Es8,2364
|
375
375
|
wandb/sdk/service/streams.py,sha256=gS1lhjGwTv5LqHHrv0s5EUXupyH8g7VrK0mM-mZ9xBU,14819
|
376
376
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
377
|
-
wandb/sdk/verify/verify.py,sha256=
|
377
|
+
wandb/sdk/verify/verify.py,sha256=3M7w23jRveVLtDQxQbszTS4xAKjdFxLnYNEjDpwwGCo,16425
|
378
378
|
wandb/sklearn/__init__.py,sha256=aWYFigKCNvEhTILHouDyo7j8pUZayo5v2AnRdbYp2vM,860
|
379
379
|
wandb/sklearn/utils.py,sha256=QoYf5--o6a1Mcd7TuQequZVjG7YuVK1C2fQ4HP7tAwI,5902
|
380
380
|
wandb/sklearn/calculate/__init__.py,sha256=T19bKtuyTbRNzcIg3QbnRD8vm085QJXQFZfQ_STjrCk,1055
|
@@ -396,7 +396,7 @@ wandb/sklearn/plot/regressor.py,sha256=yw3sFuWGDeD_mByi-Xuef79_4zdpE6ODJyIPiYEY0
|
|
396
396
|
wandb/sklearn/plot/shared.py,sha256=_BMOiBmwNO_vIH5f2SDQcPASrJabxmRuKuELwA27-9k,2732
|
397
397
|
wandb/sync/__init__.py,sha256=vZMKb-AOlEwKQf4GNTndrgHuvGCeDMDTZAVwimtXZ0o,101
|
398
398
|
wandb/sync/sync.py,sha256=gdLj7biCZllbK4a0dCvAR7kh3WMRfin4O7wPHfdlAQ4,14859
|
399
|
-
wandb/testing/relay.py,sha256=
|
399
|
+
wandb/testing/relay.py,sha256=KWkG-EmFk8YREmet6rw9aN6ah98oYhG2v1jwE9eFQN0,25112
|
400
400
|
wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
401
401
|
wandb/vendor/gql-0.2.0/setup.py,sha256=_osNap_aCOVvTlDwP9f-aI10TJbpIflxcG6fEQoAxNs,1314
|
402
402
|
wandb/vendor/gql-0.2.0/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -781,9 +781,9 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2
|
|
781
781
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
|
782
782
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
|
783
783
|
wandb/xgboost/__init__.py,sha256=GRixyb89ki1Znfw48RRiRPxZnK41aEj1L48bBG6-Kh0,230
|
784
|
-
wandb-0.15.
|
785
|
-
wandb-0.15.
|
786
|
-
wandb-0.15.
|
787
|
-
wandb-0.15.
|
788
|
-
wandb-0.15.
|
789
|
-
wandb-0.15.
|
784
|
+
wandb-0.15.5.dist-info/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
785
|
+
wandb-0.15.5.dist-info/METADATA,sha256=E8ml321xKuyGbeSKg1_MmityYHLur7rFxY7KYAzflaU,8229
|
786
|
+
wandb-0.15.5.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
787
|
+
wandb-0.15.5.dist-info/entry_points.txt,sha256=5VEDOaS7CgcNfzb_FEaNkLS2AyPLzJJdY74xYYipTdQ,68
|
788
|
+
wandb-0.15.5.dist-info/top_level.txt,sha256=gPLPSekU6Labh_9yJz7WLb6Q9DK72I02_ARvDEG9Xsw,6
|
789
|
+
wandb-0.15.5.dist-info/RECORD,,
|