wandb 0.19.7__py3-none-macosx_11_0_arm64.whl → 0.19.9__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 +5 -1
- wandb/__init__.pyi +43 -9
- wandb/_pydantic/__init__.py +23 -0
- wandb/_pydantic/base.py +113 -0
- wandb/_pydantic/v1_compat.py +262 -0
- wandb/apis/paginator.py +82 -38
- wandb/apis/public/api.py +10 -64
- wandb/apis/public/artifacts.py +73 -17
- wandb/apis/public/files.py +2 -2
- wandb/apis/public/projects.py +3 -2
- wandb/apis/public/reports.py +2 -2
- wandb/apis/public/runs.py +19 -11
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/data_types.py +1 -1
- wandb/filesync/dir_watcher.py +2 -1
- wandb/integration/metaflow/metaflow.py +19 -17
- wandb/integration/sacred/__init__.py +1 -1
- wandb/jupyter.py +18 -15
- wandb/proto/v3/wandb_internal_pb2.py +7 -3
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v4/wandb_internal_pb2.py +3 -3
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v5/wandb_internal_pb2.py +3 -3
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
- wandb/proto/wandb_deprecated.py +2 -0
- wandb/sdk/artifacts/_graphql_fragments.py +18 -20
- wandb/sdk/artifacts/_validators.py +1 -0
- wandb/sdk/artifacts/artifact.py +81 -46
- wandb/sdk/artifacts/artifact_saver.py +16 -2
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +23 -2
- wandb/sdk/backend/backend.py +16 -5
- wandb/sdk/data_types/audio.py +1 -3
- wandb/sdk/data_types/base_types/media.py +11 -4
- wandb/sdk/data_types/image.py +44 -25
- wandb/sdk/data_types/molecule.py +1 -5
- wandb/sdk/data_types/object_3d.py +2 -1
- wandb/sdk/data_types/saved_model.py +7 -9
- wandb/sdk/data_types/video.py +1 -4
- wandb/sdk/interface/interface.py +65 -43
- wandb/sdk/interface/interface_queue.py +0 -7
- wandb/sdk/interface/interface_relay.py +6 -16
- wandb/sdk/interface/interface_shared.py +47 -40
- wandb/sdk/interface/interface_sock.py +1 -8
- wandb/sdk/interface/router.py +22 -54
- wandb/sdk/interface/router_queue.py +11 -10
- wandb/sdk/interface/router_relay.py +24 -12
- wandb/sdk/interface/router_sock.py +6 -11
- wandb/{apis/public → sdk/internal}/_generated/__init__.py +0 -6
- wandb/sdk/internal/_generated/base.py +226 -0
- wandb/{apis/public → sdk/internal}/_generated/server_features_query.py +3 -3
- wandb/{apis/public → sdk/internal}/_generated/typing_compat.py +1 -1
- wandb/sdk/internal/internal_api.py +138 -47
- wandb/sdk/internal/sender.py +5 -1
- wandb/sdk/internal/sender_config.py +8 -11
- wandb/sdk/internal/settings_static.py +24 -2
- wandb/sdk/lib/apikey.py +15 -16
- wandb/sdk/lib/console_capture.py +172 -0
- wandb/sdk/lib/redirect.py +102 -76
- wandb/sdk/lib/run_moment.py +4 -6
- wandb/sdk/lib/service_connection.py +37 -17
- wandb/sdk/lib/sock_client.py +2 -52
- wandb/sdk/lib/wb_logging.py +161 -0
- wandb/sdk/mailbox/__init__.py +3 -3
- wandb/sdk/mailbox/mailbox.py +31 -17
- wandb/sdk/mailbox/mailbox_handle.py +127 -0
- wandb/sdk/mailbox/{handles.py → response_handle.py} +34 -66
- wandb/sdk/mailbox/wait_with_progress.py +16 -15
- wandb/sdk/service/server_sock.py +4 -2
- wandb/sdk/service/streams.py +10 -5
- wandb/sdk/wandb_config.py +44 -43
- wandb/sdk/wandb_init.py +151 -92
- wandb/sdk/wandb_metadata.py +107 -91
- wandb/sdk/wandb_run.py +160 -54
- wandb/sdk/wandb_settings.py +410 -202
- wandb/sdk/wandb_setup.py +3 -1
- wandb/sdk/wandb_sync.py +1 -7
- {wandb-0.19.7.dist-info → wandb-0.19.9.dist-info}/METADATA +3 -3
- {wandb-0.19.7.dist-info → wandb-0.19.9.dist-info}/RECORD +88 -84
- wandb/apis/public/_generated/base.py +0 -128
- wandb/sdk/interface/message_future.py +0 -27
- wandb/sdk/interface/message_future_poll.py +0 -50
- /wandb/{apis/public → sdk/internal}/_generated/enums.py +0 -0
- /wandb/{apis/public → sdk/internal}/_generated/input_types.py +0 -0
- /wandb/{apis/public → sdk/internal}/_generated/operations.py +0 -0
- {wandb-0.19.7.dist-info → wandb-0.19.9.dist-info}/WHEEL +0 -0
- {wandb-0.19.7.dist-info → wandb-0.19.9.dist-info}/entry_points.txt +0 -0
- {wandb-0.19.7.dist-info → wandb-0.19.9.dist-info}/licenses/LICENSE +0 -0
wandb/sdk/wandb_setup.py
CHANGED
@@ -21,7 +21,7 @@ from typing import TYPE_CHECKING, Any, Union
|
|
21
21
|
|
22
22
|
import wandb
|
23
23
|
import wandb.integration.sagemaker as sagemaker
|
24
|
-
from wandb.sdk.lib import import_hooks
|
24
|
+
from wandb.sdk.lib import import_hooks, wb_logging
|
25
25
|
|
26
26
|
from . import wandb_settings
|
27
27
|
from .lib import config_util, server
|
@@ -294,6 +294,7 @@ def singleton() -> _WandbSetup | None:
|
|
294
294
|
return None
|
295
295
|
|
296
296
|
|
297
|
+
@wb_logging.log_to_all_runs()
|
297
298
|
def _setup(
|
298
299
|
settings: Settings | None = None,
|
299
300
|
start_service: bool = True,
|
@@ -382,6 +383,7 @@ def setup(settings: Settings | None = None) -> _WandbSetup:
|
|
382
383
|
return _setup(settings=settings)
|
383
384
|
|
384
385
|
|
386
|
+
@wb_logging.log_to_all_runs()
|
385
387
|
def teardown(exit_code: int | None = None) -> None:
|
386
388
|
"""Waits for wandb to finish and frees resources.
|
387
389
|
|
wandb/sdk/wandb_sync.py
CHANGED
@@ -7,7 +7,6 @@ from wandb.errors.term import termerror, termlog
|
|
7
7
|
from . import wandb_setup
|
8
8
|
from .backend.backend import Backend
|
9
9
|
from .lib.runid import generate_id
|
10
|
-
from .mailbox import Mailbox
|
11
10
|
|
12
11
|
if TYPE_CHECKING:
|
13
12
|
from wandb.proto import wandb_internal_pb2
|
@@ -49,12 +48,7 @@ def _sync(
|
|
49
48
|
service = wl.ensure_service()
|
50
49
|
service.inform_init(settings=settings, run_id=stream_id)
|
51
50
|
|
52
|
-
|
53
|
-
backend = Backend(
|
54
|
-
settings=wl.settings,
|
55
|
-
service=service,
|
56
|
-
mailbox=mailbox,
|
57
|
-
)
|
51
|
+
backend = Backend(settings=wl.settings, service=service)
|
58
52
|
backend.ensure_launched()
|
59
53
|
|
60
54
|
assert backend.interface
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.19.
|
3
|
+
Version: 0.19.9
|
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
|
@@ -57,13 +57,13 @@ Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.15.0; python_version == '3.9' an
|
|
57
57
|
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.19.0; python_version > '3.9' and sys_platform == 'linux'
|
58
58
|
Requires-Dist: protobuf!=4.21.0,!=5.28.0,<6,>=3.19.0; sys_platform != 'linux'
|
59
59
|
Requires-Dist: psutil>=5.0.0
|
60
|
-
Requires-Dist: pydantic<3
|
60
|
+
Requires-Dist: pydantic<3
|
61
61
|
Requires-Dist: pyyaml
|
62
62
|
Requires-Dist: requests<3,>=2.0.0
|
63
63
|
Requires-Dist: sentry-sdk>=2.0.0
|
64
64
|
Requires-Dist: setproctitle
|
65
65
|
Requires-Dist: setuptools
|
66
|
-
Requires-Dist: typing-extensions<5,>=4.4
|
66
|
+
Requires-Dist: typing-extensions<5,>=4.4
|
67
67
|
Provides-Extra: aws
|
68
68
|
Requires-Dist: boto3; extra == 'aws'
|
69
69
|
Requires-Dist: botocore>=1.5.76; extra == 'aws'
|
@@ -1,24 +1,24 @@
|
|
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.
|
2
|
+
wandb-0.19.9.dist-info/RECORD,,
|
3
|
+
wandb-0.19.9.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
|
4
|
+
wandb-0.19.9.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
5
|
+
wandb-0.19.9.dist-info/METADATA,sha256=v7khagHi3wRSTpI-H4YhFEoi7ifJxEzHv3QOE1CGPwI,10258
|
6
|
+
wandb-0.19.9.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
7
7
|
wandb/env.py,sha256=NtyTiZbU3xrpNiISvrTVO5SDBXVqHl58wmrhpB4MCSA,13736
|
8
|
-
wandb/__init__.pyi,sha256=
|
8
|
+
wandb/__init__.pyi,sha256=pstgzL37MQKvtnejJA0C4dKyNE_ikcYTM-AwQTKc7mw,48110
|
9
9
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
10
10
|
wandb/util.py,sha256=tlaNaz9W6r2T0bs0-KVDcuSPE1PiZ7642GjCjAx8Mvw,63525
|
11
11
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
12
12
|
wandb/_iterutils.py,sha256=bOhOrOENEDzOMtyQqHysivzHri9axcVlCfXt4Ai1ot8,1545
|
13
|
-
wandb/__init__.py,sha256=
|
14
|
-
wandb/data_types.py,sha256=
|
13
|
+
wandb/__init__.py,sha256=e31yaHVH78RZDBC-FKl-IttiNnT7bxTdpcqXPAi8Sfg,7147
|
14
|
+
wandb/data_types.py,sha256=M-wqAO0FtIqvj28556u3h4nzSwlRcbxhXoX0B9jlJSo,2283
|
15
15
|
wandb/wandb_controller.py,sha256=SksJdgwn14PpnUoIaBjJ9Ki4Nksl9BpQGGn42hT0xZg,24936
|
16
16
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
wandb/wandb_agent.py,sha256=0TKjcJ8jxEqaXMrs_dIflXfWFFOaulfSjzp_fpYiXD0,20985
|
18
18
|
wandb/sklearn.py,sha256=hbPkefhS39A1RRymn0nHZZmKM2TrOd4xjlkthTZe9pY,803
|
19
19
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
20
20
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
21
|
-
wandb/jupyter.py,sha256=
|
21
|
+
wandb/jupyter.py,sha256=TdnXHFBZ9Kwi3jc5uHYvDWzjZWThWXFUG1UsqoTSXao,17352
|
22
22
|
wandb/beta/workflows.py,sha256=bk12HDWnxI4uuP0KyUbfclrTSoRVXrJibAuO_QBB5tI,10239
|
23
23
|
wandb/docker/auth.py,sha256=Tr-BMoiMJjX8TsdUquVBBLyfxEJWR4WQZGyz6vBaJk0,15009
|
24
24
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
@@ -27,7 +27,7 @@ wandb/docker/www_authenticate.py,sha256=eQd0ap8LpZkS9ImRn2gdgl7gnHeKprdqjClrZOaC
|
|
27
27
|
wandb/apis/internal.py,sha256=Whl1x29iH_DdIu47vUVvDSyOavEVaovdmlqXmu4-yOw,7622
|
28
28
|
wandb/apis/normalize.py,sha256=mamR8PquPZU7YAVNP1k_Q941l7FRwEoQhJhTH3SgSJQ,2676
|
29
29
|
wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
|
30
|
-
wandb/apis/paginator.py,sha256=
|
30
|
+
wandb/apis/paginator.py,sha256=ZxG7oJkw5DPjN9u-GAFS_kBokmUiIW21QLH8SMVQ8YI,3550
|
31
31
|
wandb/apis/attrs.py,sha256=MRle0pRB8QGV31MRjVfqE7l8XJOA04FFKCtOOuDt0xE,1445
|
32
32
|
wandb/apis/importers/mlflow.py,sha256=uoxzm3bSOqjQyUkgOBwuzpaBjTdGp4drPaqE9f7Ny5w,8256
|
33
33
|
wandb/apis/importers/wandb.py,sha256=u1zRAEYkPfrDSD5V2_RAuRlNnvDaBZa1ByvZ5O7mQUU,54451
|
@@ -37,29 +37,22 @@ wandb/apis/importers/internals/internal.py,sha256=hJAe3iYTU1uM3MJ5KLm7e4XLMzx5EI
|
|
37
37
|
wandb/apis/importers/internals/protocols.py,sha256=shZBD2bRMo81xPSUQdK2d9KK8qpop4CmMkizg8FI3WM,2885
|
38
38
|
wandb/apis/importers/internals/util.py,sha256=HvphFwhSxuYqg0omNhfP1GwZV6UzZN-m85CNaSUZXQs,2083
|
39
39
|
wandb/apis/workspaces/__init__.py,sha256=buvqtqELpCFWC7sHzEuslJgx24ZWDj-5lo2mdV6aHdg,265
|
40
|
-
wandb/apis/public/files.py,sha256=
|
40
|
+
wandb/apis/public/files.py,sha256=sQNGU18jmcpc6XccK5-jUXFhnqjOJgu9-fFljsTfg4Y,8497
|
41
41
|
wandb/apis/public/users.py,sha256=nbguWN0QJWvhsmgVx6IrkLYbjJcyI-eJQAUVaoY5Qjc,3796
|
42
42
|
wandb/apis/public/query_generator.py,sha256=WfyaQuBcTHEECOJ2zN_0iqkUufki9MX28fj3axYZCLU,5977
|
43
43
|
wandb/apis/public/teams.py,sha256=YJAsJLRVM5r6UT48tdGGVA2V_f7nayDe5Q5NRTFQ8m4,5474
|
44
44
|
wandb/apis/public/__init__.py,sha256=ldsy9V8UQlRnsIf9E4qRMtYIdH89oQ8eiYThQsphXks,1070
|
45
45
|
wandb/apis/public/jobs.py,sha256=Ewwh-KK2mNoOXIz3p4Q1fMoWqAkGDl1vGbTBZIkOxPc,22372
|
46
|
-
wandb/apis/public/api.py,sha256=
|
46
|
+
wandb/apis/public/api.py,sha256=2mlZOQ4rR2nfNICFoMZMyDcm3leRnlRDN5DNmRh7EDA,56720
|
47
47
|
wandb/apis/public/utils.py,sha256=6jfEut3u4qc1KiD4fR04YM2X6tmNW997MT44ptL7bTU,3681
|
48
|
-
wandb/apis/public/reports.py,sha256=
|
48
|
+
wandb/apis/public/reports.py,sha256=DR_Kw3dznuy1UeaiJ_ENLbimV1j1kSerYr_vqoPtWNY,15302
|
49
49
|
wandb/apis/public/sweeps.py,sha256=FYWvA-h-xqCnZ8PYXRwOEvRHgl3BS0RhuZpTftIMNrc,6547
|
50
|
-
wandb/apis/public/artifacts.py,sha256=
|
51
|
-
wandb/apis/public/projects.py,sha256=
|
52
|
-
wandb/apis/public/runs.py,sha256=
|
50
|
+
wandb/apis/public/artifacts.py,sha256=D4e9CQ_C-PvkeM8j5yLR56TJw6O30WV8W0Of3qbQaYI,35908
|
51
|
+
wandb/apis/public/projects.py,sha256=rglvcBD7npD6McZa3VKdbxz8DuHPraZVBwlRq57Yy2E,4420
|
52
|
+
wandb/apis/public/runs.py,sha256=0RIX-HChtT5yug-AeilTnmnadE6rqjROCW9gBkya3pI,35356
|
53
53
|
wandb/apis/public/registries.py,sha256=CaL1vD2dH74aMu916vVfgqSsKFsQWMVZf5jNfXiboa0,18404
|
54
54
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
55
55
|
wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
|
56
|
-
wandb/apis/public/_generated/typing_compat.py,sha256=qV4yFJH1utKxh-vl-U3JhPHyRSqxZ8d8niMSBF5K370,303
|
57
|
-
wandb/apis/public/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
58
|
-
wandb/apis/public/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
59
|
-
wandb/apis/public/_generated/__init__.py,sha256=m19wAWXw_4qFC1pNaJPp1XBngTOjCab-4Eds3YmDT3U,528
|
60
|
-
wandb/apis/public/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
|
61
|
-
wandb/apis/public/_generated/server_features_query.py,sha256=VcqMZTC-_Xq9nhVUv5TD_na6O4PzuDPA2YK6lREOQmM,641
|
62
|
-
wandb/apis/public/_generated/base.py,sha256=zaD3C8aYH-WNw5pL1d-UarEm0NjmEW7lYF2eMraHFpk,4017
|
63
56
|
wandb/apis/reports/__init__.py,sha256=5ZkKvOqwks3UmVeaPuwIZYwyV8_afsGbtybDOXYjSsg,32
|
64
57
|
wandb/apis/reports/v1/__init__.py,sha256=L5l1BqMaap-w5wXCzn8pC8RXB7_72MsjTx8HeLuC3XU,263
|
65
58
|
wandb/apis/reports/v2/__init__.py,sha256=jdLiTqf5QIRxnWH8drWV9Y06bZEhI5N6uGGSKAT7tv0,263
|
@@ -82,27 +75,27 @@ wandb/proto/wandb_base_pb2.py,sha256=HjakgSUcYSm6X7B-nvckrmMjaUKGuUh_KE97AuFBat8
|
|
82
75
|
wandb/proto/wandb_internal_pb2.py,sha256=nIbQS1O4z7n2U0SWGxViHUnjReEBblhht3rZ7pQ0MTs,542
|
83
76
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
84
77
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
85
|
-
wandb/proto/wandb_deprecated.py,sha256=
|
78
|
+
wandb/proto/wandb_deprecated.py,sha256=ycCrPSC0odwFFkhRMpqNsrMsCjfNYSRTj-dMc7KWD_I,2065
|
86
79
|
wandb/proto/wandb_telemetry_pb2.py,sha256=ReY9N2qSt46o7m1ou1khvYSYYImrzo5ro90g_9m8QsM,322
|
87
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
80
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=7B1GCfP7mcfaxhXlP-QcmOEPjKkDeTml9cVgDTGOF1c,17928
|
88
81
|
wandb/proto/v5/wandb_server_pb2.py,sha256=f55mk3Z77xUnq_tAbTd_Q75CiOJz6ppPbZT7CoeF7-I,7535
|
89
82
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
90
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
91
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
92
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
83
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=S-raVx_sCQ-OmOICRjCacmEIZz83XGXHknXGjHDY9uY,57740
|
84
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=d6qjnhCbLT5fdTwvhKoHtqaLop0Kbbh6eppcb4KjoSg,11626
|
85
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=pOU_zBpU8XqL6dCKboUSaqeSXB4MSn4year4z2wzBX4,17572
|
93
86
|
wandb/proto/v4/wandb_server_pb2.py,sha256=NiG6Xv9CDvxc8v8NmnM237jyYqMuRyE_nqmLAMZVdI8,6977
|
94
87
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
95
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
88
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=SlqrjYQ6m53PrIthGy0x6-i7tNsZGJQ7idQLNJ6t0_c,53393
|
96
89
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
98
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
90
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=6QtWG9fzlAJyzzDtk-sWv6LetC1cYBatceKEu4TmepE,11356
|
91
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=3q2U2JdfaGE3iVi4IgvVGkMjDjgO8VKWvFkpoYqQzak,21197
|
99
92
|
wandb/proto/v3/wandb_server_pb2.py,sha256=LQCUmuy0NFDo20N9uCUiE5VPyhP5r929WKtniae4CdQ,15514
|
100
93
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
101
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
94
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=TwAdOUWcpTeTsh2JDo6sxcyYbC_ZXX9T-L_wjwjp5To,116533
|
102
95
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
103
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
104
|
-
wandb/bin/wandb-core,sha256=
|
105
|
-
wandb/bin/gpu_stats,sha256=
|
96
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=ZznK36COb2ZzWhi55YXKbg-WZxPYJLtrafN-7ENCSJw,13909
|
97
|
+
wandb/bin/wandb-core,sha256=0QbbYm1dRcuCVyvrhtIO9FPIFSKXyV9j5S21ktKm7oY,47410322
|
98
|
+
wandb/bin/gpu_stats,sha256=ZTSYxBHLGAWOTVxlpDe1_86G4TLgfWgUN4_D7NuXVCs,9201920
|
106
99
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
100
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
108
101
|
wandb/integration/yolov8/yolov8.py,sha256=srryantZqO65pj1x52MiKD5m2SzdQc4nIsj4o1GPK8o,11371
|
@@ -130,7 +123,7 @@ wandb/integration/diffusers/pipeline_resolver.py,sha256=AYnMDpSwjSdf0mno9y43tDCV
|
|
130
123
|
wandb/integration/diffusers/resolvers/multimodal.py,sha256=E9zG1iatfwTFqiyIvamV5DNGILCd2I_Boi413kKHqjM,30032
|
131
124
|
wandb/integration/diffusers/resolvers/__init__.py,sha256=07La9KIUpsOE3nNPnrcA4fESpmkeJFNhTI4FL8WPJ5k,201
|
132
125
|
wandb/integration/diffusers/resolvers/utils.py,sha256=30RyIDGzkVd_SAIbIy6WT0DYjhgcigJtMyIwHDvvqBI,3824
|
133
|
-
wandb/integration/sacred/__init__.py,sha256=
|
126
|
+
wandb/integration/sacred/__init__.py,sha256=Zzi-m0yRvtbyEgB0N67xSUAWZc1eYBz8Nni3e3OxcHg,5751
|
134
127
|
wandb/integration/kfp/wandb_logging.py,sha256=fYMImccQagOm6HB-dTV7O1LvH_1jJ-qrd7ngTUu7WVo,6167
|
135
128
|
wandb/integration/kfp/__init__.py,sha256=WhBhg3mQopGNDbWzGJ8Xyld8w3FAAvmP1G1Wtv_QaC0,136
|
136
129
|
wandb/integration/kfp/kfp_patch.py,sha256=CpjBa7xldINeVF7g09J54741e0aQAQYHBPLEXXjc8iI,13184
|
@@ -169,7 +162,7 @@ wandb/integration/huggingface/__init__.py,sha256=Ui-JiM_yel2YZuS9U_LyReL3mhBZZSI
|
|
169
162
|
wandb/integration/huggingface/huggingface.py,sha256=KYP0dCYERORLNE1Sk6jfp0krHF2BQ4q4qOlF-0H-vrI,443
|
170
163
|
wandb/integration/huggingface/resolver.py,sha256=Atc0vwdPar5yKzTcJF6Fu2i7h7a6TX0W9B2HdeToqrI,7858
|
171
164
|
wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
|
172
|
-
wandb/integration/metaflow/metaflow.py,sha256=
|
165
|
+
wandb/integration/metaflow/metaflow.py,sha256=E4EVeqpTHdDlqtlZz4sw8x4YEafxzeEBOmfBPPosQFQ,11814
|
173
166
|
wandb/integration/lightgbm/__init__.py,sha256=ztwqeaVneF_f6ngCd0UowwksnNopl1bhSQN9hAeyoyU,7981
|
174
167
|
wandb/integration/ultralytics/callback.py,sha256=RzX-iBEJJULfYSEke_jN_kJkXsBwqo6qpjuRDHp3W7c,21253
|
175
168
|
wandb/integration/ultralytics/pose_utils.py,sha256=oknJAy_eoyokJY1u03uk_MpR7kKrJIK4wSRBK5lJGyw,3709
|
@@ -199,48 +192,46 @@ wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
192
|
wandb/cli/cli.py,sha256=eggnDh2vtLOP44F4VGEJEvoGFZZFzhUaOHtPp804NEw,92622
|
200
193
|
wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
194
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
202
|
-
wandb/sdk/wandb_metadata.py,sha256=
|
203
|
-
wandb/sdk/wandb_config.py,sha256=
|
195
|
+
wandb/sdk/wandb_metadata.py,sha256=wnwKexZjJ7zRtAcfYbOZtaoK6rfVVU5oKDWT5-UerOk,20886
|
196
|
+
wandb/sdk/wandb_config.py,sha256=imPAYPMzP3rdhmYCK6zYWeZ1GbM7Jw5w7_PTJdoRmcc,10693
|
204
197
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
205
|
-
wandb/sdk/wandb_run.py,sha256=
|
206
|
-
wandb/sdk/wandb_sync.py,sha256=
|
198
|
+
wandb/sdk/wandb_run.py,sha256=yNcr8j5Q5p1EmWCP5tMQpSQhnlQz7lu7pCtDSedrakI,156504
|
199
|
+
wandb/sdk/wandb_sync.py,sha256=GNC8xYqT56ws4aw6Vd_mV_Ck-InEbqnyioSqHIybDug,2106
|
207
200
|
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
208
|
-
wandb/sdk/wandb_init.py,sha256=
|
201
|
+
wandb/sdk/wandb_init.py,sha256=agD3n4OQ2MWIgtG7OEPCOYM9VDJAdZDl0rts3k_SPhw,61404
|
209
202
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
210
|
-
wandb/sdk/wandb_settings.py,sha256=
|
203
|
+
wandb/sdk/wandb_settings.py,sha256=UTLsLl9ho4lOJnI0ZAPmkWC3h4zJo3ZCvKzqHLQjJnI,64047
|
211
204
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
212
205
|
wandb/sdk/wandb_watch.py,sha256=F7S9CLbw9PddUp1qBjPRKsOiVFU8LPaq6A9taV3TJKI,4840
|
213
206
|
wandb/sdk/wandb_login.py,sha256=-2EvouBgBOQgOnh_8Hlb5LCGg6Lz2OR44ieWRRgqdZ8,10952
|
214
207
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
215
208
|
wandb/sdk/wandb_require.py,sha256=eYDG4oH1pwik2tHJVEdvivo4R2RypoITFomgr7umMhc,3104
|
216
209
|
wandb/sdk/wandb_sweep.py,sha256=Sg_JqxVzmjUBvii41azpdr-c6RPwHOBnSha8k7jrRhk,4028
|
217
|
-
wandb/sdk/wandb_setup.py,sha256=
|
210
|
+
wandb/sdk/wandb_setup.py,sha256=bznp9ZHKofN2B_J34m-oAkf1bFg1M6MeW6UhiEpY_Ks,13010
|
218
211
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
219
212
|
wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
|
220
213
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
221
214
|
wandb/sdk/integration_utils/auto_logging.py,sha256=sblNn9BIG7memxTj23UfrGXyA06t39FEt5igMwS0-zU,8233
|
222
|
-
wandb/sdk/interface/interface_relay.py,sha256=
|
223
|
-
wandb/sdk/interface/router_queue.py,sha256=
|
224
|
-
wandb/sdk/interface/message_future_poll.py,sha256=drjrcBKswYPYJJQLFlj7UDXq7_zg7KNcObFVetsbvhQ,1410
|
215
|
+
wandb/sdk/interface/interface_relay.py,sha256=lM5ZgJc6m8BS-nWOuzMCwAK0ve9UBGgOD2rgJ9flIhI,867
|
216
|
+
wandb/sdk/interface/router_queue.py,sha256=wnApY1iXa_3L0-HO6t42Nbsh68zyEw3FWN3oI6PmoXM,1049
|
225
217
|
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
226
218
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
227
|
-
wandb/sdk/interface/interface.py,sha256=
|
219
|
+
wandb/sdk/interface/interface.py,sha256=oRyy1hs78rZyjf3jn7pHKAqZUA7Swz25I90yDmuJ4vA,37716
|
228
220
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
229
|
-
wandb/sdk/interface/router_sock.py,sha256=
|
230
|
-
wandb/sdk/interface/interface_shared.py,sha256=
|
231
|
-
wandb/sdk/interface/interface_queue.py,sha256=
|
232
|
-
wandb/sdk/interface/router_relay.py,sha256=
|
233
|
-
wandb/sdk/interface/
|
234
|
-
wandb/sdk/interface/
|
235
|
-
wandb/sdk/interface/interface_sock.py,sha256=K958Geq33GVUJvpzTruLO1KJp6Qb_3MjYcCahkOCwEY,1321
|
221
|
+
wandb/sdk/interface/router_sock.py,sha256=S15CRwMoDFYKnEzwqAjvPQC6BlKtJpxE_rZHeaxM2V4,1002
|
222
|
+
wandb/sdk/interface/interface_shared.py,sha256=XmEg78CyUHI4XPNtgyx59aQIlzJzQjZYEIeQVECHXSE,18645
|
223
|
+
wandb/sdk/interface/interface_queue.py,sha256=zOjUB2nf_wNMoEeXGWP5di-u4-UL2_jvsVZw53EbEsk,1257
|
224
|
+
wandb/sdk/interface/router_relay.py,sha256=tOBQYEX7PGw9-qE91CdNhLEQb9KbJiQnlHg7XBOsijA,1390
|
225
|
+
wandb/sdk/interface/router.py,sha256=hlYzz7DjDt3sYDJQYLE1NHkxGFDezHgmfznnPRHPcHU,2630
|
226
|
+
wandb/sdk/interface/interface_sock.py,sha256=rz6uwKNzLpGDCCVGSlC6ABspmkYD5LnGX_cd9dvaAwU,1043
|
236
227
|
wandb/sdk/artifacts/storage_policy.py,sha256=BGIC8QRfryCNzF-72uk53MvQQbZVoKwQGhn2zX3NaRE,2090
|
237
228
|
wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
|
238
229
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
|
239
230
|
wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
|
240
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
241
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
231
|
+
wandb/sdk/artifacts/artifact.py,sha256=T279vMZYJsHH0fcdpzwAJqQoJwXsQkn8W3q_deamC8w,92458
|
232
|
+
wandb/sdk/artifacts/_validators.py,sha256=p74NPaBhRPJ-Z_2o85RdGcfDM8Tqok7DrqmIvuUbN9Y,4216
|
242
233
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=503z2x4CoTLXk_IfC9jRKBU9fr-X9PMiyG66h0INzQg,9744
|
243
|
-
wandb/sdk/artifacts/artifact_saver.py,sha256=
|
234
|
+
wandb/sdk/artifacts/artifact_saver.py,sha256=Dw8gT3NVMlyoVuDkIpROYdZMU5rGduVZzRTFSOnebak,9718
|
244
235
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
245
236
|
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=jskWFLdJ81Y6Z_rNbHLZu26Os2EE2BUPzKx4o6GMw-4,8355
|
246
237
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=YYC6o2OooTcVfkzqQIIVcxVxqdSN9TELG-qWgaSI2Qo,2545
|
@@ -249,8 +240,8 @@ wandb/sdk/artifacts/exceptions.py,sha256=h9tSi023BhW85_FfjLYjeNtlVgUTqZRfnYM9Wgd
|
|
249
240
|
wandb/sdk/artifacts/storage_handler.py,sha256=ebMCKXvvn7z_eYunXriTOYescstuBbNbxn7MDW9qZAw,1834
|
250
241
|
wandb/sdk/artifacts/staging.py,sha256=_U3oH2S7fEevRkcYgo4nmwvdaoJnZR4V-bNiJVWlowA,854
|
251
242
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyTA9vscxJL5-8_eupknI,1501
|
252
|
-
wandb/sdk/artifacts/_graphql_fragments.py,sha256=
|
253
|
-
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=
|
243
|
+
wandb/sdk/artifacts/_graphql_fragments.py,sha256=mH_wkTAZz2Qn-rlkaq84XZIQ5x3zLF0bqRaTuM5mbXE,2926
|
244
|
+
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=VMy9B6Wm6I4WtNtGOTb4QGIDSlRVoVIakG0UpFNUNqo,14883
|
254
245
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
|
255
246
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
|
256
247
|
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=XysTYz7_4zqGuvY1mdfaw--SqyIOe-WvjTowJFFHBvY,11586
|
@@ -265,8 +256,8 @@ wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=hGslEr9QYi0Jp5_C5fxv7
|
|
265
256
|
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=lFWh0NIySHq6JWNJ-WOX367lUEY7KN7zFsB-zte7FpQ,2571
|
266
257
|
wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
258
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=IW0xTXh4j-GxgypmcJkkefXnopPrycnSnPF1Sl5ypfs,3443
|
268
|
-
wandb/sdk/data_types/object_3d.py,sha256=
|
269
|
-
wandb/sdk/data_types/molecule.py,sha256=
|
259
|
+
wandb/sdk/data_types/object_3d.py,sha256=6WlsiefTzDErb84M9mVRE8aN-GXFoX1v3S4YReVOzR8,16002
|
260
|
+
wandb/sdk/data_types/molecule.py,sha256=rTvaAfHLYZ3u7TZsHxEClKHA6fwNl81iolAf74KwIvQ,8490
|
270
261
|
wandb/sdk/data_types/histogram.py,sha256=syx3fUDoP6vYqA3r5m7bHXK6MAWo2MkRhpCKasihwvg,3145
|
271
262
|
wandb/sdk/data_types/trace_tree.py,sha256=HHJE6QHmlfvWE090OMW6CxMebMT03rF_qnTSGmX0-EE,14700
|
272
263
|
wandb/sdk/data_types/graph.py,sha256=_P_z2dNj2mCJeSvusIfVHkSkVB9AL0AEO-6KaguC1ys,12089
|
@@ -274,15 +265,15 @@ wandb/sdk/data_types/html.py,sha256=CBgxEybPGDY6vpQ1fHoKtQfGNGuqSkFQtUZF-qG9p6c,
|
|
274
265
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
275
266
|
wandb/sdk/data_types/_dtypes.py,sha256=NdRfTto95YxLMMK89PONQvAz_Jaey8D7caTsZ_OlvW8,30092
|
276
267
|
wandb/sdk/data_types/utils.py,sha256=Qdj-gUOrrc9wVjBD7Mtmt2o6bHadr1IgzAWF4ijdrz4,7633
|
277
|
-
wandb/sdk/data_types/audio.py,sha256=
|
268
|
+
wandb/sdk/data_types/audio.py,sha256=q6buCUd3NYmHLs6UaQwzU0eMULKigofq4WOlIJKGg8U,5305
|
278
269
|
wandb/sdk/data_types/table.py,sha256=DjppFy0-ii1iMoVOg-h_F1YEUbgk5wGPJDXlQURXLQw,44683
|
279
270
|
wandb/sdk/data_types/bokeh.py,sha256=0Aq4CJECPpoAkl7vw5LCGYhdCb9pS8i46jHB9PxTj1k,2534
|
280
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
271
|
+
wandb/sdk/data_types/saved_model.py,sha256=XtlrAp8PHb4Pd8-xG97I_iSvFe8fme9iHmHMR9G2KG8,16212
|
281
272
|
wandb/sdk/data_types/plotly.py,sha256=LEIHRqtHHpSou04AEUsyH8_UMXP4adrEHHaKoEtQkxo,2913
|
282
|
-
wandb/sdk/data_types/video.py,sha256=
|
283
|
-
wandb/sdk/data_types/image.py,sha256=
|
273
|
+
wandb/sdk/data_types/video.py,sha256=pfgxOEfx7tGugyjpO5fVM7X_yXE4_wjMbIx1XH84Y9Y,9252
|
274
|
+
wandb/sdk/data_types/image.py,sha256=L9FiBr1OL_e2bJlqoWS84Cz9CJR4zRCQCsbSemGBpcY,31792
|
284
275
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
285
|
-
wandb/sdk/data_types/base_types/media.py,sha256=
|
276
|
+
wandb/sdk/data_types/base_types/media.py,sha256=z50vmzEbWgiCyp8Wjt7e-8-AzQeGPlo-O0N8pcQuKVw,14468
|
286
277
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
|
287
278
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
288
279
|
wandb/sdk/data_types/base_types/wb_value.py,sha256=HtV2VblGg_nnSBQ1rRSjlRuY-NyDTbeDVCJzlQ49SUc,11460
|
@@ -292,10 +283,11 @@ wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZ
|
|
292
283
|
wandb/sdk/data_types/helper_types/image_mask.py,sha256=kx77gxfNnhNIk-Nvaw2SC-NjnDlD5x7RXEB0DBuZCis,8727
|
293
284
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
294
285
|
wandb/sdk/verify/verify.py,sha256=Bz7DKW7zmhNAPJQNAAQszAmjBilxs2WJJ9rVHRml6LM,18299
|
295
|
-
wandb/sdk/mailbox/
|
296
|
-
wandb/sdk/mailbox/__init__.py,sha256=
|
297
|
-
wandb/sdk/mailbox/
|
298
|
-
wandb/sdk/mailbox/
|
286
|
+
wandb/sdk/mailbox/mailbox_handle.py,sha256=YLKNMkytIAoIpMuV5Nu_g04JdTGzm8P9d9iw2EPJhV4,3743
|
287
|
+
wandb/sdk/mailbox/__init__.py,sha256=C4x3ym_hymymKFZiI1Q0HPlGx5x5CzeKPVF229Z2V8w,856
|
288
|
+
wandb/sdk/mailbox/response_handle.py,sha256=kZWVvVbpc92u3u23FTwAod-QCPFENUYREpjXm-wkh6Q,5031
|
289
|
+
wandb/sdk/mailbox/wait_with_progress.py,sha256=O3yGgUC3ztpfmdLk_CyirJVeXiCzF8nuDI2CqNiak90,4126
|
290
|
+
wandb/sdk/mailbox/mailbox.py,sha256=jUEP2Ltgi9rCZmiDtfb5ZESaqwB2wH-sy72OLRvATZk,4314
|
299
291
|
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
300
292
|
wandb/sdk/launch/_launch.py,sha256=FZ2JjZc1rzAIW3biWpVKHzxTwWmRx1ZK3n5S-YUQMKE,11829
|
301
293
|
wandb/sdk/launch/__init__.py,sha256=moXY557JibPbvE1GSSh3nGFiyelTVaJZMdFSv61Dn2k,399
|
@@ -347,15 +339,15 @@ wandb/sdk/launch/inputs/internal.py,sha256=xtEZ7znfUCL2ME7xZv5bD8I5C6hNpN2EqjgNd
|
|
347
339
|
wandb/sdk/launch/inputs/files.py,sha256=BWGDmAfDPLja7zz0bUzYLaF3wH4cTPesD9LqDuJRUoU,4685
|
348
340
|
wandb/sdk/launch/inputs/manage.py,sha256=O0IsTWhjUftihohRfK7DkT186LjHMMcE2NSMeG8IFBY,5003
|
349
341
|
wandb/sdk/launch/inputs/schema.py,sha256=Fs4CcxI0ifFagazbNp47uJP15JL3v43PAvVNO93f9XY,1418
|
350
|
-
wandb/sdk/internal/sender.py,sha256=
|
342
|
+
wandb/sdk/internal/sender.py,sha256=kU1EkHkX0S-xKRDjbk7Cj3K2ivVvscrNPsn8-RpLQnk,64588
|
351
343
|
wandb/sdk/internal/internal.py,sha256=o9_-6C99LMOx_YB5xuZ1I1KgpeHk3jUgll63sEe9gCY,12182
|
352
344
|
wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
|
353
345
|
wandb/sdk/internal/job_builder.py,sha256=_L-DfGFEzDl0JLXPo535KPK3Bk0vqXsTQVF7buXeaiY,22962
|
354
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
346
|
+
wandb/sdk/internal/internal_api.py,sha256=HXXCtbJ7-N-w7889zwKGRKgzeN-dDSsdxpdLtzPnSZU,163705
|
355
347
|
wandb/sdk/internal/handler.py,sha256=zquR4k6Ah5ohg9n5XJC_bKAulz3aSUuMjUlHqiIOfFE,34280
|
356
348
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
357
|
-
wandb/sdk/internal/sender_config.py,sha256=
|
358
|
-
wandb/sdk/internal/settings_static.py,sha256
|
349
|
+
wandb/sdk/internal/sender_config.py,sha256=3g0eAgmYJtv7tPXlqf7qayqKj-JOclvVRvzbVi8wfR4,6711
|
350
|
+
wandb/sdk/internal/settings_static.py,sha256=-3pJ5RCWxGbNVVE4RvGudTurpn8ObN8wTEx_4dkrS3o,4284
|
359
351
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
360
352
|
wandb/sdk/internal/tb_watcher.py,sha256=3AvQGlZLGkr8POhaSGzbeyIcX0YWkLkblJ0bksAB8U8,18738
|
361
353
|
wandb/sdk/internal/flow_control.py,sha256=3LJ-KatyPPH18G7TfSMLDk-BE5tankB4JRhQqLoUOWM,8585
|
@@ -386,16 +378,23 @@ wandb/sdk/internal/system/assets/tpu.py,sha256=nwv3C9a6dgD1hc0461Rh28NQkWbNQ5fJO
|
|
386
378
|
wandb/sdk/internal/system/assets/network.py,sha256=n3buH2-InLGT35PVlvhY5eHv_Hm5Kl_N8jH576OiVi8,3392
|
387
379
|
wandb/sdk/internal/system/assets/open_metrics.py,sha256=VqOncOSnPztqSyQ0g-zeJWcjc_lircRk6F76rwoBWR4,9631
|
388
380
|
wandb/sdk/internal/system/assets/gpu.py,sha256=DnnfH9fvvfiRXzMAXjCgHZZZt_Kkn2br74T3Y_oyyhw,13722
|
389
|
-
wandb/sdk/
|
381
|
+
wandb/sdk/internal/_generated/typing_compat.py,sha256=eLkBJ3Q5MqL3jn-EhIpGm_9F5By84KEJ4fvIpYL3Qhg,302
|
382
|
+
wandb/sdk/internal/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
383
|
+
wandb/sdk/internal/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
384
|
+
wandb/sdk/internal/_generated/__init__.py,sha256=DRBzTksuUuVY9oRJQsLtRTMMItykywWYvDxktHbCfk8,381
|
385
|
+
wandb/sdk/internal/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
|
386
|
+
wandb/sdk/internal/_generated/server_features_query.py,sha256=WGjefMl-SDR7o7OVtJk7xKEYICBFA2wceGMXbuyj5QU,647
|
387
|
+
wandb/sdk/internal/_generated/base.py,sha256=yA7q36_FISIjDI9S_1AYPr3HyijzbITxaWBLhbz4w6I,7441
|
388
|
+
wandb/sdk/backend/backend.py,sha256=w9aV2IEEjUFjjAzAe8UX7Pfz49hp3dcI-fXRhpQWq9A,7791
|
390
389
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
391
390
|
wandb/sdk/lib/deprecate.py,sha256=r8kT4UY2DSG7V5N78MG46kQOzycBp3_8lH49KnDXxXM,1462
|
392
391
|
wandb/sdk/lib/exit_hooks.py,sha256=_4oozaRQCJi8NJfZvHsA8livvFb0trZKLOGB8_UcHGk,1540
|
393
392
|
wandb/sdk/lib/server.py,sha256=dn0RXjAnpmigAULLyq75XHYyHxw17MLCJ9fhPq2v22I,1623
|
394
393
|
wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
|
395
|
-
wandb/sdk/lib/sock_client.py,sha256=
|
394
|
+
wandb/sdk/lib/sock_client.py,sha256=YzR4uFMgFBA95ySl9h2QwIqXKMEAyb36Y09vpf70IPU,8383
|
396
395
|
wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
|
397
396
|
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
398
|
-
wandb/sdk/lib/redirect.py,sha256
|
397
|
+
wandb/sdk/lib/redirect.py,sha256=-7iM7Bg12LzsLivkkVL3wO1pT4ofKeShz1L6NTHoSVc,27249
|
399
398
|
wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
|
400
399
|
wandb/sdk/lib/file_stream_utils.py,sha256=NN4qaSyNufvlkg96a1YUjQ8-pYtCVU7xagJaW8mqAyI,4018
|
401
400
|
wandb/sdk/lib/interrupt.py,sha256=Ea7aSVHcY0wLYnyMfm4jZbQcwGPgRcuPuoBSe0Swuds,1353
|
@@ -413,30 +412,35 @@ wandb/sdk/lib/retry.py,sha256=BAgPgJb1SxRguor2KTfOFnQpTlyNE4M_X8VcEc7YfMs,10173
|
|
413
412
|
wandb/sdk/lib/json_util.py,sha256=fAsYfaw8iMmx3KJ0wSthUSj_XpF1iAysad4XZY1kQdo,2584
|
414
413
|
wandb/sdk/lib/gitlib.py,sha256=RjlbRyZpIRqc0toVJQSpNxVgPpwx1LSjeF9LSuf4bAY,7836
|
415
414
|
wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2894
|
415
|
+
wandb/sdk/lib/console_capture.py,sha256=eC1bThCHa9DiQTk21ALdK8w1ETeydBpiTOYKN31EjVs,4923
|
416
416
|
wandb/sdk/lib/ipython.py,sha256=I2iT6vY90Aaws7tmjzW_CrUdQFmfV9-WhAPk8at9LQg,3782
|
417
417
|
wandb/sdk/lib/service_token.py,sha256=c4olk_g4Suo0zTTDaoR78oHLwpt3NgDzQeF94raigME,2471
|
418
|
-
wandb/sdk/lib/run_moment.py,sha256=
|
418
|
+
wandb/sdk/lib/run_moment.py,sha256=jMkfNAHOrYHlb6_nisqjfMu2Onm1bDy6lIubOJ2WxCM,2421
|
419
419
|
wandb/sdk/lib/hashutil.py,sha256=aU8YsAgkTcYDlqshfcDjItiO2s9lqq2YdKt7RoA2adQ,2763
|
420
|
+
wandb/sdk/lib/wb_logging.py,sha256=9km7TAnJRSwBTQaFSYA4BmQZV3_Gb0y1PBlzqEOdUHA,4839
|
420
421
|
wandb/sdk/lib/module.py,sha256=PWxpFqOYmLyKPF-VgfINZXzkFxDcoQVunVDVNWNnbxQ,2098
|
421
422
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
422
|
-
wandb/sdk/lib/service_connection.py,sha256=
|
423
|
+
wandb/sdk/lib/service_connection.py,sha256=pf1T0isbDwTkv9MvuIpuk1MHTVkCebK4N8n9pXF4SSg,7455
|
423
424
|
wandb/sdk/lib/progress.py,sha256=GakG9R_mJxVx8zG8atVHKydDZt0uRFEPwls7b3hUpsc,10652
|
424
425
|
wandb/sdk/lib/gql_request.py,sha256=-KRTtT2zqn7pTOBcl41IBdbvQ25YCrxVurROpRqrWqw,2399
|
425
426
|
wandb/sdk/lib/asyncio_compat.py,sha256=AokSd8OXVYF1ALggThRr4RrgD4UiUtDjP3LRE4HLEm4,6584
|
426
427
|
wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
|
427
|
-
wandb/sdk/lib/apikey.py,sha256=
|
428
|
+
wandb/sdk/lib/apikey.py,sha256=ygJ6VfgSP5ZQNEw8_NmEN4S5j3VfREyr7iMiqi4OKzg,10444
|
428
429
|
wandb/sdk/lib/printer.py,sha256=v3T2wqere8HQIVba9LYd8xCIUtV8e8l21Fw4XUEPbXM,15289
|
429
430
|
wandb/sdk/lib/fsm.py,sha256=RLr_wp6_9vSRQbnoP6aqOXYghi53FV93eUyAMMEjcTg,5175
|
430
431
|
wandb/sdk/lib/lazyloader.py,sha256=4Seis4C8Ph6a2-3scfYqeHh7KjKG6PO0WJ2ZPW30O0o,1891
|
431
432
|
wandb/sdk/service/service.py,sha256=tfw6zDHLv9q7E_W25g5eddC6nuyvFPLZvpsTZv1SBM0,8614
|
432
433
|
wandb/sdk/service/server.py,sha256=_0MAn4Y1hs2AnapyQb5heYiixKQNxFENfkxIGoiiIB8,3460
|
433
|
-
wandb/sdk/service/streams.py,sha256=
|
434
|
+
wandb/sdk/service/streams.py,sha256=lNtn6aujS5GlhzsG1Uw3JpF7GL5tWewN1dW39uP5hFo,14801
|
434
435
|
wandb/sdk/service/_startup_debug.py,sha256=A6P5iCYRoNGcVulziUc7Mw_Y2MCG8PAIAUVjzzMUTPs,602
|
435
|
-
wandb/sdk/service/server_sock.py,sha256=
|
436
|
+
wandb/sdk/service/server_sock.py,sha256=HiuncxAaNHUpii7CCIvYr1XVirBHNE7d3WBK2tVVsxY,9695
|
436
437
|
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
437
438
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
439
|
+
wandb/_pydantic/__init__.py,sha256=nZMbUoWR_JvYkvjdUcgt_NvfzQdvMuC3RVHTC9IKDMk,452
|
440
|
+
wandb/_pydantic/v1_compat.py,sha256=wz8RhjcGAxWdKE0MjYJ6F6G_ZvxiYHjSh00ILIUB1_8,9435
|
441
|
+
wandb/_pydantic/base.py,sha256=4sZFuMToGU1OmDI_1X4H9Kc0LIT-MErhwtYT_L0t2rA,3398
|
438
442
|
wandb/filesync/step_checksum.py,sha256=AIz9ALGk59OiR3NtxGj3CJKnsKSQ_1f9PmrbIzxuarE,4690
|
439
|
-
wandb/filesync/dir_watcher.py,sha256=
|
443
|
+
wandb/filesync/dir_watcher.py,sha256=9Y57-5-hWZFzCuBL6HQVtm-MIE9p8kCRU_g_YZUVHvo,16345
|
440
444
|
wandb/filesync/upload_job.py,sha256=t-QgMheUcxFE8C9TIJ5Wp9Cl_4jlpCzCKfsRoPzrHbs,5493
|
441
445
|
wandb/filesync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
442
446
|
wandb/filesync/stats.py,sha256=bjVBoCU9I9ke_XbEqtUgmKJVSmFxxAs2JciBzGWPhDg,3050
|
@@ -1,128 +0,0 @@
|
|
1
|
-
# Generated by ariadne-codegen
|
2
|
-
|
3
|
-
from __future__ import annotations
|
4
|
-
|
5
|
-
from typing import Any, Literal, TypeVar
|
6
|
-
|
7
|
-
from pydantic import BaseModel, ConfigDict, Field, Json, ValidationError, WrapValidator
|
8
|
-
from pydantic.alias_generators import to_camel
|
9
|
-
from pydantic.main import IncEx
|
10
|
-
from pydantic_core import to_json
|
11
|
-
from pydantic_core.core_schema import ValidatorFunctionWrapHandler
|
12
|
-
|
13
|
-
from .typing_compat import Annotated, override
|
14
|
-
|
15
|
-
|
16
|
-
# Base class for all automation classes/types.
|
17
|
-
# Omitted from docstring to avoid inclusion in generated docs.
|
18
|
-
class Base(BaseModel):
|
19
|
-
model_config = ConfigDict(
|
20
|
-
populate_by_name=True,
|
21
|
-
validate_assignment=True,
|
22
|
-
validate_default=True,
|
23
|
-
extra="forbid",
|
24
|
-
alias_generator=to_camel,
|
25
|
-
use_attribute_docstrings=True,
|
26
|
-
from_attributes=True,
|
27
|
-
revalidate_instances="always",
|
28
|
-
)
|
29
|
-
|
30
|
-
@override
|
31
|
-
def model_dump(
|
32
|
-
self,
|
33
|
-
*,
|
34
|
-
mode: Literal["json", "python"] | str = "json", # NOTE: changed default
|
35
|
-
include: IncEx | None = None,
|
36
|
-
exclude: IncEx | None = None,
|
37
|
-
context: dict[str, Any] | None = None,
|
38
|
-
by_alias: bool = True, # NOTE: changed default
|
39
|
-
exclude_unset: bool = False,
|
40
|
-
exclude_defaults: bool = False,
|
41
|
-
exclude_none: bool = False,
|
42
|
-
round_trip: bool = True, # NOTE: changed default
|
43
|
-
warnings: bool | Literal["none", "warn", "error"] = True,
|
44
|
-
serialize_as_any: bool = False,
|
45
|
-
) -> dict[str, Any]:
|
46
|
-
return super().model_dump(
|
47
|
-
mode=mode,
|
48
|
-
include=include,
|
49
|
-
exclude=exclude,
|
50
|
-
context=context,
|
51
|
-
by_alias=by_alias,
|
52
|
-
exclude_unset=exclude_unset,
|
53
|
-
exclude_defaults=exclude_defaults,
|
54
|
-
exclude_none=exclude_none,
|
55
|
-
round_trip=round_trip,
|
56
|
-
warnings=warnings,
|
57
|
-
serialize_as_any=serialize_as_any,
|
58
|
-
)
|
59
|
-
|
60
|
-
@override
|
61
|
-
def model_dump_json(
|
62
|
-
self,
|
63
|
-
*,
|
64
|
-
indent: int | None = None,
|
65
|
-
include: IncEx | None = None,
|
66
|
-
exclude: IncEx | None = None,
|
67
|
-
context: dict[str, Any] | None = None,
|
68
|
-
by_alias: bool = True, # NOTE: changed default
|
69
|
-
exclude_unset: bool = False,
|
70
|
-
exclude_defaults: bool = False,
|
71
|
-
exclude_none: bool = False,
|
72
|
-
round_trip: bool = True, # NOTE: changed default
|
73
|
-
warnings: bool | Literal["none", "warn", "error"] = True,
|
74
|
-
serialize_as_any: bool = False,
|
75
|
-
) -> str:
|
76
|
-
return super().model_dump_json(
|
77
|
-
indent=indent,
|
78
|
-
include=include,
|
79
|
-
exclude=exclude,
|
80
|
-
context=context,
|
81
|
-
by_alias=by_alias,
|
82
|
-
exclude_unset=exclude_unset,
|
83
|
-
exclude_defaults=exclude_defaults,
|
84
|
-
exclude_none=exclude_none,
|
85
|
-
round_trip=round_trip,
|
86
|
-
warnings=warnings,
|
87
|
-
serialize_as_any=serialize_as_any,
|
88
|
-
)
|
89
|
-
|
90
|
-
|
91
|
-
# Base class with extra customization for GQL generated types.
|
92
|
-
# Omitted from docstring to avoid inclusion in generated docs.
|
93
|
-
class GQLBase(Base):
|
94
|
-
model_config = ConfigDict(
|
95
|
-
extra="ignore",
|
96
|
-
protected_namespaces=(),
|
97
|
-
)
|
98
|
-
|
99
|
-
|
100
|
-
# ------------------------------------------------------------------------------
|
101
|
-
# Reusable annotations for field types
|
102
|
-
T = TypeVar("T")
|
103
|
-
|
104
|
-
GQLId = Annotated[
|
105
|
-
str,
|
106
|
-
Field(repr=False, strict=True, frozen=True),
|
107
|
-
]
|
108
|
-
|
109
|
-
Typename = Annotated[
|
110
|
-
T,
|
111
|
-
Field(repr=False, alias="__typename", frozen=True),
|
112
|
-
]
|
113
|
-
|
114
|
-
|
115
|
-
def validate_maybe_json(v: Any, handler: ValidatorFunctionWrapHandler) -> Any:
|
116
|
-
"""Wraps default Json[...] field validator to allow instantiation with an already-decoded value."""
|
117
|
-
try:
|
118
|
-
return handler(v)
|
119
|
-
except ValidationError:
|
120
|
-
# Try revalidating after properly jsonifying the value
|
121
|
-
return handler(to_json(v, by_alias=True, round_trip=True))
|
122
|
-
|
123
|
-
|
124
|
-
SerializedToJson = Annotated[
|
125
|
-
Json[T],
|
126
|
-
# Allow lenient instantiation/validation: incoming data may already be deserialized.
|
127
|
-
WrapValidator(validate_maybe_json),
|
128
|
-
]
|
@@ -1,27 +0,0 @@
|
|
1
|
-
"""MessageFuture - represents a message result of an asynchronous operation.
|
2
|
-
|
3
|
-
Base class MessageFuture for MessageFutureObject and MessageFuturePoll
|
4
|
-
|
5
|
-
"""
|
6
|
-
|
7
|
-
import threading
|
8
|
-
from abc import abstractmethod
|
9
|
-
from typing import Optional
|
10
|
-
|
11
|
-
from wandb.proto import wandb_internal_pb2 as pb
|
12
|
-
|
13
|
-
|
14
|
-
class MessageFuture:
|
15
|
-
_object: Optional[pb.Result]
|
16
|
-
|
17
|
-
def __init__(self) -> None:
|
18
|
-
self._object = None
|
19
|
-
self._object_ready = threading.Event()
|
20
|
-
|
21
|
-
def _set_object(self, obj: pb.Result) -> None:
|
22
|
-
self._object = obj
|
23
|
-
self._object_ready.set()
|
24
|
-
|
25
|
-
@abstractmethod
|
26
|
-
def get(self, timeout: Optional[int] = None) -> Optional[pb.Result]:
|
27
|
-
raise NotImplementedError
|