wandb 0.19.0__py3-none-macosx_11_0_arm64.whl → 0.19.1rc1__py3-none-macosx_11_0_arm64.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/__init__.pyi +211 -209
- wandb/apis/attrs.py +15 -4
- wandb/apis/public/api.py +8 -4
- wandb/apis/public/files.py +65 -12
- wandb/apis/public/runs.py +52 -7
- wandb/apis/public/sweeps.py +1 -1
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +2 -1
- wandb/env.py +1 -1
- wandb/errors/term.py +60 -1
- wandb/integration/keras/callbacks/tables_builder.py +3 -1
- wandb/integration/kfp/kfp_patch.py +25 -15
- wandb/integration/lightning/fabric/logger.py +3 -1
- wandb/integration/tensorboard/monkeypatch.py +3 -2
- wandb/jupyter.py +4 -5
- wandb/plot/bar.py +5 -6
- wandb/plot/histogram.py +1 -1
- wandb/plot/line_series.py +3 -3
- wandb/plot/pr_curve.py +7 -3
- wandb/plot/scatter.py +2 -1
- wandb/proto/v3/wandb_settings_pb2.py +25 -15
- wandb/proto/v4/wandb_settings_pb2.py +17 -15
- wandb/proto/v5/wandb_settings_pb2.py +17 -15
- wandb/sdk/artifacts/_validators.py +1 -3
- wandb/sdk/artifacts/artifact_manifest_entry.py +1 -1
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +12 -2
- wandb/sdk/data_types/helper_types/image_mask.py +8 -2
- wandb/sdk/data_types/histogram.py +3 -3
- wandb/sdk/data_types/image.py +3 -1
- wandb/sdk/interface/interface.py +34 -5
- wandb/sdk/interface/interface_sock.py +2 -2
- wandb/sdk/internal/file_stream.py +4 -1
- wandb/sdk/internal/sender.py +4 -1
- wandb/sdk/internal/settings_static.py +17 -4
- wandb/sdk/launch/utils.py +1 -0
- wandb/sdk/lib/ipython.py +5 -27
- wandb/sdk/lib/printer.py +33 -20
- wandb/sdk/lib/sparkline.py +1 -2
- wandb/sdk/wandb_config.py +2 -2
- wandb/sdk/wandb_init.py +236 -243
- wandb/sdk/wandb_run.py +172 -231
- wandb/sdk/wandb_settings.py +103 -14
- {wandb-0.19.0.dist-info → wandb-0.19.1rc1.dist-info}/METADATA +1 -1
- {wandb-0.19.0.dist-info → wandb-0.19.1rc1.dist-info}/RECORD +49 -49
- {wandb-0.19.0.dist-info → wandb-0.19.1rc1.dist-info}/WHEEL +0 -0
- {wandb-0.19.0.dist-info → wandb-0.19.1rc1.dist-info}/entry_points.txt +0 -0
- {wandb-0.19.0.dist-info → wandb-0.19.1rc1.dist-info}/licenses/LICENSE +0 -0
wandb/sdk/wandb_settings.py
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
|
3
3
|
import configparser
|
4
|
-
import getpass
|
5
4
|
import json
|
6
5
|
import logging
|
7
6
|
import multiprocessing
|
8
7
|
import os
|
8
|
+
import pathlib
|
9
9
|
import platform
|
10
10
|
import re
|
11
11
|
import shutil
|
@@ -65,6 +65,15 @@ class Settings(BaseModel, validate_assignment=True):
|
|
65
65
|
# To revert to the old behavior, set this to False.
|
66
66
|
allow_offline_artifacts: bool = True
|
67
67
|
allow_val_change: bool = False
|
68
|
+
# Controls anonymous data logging. Possible values are:
|
69
|
+
# - "never": requires you to link your W&B account before
|
70
|
+
# tracking the run, so you don't accidentally create an anonymous
|
71
|
+
# run.
|
72
|
+
# - "allow": lets a logged-in user track runs with their account, but
|
73
|
+
# lets someone who is running the script without a W&B account see
|
74
|
+
# the charts in the UI.
|
75
|
+
# - "must": sends the run to an anonymous account instead of to a
|
76
|
+
# signed-up user account.
|
68
77
|
anonymous: Literal["allow", "must", "never"] | None = None
|
69
78
|
# The W&B API key.
|
70
79
|
api_key: str | None = None
|
@@ -126,7 +135,10 @@ class Settings(BaseModel, validate_assignment=True):
|
|
126
135
|
identity_token_file: str | None = None
|
127
136
|
# Unix glob patterns relative to `files_dir` to not upload.
|
128
137
|
ignore_globs: tuple[str, ...] = ()
|
138
|
+
# Time in seconds to wait for the wandb.init call to complete before timing out.
|
129
139
|
init_timeout: float = 90.0
|
140
|
+
# Whether to insecurely disable SSL verification.
|
141
|
+
insecure_disable_ssl: bool = False
|
130
142
|
job_name: str | None = None
|
131
143
|
job_source: Literal["repo", "artifact", "image"] | None = None
|
132
144
|
label_disable: bool = False
|
@@ -320,6 +332,10 @@ class Settings(BaseModel, validate_assignment=True):
|
|
320
332
|
if platform.system() == "Darwin"
|
321
333
|
else ("/",)
|
322
334
|
)
|
335
|
+
# GPU device indices to monitor (e.g. [0, 1, 2]).
|
336
|
+
# If not set, captures metrics for all GPUs.
|
337
|
+
# Assumes 0-based indexing matching CUDA/ROCm device enumeration.
|
338
|
+
x_stats_gpu_device_ids: Sequence[int] | None = None
|
323
339
|
# Number of system metric samples to buffer in memory in the wandb-core process.
|
324
340
|
# Can be accessed via run._system_metrics.
|
325
341
|
x_stats_buffer_size: int = 0
|
@@ -400,6 +416,14 @@ class Settings(BaseModel, validate_assignment=True):
|
|
400
416
|
raise ValueError("http is not secure, please use https://api.wandb.ai")
|
401
417
|
return value.rstrip("/")
|
402
418
|
|
419
|
+
@field_validator("code_dir", mode="before")
|
420
|
+
@classmethod
|
421
|
+
def validate_code_dir(cls, value):
|
422
|
+
# TODO: add native support for pathlib.Path
|
423
|
+
if isinstance(value, pathlib.Path):
|
424
|
+
return str(value)
|
425
|
+
return value
|
426
|
+
|
403
427
|
@field_validator("console", mode="after")
|
404
428
|
@classmethod
|
405
429
|
def validate_console(cls, value, info):
|
@@ -416,6 +440,14 @@ class Settings(BaseModel, validate_assignment=True):
|
|
416
440
|
value = "redirect"
|
417
441
|
return value
|
418
442
|
|
443
|
+
@field_validator("x_executable", mode="before")
|
444
|
+
@classmethod
|
445
|
+
def validate_x_executable(cls, value):
|
446
|
+
# TODO: add native support for pathlib.Path
|
447
|
+
if isinstance(value, pathlib.Path):
|
448
|
+
return str(value)
|
449
|
+
return value
|
450
|
+
|
419
451
|
@field_validator("x_file_stream_max_line_bytes", mode="after")
|
420
452
|
@classmethod
|
421
453
|
def validate_file_stream_max_line_bytes(cls, value):
|
@@ -423,6 +455,14 @@ class Settings(BaseModel, validate_assignment=True):
|
|
423
455
|
raise ValueError("File stream max line bytes must be greater than 0")
|
424
456
|
return value
|
425
457
|
|
458
|
+
@field_validator("x_files_dir", mode="before")
|
459
|
+
@classmethod
|
460
|
+
def validate_x_files_dir(cls, value):
|
461
|
+
# TODO: add native support for pathlib.Path
|
462
|
+
if isinstance(value, pathlib.Path):
|
463
|
+
return str(value)
|
464
|
+
return value
|
465
|
+
|
426
466
|
@field_validator("fork_from", mode="before")
|
427
467
|
@classmethod
|
428
468
|
def validate_fork_from(cls, value, info) -> RunMoment | None:
|
@@ -456,6 +496,30 @@ class Settings(BaseModel, validate_assignment=True):
|
|
456
496
|
def validate_ignore_globs(cls, value):
|
457
497
|
return tuple(value) if not isinstance(value, tuple) else value
|
458
498
|
|
499
|
+
@field_validator("program", mode="before")
|
500
|
+
@classmethod
|
501
|
+
def validate_program(cls, value):
|
502
|
+
# TODO: add native support for pathlib.Path
|
503
|
+
if isinstance(value, pathlib.Path):
|
504
|
+
return str(value)
|
505
|
+
return value
|
506
|
+
|
507
|
+
@field_validator("program_abspath", mode="before")
|
508
|
+
@classmethod
|
509
|
+
def validate_program_abspath(cls, value):
|
510
|
+
# TODO: add native support for pathlib.Path
|
511
|
+
if isinstance(value, pathlib.Path):
|
512
|
+
return str(value)
|
513
|
+
return value
|
514
|
+
|
515
|
+
@field_validator("program_relpath", mode="before")
|
516
|
+
@classmethod
|
517
|
+
def validate_program_relpath(cls, value):
|
518
|
+
# TODO: add native support for pathlib.Path
|
519
|
+
if isinstance(value, pathlib.Path):
|
520
|
+
return str(value)
|
521
|
+
return value
|
522
|
+
|
459
523
|
@field_validator("project", mode="after")
|
460
524
|
@classmethod
|
461
525
|
def validate_project(cls, value, info):
|
@@ -492,6 +556,14 @@ class Settings(BaseModel, validate_assignment=True):
|
|
492
556
|
)
|
493
557
|
return run_moment
|
494
558
|
|
559
|
+
@field_validator("root_dir", mode="before")
|
560
|
+
@classmethod
|
561
|
+
def validate_root_dir(cls, value):
|
562
|
+
# TODO: add native support for pathlib.Path
|
563
|
+
if isinstance(value, pathlib.Path):
|
564
|
+
return str(value)
|
565
|
+
return value
|
566
|
+
|
495
567
|
@field_validator("run_id", mode="after")
|
496
568
|
@classmethod
|
497
569
|
def validate_run_id(cls, value, info):
|
@@ -509,6 +581,8 @@ class Settings(BaseModel, validate_assignment=True):
|
|
509
581
|
@field_validator("settings_system", mode="after")
|
510
582
|
@classmethod
|
511
583
|
def validate_settings_system(cls, value):
|
584
|
+
if isinstance(value, pathlib.Path):
|
585
|
+
return str(_path_convert(value))
|
512
586
|
return _path_convert(value)
|
513
587
|
|
514
588
|
@field_validator("x_service_wait", mode="after")
|
@@ -516,7 +590,7 @@ class Settings(BaseModel, validate_assignment=True):
|
|
516
590
|
def validate_service_wait(cls, value):
|
517
591
|
if value < 0:
|
518
592
|
raise UsageError("Service wait time cannot be negative")
|
519
|
-
return
|
593
|
+
return value
|
520
594
|
|
521
595
|
@field_validator("start_method")
|
522
596
|
@classmethod
|
@@ -532,11 +606,19 @@ class Settings(BaseModel, validate_assignment=True):
|
|
532
606
|
)
|
533
607
|
return value
|
534
608
|
|
535
|
-
@field_validator("
|
609
|
+
@field_validator("x_stats_gpu_device_ids", mode="before")
|
536
610
|
@classmethod
|
537
|
-
def
|
538
|
-
if value
|
539
|
-
|
611
|
+
def validate_x_stats_gpu_device_ids(cls, value):
|
612
|
+
if isinstance(value, str):
|
613
|
+
return json.loads(value)
|
614
|
+
return value
|
615
|
+
|
616
|
+
@field_validator("x_stats_neuron_monitor_config_path", mode="before")
|
617
|
+
@classmethod
|
618
|
+
def validate_x_stats_neuron_monitor_config_path(cls, value):
|
619
|
+
# TODO: add native support for pathlib.Path
|
620
|
+
if isinstance(value, pathlib.Path):
|
621
|
+
return str(value)
|
540
622
|
return value
|
541
623
|
|
542
624
|
@field_validator("x_stats_open_metrics_endpoints", mode="before")
|
@@ -560,6 +642,13 @@ class Settings(BaseModel, validate_assignment=True):
|
|
560
642
|
return json.loads(value)
|
561
643
|
return value
|
562
644
|
|
645
|
+
@field_validator("x_stats_sampling_interval", mode="after")
|
646
|
+
@classmethod
|
647
|
+
def validate_stats_sampling_interval(cls, value):
|
648
|
+
if value < 0.1:
|
649
|
+
raise UsageError("Stats sampling interval cannot be less than 0.1 seconds")
|
650
|
+
return value
|
651
|
+
|
563
652
|
@field_validator("sweep_id", mode="after")
|
564
653
|
@classmethod
|
565
654
|
def validate_sweep_id(cls, value):
|
@@ -573,6 +662,14 @@ class Settings(BaseModel, validate_assignment=True):
|
|
573
662
|
raise UsageError("Sweep ID cannot contain only whitespace")
|
574
663
|
return value
|
575
664
|
|
665
|
+
@field_validator("sweep_param_path", mode="before")
|
666
|
+
@classmethod
|
667
|
+
def validate_sweep_param_path(cls, value):
|
668
|
+
# TODO: add native support for pathlib.Path
|
669
|
+
if isinstance(value, pathlib.Path):
|
670
|
+
return str(value)
|
671
|
+
return value
|
672
|
+
|
576
673
|
# Computed fields.
|
577
674
|
|
578
675
|
@computed_field # type: ignore[prop-decorator]
|
@@ -957,14 +1054,6 @@ class Settings(BaseModel, validate_assignment=True):
|
|
957
1054
|
if self.host is None:
|
958
1055
|
self.host = socket.gethostname() # type: ignore
|
959
1056
|
|
960
|
-
if self.username is None:
|
961
|
-
try: # type: ignore
|
962
|
-
self.username = getpass.getuser()
|
963
|
-
except KeyError:
|
964
|
-
# getuser() could raise KeyError in restricted environments like
|
965
|
-
# chroot jails or docker containers. Return user id in these cases.
|
966
|
-
self.username = str(os.getuid())
|
967
|
-
|
968
1057
|
_executable = (
|
969
1058
|
self.x_executable
|
970
1059
|
or os.environ.get(env._EXECUTABLE)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.19.
|
3
|
+
Version: 0.19.1rc1
|
4
4
|
Summary: A CLI and library for interacting with the Weights & Biases API.
|
5
5
|
Project-URL: Source, https://github.com/wandb/wandb
|
6
6
|
Project-URL: Bug Reports, https://github.com/wandb/wandb/issues
|
@@ -1,15 +1,15 @@
|
|
1
1
|
package_readme.md,sha256=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
|
2
|
-
wandb-0.19.
|
3
|
-
wandb-0.19.
|
4
|
-
wandb-0.19.
|
5
|
-
wandb-0.19.
|
6
|
-
wandb-0.19.
|
7
|
-
wandb/env.py,sha256=
|
8
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb-0.19.1rc1.dist-info/RECORD,,
|
3
|
+
wandb-0.19.1rc1.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
|
4
|
+
wandb-0.19.1rc1.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
5
|
+
wandb-0.19.1rc1.dist-info/METADATA,sha256=hjEQA2YJ46wFsOUc-UCly8r8CrQxaG27wGLlmVm32JY,10229
|
6
|
+
wandb-0.19.1rc1.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
7
|
+
wandb/env.py,sha256=ImVRezUi1wpXf2ogJ4IY9YNaELqon3k3S6-vCMNNzwQ,13505
|
8
|
+
wandb/__init__.pyi,sha256=iqdmC2NqVUjWrQcrl8ybosZn0ddQ5YO4pLsxEPxbN7U,46906
|
9
9
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
10
10
|
wandb/util.py,sha256=OH4BGCH6jrAkog-fQO8H0puryTOLVtyI4p0RfGT2Dt8,62269
|
11
11
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
12
|
-
wandb/__init__.py,sha256=
|
12
|
+
wandb/__init__.py,sha256=0WSvHqroWtKZXlOGEoPcAeeXJWCzT7t0sx6lTfdlAaU,7162
|
13
13
|
wandb/data_types.py,sha256=tjxcQ8padGuGxST192PyEDX_nhU__izHcAK-kaSyevI,2276
|
14
14
|
wandb/wandb_controller.py,sha256=7BaQzLIIWoRB1Pax7oJCNpigftEWPb2O_eN2Ci8gVNI,24838
|
15
15
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -17,7 +17,7 @@ wandb/wandb_agent.py,sha256=s2GiDjB15j0arw15Bf4xEvQWmwt8mpZdr5w0w-LTjQg,21076
|
|
17
17
|
wandb/sklearn.py,sha256=hbPkefhS39A1RRymn0nHZZmKM2TrOd4xjlkthTZe9pY,803
|
18
18
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
19
19
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
20
|
-
wandb/jupyter.py,sha256=
|
20
|
+
wandb/jupyter.py,sha256=ip6ukYdoFzvPiHO-IUNnbMMxRnYl3ebEoC0X143_VEw,17274
|
21
21
|
wandb/beta/workflows.py,sha256=bk12HDWnxI4uuP0KyUbfclrTSoRVXrJibAuO_QBB5tI,10239
|
22
22
|
wandb/docker/auth.py,sha256=Tr-BMoiMJjX8TsdUquVBBLyfxEJWR4WQZGyz6vBaJk0,15009
|
23
23
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
@@ -27,7 +27,7 @@ wandb/apis/internal.py,sha256=fL4sPpXqupAml1s_x_fQXzWallbxgNHIUKrTYwzWXVg,7461
|
|
27
27
|
wandb/apis/normalize.py,sha256=LAM71nDl6xD2gXrpLv5e1mJsJDJZ_0y89zH7ygVYt10,2396
|
28
28
|
wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
|
29
29
|
wandb/apis/paginator.py,sha256=18qGrzVzjamd-8AlrwvhUq11Bk31qCjxWWVcYzijGa8,2118
|
30
|
-
wandb/apis/attrs.py,sha256=
|
30
|
+
wandb/apis/attrs.py,sha256=MRle0pRB8QGV31MRjVfqE7l8XJOA04FFKCtOOuDt0xE,1445
|
31
31
|
wandb/apis/importers/mlflow.py,sha256=uoxzm3bSOqjQyUkgOBwuzpaBjTdGp4drPaqE9f7Ny5w,8256
|
32
32
|
wandb/apis/importers/wandb.py,sha256=A8yL8rdDoTV-0Glf0VZcgVaONXueVAEL7NFYronadOg,54450
|
33
33
|
wandb/apis/importers/__init__.py,sha256=ewph-RBUC9FnxL6uWbuuW0Hmdv2cHsxfqnZi0546ds4,38
|
@@ -36,34 +36,34 @@ wandb/apis/importers/internals/internal.py,sha256=hJAe3iYTU1uM3MJ5KLm7e4XLMzx5EI
|
|
36
36
|
wandb/apis/importers/internals/protocols.py,sha256=shZBD2bRMo81xPSUQdK2d9KK8qpop4CmMkizg8FI3WM,2885
|
37
37
|
wandb/apis/importers/internals/util.py,sha256=HvphFwhSxuYqg0omNhfP1GwZV6UzZN-m85CNaSUZXQs,2083
|
38
38
|
wandb/apis/workspaces/__init__.py,sha256=ZLuZVu1MTNZ9ZWFMk-t6TXGQWDhiaI5liEl-5WN1mi4,264
|
39
|
-
wandb/apis/public/files.py,sha256=
|
39
|
+
wandb/apis/public/files.py,sha256=pi0tjoKCBMR3J8apyS9webrP9IkhDVK1CIAFuxIdzB4,8478
|
40
40
|
wandb/apis/public/users.py,sha256=nbguWN0QJWvhsmgVx6IrkLYbjJcyI-eJQAUVaoY5Qjc,3796
|
41
41
|
wandb/apis/public/query_generator.py,sha256=WfyaQuBcTHEECOJ2zN_0iqkUufki9MX28fj3axYZCLU,5977
|
42
42
|
wandb/apis/public/teams.py,sha256=YJAsJLRVM5r6UT48tdGGVA2V_f7nayDe5Q5NRTFQ8m4,5474
|
43
43
|
wandb/apis/public/__init__.py,sha256=ldsy9V8UQlRnsIf9E4qRMtYIdH89oQ8eiYThQsphXks,1070
|
44
44
|
wandb/apis/public/jobs.py,sha256=cw97jJMXCM0jnqGW0QCAWCHMVDVFi2ZOaTSvMv8YJh4,22363
|
45
|
-
wandb/apis/public/api.py,sha256=
|
45
|
+
wandb/apis/public/api.py,sha256=jF_zmKLWY8p2uY_dhrOxSowLxkDoZZBGqG4S3nk4BZc,51748
|
46
46
|
wandb/apis/public/utils.py,sha256=3VZ_oKACQ3wR2QG0x89hea4GOdKkjsP-cYm5qZt7gqc,2103
|
47
47
|
wandb/apis/public/reports.py,sha256=xUm3UO8OnCGXMMqXw-YUhOi143HccrDPS8VO7B0xW0s,15278
|
48
|
-
wandb/apis/public/sweeps.py,sha256=
|
48
|
+
wandb/apis/public/sweeps.py,sha256=FYWvA-h-xqCnZ8PYXRwOEvRHgl3BS0RhuZpTftIMNrc,6547
|
49
49
|
wandb/apis/public/artifacts.py,sha256=ZO6vt4Qs2N8GerR8vM5Wv8Bx-mfG8tAA-FXHs5czDRk,33902
|
50
50
|
wandb/apis/public/projects.py,sha256=F5cPDxAbZD4-oVB_BxBCTsZk6k1tVL0cPU3Z0YEUqzo,4322
|
51
|
-
wandb/apis/public/runs.py,sha256=
|
51
|
+
wandb/apis/public/runs.py,sha256=65pueCujOunDRqkZ7WrtmCfUR6LLhHPxEchaVe7k8hQ,35344
|
52
52
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
53
53
|
wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
|
54
54
|
wandb/apis/reports/__init__.py,sha256=5ZkKvOqwks3UmVeaPuwIZYwyV8_afsGbtybDOXYjSsg,32
|
55
55
|
wandb/apis/reports/v1/__init__.py,sha256=x4CDMwUYT3FwgdQnaj0ZA5gc0e6c5JjboChrnXPKaH8,262
|
56
56
|
wandb/apis/reports/v2/__init__.py,sha256=KFrIs_vw2k49bTUHZCkqx9CzXcbNl192cYBWViKdPc0,262
|
57
|
-
wandb/plot/histogram.py,sha256=
|
57
|
+
wandb/plot/histogram.py,sha256=8r7i3-4-tWuvzNzHmiuMTsIxfOtfatXV5q3aV6eE0Xw,1811
|
58
58
|
wandb/plot/line.py,sha256=U6kNxw80HQTuJRBqHmZ85kZzLgzpI6lCVHnBFq5U-R8,2514
|
59
59
|
wandb/plot/__init__.py,sha256=Md3OLwXgT01j27Ad4WddOwzVseNWcvWxPCRSbXAtXE0,813
|
60
|
-
wandb/plot/pr_curve.py,sha256=
|
60
|
+
wandb/plot/pr_curve.py,sha256=oF3dhj44_CF2G0MjbZ0rmpo20Zd4hGq-b_cbRa6caLM,6753
|
61
61
|
wandb/plot/roc_curve.py,sha256=LQTpTn7n2VW_vqLvZ3W78_MgU4odKU65Gd4_7HmimSE,5824
|
62
62
|
wandb/plot/utils.py,sha256=Ri1W9_NYQijFcPv9BfGLGMKdQk_AZ8dnw1TiHJ0LANE,6803
|
63
|
-
wandb/plot/line_series.py,sha256=
|
64
|
-
wandb/plot/scatter.py,sha256=
|
63
|
+
wandb/plot/line_series.py,sha256=NIF4TGYlphDZYVwJtVXIDuzihjhV6fDCLKfL1FZWICk,5980
|
64
|
+
wandb/plot/scatter.py,sha256=er_s8ARfxch_vf5uGkAcvFWb42Kw3jtd-2qsPoTj2F4,2166
|
65
65
|
wandb/plot/custom_chart.py,sha256=NBI5FmSTH9DsrS3eeVbCP04IKRzb2DMcAvmfoOcHnys,4384
|
66
|
-
wandb/plot/bar.py,sha256=
|
66
|
+
wandb/plot/bar.py,sha256=4mGxyMrnAZnaJekldYm9oHqEd1dcyWd1LE2UYKjPyok,2164
|
67
67
|
wandb/plot/viz.py,sha256=ni1MTkt3k1TxSqArdIR_sVcD1cV0j9eKmJdX0QlBcOM,943
|
68
68
|
wandb/plot/confusion_matrix.py,sha256=C8PuEEhvBn_tpOQlAR_1WMIBnbCmfOFpt3zZ-TzcHtw,6698
|
69
69
|
wandb/proto/wandb_generate_deprecated.py,sha256=Iyf7PwIL_2B7XohrckYLbjjT09lccwbqknxtWelJpJM,1002
|
@@ -75,37 +75,37 @@ wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
75
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
76
76
|
wandb/proto/wandb_deprecated.py,sha256=CGD8fZII6QOjVPJZ2zCGG8Cx95A5KZVYHYwFPz1Cz6k,1978
|
77
77
|
wandb/proto/wandb_telemetry_pb2.py,sha256=ReY9N2qSt46o7m1ou1khvYSYYImrzo5ro90g_9m8QsM,322
|
78
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
78
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=uOkoefVta5Gk81jrzLbtwME3hnSBEbnnGKk0uszlcao,17773
|
79
79
|
wandb/proto/v5/wandb_server_pb2.py,sha256=piGeVPCrHNCMMc9yIYKQtFRNSvfvB2fQKs8ANwApJu8,7463
|
80
80
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
81
81
|
wandb/proto/v5/wandb_internal_pb2.py,sha256=YavvPYL4unVaRdRMiUg52rbP0FU7ck9ooNWKqhoWP8A,55402
|
82
82
|
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=tYmNIX5Mtw2AybnuX8n9KbwdxT2w4GKPvvokFfKfP8M,11522
|
83
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
83
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=viqW95K4Pd2yngqpNbZGQMPVEyxRIhsmkYRU2k9lgn8,17417
|
84
84
|
wandb/proto/v4/wandb_server_pb2.py,sha256=MjXs9_8Gy8PKlIZuNZILp0fh2GDXctwKDL5BZhXydsA,6905
|
85
85
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
86
86
|
wandb/proto/v4/wandb_internal_pb2.py,sha256=3erm0AcQp_Gf0B0ji3NpaPNe4AJ3D_t5hYxOrE6E8Do,51199
|
87
87
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
88
|
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=sd9xk2SdYw3SBOYw77GT5pFa0YHl9v-P17-854RMMxg,11252
|
89
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
89
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=TY-zqOizYCiCYKUiBr9dWTesFzNXm-t7RgDH9yqdURM,21042
|
90
90
|
wandb/proto/v3/wandb_server_pb2.py,sha256=v_A6xNDUCKToBeUTgr1b6sqo51-PdqBEgLLKu8oloSU,15442
|
91
91
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
92
92
|
wandb/proto/v3/wandb_internal_pb2.py,sha256=_3DQZx8l62B6QSSrPpIKqNq7y_aMNJCSOMuU0L-MnHU,111588
|
93
93
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
94
94
|
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=tQQJ7s3fbFYJc60JLnrkdf8yxCqKK0zJMdJaXxA3phM,13805
|
95
|
-
wandb/bin/wandb-core,sha256=
|
96
|
-
wandb/bin/gpu_stats,sha256=
|
95
|
+
wandb/bin/wandb-core,sha256=M98YMqH04tNML5UJ6ZGzk5-Mh9zU8lvRFGvXfX-07SQ,44960674
|
96
|
+
wandb/bin/gpu_stats,sha256=1n-jlWErdQ7_WGF3qmjPlxU7R6_CP_pYNVDUNYEwGh8,9600040
|
97
97
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
98
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
99
|
wandb/integration/yolov8/yolov8.py,sha256=srryantZqO65pj1x52MiKD5m2SzdQc4nIsj4o1GPK8o,11371
|
100
100
|
wandb/integration/keras/keras.py,sha256=vMeC8tUm07oaX60cStAlYRUPxck9fdjfD1gWRAZLOwI,44097
|
101
101
|
wandb/integration/keras/__init__.py,sha256=8_vNA4cEbj1lg2pgMz-c5Iu1XJQtX9x5_vNGrv4NBdE,345
|
102
|
-
wandb/integration/keras/callbacks/tables_builder.py,sha256=
|
102
|
+
wandb/integration/keras/callbacks/tables_builder.py,sha256=01NGafVQJoJFvu6JmaLZsXIdmhYRkzY08KYyzOrxmEg,8881
|
103
103
|
wandb/integration/keras/callbacks/__init__.py,sha256=sY5AMC3x28iA815fqbqkkArtjctqG-m9N2D5FnyR0no,223
|
104
104
|
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=bbwRrex096GKi74xv-N1MaNyB6enU2eGsVEdgAIbjGQ,8546
|
105
105
|
wandb/integration/keras/callbacks/metrics_logger.py,sha256=gA2ui3ZCV4DyOEx5vQZOYRA59jPIlsZhCIC6IGvdy5k,4919
|
106
106
|
wandb/integration/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
107
|
wandb/integration/lightning/fabric/__init__.py,sha256=RFhr2VkC0D8b6bAXUMZzcVzqDQaoOozfP_HOogAWi9o,94
|
108
|
-
wandb/integration/lightning/fabric/logger.py,sha256=
|
108
|
+
wandb/integration/lightning/fabric/logger.py,sha256=ev8xFbCohaRp4MvrBn1x_5ypuvLe2FJdUWY7Jjw0ylk,27251
|
109
109
|
wandb/integration/cohere/__init__.py,sha256=8yTJGhWznxEAxHYDY7oMghvsak_KqLngSLpqjR8ic3g,52
|
110
110
|
wandb/integration/cohere/resolver.py,sha256=pQ2kbO-ynL3FKemSZeCdcsqusQrfB3n29znj-KdSiNo,13813
|
111
111
|
wandb/integration/cohere/cohere.py,sha256=CyALJXyLDnic6ZRc8I4UXmR7hYqtIOCi5Wav12JcXd0,453
|
@@ -124,7 +124,7 @@ wandb/integration/diffusers/resolvers/utils.py,sha256=30RyIDGzkVd_SAIbIy6WT0DYjh
|
|
124
124
|
wandb/integration/sacred/__init__.py,sha256=r-jZjCdU8PwBUHyC9n0Y6-ix5UfsYFGE7w8_pizEiYU,5691
|
125
125
|
wandb/integration/kfp/wandb_logging.py,sha256=fYMImccQagOm6HB-dTV7O1LvH_1jJ-qrd7ngTUu7WVo,6167
|
126
126
|
wandb/integration/kfp/__init__.py,sha256=WhBhg3mQopGNDbWzGJ8Xyld8w3FAAvmP1G1Wtv_QaC0,136
|
127
|
-
wandb/integration/kfp/kfp_patch.py,sha256=
|
127
|
+
wandb/integration/kfp/kfp_patch.py,sha256=CpjBa7xldINeVF7g09J54741e0aQAQYHBPLEXXjc8iI,13184
|
128
128
|
wandb/integration/kfp/helpers.py,sha256=yEVO9rrz27hc4nk3WwNL3v1aRAUlS-OlXMC8Rj0G1tI,1016
|
129
129
|
wandb/integration/torch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
130
130
|
wandb/integration/torch/wandb_torch.py,sha256=gEI1mlRl03K-8jYD49-k_3cDVBuNQpRF8vMd4BBaNyM,21525
|
@@ -152,7 +152,7 @@ wandb/integration/tensorflow/estimator_hook.py,sha256=fi-UtjNZxUnDkzfbNP09iH074z
|
|
152
152
|
wandb/integration/tensorflow/__init__.py,sha256=8y7Acc7EAxKF-4vGXuZH6tsXeNNzqXisE2blNz9RNQk,125
|
153
153
|
wandb/integration/tensorboard/log.py,sha256=oH6P12trF59ulmfoMczuY9czOZ4bBQdVKRdt8V4847E,14180
|
154
154
|
wandb/integration/tensorboard/__init__.py,sha256=Ivj8-XV4lGLg1JK2LdNxWlaLkqrJmXdyWTXf41ysib8,213
|
155
|
-
wandb/integration/tensorboard/monkeypatch.py,sha256=
|
155
|
+
wandb/integration/tensorboard/monkeypatch.py,sha256=o-kduzrUmuFfapyFSOKtVtJV4auaut8jZg9p6gcO-UU,6886
|
156
156
|
wandb/integration/gym/__init__.py,sha256=n4Eptiae6iTvgcm8U4b8a8cUkOgB5DYvbRrwxoVkXoI,3026
|
157
157
|
wandb/integration/prodigy/__init__.py,sha256=1-Hg98Y4T1kSNAbrlR9TUrr7dwL1Gxxa-Exu0fsfxl0,66
|
158
158
|
wandb/integration/prodigy/prodigy.py,sha256=Kzo4WQp5BLka3kdNvkRO8PRtZm36ql3GMegzV2Y_m6o,11605
|
@@ -187,17 +187,17 @@ wandb/old/summary.py,sha256=eqpzQB5CfzTKZta6tB-nVUh0ZmiLwISqjSAt4yvwocE,13952
|
|
187
187
|
wandb/old/settings.py,sha256=IrS10skC9gCTb8NgTWeRFgsTYL1bw36e-rG_xECk-yo,6374
|
188
188
|
wandb/cli/beta.py,sha256=JaDq3Q2t8ECsAgvZ-8AtgiawDydZnasQdXtECIf9ODY,5357
|
189
189
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
|
-
wandb/cli/cli.py,sha256
|
190
|
+
wandb/cli/cli.py,sha256=-c-Va1GdKMvO8Oh2wXR6Fq0_8Y2ilOm1JrmGBm-NQQ4,92829
|
191
191
|
wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
192
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
193
|
-
wandb/sdk/wandb_config.py,sha256=
|
193
|
+
wandb/sdk/wandb_config.py,sha256=b7kxQVnIh5HCBZXb2pOGZ4c02xCVlW4IQiAu3N-8Opg,10856
|
194
194
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
195
|
-
wandb/sdk/wandb_run.py,sha256=
|
195
|
+
wandb/sdk/wandb_run.py,sha256=xhFcXC5wUoCQaqCAz-M1ANtGSLa9MFJHagLld93y_o4,152453
|
196
196
|
wandb/sdk/wandb_sync.py,sha256=GzZ6f6PrzhhuAmNh10OZgEwe7RuzyBqXSvJdLJxnt8I,2321
|
197
197
|
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
198
|
-
wandb/sdk/wandb_init.py,sha256=
|
198
|
+
wandb/sdk/wandb_init.py,sha256=mNDkTxX7LXFbGTR2ZuoO2kJNJL8-Oa6EUOM293mjryE,54610
|
199
199
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
200
|
-
wandb/sdk/wandb_settings.py,sha256=
|
200
|
+
wandb/sdk/wandb_settings.py,sha256=MVHboj8KOeb-nikEaAPHVLo1wEpAld-no6TTILENgNw,49479
|
201
201
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
202
202
|
wandb/sdk/wandb_watch.py,sha256=F7S9CLbw9PddUp1qBjPRKsOiVFU8LPaq6A9taV3TJKI,4840
|
203
203
|
wandb/sdk/wandb_login.py,sha256=3Y1GnE7xQi6LLd9RfVeUZ_SlvsSYyhzSDeIxrqaG6YQ,10976
|
@@ -214,7 +214,7 @@ wandb/sdk/interface/router_queue.py,sha256=4RDXvCcm1OQ7R7eSrZQi7qpaXyd_DzSStYs6C
|
|
214
214
|
wandb/sdk/interface/message_future_poll.py,sha256=drjrcBKswYPYJJQLFlj7UDXq7_zg7KNcObFVetsbvhQ,1410
|
215
215
|
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
216
216
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
217
|
-
wandb/sdk/interface/interface.py,sha256=
|
217
|
+
wandb/sdk/interface/interface.py,sha256=QOymQoJN7KYhJhcR1OOC3kxyWHUP8RloqUqaxHdoMK8,36536
|
218
218
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
219
219
|
wandb/sdk/interface/router_sock.py,sha256=7-J3SFhnaqPohYaUyljwpbsvYPBXA-ZTENYnXxzbh9U,1060
|
220
220
|
wandb/sdk/interface/interface_shared.py,sha256=slAFQKvq5_PXVOiUPWAP50GOWOMTKCLC5mjI8aHGUPY,20505
|
@@ -222,17 +222,17 @@ wandb/sdk/interface/interface_queue.py,sha256=7lbQz6VYamqYlNpkC-Ckrn5az_Yc9Crbnm
|
|
222
222
|
wandb/sdk/interface/router_relay.py,sha256=uf0KA_WJ25xMwLsH_3RU_ZhRPNS5qujo1aFU2d_rfzs,953
|
223
223
|
wandb/sdk/interface/message_future.py,sha256=5OMApIUKTXLHP98ph_jCdshuPZB_E0Uf3UGZpOQ8sik,685
|
224
224
|
wandb/sdk/interface/router.py,sha256=uTgmF0TaQnYq8Frgs7pncUBucA6B7XXCmKcRoYEZV10,3419
|
225
|
-
wandb/sdk/interface/interface_sock.py,sha256=
|
225
|
+
wandb/sdk/interface/interface_sock.py,sha256=ZQuEQS-dHgugEGw9zveEwRm8bolfjZ-MGjk6ENk18fs,2002
|
226
226
|
wandb/sdk/artifacts/storage_policy.py,sha256=BGIC8QRfryCNzF-72uk53MvQQbZVoKwQGhn2zX3NaRE,2090
|
227
227
|
wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
|
228
228
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
|
229
229
|
wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
|
230
230
|
wandb/sdk/artifacts/artifact.py,sha256=YBGy-LZvvXeuBohU3mPpSOSrg4EJp65xxoc3ksZv4E8,88128
|
231
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
231
|
+
wandb/sdk/artifacts/_validators.py,sha256=QlN8yn7muPn1NZMSslHVYM-mcGEEd_4XLfRdv3Wf91Y,4171
|
232
232
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=503z2x4CoTLXk_IfC9jRKBU9fr-X9PMiyG66h0INzQg,9744
|
233
233
|
wandb/sdk/artifacts/artifact_saver.py,sha256=2x_n6KKSdntz7XBIDzQt3BqTXQgxfpyHe4U0GHe0nI8,9329
|
234
234
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
235
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
235
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=jskWFLdJ81Y6Z_rNbHLZu26Os2EE2BUPzKx4o6GMw-4,8355
|
236
236
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=YYC6o2OooTcVfkzqQIIVcxVxqdSN9TELG-qWgaSI2Qo,2545
|
237
237
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=atSUDvKjkp6by6QY0w2FLMrFUg9UKc8TIrMVWGauV64,501
|
238
238
|
wandb/sdk/artifacts/exceptions.py,sha256=h9tSi023BhW85_FfjLYjeNtlVgUTqZRfnYM9WgdAMbM,2023
|
@@ -256,7 +256,7 @@ wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
256
256
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=IW0xTXh4j-GxgypmcJkkefXnopPrycnSnPF1Sl5ypfs,3443
|
257
257
|
wandb/sdk/data_types/object_3d.py,sha256=xQw-9mq_cXMxXoW817BiByh7C5wvMuC6jliJEzKEAPg,15948
|
258
258
|
wandb/sdk/data_types/molecule.py,sha256=lTScaG-_B-eGh20bRfLNA2fECDYQOuD0zdnGvQjEI8o,8583
|
259
|
-
wandb/sdk/data_types/histogram.py,sha256=
|
259
|
+
wandb/sdk/data_types/histogram.py,sha256=syx3fUDoP6vYqA3r5m7bHXK6MAWo2MkRhpCKasihwvg,3145
|
260
260
|
wandb/sdk/data_types/trace_tree.py,sha256=HHJE6QHmlfvWE090OMW6CxMebMT03rF_qnTSGmX0-EE,14700
|
261
261
|
wandb/sdk/data_types/graph.py,sha256=WmCHpKfmeSIc7PCkC55YZyxgbTp56EKnqN8TlkApvTA,12061
|
262
262
|
wandb/sdk/data_types/html.py,sha256=CBgxEybPGDY6vpQ1fHoKtQfGNGuqSkFQtUZF-qG9p6c,3504
|
@@ -269,16 +269,16 @@ wandb/sdk/data_types/bokeh.py,sha256=0Aq4CJECPpoAkl7vw5LCGYhdCb9pS8i46jHB9PxTj1k
|
|
269
269
|
wandb/sdk/data_types/saved_model.py,sha256=VNqDWxnoj9kUgj4zZvD7ieXAh5c63AQ1wf2Aads2fN0,16364
|
270
270
|
wandb/sdk/data_types/plotly.py,sha256=LEIHRqtHHpSou04AEUsyH8_UMXP4adrEHHaKoEtQkxo,2913
|
271
271
|
wandb/sdk/data_types/video.py,sha256=4Z1p_E0iU2qnvJ1NioBCZkEvTkQl7oJ_YktCA8sddfo,9714
|
272
|
-
wandb/sdk/data_types/image.py,sha256=
|
272
|
+
wandb/sdk/data_types/image.py,sha256=dK-EUA1owm1OTspPLX8j3b-Je6KqV4SPSYZ0Pjhfzls,31370
|
273
273
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
274
274
|
wandb/sdk/data_types/base_types/media.py,sha256=QO6aQdNGYtwr6qZYUQ9-WbTpkB3adCBTXWSqO3ZCJjI,14284
|
275
275
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
|
276
276
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
277
277
|
wandb/sdk/data_types/base_types/wb_value.py,sha256=7F2ufa0wMgZ2glMfK3O15lrg0EJQdd0iPU8NMvx61h8,11393
|
278
278
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
279
|
-
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=
|
279
|
+
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=o_QeU_sEsO2NUGyWhUIPUX5pWHRo_JtfH5a-s-68v4o,13100
|
280
280
|
wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZYRj8rvSmT7fl9ds,5520
|
281
|
-
wandb/sdk/data_types/helper_types/image_mask.py,sha256=
|
281
|
+
wandb/sdk/data_types/helper_types/image_mask.py,sha256=Eupi41lU_Hyc8vO9_5AdV9eRb4j3cRJ4fPGunm6QfBg,8689
|
282
282
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
283
283
|
wandb/sdk/verify/verify.py,sha256=2C4C_l8EPGBXZw1PyXyHxnbVMuypHQhBkK5vV15xjG0,16521
|
284
284
|
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
@@ -286,7 +286,7 @@ wandb/sdk/launch/_launch.py,sha256=FZ2JjZc1rzAIW3biWpVKHzxTwWmRx1ZK3n5S-YUQMKE,1
|
|
286
286
|
wandb/sdk/launch/__init__.py,sha256=moXY557JibPbvE1GSSh3nGFiyelTVaJZMdFSv61Dn2k,399
|
287
287
|
wandb/sdk/launch/_project_spec.py,sha256=lkDkVeAjg8wJylHJHHbFsX3jK3gdXXLj3PzIJIaxRV4,21748
|
288
288
|
wandb/sdk/launch/_launch_add.py,sha256=OD6JPJN3dCNz5FZ_8MzgUOBAWGRtcgMz8UYoeV26g9c,8795
|
289
|
-
wandb/sdk/launch/utils.py,sha256=
|
289
|
+
wandb/sdk/launch/utils.py,sha256=QzglL3BmqhZpx8i5Jdt7MMNm0z0YObcAGlWJLQ8sJEE,25690
|
290
290
|
wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
|
291
291
|
wandb/sdk/launch/errors.py,sha256=G86cx2IZSRBBxLE7thxcVFKzN9d4mGyvciaWRz0uWWM,275
|
292
292
|
wandb/sdk/launch/create_job.py,sha256=Uue7UhbLFZSe4Nljy_S2T92uOAAASFFoOme37UjgAxc,17381
|
@@ -332,7 +332,7 @@ wandb/sdk/launch/inputs/internal.py,sha256=xtEZ7znfUCL2ME7xZv5bD8I5C6hNpN2EqjgNd
|
|
332
332
|
wandb/sdk/launch/inputs/files.py,sha256=BWGDmAfDPLja7zz0bUzYLaF3wH4cTPesD9LqDuJRUoU,4685
|
333
333
|
wandb/sdk/launch/inputs/manage.py,sha256=O0IsTWhjUftihohRfK7DkT186LjHMMcE2NSMeG8IFBY,5003
|
334
334
|
wandb/sdk/launch/inputs/schema.py,sha256=Fs4CcxI0ifFagazbNp47uJP15JL3v43PAvVNO93f9XY,1418
|
335
|
-
wandb/sdk/internal/sender.py,sha256=
|
335
|
+
wandb/sdk/internal/sender.py,sha256=8fy1LLs7PyTJJ5N0YhK60wMZivLEQ83WY_3QUp9FctQ,65351
|
336
336
|
wandb/sdk/internal/internal.py,sha256=QiCWUA4C2Yt1d1mJ7YOiFgrIl7blg_fIs1q0CqH8leE,12168
|
337
337
|
wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
|
338
338
|
wandb/sdk/internal/job_builder.py,sha256=_L-DfGFEzDl0JLXPo535KPK3Bk0vqXsTQVF7buXeaiY,22962
|
@@ -340,12 +340,12 @@ wandb/sdk/internal/internal_api.py,sha256=Ju4F_2y-Ux-eEzFXtlf84vXGbOQI1W-ja4trOr
|
|
340
340
|
wandb/sdk/internal/handler.py,sha256=vPt2fCZ-JlxGX-wru1yKOtTducXcuolBaNKLu-xm0L4,33416
|
341
341
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
342
342
|
wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
|
343
|
-
wandb/sdk/internal/settings_static.py,sha256=
|
343
|
+
wandb/sdk/internal/settings_static.py,sha256=H-DE95BttzRn2dy9kLrNr5heNbAY4WjElzbpsKZy9so,3634
|
344
344
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
345
345
|
wandb/sdk/internal/tb_watcher.py,sha256=lJrqTvhsUkKJCcq7D9RWZi3U1QJbVSzM535GYEhOauI,18703
|
346
346
|
wandb/sdk/internal/flow_control.py,sha256=3LJ-KatyPPH18G7TfSMLDk-BE5tankB4JRhQqLoUOWM,8585
|
347
347
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
348
|
-
wandb/sdk/internal/file_stream.py,sha256=
|
348
|
+
wandb/sdk/internal/file_stream.py,sha256=Dnqayrbqa6L2sG03rX2oIFhWT-IME5vl5JTykyLFMNY,25866
|
349
349
|
wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,2442
|
350
350
|
wandb/sdk/internal/writer.py,sha256=jo_Ex7ik-0_rIahYDHIWcQjm_uxsUNVn92__bI8TloE,7267
|
351
351
|
wandb/sdk/internal/file_pusher.py,sha256=clBm6fj_27krGVCcFw9mUdalXHRZlIUxsj5AW_BAzZU,6098
|
@@ -392,12 +392,12 @@ wandb/sdk/lib/timed_input.py,sha256=D7vx3N3m4LlxwkQpzS7lDi7IOnccqZ3WfLlDYRs8Oes,
|
|
392
392
|
wandb/sdk/lib/__init__.py,sha256=53BA5lIOtUXciXZcPpNsFbp-iUPzI5gQFxplTykNmOE,183
|
393
393
|
wandb/sdk/lib/telemetry.py,sha256=OdBUbhUAU1LPDJJmW5Rm6GkRDRPpeCk2SP61XUQYm2g,2752
|
394
394
|
wandb/sdk/lib/disabled.py,sha256=zIuxC4uddcjAGCU-PEQGgoe7FzxJTHho3llW0R1uBX4,884
|
395
|
-
wandb/sdk/lib/sparkline.py,sha256=
|
395
|
+
wandb/sdk/lib/sparkline.py,sha256=9xQkuZ0z1DM7rHE2jFNDy5vBdPirnurd__A_bC6-Bgc,1363
|
396
396
|
wandb/sdk/lib/retry.py,sha256=FheKJLMyKtc7L-dNqGw6DJ1RK3cZ0-Ow0RZQDjJ2o9g,10092
|
397
397
|
wandb/sdk/lib/json_util.py,sha256=fAsYfaw8iMmx3KJ0wSthUSj_XpF1iAysad4XZY1kQdo,2584
|
398
398
|
wandb/sdk/lib/gitlib.py,sha256=oNd1ARdrMJxRco7hgci53QHRBGfQcGSiRxn89x8IoTs,7829
|
399
399
|
wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2894
|
400
|
-
wandb/sdk/lib/ipython.py,sha256=
|
400
|
+
wandb/sdk/lib/ipython.py,sha256=I2iT6vY90Aaws7tmjzW_CrUdQFmfV9-WhAPk8at9LQg,3782
|
401
401
|
wandb/sdk/lib/service_token.py,sha256=c4olk_g4Suo0zTTDaoR78oHLwpt3NgDzQeF94raigME,2471
|
402
402
|
wandb/sdk/lib/run_moment.py,sha256=-_xWnktxlB21obnogPfGeaeIaf8mCS-MIZSMepBL3ZM,2193
|
403
403
|
wandb/sdk/lib/mailbox.py,sha256=enEj8dFre9zoGhnHTWFBvrKYd4DTzzT6uy7ASYJMvTA,14228
|
@@ -409,7 +409,7 @@ wandb/sdk/lib/progress.py,sha256=c86Qc9S1GSlt6jVDFWzrEC7jlrMAaVuG9uYSabajU4o,844
|
|
409
409
|
wandb/sdk/lib/gql_request.py,sha256=4-4HY6IOetwcL8EUaoFc_u3pojnNtEN4NN6-5EtT-MY,2400
|
410
410
|
wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
|
411
411
|
wandb/sdk/lib/apikey.py,sha256=Bmr4HSLUiy9uxrTUp0Jr5wGE7PSxEXUYsPpPDo9kQUE,9156
|
412
|
-
wandb/sdk/lib/printer.py,sha256
|
412
|
+
wandb/sdk/lib/printer.py,sha256=v3T2wqere8HQIVba9LYd8xCIUtV8e8l21Fw4XUEPbXM,15289
|
413
413
|
wandb/sdk/lib/fsm.py,sha256=zTRH0ikxWGgTMTGpXJlqSNDW8aVVYv-TZ1ddvakr2go,5173
|
414
414
|
wandb/sdk/lib/lazyloader.py,sha256=y9mToMsUOibWeL5I6P9e993IKYRLxMYFLeUTessw3L4,1877
|
415
415
|
wandb/sdk/service/service.py,sha256=cQhhEiaFSQtjDVCXh9AQ9f_mxPq9MP4pm5nVxpPRdxc,8602
|
@@ -427,7 +427,7 @@ wandb/filesync/stats.py,sha256=bjVBoCU9I9ke_XbEqtUgmKJVSmFxxAs2JciBzGWPhDg,3050
|
|
427
427
|
wandb/filesync/step_upload.py,sha256=pNYnlYlw0Dizcfo58BQs8FdMYTvLbjSvceBYhU9IS3E,10276
|
428
428
|
wandb/filesync/step_prepare.py,sha256=CmGgLMbDtwgqC-ooDrLIfWP1NZWAf0Icl3sx3KNXnCc,5495
|
429
429
|
wandb/errors/util.py,sha256=EtipkN-l12IT5OAyqhmZyTqYiqplS-Tz5SPp2bjfsJo,1712
|
430
|
-
wandb/errors/term.py,sha256=
|
430
|
+
wandb/errors/term.py,sha256=kH_noQvl9BDsGBXm7fQfH5u0ERmI6bOZa8Rp49DoAPk,12207
|
431
431
|
wandb/errors/warnings.py,sha256=kyLP3bfXSmlztp8nOepLtfTdM-03N-i7Ho1Y568BOtk,57
|
432
432
|
wandb/errors/__init__.py,sha256=Tlij_4c-SxruLN-p0sDfDpF-HktBcHeAbztwGqQ84cU,293
|
433
433
|
wandb/errors/links.py,sha256=sNwJ74e9qb0w4GRZfnbPXK5ZdpIqc5lkuaT4T2Snnqw,2520
|
File without changes
|
File without changes
|
File without changes
|