wandb 0.19.0__py3-none-any.whl → 0.19.1__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 -7
- 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/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/progress.py +7 -1
- 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 +104 -15
- {wandb-0.19.0.dist-info → wandb-0.19.1.dist-info}/METADATA +1 -1
- {wandb-0.19.0.dist-info → wandb-0.19.1.dist-info}/RECORD +49 -49
- {wandb-0.19.0.dist-info → wandb-0.19.1.dist-info}/WHEEL +0 -0
- {wandb-0.19.0.dist-info → wandb-0.19.1.dist-info}/entry_points.txt +0 -0
- {wandb-0.19.0.dist-info → wandb-0.19.1.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
|
@@ -293,7 +305,7 @@ class Settings(BaseModel, validate_assignment=True):
|
|
293
305
|
x_save_requirements: bool = True
|
294
306
|
x_service_transport: str | None = None
|
295
307
|
x_service_wait: float = 30.0
|
296
|
-
x_show_operation_stats: bool =
|
308
|
+
x_show_operation_stats: bool = True
|
297
309
|
# The start time of the run in seconds since the Unix epoch.
|
298
310
|
x_start_time: float | None = None
|
299
311
|
# PID of the process that started the wandb-core process to collect system stats for.
|
@@ -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,11 +1,11 @@
|
|
1
1
|
package_readme.md,sha256=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
|
2
|
-
wandb/__init__.py,sha256=
|
3
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb/__init__.py,sha256=cMbi4hYaCQd_AuguIVtY9IjfSh53ScQW05pH8l_eGsQ,6988
|
3
|
+
wandb/__init__.pyi,sha256=OdWbZciiMe_WjOaF_5CbUnAU2GZy1s2vguPvewLVL2s,46903
|
4
4
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
5
5
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
6
6
|
wandb/data_types.py,sha256=tjxcQ8padGuGxST192PyEDX_nhU__izHcAK-kaSyevI,2276
|
7
|
-
wandb/env.py,sha256=
|
8
|
-
wandb/jupyter.py,sha256=
|
7
|
+
wandb/env.py,sha256=ImVRezUi1wpXf2ogJ4IY9YNaELqon3k3S6-vCMNNzwQ,13505
|
8
|
+
wandb/jupyter.py,sha256=ip6ukYdoFzvPiHO-IUNnbMMxRnYl3ebEoC0X143_VEw,17274
|
9
9
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
10
|
wandb/sklearn.py,sha256=hbPkefhS39A1RRymn0nHZZmKM2TrOd4xjlkthTZe9pY,803
|
11
11
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
@@ -18,7 +18,7 @@ wandb/agents/pyagent.py,sha256=QcyXUIVg-oNP8sS0QwUxprWK_eCmXZlbCFEWEgk1xpI,13409
|
|
18
18
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
19
19
|
wandb/analytics/sentry.py,sha256=-Fn7698AuFI68uaqxRGlGXnv-J6fnYxJOrSE_vv-nDQ,8411
|
20
20
|
wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
|
21
|
-
wandb/apis/attrs.py,sha256=
|
21
|
+
wandb/apis/attrs.py,sha256=MRle0pRB8QGV31MRjVfqE7l8XJOA04FFKCtOOuDt0xE,1445
|
22
22
|
wandb/apis/internal.py,sha256=fL4sPpXqupAml1s_x_fQXzWallbxgNHIUKrTYwzWXVg,7461
|
23
23
|
wandb/apis/normalize.py,sha256=LAM71nDl6xD2gXrpLv5e1mJsJDJZ_0y89zH7ygVYt10,2396
|
24
24
|
wandb/apis/paginator.py,sha256=18qGrzVzjamd-8AlrwvhUq11Bk31qCjxWWVcYzijGa8,2118
|
@@ -30,17 +30,17 @@ wandb/apis/importers/internals/internal.py,sha256=hJAe3iYTU1uM3MJ5KLm7e4XLMzx5EI
|
|
30
30
|
wandb/apis/importers/internals/protocols.py,sha256=shZBD2bRMo81xPSUQdK2d9KK8qpop4CmMkizg8FI3WM,2885
|
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=jF_zmKLWY8p2uY_dhrOxSowLxkDoZZBGqG4S3nk4BZc,51748
|
34
34
|
wandb/apis/public/artifacts.py,sha256=ZO6vt4Qs2N8GerR8vM5Wv8Bx-mfG8tAA-FXHs5czDRk,33902
|
35
35
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
36
|
-
wandb/apis/public/files.py,sha256=
|
36
|
+
wandb/apis/public/files.py,sha256=pi0tjoKCBMR3J8apyS9webrP9IkhDVK1CIAFuxIdzB4,8478
|
37
37
|
wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
|
38
38
|
wandb/apis/public/jobs.py,sha256=cw97jJMXCM0jnqGW0QCAWCHMVDVFi2ZOaTSvMv8YJh4,22363
|
39
39
|
wandb/apis/public/projects.py,sha256=F5cPDxAbZD4-oVB_BxBCTsZk6k1tVL0cPU3Z0YEUqzo,4322
|
40
40
|
wandb/apis/public/query_generator.py,sha256=WfyaQuBcTHEECOJ2zN_0iqkUufki9MX28fj3axYZCLU,5977
|
41
41
|
wandb/apis/public/reports.py,sha256=xUm3UO8OnCGXMMqXw-YUhOi143HccrDPS8VO7B0xW0s,15278
|
42
|
-
wandb/apis/public/runs.py,sha256=
|
43
|
-
wandb/apis/public/sweeps.py,sha256=
|
42
|
+
wandb/apis/public/runs.py,sha256=65pueCujOunDRqkZ7WrtmCfUR6LLhHPxEchaVe7k8hQ,35344
|
43
|
+
wandb/apis/public/sweeps.py,sha256=FYWvA-h-xqCnZ8PYXRwOEvRHgl3BS0RhuZpTftIMNrc,6547
|
44
44
|
wandb/apis/public/teams.py,sha256=YJAsJLRVM5r6UT48tdGGVA2V_f7nayDe5Q5NRTFQ8m4,5474
|
45
45
|
wandb/apis/public/users.py,sha256=nbguWN0QJWvhsmgVx6IrkLYbjJcyI-eJQAUVaoY5Qjc,3796
|
46
46
|
wandb/apis/public/utils.py,sha256=3VZ_oKACQ3wR2QG0x89hea4GOdKkjsP-cYm5qZt7gqc,2103
|
@@ -49,10 +49,10 @@ wandb/apis/reports/v1/__init__.py,sha256=x4CDMwUYT3FwgdQnaj0ZA5gc0e6c5JjboChrnXP
|
|
49
49
|
wandb/apis/reports/v2/__init__.py,sha256=KFrIs_vw2k49bTUHZCkqx9CzXcbNl192cYBWViKdPc0,262
|
50
50
|
wandb/apis/workspaces/__init__.py,sha256=ZLuZVu1MTNZ9ZWFMk-t6TXGQWDhiaI5liEl-5WN1mi4,264
|
51
51
|
wandb/beta/workflows.py,sha256=bk12HDWnxI4uuP0KyUbfclrTSoRVXrJibAuO_QBB5tI,10239
|
52
|
-
wandb/bin/gpu_stats,sha256=
|
52
|
+
wandb/bin/gpu_stats,sha256=5mU_0Pnr-yu-h_uH2mGjF5ZMbTTNVszyJGSe9IRKO8o,10625152
|
53
53
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
54
|
wandb/cli/beta.py,sha256=JaDq3Q2t8ECsAgvZ-8AtgiawDydZnasQdXtECIf9ODY,5357
|
55
|
-
wandb/cli/cli.py,sha256
|
55
|
+
wandb/cli/cli.py,sha256=-c-Va1GdKMvO8Oh2wXR6Fq0_8Y2ilOm1JrmGBm-NQQ4,92829
|
56
56
|
wandb/docker/__init__.py,sha256=Q696WwRtupQi7exHU995N21yf7YVmH_dbcE3ao_tFY8,10538
|
57
57
|
wandb/docker/auth.py,sha256=Tr-BMoiMJjX8TsdUquVBBLyfxEJWR4WQZGyz6vBaJk0,15009
|
58
58
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
@@ -60,7 +60,7 @@ wandb/docker/www_authenticate.py,sha256=eQd0ap8LpZkS9ImRn2gdgl7gnHeKprdqjClrZOaC
|
|
60
60
|
wandb/errors/__init__.py,sha256=Tlij_4c-SxruLN-p0sDfDpF-HktBcHeAbztwGqQ84cU,293
|
61
61
|
wandb/errors/errors.py,sha256=EQy3yZld3hDZA5hOoe34Xcpj7JKJzOg5AkWMMs9ob2E,897
|
62
62
|
wandb/errors/links.py,sha256=sNwJ74e9qb0w4GRZfnbPXK5ZdpIqc5lkuaT4T2Snnqw,2520
|
63
|
-
wandb/errors/term.py,sha256=
|
63
|
+
wandb/errors/term.py,sha256=kH_noQvl9BDsGBXm7fQfH5u0ERmI6bOZa8Rp49DoAPk,12207
|
64
64
|
wandb/errors/util.py,sha256=EtipkN-l12IT5OAyqhmZyTqYiqplS-Tz5SPp2bjfsJo,1712
|
65
65
|
wandb/errors/warnings.py,sha256=kyLP3bfXSmlztp8nOepLtfTdM-03N-i7Ho1Y568BOtk,57
|
66
66
|
wandb/filesync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -92,17 +92,17 @@ wandb/integration/keras/keras.py,sha256=vMeC8tUm07oaX60cStAlYRUPxck9fdjfD1gWRAZL
|
|
92
92
|
wandb/integration/keras/callbacks/__init__.py,sha256=sY5AMC3x28iA815fqbqkkArtjctqG-m9N2D5FnyR0no,223
|
93
93
|
wandb/integration/keras/callbacks/metrics_logger.py,sha256=gA2ui3ZCV4DyOEx5vQZOYRA59jPIlsZhCIC6IGvdy5k,4919
|
94
94
|
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=bbwRrex096GKi74xv-N1MaNyB6enU2eGsVEdgAIbjGQ,8546
|
95
|
-
wandb/integration/keras/callbacks/tables_builder.py,sha256=
|
95
|
+
wandb/integration/keras/callbacks/tables_builder.py,sha256=01NGafVQJoJFvu6JmaLZsXIdmhYRkzY08KYyzOrxmEg,8881
|
96
96
|
wandb/integration/kfp/__init__.py,sha256=WhBhg3mQopGNDbWzGJ8Xyld8w3FAAvmP1G1Wtv_QaC0,136
|
97
97
|
wandb/integration/kfp/helpers.py,sha256=yEVO9rrz27hc4nk3WwNL3v1aRAUlS-OlXMC8Rj0G1tI,1016
|
98
|
-
wandb/integration/kfp/kfp_patch.py,sha256=
|
98
|
+
wandb/integration/kfp/kfp_patch.py,sha256=CpjBa7xldINeVF7g09J54741e0aQAQYHBPLEXXjc8iI,13184
|
99
99
|
wandb/integration/kfp/wandb_logging.py,sha256=fYMImccQagOm6HB-dTV7O1LvH_1jJ-qrd7ngTUu7WVo,6167
|
100
100
|
wandb/integration/langchain/__init__.py,sha256=afRoYH4bPOw6Tyrn9YvuYHzbSae97iQT-Ufi0puJqNw,66
|
101
101
|
wandb/integration/langchain/wandb_tracer.py,sha256=EnzIi-qCCjLDJZf3FlKbdAcgdJTOHRFqHU2Ml-PxYEU,2217
|
102
102
|
wandb/integration/lightgbm/__init__.py,sha256=ztwqeaVneF_f6ngCd0UowwksnNopl1bhSQN9hAeyoyU,7981
|
103
103
|
wandb/integration/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
104
104
|
wandb/integration/lightning/fabric/__init__.py,sha256=RFhr2VkC0D8b6bAXUMZzcVzqDQaoOozfP_HOogAWi9o,94
|
105
|
-
wandb/integration/lightning/fabric/logger.py,sha256=
|
105
|
+
wandb/integration/lightning/fabric/logger.py,sha256=ev8xFbCohaRp4MvrBn1x_5ypuvLe2FJdUWY7Jjw0ylk,27251
|
106
106
|
wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
|
107
107
|
wandb/integration/metaflow/metaflow.py,sha256=bDHn_CG5XBfY7mWi9JpqPLx9b3V46LFScf8CuMVqrxo,11892
|
108
108
|
wandb/integration/openai/__init__.py,sha256=T6x9lIFfw2NzOSi46wi3otY_-DSwyMgnIjMIOIod7iU,66
|
@@ -140,7 +140,7 @@ wandb/integration/sklearn/plot/regressor.py,sha256=mFLK7yhxfRE6MAoF2aQRPbS1hDJQt
|
|
140
140
|
wandb/integration/sklearn/plot/shared.py,sha256=elvnlCHFlASs7Olnh-MVh7kvuuR89qvfmit2GmbeRMo,2763
|
141
141
|
wandb/integration/tensorboard/__init__.py,sha256=Ivj8-XV4lGLg1JK2LdNxWlaLkqrJmXdyWTXf41ysib8,213
|
142
142
|
wandb/integration/tensorboard/log.py,sha256=oH6P12trF59ulmfoMczuY9czOZ4bBQdVKRdt8V4847E,14180
|
143
|
-
wandb/integration/tensorboard/monkeypatch.py,sha256=
|
143
|
+
wandb/integration/tensorboard/monkeypatch.py,sha256=o-kduzrUmuFfapyFSOKtVtJV4auaut8jZg9p6gcO-UU,6886
|
144
144
|
wandb/integration/tensorflow/__init__.py,sha256=8y7Acc7EAxKF-4vGXuZH6tsXeNNzqXisE2blNz9RNQk,125
|
145
145
|
wandb/integration/tensorflow/estimator_hook.py,sha256=fi-UtjNZxUnDkzfbNP09iH074z5x0ItZiB4dkvwMGNI,1756
|
146
146
|
wandb/integration/torch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -162,15 +162,15 @@ wandb/old/core.py,sha256=bIIFlU3_E2hvrVCzMQk1VcwJtxbadbAZwDC0qsF4C2g,1501
|
|
162
162
|
wandb/old/settings.py,sha256=IrS10skC9gCTb8NgTWeRFgsTYL1bw36e-rG_xECk-yo,6374
|
163
163
|
wandb/old/summary.py,sha256=eqpzQB5CfzTKZta6tB-nVUh0ZmiLwISqjSAt4yvwocE,13952
|
164
164
|
wandb/plot/__init__.py,sha256=Md3OLwXgT01j27Ad4WddOwzVseNWcvWxPCRSbXAtXE0,813
|
165
|
-
wandb/plot/bar.py,sha256=
|
165
|
+
wandb/plot/bar.py,sha256=4mGxyMrnAZnaJekldYm9oHqEd1dcyWd1LE2UYKjPyok,2164
|
166
166
|
wandb/plot/confusion_matrix.py,sha256=C8PuEEhvBn_tpOQlAR_1WMIBnbCmfOFpt3zZ-TzcHtw,6698
|
167
167
|
wandb/plot/custom_chart.py,sha256=NBI5FmSTH9DsrS3eeVbCP04IKRzb2DMcAvmfoOcHnys,4384
|
168
|
-
wandb/plot/histogram.py,sha256=
|
168
|
+
wandb/plot/histogram.py,sha256=8r7i3-4-tWuvzNzHmiuMTsIxfOtfatXV5q3aV6eE0Xw,1811
|
169
169
|
wandb/plot/line.py,sha256=U6kNxw80HQTuJRBqHmZ85kZzLgzpI6lCVHnBFq5U-R8,2514
|
170
|
-
wandb/plot/line_series.py,sha256=
|
171
|
-
wandb/plot/pr_curve.py,sha256=
|
170
|
+
wandb/plot/line_series.py,sha256=NIF4TGYlphDZYVwJtVXIDuzihjhV6fDCLKfL1FZWICk,5980
|
171
|
+
wandb/plot/pr_curve.py,sha256=oF3dhj44_CF2G0MjbZ0rmpo20Zd4hGq-b_cbRa6caLM,6753
|
172
172
|
wandb/plot/roc_curve.py,sha256=LQTpTn7n2VW_vqLvZ3W78_MgU4odKU65Gd4_7HmimSE,5824
|
173
|
-
wandb/plot/scatter.py,sha256=
|
173
|
+
wandb/plot/scatter.py,sha256=er_s8ARfxch_vf5uGkAcvFWb42Kw3jtd-2qsPoTj2F4,2166
|
174
174
|
wandb/plot/utils.py,sha256=Ri1W9_NYQijFcPv9BfGLGMKdQk_AZ8dnw1TiHJ0LANE,6803
|
175
175
|
wandb/plot/viz.py,sha256=ni1MTkt3k1TxSqArdIR_sVcD1cV0j9eKmJdX0QlBcOM,943
|
176
176
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -186,43 +186,43 @@ wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
186
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
187
187
|
wandb/proto/v3/wandb_internal_pb2.py,sha256=_3DQZx8l62B6QSSrPpIKqNq7y_aMNJCSOMuU0L-MnHU,111588
|
188
188
|
wandb/proto/v3/wandb_server_pb2.py,sha256=v_A6xNDUCKToBeUTgr1b6sqo51-PdqBEgLLKu8oloSU,15442
|
189
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
189
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=TY-zqOizYCiCYKUiBr9dWTesFzNXm-t7RgDH9yqdURM,21042
|
190
190
|
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=tQQJ7s3fbFYJc60JLnrkdf8yxCqKK0zJMdJaXxA3phM,13805
|
191
191
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
192
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
193
193
|
wandb/proto/v4/wandb_internal_pb2.py,sha256=3erm0AcQp_Gf0B0ji3NpaPNe4AJ3D_t5hYxOrE6E8Do,51199
|
194
194
|
wandb/proto/v4/wandb_server_pb2.py,sha256=MjXs9_8Gy8PKlIZuNZILp0fh2GDXctwKDL5BZhXydsA,6905
|
195
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
195
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=viqW95K4Pd2yngqpNbZGQMPVEyxRIhsmkYRU2k9lgn8,17417
|
196
196
|
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=sd9xk2SdYw3SBOYw77GT5pFa0YHl9v-P17-854RMMxg,11252
|
197
197
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
198
198
|
wandb/proto/v5/wandb_internal_pb2.py,sha256=YavvPYL4unVaRdRMiUg52rbP0FU7ck9ooNWKqhoWP8A,55402
|
199
199
|
wandb/proto/v5/wandb_server_pb2.py,sha256=piGeVPCrHNCMMc9yIYKQtFRNSvfvB2fQKs8ANwApJu8,7463
|
200
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
200
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=uOkoefVta5Gk81jrzLbtwME3hnSBEbnnGKk0uszlcao,17773
|
201
201
|
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=tYmNIX5Mtw2AybnuX8n9KbwdxT2w4GKPvvokFfKfP8M,11522
|
202
202
|
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
203
203
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
204
|
-
wandb/sdk/wandb_config.py,sha256=
|
204
|
+
wandb/sdk/wandb_config.py,sha256=b7kxQVnIh5HCBZXb2pOGZ4c02xCVlW4IQiAu3N-8Opg,10856
|
205
205
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
206
|
-
wandb/sdk/wandb_init.py,sha256=
|
206
|
+
wandb/sdk/wandb_init.py,sha256=mNDkTxX7LXFbGTR2ZuoO2kJNJL8-Oa6EUOM293mjryE,54610
|
207
207
|
wandb/sdk/wandb_login.py,sha256=3Y1GnE7xQi6LLd9RfVeUZ_SlvsSYyhzSDeIxrqaG6YQ,10976
|
208
208
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
209
209
|
wandb/sdk/wandb_require.py,sha256=Y0ib8h27__t7hXos1F2srfsQzVfzH4BB6wq8E1aRbRA,2950
|
210
210
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
211
|
-
wandb/sdk/wandb_run.py,sha256=
|
212
|
-
wandb/sdk/wandb_settings.py,sha256=
|
211
|
+
wandb/sdk/wandb_run.py,sha256=xhFcXC5wUoCQaqCAz-M1ANtGSLa9MFJHagLld93y_o4,152453
|
212
|
+
wandb/sdk/wandb_settings.py,sha256=xYbSuGfILiB8ChtSj1nHs_OTBpO6JDqi6VKvx-SFoLM,49478
|
213
213
|
wandb/sdk/wandb_setup.py,sha256=sEOZmboOsLYnPk1DBZYseQUvsTQuIVzz2cQGh7YZgXc,12937
|
214
214
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
215
215
|
wandb/sdk/wandb_sweep.py,sha256=cboZB5qvLigAY3UeYifDTX1me_-Q4Y0EJ5UVEzYCXac,4000
|
216
216
|
wandb/sdk/wandb_sync.py,sha256=GzZ6f6PrzhhuAmNh10OZgEwe7RuzyBqXSvJdLJxnt8I,2321
|
217
217
|
wandb/sdk/wandb_watch.py,sha256=F7S9CLbw9PddUp1qBjPRKsOiVFU8LPaq6A9taV3TJKI,4840
|
218
218
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
219
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
219
|
+
wandb/sdk/artifacts/_validators.py,sha256=QlN8yn7muPn1NZMSslHVYM-mcGEEd_4XLfRdv3Wf91Y,4171
|
220
220
|
wandb/sdk/artifacts/artifact.py,sha256=YBGy-LZvvXeuBohU3mPpSOSrg4EJp65xxoc3ksZv4E8,88128
|
221
221
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyTA9vscxJL5-8_eupknI,1501
|
222
222
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=503z2x4CoTLXk_IfC9jRKBU9fr-X9PMiyG66h0INzQg,9744
|
223
223
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=atSUDvKjkp6by6QY0w2FLMrFUg9UKc8TIrMVWGauV64,501
|
224
224
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=YYC6o2OooTcVfkzqQIIVcxVxqdSN9TELG-qWgaSI2Qo,2545
|
225
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
225
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=jskWFLdJ81Y6Z_rNbHLZu26Os2EE2BUPzKx4o6GMw-4,8355
|
226
226
|
wandb/sdk/artifacts/artifact_saver.py,sha256=2x_n6KKSdntz7XBIDzQt3BqTXQgxfpyHe4U0GHe0nI8,9329
|
227
227
|
wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
|
228
228
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
|
@@ -254,9 +254,9 @@ wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82s
|
|
254
254
|
wandb/sdk/data_types/audio.py,sha256=VcbZRjY-9szxIKR-x1Eg375H1Lm5R6znErT4Q8FYrWM,5364
|
255
255
|
wandb/sdk/data_types/bokeh.py,sha256=0Aq4CJECPpoAkl7vw5LCGYhdCb9pS8i46jHB9PxTj1k,2534
|
256
256
|
wandb/sdk/data_types/graph.py,sha256=WmCHpKfmeSIc7PCkC55YZyxgbTp56EKnqN8TlkApvTA,12061
|
257
|
-
wandb/sdk/data_types/histogram.py,sha256=
|
257
|
+
wandb/sdk/data_types/histogram.py,sha256=syx3fUDoP6vYqA3r5m7bHXK6MAWo2MkRhpCKasihwvg,3145
|
258
258
|
wandb/sdk/data_types/html.py,sha256=CBgxEybPGDY6vpQ1fHoKtQfGNGuqSkFQtUZF-qG9p6c,3504
|
259
|
-
wandb/sdk/data_types/image.py,sha256=
|
259
|
+
wandb/sdk/data_types/image.py,sha256=dK-EUA1owm1OTspPLX8j3b-Je6KqV4SPSYZ0Pjhfzls,31370
|
260
260
|
wandb/sdk/data_types/molecule.py,sha256=lTScaG-_B-eGh20bRfLNA2fECDYQOuD0zdnGvQjEI8o,8583
|
261
261
|
wandb/sdk/data_types/object_3d.py,sha256=xQw-9mq_cXMxXoW817BiByh7C5wvMuC6jliJEzKEAPg,15948
|
262
262
|
wandb/sdk/data_types/plotly.py,sha256=LEIHRqtHHpSou04AEUsyH8_UMXP4adrEHHaKoEtQkxo,2913
|
@@ -270,19 +270,19 @@ wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyy
|
|
270
270
|
wandb/sdk/data_types/base_types/media.py,sha256=QO6aQdNGYtwr6qZYUQ9-WbTpkB3adCBTXWSqO3ZCJjI,14284
|
271
271
|
wandb/sdk/data_types/base_types/wb_value.py,sha256=7F2ufa0wMgZ2glMfK3O15lrg0EJQdd0iPU8NMvx61h8,11393
|
272
272
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
273
|
-
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=
|
273
|
+
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=o_QeU_sEsO2NUGyWhUIPUX5pWHRo_JtfH5a-s-68v4o,13100
|
274
274
|
wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZYRj8rvSmT7fl9ds,5520
|
275
|
-
wandb/sdk/data_types/helper_types/image_mask.py,sha256=
|
275
|
+
wandb/sdk/data_types/helper_types/image_mask.py,sha256=Eupi41lU_Hyc8vO9_5AdV9eRb4j3cRJ4fPGunm6QfBg,8689
|
276
276
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
277
277
|
wandb/sdk/integration_utils/auto_logging.py,sha256=sblNn9BIG7memxTj23UfrGXyA06t39FEt5igMwS0-zU,8233
|
278
278
|
wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
|
279
279
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
280
280
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
281
|
-
wandb/sdk/interface/interface.py,sha256=
|
281
|
+
wandb/sdk/interface/interface.py,sha256=QOymQoJN7KYhJhcR1OOC3kxyWHUP8RloqUqaxHdoMK8,36536
|
282
282
|
wandb/sdk/interface/interface_queue.py,sha256=7lbQz6VYamqYlNpkC-Ckrn5az_Yc9CrbnmwKNFtta44,1700
|
283
283
|
wandb/sdk/interface/interface_relay.py,sha256=vQUrk5KESKInZsXpOxWF4YcWRZFLJjNz1mdNywbWbbE,1514
|
284
284
|
wandb/sdk/interface/interface_shared.py,sha256=slAFQKvq5_PXVOiUPWAP50GOWOMTKCLC5mjI8aHGUPY,20505
|
285
|
-
wandb/sdk/interface/interface_sock.py,sha256=
|
285
|
+
wandb/sdk/interface/interface_sock.py,sha256=ZQuEQS-dHgugEGw9zveEwRm8bolfjZ-MGjk6ENk18fs,2002
|
286
286
|
wandb/sdk/interface/message_future.py,sha256=5OMApIUKTXLHP98ph_jCdshuPZB_E0Uf3UGZpOQ8sik,685
|
287
287
|
wandb/sdk/interface/message_future_poll.py,sha256=drjrcBKswYPYJJQLFlj7UDXq7_zg7KNcObFVetsbvhQ,1410
|
288
288
|
wandb/sdk/interface/router.py,sha256=uTgmF0TaQnYq8Frgs7pncUBucA6B7XXCmKcRoYEZV10,3419
|
@@ -294,7 +294,7 @@ wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
294
294
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
295
295
|
wandb/sdk/internal/datastore.py,sha256=qqkCbh98crLbfKSTHKmO137IX-jCFYkh8wbZeh9dc6Q,9838
|
296
296
|
wandb/sdk/internal/file_pusher.py,sha256=clBm6fj_27krGVCcFw9mUdalXHRZlIUxsj5AW_BAzZU,6098
|
297
|
-
wandb/sdk/internal/file_stream.py,sha256=
|
297
|
+
wandb/sdk/internal/file_stream.py,sha256=Dnqayrbqa6L2sG03rX2oIFhWT-IME5vl5JTykyLFMNY,25866
|
298
298
|
wandb/sdk/internal/flow_control.py,sha256=3LJ-KatyPPH18G7TfSMLDk-BE5tankB4JRhQqLoUOWM,8585
|
299
299
|
wandb/sdk/internal/handler.py,sha256=vPt2fCZ-JlxGX-wru1yKOtTducXcuolBaNKLu-xm0L4,33416
|
300
300
|
wandb/sdk/internal/internal.py,sha256=QiCWUA4C2Yt1d1mJ7YOiFgrIl7blg_fIs1q0CqH8leE,12168
|
@@ -305,9 +305,9 @@ wandb/sdk/internal/profiler.py,sha256=C8-mPrAhPS6_l-Fj_zCOwmXaEqhjI9Wd0EAPXS9GAE
|
|
305
305
|
wandb/sdk/internal/progress.py,sha256=9nNAErIXzJoapctsfqWYhESNPzFkXAu5TVAnaKsIa4k,2339
|
306
306
|
wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
|
307
307
|
wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,2442
|
308
|
-
wandb/sdk/internal/sender.py,sha256=
|
308
|
+
wandb/sdk/internal/sender.py,sha256=8fy1LLs7PyTJJ5N0YhK60wMZivLEQ83WY_3QUp9FctQ,65351
|
309
309
|
wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
|
310
|
-
wandb/sdk/internal/settings_static.py,sha256=
|
310
|
+
wandb/sdk/internal/settings_static.py,sha256=H-DE95BttzRn2dy9kLrNr5heNbAY4WjElzbpsKZy9so,3634
|
311
311
|
wandb/sdk/internal/tb_watcher.py,sha256=lJrqTvhsUkKJCcq7D9RWZi3U1QJbVSzM535GYEhOauI,18703
|
312
312
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
313
313
|
wandb/sdk/internal/writer.py,sha256=jo_Ex7ik-0_rIahYDHIWcQjm_uxsUNVn92__bI8TloE,7267
|
@@ -337,7 +337,7 @@ wandb/sdk/launch/create_job.py,sha256=Uue7UhbLFZSe4Nljy_S2T92uOAAASFFoOme37UjgAx
|
|
337
337
|
wandb/sdk/launch/errors.py,sha256=G86cx2IZSRBBxLE7thxcVFKzN9d4mGyvciaWRz0uWWM,275
|
338
338
|
wandb/sdk/launch/git_reference.py,sha256=6pTVlD7-BICWoraN8PsAzCKu64GV7g_GzqMSD9w3Sos,3758
|
339
339
|
wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
|
340
|
-
wandb/sdk/launch/utils.py,sha256=
|
340
|
+
wandb/sdk/launch/utils.py,sha256=QzglL3BmqhZpx8i5Jdt7MMNm0z0YObcAGlWJLQ8sJEE,25690
|
341
341
|
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
342
342
|
wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
|
343
343
|
wandb/sdk/launch/agent/agent.py,sha256=lTongYmHXc7n5huXjAdOqwFr_ekcBajLchEebugPaZI,36500
|
@@ -397,15 +397,15 @@ wandb/sdk/lib/gql_request.py,sha256=4-4HY6IOetwcL8EUaoFc_u3pojnNtEN4NN6-5EtT-MY,
|
|
397
397
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
398
398
|
wandb/sdk/lib/hashutil.py,sha256=aU8YsAgkTcYDlqshfcDjItiO2s9lqq2YdKt7RoA2adQ,2763
|
399
399
|
wandb/sdk/lib/import_hooks.py,sha256=0_TJwq-EuZFUIFzFOZoVDWOMP9-Af1r2Vq5sV5sfzg4,10271
|
400
|
-
wandb/sdk/lib/ipython.py,sha256=
|
400
|
+
wandb/sdk/lib/ipython.py,sha256=I2iT6vY90Aaws7tmjzW_CrUdQFmfV9-WhAPk8at9LQg,3782
|
401
401
|
wandb/sdk/lib/json_util.py,sha256=fAsYfaw8iMmx3KJ0wSthUSj_XpF1iAysad4XZY1kQdo,2584
|
402
402
|
wandb/sdk/lib/lazyloader.py,sha256=y9mToMsUOibWeL5I6P9e993IKYRLxMYFLeUTessw3L4,1877
|
403
403
|
wandb/sdk/lib/mailbox.py,sha256=enEj8dFre9zoGhnHTWFBvrKYd4DTzzT6uy7ASYJMvTA,14228
|
404
404
|
wandb/sdk/lib/module.py,sha256=PWxpFqOYmLyKPF-VgfINZXzkFxDcoQVunVDVNWNnbxQ,2098
|
405
405
|
wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
|
406
406
|
wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
|
407
|
-
wandb/sdk/lib/printer.py,sha256
|
408
|
-
wandb/sdk/lib/progress.py,sha256=
|
407
|
+
wandb/sdk/lib/printer.py,sha256=v3T2wqere8HQIVba9LYd8xCIUtV8e8l21Fw4XUEPbXM,15289
|
408
|
+
wandb/sdk/lib/progress.py,sha256=GN3AhhjUK6D2SGCXSercS6pSepyHqVvE-X7f5W1WnW4,8609
|
409
409
|
wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2894
|
410
410
|
wandb/sdk/lib/redirect.py,sha256=eTNvQp4SFLgN5Kxwmh1BP0du8_7YZxcgoXsmE_2IHSM,26132
|
411
411
|
wandb/sdk/lib/retry.py,sha256=FheKJLMyKtc7L-dNqGw6DJ1RK3cZ0-Ow0RZQDjJ2o9g,10092
|
@@ -415,7 +415,7 @@ wandb/sdk/lib/server.py,sha256=mDqOrR9LFbSjYfCk9Bufse8P0wISS6DZOBRbw0SDgsg,1110
|
|
415
415
|
wandb/sdk/lib/service_connection.py,sha256=wgxe5j66WSjP-vQ-gQUPVMYOtqvmwUGtQ-Mz8tNPHR4,6466
|
416
416
|
wandb/sdk/lib/service_token.py,sha256=c4olk_g4Suo0zTTDaoR78oHLwpt3NgDzQeF94raigME,2471
|
417
417
|
wandb/sdk/lib/sock_client.py,sha256=-B2V0rTRM_pnZsqV0GuCjPTvEOAjfvjICTz5nohEIGY,10351
|
418
|
-
wandb/sdk/lib/sparkline.py,sha256=
|
418
|
+
wandb/sdk/lib/sparkline.py,sha256=9xQkuZ0z1DM7rHE2jFNDy5vBdPirnurd__A_bC6-Bgc,1363
|
419
419
|
wandb/sdk/lib/telemetry.py,sha256=OdBUbhUAU1LPDJJmW5Rm6GkRDRPpeCk2SP61XUQYm2g,2752
|
420
420
|
wandb/sdk/lib/timed_input.py,sha256=D7vx3N3m4LlxwkQpzS7lDi7IOnccqZ3WfLlDYRs8Oes,3229
|
421
421
|
wandb/sdk/lib/timer.py,sha256=VZUyl7fmQAB75l9QXw9Nkz9SxyYj-CvLPawAk866YKM,440
|
@@ -814,8 +814,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=cJIaJ2EQso
|
|
814
814
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2NpFcq9UVLIS-tsS0TS_Qw8akhKxn2eY,1506
|
815
815
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
|
816
816
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
|
817
|
-
wandb-0.19.
|
818
|
-
wandb-0.19.
|
819
|
-
wandb-0.19.
|
820
|
-
wandb-0.19.
|
821
|
-
wandb-0.19.
|
817
|
+
wandb-0.19.1.dist-info/METADATA,sha256=jxi7YMfLRMfukmxmaedXLVj895U0sPo_Vc2bb6oTNYk,10204
|
818
|
+
wandb-0.19.1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
819
|
+
wandb-0.19.1.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
820
|
+
wandb-0.19.1.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
821
|
+
wandb-0.19.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|