wandb 0.19.6rc4__py3-none-musllinux_1_2_aarch64.whl → 0.19.8__py3-none-musllinux_1_2_aarch64.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 +56 -6
- wandb/apis/public/_generated/__init__.py +21 -0
- wandb/apis/public/_generated/base.py +128 -0
- wandb/apis/public/_generated/enums.py +4 -0
- wandb/apis/public/_generated/input_types.py +4 -0
- wandb/apis/public/_generated/operations.py +15 -0
- wandb/apis/public/_generated/server_features_query.py +27 -0
- wandb/apis/public/_generated/typing_compat.py +14 -0
- wandb/apis/public/api.py +192 -6
- wandb/apis/public/artifacts.py +13 -45
- wandb/apis/public/registries.py +573 -0
- wandb/apis/public/utils.py +36 -0
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +11 -20
- wandb/data_types.py +1 -1
- wandb/env.py +10 -0
- wandb/filesync/dir_watcher.py +2 -1
- wandb/proto/v3/wandb_internal_pb2.py +243 -222
- wandb/proto/v3/wandb_server_pb2.py +4 -4
- 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 +226 -222
- wandb/proto/v4/wandb_server_pb2.py +4 -4
- 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 +226 -222
- wandb/proto/v5/wandb_server_pb2.py +4 -4
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
- wandb/sdk/artifacts/_graphql_fragments.py +126 -0
- wandb/sdk/artifacts/artifact.py +51 -95
- wandb/sdk/backend/backend.py +17 -6
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +14 -6
- wandb/sdk/data_types/helper_types/image_mask.py +12 -6
- wandb/sdk/data_types/saved_model.py +35 -46
- wandb/sdk/data_types/video.py +7 -16
- wandb/sdk/interface/interface.py +87 -49
- wandb/sdk/interface/interface_queue.py +5 -15
- wandb/sdk/interface/interface_relay.py +7 -22
- wandb/sdk/interface/interface_shared.py +65 -136
- wandb/sdk/interface/interface_sock.py +3 -21
- wandb/sdk/interface/router.py +42 -68
- wandb/sdk/interface/router_queue.py +13 -11
- wandb/sdk/interface/router_relay.py +26 -13
- wandb/sdk/interface/router_sock.py +12 -16
- wandb/sdk/internal/handler.py +4 -3
- wandb/sdk/internal/internal_api.py +12 -1
- wandb/sdk/internal/sender.py +3 -19
- wandb/sdk/lib/apikey.py +87 -26
- wandb/sdk/lib/asyncio_compat.py +210 -0
- wandb/sdk/lib/console_capture.py +172 -0
- wandb/sdk/lib/progress.py +78 -16
- wandb/sdk/lib/redirect.py +102 -76
- wandb/sdk/lib/service_connection.py +37 -17
- wandb/sdk/lib/sock_client.py +6 -56
- wandb/sdk/mailbox/__init__.py +23 -0
- wandb/sdk/mailbox/mailbox.py +135 -0
- wandb/sdk/mailbox/mailbox_handle.py +127 -0
- wandb/sdk/mailbox/response_handle.py +167 -0
- wandb/sdk/mailbox/wait_with_progress.py +135 -0
- wandb/sdk/service/server_sock.py +9 -3
- wandb/sdk/service/streams.py +75 -78
- wandb/sdk/verify/verify.py +54 -2
- wandb/sdk/wandb_init.py +72 -75
- wandb/sdk/wandb_login.py +7 -4
- wandb/sdk/wandb_metadata.py +65 -34
- wandb/sdk/wandb_require.py +14 -8
- wandb/sdk/wandb_run.py +90 -97
- wandb/sdk/wandb_settings.py +10 -4
- wandb/sdk/wandb_setup.py +19 -8
- wandb/sdk/wandb_sync.py +2 -10
- wandb/util.py +3 -1
- {wandb-0.19.6rc4.dist-info → wandb-0.19.8.dist-info}/METADATA +2 -2
- {wandb-0.19.6rc4.dist-info → wandb-0.19.8.dist-info}/RECORD +79 -66
- wandb/sdk/interface/message_future.py +0 -27
- wandb/sdk/interface/message_future_poll.py +0 -50
- wandb/sdk/lib/mailbox.py +0 -442
- {wandb-0.19.6rc4.dist-info → wandb-0.19.8.dist-info}/WHEEL +0 -0
- {wandb-0.19.6rc4.dist-info → wandb-0.19.8.dist-info}/entry_points.txt +0 -0
- {wandb-0.19.6rc4.dist-info → wandb-0.19.8.dist-info}/licenses/LICENSE +0 -0
wandb/sdk/wandb_sync.py
CHANGED
@@ -6,7 +6,6 @@ from wandb.errors.term import termerror, termlog
|
|
6
6
|
|
7
7
|
from . import wandb_setup
|
8
8
|
from .backend.backend import Backend
|
9
|
-
from .lib.mailbox import Mailbox
|
10
9
|
from .lib.runid import generate_id
|
11
10
|
|
12
11
|
if TYPE_CHECKING:
|
@@ -49,21 +48,14 @@ 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
|
61
55
|
backend.interface._stream_id = stream_id # type: ignore
|
62
56
|
|
63
|
-
mailbox.enable_keepalive()
|
64
57
|
handle = backend.interface.deliver_finish_sync()
|
65
|
-
result = handle.
|
66
|
-
assert result and result.response
|
58
|
+
result = handle.wait_or(timeout=None)
|
67
59
|
response = result.response.sync_response
|
68
60
|
if response.url:
|
69
61
|
termlog(f"Synced {p} to {util.app_url(response.url)}")
|
wandb/util.py
CHANGED
@@ -788,6 +788,8 @@ class JSONEncoderUncompressed(json.JSONEncoder):
|
|
788
788
|
def default(self, obj: Any) -> Any:
|
789
789
|
if is_numpy_array(obj):
|
790
790
|
return obj.tolist()
|
791
|
+
elif np and isinstance(obj, np.number):
|
792
|
+
return obj.item()
|
791
793
|
elif np and isinstance(obj, np.generic):
|
792
794
|
obj = obj.item()
|
793
795
|
return json.JSONEncoder.default(self, obj)
|
@@ -872,7 +874,7 @@ def parse_backend_error_messages(response: requests.Response) -> List[str]:
|
|
872
874
|
# Backend error values are returned in one of two ways:
|
873
875
|
# - A string containing the error message
|
874
876
|
# - A JSON object with a "message" field that is a string
|
875
|
-
def get_message(
|
877
|
+
def get_message(error: Any) -> Optional[str]:
|
876
878
|
if isinstance(error, str):
|
877
879
|
return error
|
878
880
|
elif (
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.19.
|
3
|
+
Version: 0.19.8
|
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
|
@@ -110,7 +110,7 @@ Requires-Dist: typing-extensions; extra == 'launch'
|
|
110
110
|
Provides-Extra: media
|
111
111
|
Requires-Dist: bokeh; extra == 'media'
|
112
112
|
Requires-Dist: imageio; extra == 'media'
|
113
|
-
Requires-Dist: moviepy; extra == 'media'
|
113
|
+
Requires-Dist: moviepy>=1.0.0; extra == 'media'
|
114
114
|
Requires-Dist: numpy; extra == 'media'
|
115
115
|
Requires-Dist: pillow; extra == 'media'
|
116
116
|
Requires-Dist: plotly>=5.18.0; extra == 'media'
|
@@ -1,42 +1,42 @@
|
|
1
1
|
package_readme.md,sha256=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
|
2
2
|
wandb/jupyter.py,sha256=ip6ukYdoFzvPiHO-IUNnbMMxRnYl3ebEoC0X143_VEw,17274
|
3
|
-
wandb/__init__.py,sha256=
|
4
|
-
wandb/__init__.pyi,sha256=
|
3
|
+
wandb/__init__.py,sha256=_gHKjYc0NbTN_pwUJWnp4yA6uRDPpWfz93VliZmKZGw,6988
|
4
|
+
wandb/__init__.pyi,sha256=D74u5n7I6svyFW-yISHSee9DUiT_yK-73wbjtuqc1sY,48317
|
5
5
|
wandb/wandb_controller.py,sha256=SksJdgwn14PpnUoIaBjJ9Ki4Nksl9BpQGGn42hT0xZg,24936
|
6
6
|
wandb/_iterutils.py,sha256=bOhOrOENEDzOMtyQqHysivzHri9axcVlCfXt4Ai1ot8,1545
|
7
7
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
8
8
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
9
|
-
wandb/util.py,sha256=
|
9
|
+
wandb/util.py,sha256=tlaNaz9W6r2T0bs0-KVDcuSPE1PiZ7642GjCjAx8Mvw,63525
|
10
10
|
wandb/sklearn.py,sha256=hbPkefhS39A1RRymn0nHZZmKM2TrOd4xjlkthTZe9pY,803
|
11
|
-
wandb/env.py,sha256=
|
11
|
+
wandb/env.py,sha256=NtyTiZbU3xrpNiISvrTVO5SDBXVqHl58wmrhpB4MCSA,13736
|
12
12
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
13
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
14
|
-
wandb/data_types.py,sha256=
|
14
|
+
wandb/data_types.py,sha256=M-wqAO0FtIqvj28556u3h4nzSwlRcbxhXoX0B9jlJSo,2283
|
15
15
|
wandb/wandb_agent.py,sha256=0TKjcJ8jxEqaXMrs_dIflXfWFFOaulfSjzp_fpYiXD0,20985
|
16
16
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
17
17
|
wandb/beta/workflows.py,sha256=bk12HDWnxI4uuP0KyUbfclrTSoRVXrJibAuO_QBB5tI,10239
|
18
18
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
wandb/cli/beta.py,sha256=Um35Q9CeoQPS80g0wryo2WtSaD7VA0XqF_YCQNDNiSY,5438
|
20
|
-
wandb/cli/cli.py,sha256=
|
21
|
-
wandb/bin/gpu_stats,sha256=
|
22
|
-
wandb/bin/wandb-core,sha256=
|
23
|
-
wandb/sdk/wandb_settings.py,sha256=
|
20
|
+
wandb/cli/cli.py,sha256=eggnDh2vtLOP44F4VGEJEvoGFZZFzhUaOHtPp804NEw,92622
|
21
|
+
wandb/bin/gpu_stats,sha256=fp-TF3v-zWiX5ZZFjN7iwPgCMYxXlwt0CdFk_GaODIA,10338024
|
22
|
+
wandb/bin/wandb-core,sha256=lk0emHLW0i_gJJ9wLN5zoP7-W3Qyr1dw_AxV8qa9_Js,45547672
|
23
|
+
wandb/sdk/wandb_settings.py,sha256=Zbns21r4MCgMq0HjPp-qrFcYxUhrLUFEbpbAiyc9K-E,55657
|
24
24
|
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
25
25
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
26
|
-
wandb/sdk/wandb_metadata.py,sha256=
|
26
|
+
wandb/sdk/wandb_metadata.py,sha256=NLMhT6pp16JqzKatmqeo9utEcZfil33mC7vBOxM1Ato,20218
|
27
27
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
28
|
-
wandb/sdk/wandb_init.py,sha256=
|
28
|
+
wandb/sdk/wandb_init.py,sha256=bRO4JbxWZ1DXW2-43OyQQRjYMm62vFOXzB46MmmK_W8,59497
|
29
29
|
wandb/sdk/wandb_watch.py,sha256=F7S9CLbw9PddUp1qBjPRKsOiVFU8LPaq6A9taV3TJKI,4840
|
30
|
-
wandb/sdk/wandb_require.py,sha256=
|
30
|
+
wandb/sdk/wandb_require.py,sha256=eYDG4oH1pwik2tHJVEdvivo4R2RypoITFomgr7umMhc,3104
|
31
31
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
32
32
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
33
|
-
wandb/sdk/wandb_login.py,sha256
|
33
|
+
wandb/sdk/wandb_login.py,sha256=-2EvouBgBOQgOnh_8Hlb5LCGg6Lz2OR44ieWRRgqdZ8,10952
|
34
34
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
35
|
-
wandb/sdk/wandb_sync.py,sha256=
|
36
|
-
wandb/sdk/wandb_setup.py,sha256=
|
35
|
+
wandb/sdk/wandb_sync.py,sha256=GNC8xYqT56ws4aw6Vd_mV_Ck-InEbqnyioSqHIybDug,2106
|
36
|
+
wandb/sdk/wandb_setup.py,sha256=L6xoj3DWS_F_jfQ-i8kISd443AiqO8OSaOx8yCXSWzE,12938
|
37
37
|
wandb/sdk/wandb_sweep.py,sha256=Sg_JqxVzmjUBvii41azpdr-c6RPwHOBnSha8k7jrRhk,4028
|
38
38
|
wandb/sdk/wandb_config.py,sha256=b7kxQVnIh5HCBZXb2pOGZ4c02xCVlW4IQiAu3N-8Opg,10856
|
39
|
-
wandb/sdk/wandb_run.py,sha256=
|
39
|
+
wandb/sdk/wandb_run.py,sha256=4MLT0N5MYvdL9xETEKhM7nKnJQNZqaPzZpAK45-wEnU,153621
|
40
40
|
wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
|
41
41
|
wandb/sdk/launch/__init__.py,sha256=moXY557JibPbvE1GSSh3nGFiyelTVaJZMdFSv61Dn2k,399
|
42
42
|
wandb/sdk/launch/_launch_add.py,sha256=OD6JPJN3dCNz5FZ_8MzgUOBAWGRtcgMz8UYoeV26g9c,8795
|
@@ -88,6 +88,11 @@ wandb/sdk/launch/builder/abstract.py,sha256=OveMZmrZ-L7qkS5ex0_5RChnSaLXPLfaCdL6
|
|
88
88
|
wandb/sdk/launch/builder/docker_builder.py,sha256=0HbPxwWuCHXogmIc6o18nvBaHIx-xcWOQfHnfOJIgcI,6316
|
89
89
|
wandb/sdk/launch/builder/templates/dockerfile.py,sha256=X8D6n6tyyh69oNHeFiUp-d8ClEtMpHSjwk45N12CR68,2264
|
90
90
|
wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=AuI7GXUoW3MdPWVTkSjhxZQTmW4Rk_nTNllHbZzfoDQ,7316
|
91
|
+
wandb/sdk/mailbox/mailbox_handle.py,sha256=YLKNMkytIAoIpMuV5Nu_g04JdTGzm8P9d9iw2EPJhV4,3743
|
92
|
+
wandb/sdk/mailbox/__init__.py,sha256=C4x3ym_hymymKFZiI1Q0HPlGx5x5CzeKPVF229Z2V8w,856
|
93
|
+
wandb/sdk/mailbox/wait_with_progress.py,sha256=O3yGgUC3ztpfmdLk_CyirJVeXiCzF8nuDI2CqNiak90,4126
|
94
|
+
wandb/sdk/mailbox/response_handle.py,sha256=kZWVvVbpc92u3u23FTwAod-QCPFENUYREpjXm-wkh6Q,5031
|
95
|
+
wandb/sdk/mailbox/mailbox.py,sha256=jUEP2Ltgi9rCZmiDtfb5ZESaqwB2wH-sy72OLRvATZk,4314
|
91
96
|
wandb/sdk/internal/file_stream.py,sha256=Dnqayrbqa6L2sG03rX2oIFhWT-IME5vl5JTykyLFMNY,25866
|
92
97
|
wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
|
93
98
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
@@ -97,11 +102,11 @@ wandb/sdk/internal/job_builder.py,sha256=_L-DfGFEzDl0JLXPo535KPK3Bk0vqXsTQVF7buX
|
|
97
102
|
wandb/sdk/internal/internal.py,sha256=o9_-6C99LMOx_YB5xuZ1I1KgpeHk3jUgll63sEe9gCY,12182
|
98
103
|
wandb/sdk/internal/file_pusher.py,sha256=clBm6fj_27krGVCcFw9mUdalXHRZlIUxsj5AW_BAzZU,6098
|
99
104
|
wandb/sdk/internal/datastore.py,sha256=qqkCbh98crLbfKSTHKmO137IX-jCFYkh8wbZeh9dc6Q,9838
|
100
|
-
wandb/sdk/internal/sender.py,sha256=
|
105
|
+
wandb/sdk/internal/sender.py,sha256=Bwit4q53suRX37KKTiONT65V1f6fm87o1RjnkLIYgi8,64514
|
101
106
|
wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
|
102
107
|
wandb/sdk/internal/flow_control.py,sha256=3LJ-KatyPPH18G7TfSMLDk-BE5tankB4JRhQqLoUOWM,8585
|
103
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
104
|
-
wandb/sdk/internal/handler.py,sha256=
|
108
|
+
wandb/sdk/internal/internal_api.py,sha256=R9UF5K2xrSGEQ-46Ch_Ab0CW6EHouOHCk7Z1GVyyRIM,160084
|
109
|
+
wandb/sdk/internal/handler.py,sha256=zquR4k6Ah5ohg9n5XJC_bKAulz3aSUuMjUlHqiIOfFE,34280
|
105
110
|
wandb/sdk/internal/writer.py,sha256=jo_Ex7ik-0_rIahYDHIWcQjm_uxsUNVn92__bI8TloE,7267
|
106
111
|
wandb/sdk/internal/tb_watcher.py,sha256=3AvQGlZLGkr8POhaSGzbeyIcX0YWkLkblJ0bksAB8U8,18738
|
107
112
|
wandb/sdk/internal/internal_util.py,sha256=dKawQKw4UdZUE6Bmme5baT0FGDC0IUgoD2zM6ey4oBU,2555
|
@@ -128,11 +133,11 @@ wandb/sdk/internal/system/assets/memory.py,sha256=lmd11JAXxEUpHUiUMX3Y5-a9bNjiMU
|
|
128
133
|
wandb/sdk/internal/system/assets/tpu.py,sha256=nwv3C9a6dgD1hc0461Rh28NQkWbNQ5fJOXsw6lOQ-Gw,4901
|
129
134
|
wandb/sdk/internal/system/assets/aggregators.py,sha256=EzJp_YjvYORcBH6g58OsqGtmy55HqYHYMAvaIsp2Iwg,1093
|
130
135
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
131
|
-
wandb/sdk/verify/verify.py,sha256=
|
136
|
+
wandb/sdk/verify/verify.py,sha256=Bz7DKW7zmhNAPJQNAAQszAmjBilxs2WJJ9rVHRml6LM,18299
|
132
137
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
133
138
|
wandb/sdk/service/_startup_debug.py,sha256=A6P5iCYRoNGcVulziUc7Mw_Y2MCG8PAIAUVjzzMUTPs,602
|
134
|
-
wandb/sdk/service/streams.py,sha256=
|
135
|
-
wandb/sdk/service/server_sock.py,sha256=
|
139
|
+
wandb/sdk/service/streams.py,sha256=lNtn6aujS5GlhzsG1Uw3JpF7GL5tWewN1dW39uP5hFo,14801
|
140
|
+
wandb/sdk/service/server_sock.py,sha256=HiuncxAaNHUpii7CCIvYr1XVirBHNE7d3WBK2tVVsxY,9695
|
136
141
|
wandb/sdk/service/service.py,sha256=tfw6zDHLv9q7E_W25g5eddC6nuyvFPLZvpsTZv1SBM0,8614
|
137
142
|
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
138
143
|
wandb/sdk/service/server.py,sha256=_0MAn4Y1hs2AnapyQb5heYiixKQNxFENfkxIGoiiIB8,3460
|
@@ -142,11 +147,12 @@ wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG2
|
|
142
147
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=YYC6o2OooTcVfkzqQIIVcxVxqdSN9TELG-qWgaSI2Qo,2545
|
143
148
|
wandb/sdk/artifacts/storage_handler.py,sha256=ebMCKXvvn7z_eYunXriTOYescstuBbNbxn7MDW9qZAw,1834
|
144
149
|
wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
|
150
|
+
wandb/sdk/artifacts/_graphql_fragments.py,sha256=fHvyiABSU5RDa0--FN9D9Dfra_t9vnNzb2MD-S4JYzs,3080
|
145
151
|
wandb/sdk/artifacts/staging.py,sha256=_U3oH2S7fEevRkcYgo4nmwvdaoJnZR4V-bNiJVWlowA,854
|
146
152
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyTA9vscxJL5-8_eupknI,1501
|
147
153
|
wandb/sdk/artifacts/storage_policy.py,sha256=BGIC8QRfryCNzF-72uk53MvQQbZVoKwQGhn2zX3NaRE,2090
|
148
154
|
wandb/sdk/artifacts/exceptions.py,sha256=h9tSi023BhW85_FfjLYjeNtlVgUTqZRfnYM9WgdAMbM,2023
|
149
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
155
|
+
wandb/sdk/artifacts/artifact.py,sha256=Fpo7my8k83DzCXDDxyardKG1CJkl2dPupyEvcuprybI,90432
|
150
156
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=503z2x4CoTLXk_IfC9jRKBU9fr-X9PMiyG66h0INzQg,9744
|
151
157
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
|
152
158
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=atSUDvKjkp6by6QY0w2FLMrFUg9UKc8TIrMVWGauV64,501
|
@@ -170,12 +176,12 @@ wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo
|
|
170
176
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
171
177
|
wandb/sdk/integration_utils/auto_logging.py,sha256=sblNn9BIG7memxTj23UfrGXyA06t39FEt5igMwS0-zU,8233
|
172
178
|
wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
|
173
|
-
wandb/sdk/lib/sock_client.py,sha256
|
179
|
+
wandb/sdk/lib/sock_client.py,sha256=YzR4uFMgFBA95ySl9h2QwIqXKMEAyb36Y09vpf70IPU,8383
|
174
180
|
wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2894
|
175
181
|
wandb/sdk/lib/file_stream_utils.py,sha256=NN4qaSyNufvlkg96a1YUjQ8-pYtCVU7xagJaW8mqAyI,4018
|
176
182
|
wandb/sdk/lib/import_hooks.py,sha256=0_TJwq-EuZFUIFzFOZoVDWOMP9-Af1r2Vq5sV5sfzg4,10271
|
177
183
|
wandb/sdk/lib/timed_input.py,sha256=D7vx3N3m4LlxwkQpzS7lDi7IOnccqZ3WfLlDYRs8Oes,3229
|
178
|
-
wandb/sdk/lib/apikey.py,sha256=
|
184
|
+
wandb/sdk/lib/apikey.py,sha256=a3m7IaNyx7_yP-rB_PI-DiVJgtv27gqapvYYHgogx_A,10508
|
179
185
|
wandb/sdk/lib/gql_request.py,sha256=-KRTtT2zqn7pTOBcl41IBdbvQ25YCrxVurROpRqrWqw,2399
|
180
186
|
wandb/sdk/lib/__init__.py,sha256=53BA5lIOtUXciXZcPpNsFbp-iUPzI5gQFxplTykNmOE,183
|
181
187
|
wandb/sdk/lib/timer.py,sha256=VZUyl7fmQAB75l9QXw9Nkz9SxyYj-CvLPawAk866YKM,440
|
@@ -187,11 +193,12 @@ wandb/sdk/lib/filenames.py,sha256=GvzWOq85BO_Od7f69PkRKS6zYhQ88dTCtMr3c19jLEk,20
|
|
187
193
|
wandb/sdk/lib/filesystem.py,sha256=AWEY6dqFYPw_ump1nsaOCl-FwVo0ui5iZ_YH0tUTeyQ,14132
|
188
194
|
wandb/sdk/lib/capped_dict.py,sha256=T2CNkmzfWeFgXOsFmx5IDPzgYmP1jxaVAb-nn3-qBBE,820
|
189
195
|
wandb/sdk/lib/run_moment.py,sha256=HMx8jYIaWwmSPNViP54ZYMbxLKBn2m_ezYCa67UC6H8,2464
|
196
|
+
wandb/sdk/lib/asyncio_compat.py,sha256=AokSd8OXVYF1ALggThRr4RrgD4UiUtDjP3LRE4HLEm4,6584
|
190
197
|
wandb/sdk/lib/printer.py,sha256=v3T2wqere8HQIVba9LYd8xCIUtV8e8l21Fw4XUEPbXM,15289
|
191
198
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
192
199
|
wandb/sdk/lib/disabled.py,sha256=zIuxC4uddcjAGCU-PEQGgoe7FzxJTHho3llW0R1uBX4,884
|
193
|
-
wandb/sdk/lib/service_connection.py,sha256=
|
194
|
-
wandb/sdk/lib/redirect.py,sha256
|
200
|
+
wandb/sdk/lib/service_connection.py,sha256=pf1T0isbDwTkv9MvuIpuk1MHTVkCebK4N8n9pXF4SSg,7455
|
201
|
+
wandb/sdk/lib/redirect.py,sha256=-7iM7Bg12LzsLivkkVL3wO1pT4ofKeShz1L6NTHoSVc,27249
|
195
202
|
wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
|
196
203
|
wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
|
197
204
|
wandb/sdk/lib/json_util.py,sha256=fAsYfaw8iMmx3KJ0wSthUSj_XpF1iAysad4XZY1kQdo,2584
|
@@ -199,10 +206,10 @@ wandb/sdk/lib/retry.py,sha256=BAgPgJb1SxRguor2KTfOFnQpTlyNE4M_X8VcEc7YfMs,10173
|
|
199
206
|
wandb/sdk/lib/module.py,sha256=PWxpFqOYmLyKPF-VgfINZXzkFxDcoQVunVDVNWNnbxQ,2098
|
200
207
|
wandb/sdk/lib/sparkline.py,sha256=9xQkuZ0z1DM7rHE2jFNDy5vBdPirnurd__A_bC6-Bgc,1363
|
201
208
|
wandb/sdk/lib/gitlib.py,sha256=RjlbRyZpIRqc0toVJQSpNxVgPpwx1LSjeF9LSuf4bAY,7836
|
202
|
-
wandb/sdk/lib/mailbox.py,sha256=iuxunHXc2JzxFyubyS6CqxMXsrSpSFswBfxASF-hmss,13832
|
203
209
|
wandb/sdk/lib/deprecate.py,sha256=r8kT4UY2DSG7V5N78MG46kQOzycBp3_8lH49KnDXxXM,1462
|
204
210
|
wandb/sdk/lib/interrupt.py,sha256=Ea7aSVHcY0wLYnyMfm4jZbQcwGPgRcuPuoBSe0Swuds,1353
|
205
|
-
wandb/sdk/lib/
|
211
|
+
wandb/sdk/lib/console_capture.py,sha256=eC1bThCHa9DiQTk21ALdK8w1ETeydBpiTOYKN31EjVs,4923
|
212
|
+
wandb/sdk/lib/progress.py,sha256=GakG9R_mJxVx8zG8atVHKydDZt0uRFEPwls7b3hUpsc,10652
|
206
213
|
wandb/sdk/lib/lazyloader.py,sha256=4Seis4C8Ph6a2-3scfYqeHh7KjKG6PO0WJ2ZPW30O0o,1891
|
207
214
|
wandb/sdk/lib/hashutil.py,sha256=aU8YsAgkTcYDlqshfcDjItiO2s9lqq2YdKt7RoA2adQ,2763
|
208
215
|
wandb/sdk/lib/service_token.py,sha256=c4olk_g4Suo0zTTDaoR78oHLwpt3NgDzQeF94raigME,2471
|
@@ -211,7 +218,7 @@ wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
|
|
211
218
|
wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
|
212
219
|
wandb/sdk/lib/server.py,sha256=dn0RXjAnpmigAULLyq75XHYyHxw17MLCJ9fhPq2v22I,1623
|
213
220
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
214
|
-
wandb/sdk/backend/backend.py,sha256=
|
221
|
+
wandb/sdk/backend/backend.py,sha256=w9aV2IEEjUFjjAzAe8UX7Pfz49hp3dcI-fXRhpQWq9A,7791
|
215
222
|
wandb/sdk/data_types/bokeh.py,sha256=0Aq4CJECPpoAkl7vw5LCGYhdCb9pS8i46jHB9PxTj1k,2534
|
216
223
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
224
|
wandb/sdk/data_types/graph.py,sha256=_P_z2dNj2mCJeSvusIfVHkSkVB9AL0AEO-6KaguC1ys,12089
|
@@ -221,8 +228,8 @@ wandb/sdk/data_types/image.py,sha256=o_ZwqB4uO1-R8QLuO9J6aiUuyANMz2qPQJAskushozQ
|
|
221
228
|
wandb/sdk/data_types/utils.py,sha256=Qdj-gUOrrc9wVjBD7Mtmt2o6bHadr1IgzAWF4ijdrz4,7633
|
222
229
|
wandb/sdk/data_types/plotly.py,sha256=LEIHRqtHHpSou04AEUsyH8_UMXP4adrEHHaKoEtQkxo,2913
|
223
230
|
wandb/sdk/data_types/histogram.py,sha256=syx3fUDoP6vYqA3r5m7bHXK6MAWo2MkRhpCKasihwvg,3145
|
224
|
-
wandb/sdk/data_types/video.py,sha256=
|
225
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
231
|
+
wandb/sdk/data_types/video.py,sha256=iug92X8xW5JIquk1QvMom8-N9SKqEO3-dv9vxA28M_s,9344
|
232
|
+
wandb/sdk/data_types/saved_model.py,sha256=p9k92Jc6ihqTjir-GesTKpPiC92m6nen0zqUEcw0W5E,16254
|
226
233
|
wandb/sdk/data_types/html.py,sha256=CBgxEybPGDY6vpQ1fHoKtQfGNGuqSkFQtUZF-qG9p6c,3504
|
227
234
|
wandb/sdk/data_types/audio.py,sha256=VcbZRjY-9szxIKR-x1Eg375H1Lm5R6znErT4Q8FYrWM,5364
|
228
235
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
@@ -230,27 +237,25 @@ wandb/sdk/data_types/molecule.py,sha256=lTScaG-_B-eGh20bRfLNA2fECDYQOuD0zdnGvQjE
|
|
230
237
|
wandb/sdk/data_types/table.py,sha256=DjppFy0-ii1iMoVOg-h_F1YEUbgk5wGPJDXlQURXLQw,44683
|
231
238
|
wandb/sdk/data_types/object_3d.py,sha256=xQw-9mq_cXMxXoW817BiByh7C5wvMuC6jliJEzKEAPg,15948
|
232
239
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
233
|
-
wandb/sdk/data_types/helper_types/image_mask.py,sha256=
|
240
|
+
wandb/sdk/data_types/helper_types/image_mask.py,sha256=kx77gxfNnhNIk-Nvaw2SC-NjnDlD5x7RXEB0DBuZCis,8727
|
234
241
|
wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZYRj8rvSmT7fl9ds,5520
|
235
|
-
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=
|
242
|
+
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=z_cssRDjzWSoDopThg4W3oUQ6Cy17RvrO4WhB4Ha_V0,13272
|
236
243
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
237
244
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
|
238
245
|
wandb/sdk/data_types/base_types/media.py,sha256=QO6aQdNGYtwr6qZYUQ9-WbTpkB3adCBTXWSqO3ZCJjI,14284
|
239
246
|
wandb/sdk/data_types/base_types/wb_value.py,sha256=HtV2VblGg_nnSBQ1rRSjlRuY-NyDTbeDVCJzlQ49SUc,11460
|
240
|
-
wandb/sdk/interface/interface.py,sha256=
|
241
|
-
wandb/sdk/interface/interface_relay.py,sha256=
|
247
|
+
wandb/sdk/interface/interface.py,sha256=oRyy1hs78rZyjf3jn7pHKAqZUA7Swz25I90yDmuJ4vA,37716
|
248
|
+
wandb/sdk/interface/interface_relay.py,sha256=lM5ZgJc6m8BS-nWOuzMCwAK0ve9UBGgOD2rgJ9flIhI,867
|
242
249
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
243
250
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
244
|
-
wandb/sdk/interface/router_relay.py,sha256=
|
245
|
-
wandb/sdk/interface/interface_queue.py,sha256=
|
246
|
-
wandb/sdk/interface/router_queue.py,sha256=
|
247
|
-
wandb/sdk/interface/
|
248
|
-
wandb/sdk/interface/interface_shared.py,sha256=F6kkd8Aaq_nZALIprMgul0xDkSB8uG0HXJ0-94uEZNw,21276
|
249
|
-
wandb/sdk/interface/message_future_poll.py,sha256=drjrcBKswYPYJJQLFlj7UDXq7_zg7KNcObFVetsbvhQ,1410
|
251
|
+
wandb/sdk/interface/router_relay.py,sha256=tOBQYEX7PGw9-qE91CdNhLEQb9KbJiQnlHg7XBOsijA,1390
|
252
|
+
wandb/sdk/interface/interface_queue.py,sha256=zOjUB2nf_wNMoEeXGWP5di-u4-UL2_jvsVZw53EbEsk,1257
|
253
|
+
wandb/sdk/interface/router_queue.py,sha256=wnApY1iXa_3L0-HO6t42Nbsh68zyEw3FWN3oI6PmoXM,1049
|
254
|
+
wandb/sdk/interface/interface_shared.py,sha256=XmEg78CyUHI4XPNtgyx59aQIlzJzQjZYEIeQVECHXSE,18645
|
250
255
|
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
251
|
-
wandb/sdk/interface/interface_sock.py,sha256=
|
252
|
-
wandb/sdk/interface/router.py,sha256=
|
253
|
-
wandb/sdk/interface/router_sock.py,sha256=
|
256
|
+
wandb/sdk/interface/interface_sock.py,sha256=rz6uwKNzLpGDCCVGSlC6ABspmkYD5LnGX_cd9dvaAwU,1043
|
257
|
+
wandb/sdk/interface/router.py,sha256=hlYzz7DjDt3sYDJQYLE1NHkxGFDezHgmfznnPRHPcHU,2630
|
258
|
+
wandb/sdk/interface/router_sock.py,sha256=S15CRwMoDFYKnEzwqAjvPQC6BlKtJpxE_rZHeaxM2V4,1002
|
254
259
|
wandb/proto/wandb_base_pb2.py,sha256=HjakgSUcYSm6X7B-nvckrmMjaUKGuUh_KE97AuFBat8,307
|
255
260
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
256
261
|
wandb/proto/wandb_settings_pb2.py,sha256=g5NT8BLXrE1Y7zWMM768zRoW98dBLE9TNuwttXnuyMY,319
|
@@ -262,21 +267,21 @@ wandb/proto/wandb_generate_deprecated.py,sha256=Iyf7PwIL_2B7XohrckYLbjjT09lccwbq
|
|
262
267
|
wandb/proto/wandb_deprecated.py,sha256=CGD8fZII6QOjVPJZ2zCGG8Cx95A5KZVYHYwFPz1Cz6k,1978
|
263
268
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
264
269
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
265
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
266
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256
|
267
|
-
wandb/proto/v3/wandb_server_pb2.py,sha256=
|
268
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
270
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=Iiq2lnpfLiqk1su_dpD6SHH3zmlvOaU9kRxtyzMGMAo,21245
|
271
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=X5m7_mikGKgCRpD84q311n64q6-HMMFMhVop6XeGgHM,116112
|
272
|
+
wandb/proto/v3/wandb_server_pb2.py,sha256=LQCUmuy0NFDo20N9uCUiE5VPyhP5r929WKtniae4CdQ,15514
|
273
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=c3y5sNd6dc-POBGJRmqNych_7L7nd0Cdt7ILXuW7RPM,13861
|
269
274
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
270
275
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
271
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
272
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
273
|
-
wandb/proto/v4/wandb_server_pb2.py,sha256=
|
274
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
276
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=hRf0tgWk8NSpeM1677mXaZOahjaG8W78qTJrct_j3r8,17620
|
277
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=LV8iKL7ufkIFyNjfG4PjDbg_u2EoGbYuMG7Qn5XaABw,53151
|
278
|
+
wandb/proto/v4/wandb_server_pb2.py,sha256=NiG6Xv9CDvxc8v8NmnM237jyYqMuRyE_nqmLAMZVdI8,6977
|
279
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=9ALCD8ZYH_Sr4Sw5uJ_gsPDOxwquxjkMMXZQD124Dq4,11308
|
275
280
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
276
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
277
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
278
|
-
wandb/proto/v5/wandb_server_pb2.py,sha256=
|
279
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
281
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=qDaa79-Rm4A0-1BiDlCP4Tf69XhZyJA_Or5XpQa1keg,17976
|
282
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=FGXDcOhWMVRkFTBF0uRSOi6YG6rJciJi0HuMlxbxmBI,57498
|
283
|
+
wandb/proto/v5/wandb_server_pb2.py,sha256=f55mk3Z77xUnq_tAbTd_Q75CiOJz6ppPbZT7CoeF7-I,7535
|
284
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=PCTcpV-BmgR-5qb2vA30rRhLv_V4A-8Rt3cEgczgjs8,11578
|
280
285
|
wandb/errors/__init__.py,sha256=Tlij_4c-SxruLN-p0sDfDpF-HktBcHeAbztwGqQ84cU,293
|
281
286
|
wandb/errors/util.py,sha256=EtipkN-l12IT5OAyqhmZyTqYiqplS-Tz5SPp2bjfsJo,1712
|
282
287
|
wandb/errors/term.py,sha256=kH_noQvl9BDsGBXm7fQfH5u0ERmI6bOZa8Rp49DoAPk,12207
|
@@ -698,18 +703,26 @@ wandb/apis/workspaces/__init__.py,sha256=buvqtqELpCFWC7sHzEuslJgx24ZWDj-5lo2mdV6
|
|
698
703
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
699
704
|
wandb/apis/public/__init__.py,sha256=ldsy9V8UQlRnsIf9E4qRMtYIdH89oQ8eiYThQsphXks,1070
|
700
705
|
wandb/apis/public/runs.py,sha256=_v9F-Onzx_LJha8xxWDxXk3BWEK1Gg0Yq9XJSxtlx_c,35202
|
701
|
-
wandb/apis/public/api.py,sha256=
|
706
|
+
wandb/apis/public/api.py,sha256=OGDy0Iw8cRQJYVmHDVuMb8idxoNbEZLITrgaGWo0-E0,58882
|
702
707
|
wandb/apis/public/reports.py,sha256=xUm3UO8OnCGXMMqXw-YUhOi143HccrDPS8VO7B0xW0s,15278
|
703
708
|
wandb/apis/public/jobs.py,sha256=Ewwh-KK2mNoOXIz3p4Q1fMoWqAkGDl1vGbTBZIkOxPc,22372
|
704
|
-
wandb/apis/public/utils.py,sha256=
|
709
|
+
wandb/apis/public/utils.py,sha256=6jfEut3u4qc1KiD4fR04YM2X6tmNW997MT44ptL7bTU,3681
|
705
710
|
wandb/apis/public/teams.py,sha256=YJAsJLRVM5r6UT48tdGGVA2V_f7nayDe5Q5NRTFQ8m4,5474
|
706
711
|
wandb/apis/public/projects.py,sha256=F5cPDxAbZD4-oVB_BxBCTsZk6k1tVL0cPU3Z0YEUqzo,4322
|
707
712
|
wandb/apis/public/files.py,sha256=z3QLBT_boqrncCTWjsfmW2vmX1BY6Q8e4KkGaywYe2E,8479
|
713
|
+
wandb/apis/public/registries.py,sha256=CaL1vD2dH74aMu916vVfgqSsKFsQWMVZf5jNfXiboa0,18404
|
708
714
|
wandb/apis/public/query_generator.py,sha256=WfyaQuBcTHEECOJ2zN_0iqkUufki9MX28fj3axYZCLU,5977
|
709
715
|
wandb/apis/public/users.py,sha256=nbguWN0QJWvhsmgVx6IrkLYbjJcyI-eJQAUVaoY5Qjc,3796
|
710
|
-
wandb/apis/public/artifacts.py,sha256=
|
716
|
+
wandb/apis/public/artifacts.py,sha256=rBzZJQsftgyImSu_r8abSjguqA0Q-SDQtkYZALJ1cYE,33366
|
711
717
|
wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
|
712
718
|
wandb/apis/public/sweeps.py,sha256=FYWvA-h-xqCnZ8PYXRwOEvRHgl3BS0RhuZpTftIMNrc,6547
|
719
|
+
wandb/apis/public/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
720
|
+
wandb/apis/public/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
|
721
|
+
wandb/apis/public/_generated/__init__.py,sha256=m19wAWXw_4qFC1pNaJPp1XBngTOjCab-4Eds3YmDT3U,528
|
722
|
+
wandb/apis/public/_generated/server_features_query.py,sha256=VcqMZTC-_Xq9nhVUv5TD_na6O4PzuDPA2YK6lREOQmM,641
|
723
|
+
wandb/apis/public/_generated/base.py,sha256=zaD3C8aYH-WNw5pL1d-UarEm0NjmEW7lYF2eMraHFpk,4017
|
724
|
+
wandb/apis/public/_generated/typing_compat.py,sha256=qV4yFJH1utKxh-vl-U3JhPHyRSqxZ8d8niMSBF5K370,303
|
725
|
+
wandb/apis/public/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
713
726
|
wandb/apis/importers/__init__.py,sha256=ewph-RBUC9FnxL6uWbuuW0Hmdv2cHsxfqnZi0546ds4,38
|
714
727
|
wandb/apis/importers/mlflow.py,sha256=uoxzm3bSOqjQyUkgOBwuzpaBjTdGp4drPaqE9f7Ny5w,8256
|
715
728
|
wandb/apis/importers/validation.py,sha256=fVILb8fXKk_oj8BbBhUOnzSPwoUuYfF8lflwJklviYY,3190
|
@@ -727,7 +740,7 @@ wandb/docker/auth.py,sha256=Tr-BMoiMJjX8TsdUquVBBLyfxEJWR4WQZGyz6vBaJk0,15009
|
|
727
740
|
wandb/sync/__init__.py,sha256=BzzKmWKjsrCTBAj24d-lJOEPkFUmTfvaK2MeXplSwcc,93
|
728
741
|
wandb/sync/sync.py,sha256=um8jeL7Ba0Hx1IBhJvXArcqBTZ4RF4xqVANPF8HbC0Y,15732
|
729
742
|
wandb/filesync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
730
|
-
wandb/filesync/dir_watcher.py,sha256=
|
743
|
+
wandb/filesync/dir_watcher.py,sha256=9Y57-5-hWZFzCuBL6HQVtm-MIE9p8kCRU_g_YZUVHvo,16345
|
731
744
|
wandb/filesync/step_upload.py,sha256=pNYnlYlw0Dizcfo58BQs8FdMYTvLbjSvceBYhU9IS3E,10276
|
732
745
|
wandb/filesync/upload_job.py,sha256=t-QgMheUcxFE8C9TIJ5Wp9Cl_4jlpCzCKfsRoPzrHbs,5493
|
733
746
|
wandb/filesync/step_prepare.py,sha256=CmGgLMbDtwgqC-ooDrLIfWP1NZWAf0Icl3sx3KNXnCc,5495
|
@@ -818,8 +831,8 @@ wandb/integration/catboost/catboost.py,sha256=mdVQ_J2VF8uz8ONktS6o2JMb1HAJX3LtnO
|
|
818
831
|
wandb/integration/cohere/resolver.py,sha256=pQ2kbO-ynL3FKemSZeCdcsqusQrfB3n29znj-KdSiNo,13813
|
819
832
|
wandb/integration/cohere/__init__.py,sha256=8yTJGhWznxEAxHYDY7oMghvsak_KqLngSLpqjR8ic3g,52
|
820
833
|
wandb/integration/cohere/cohere.py,sha256=CyALJXyLDnic6ZRc8I4UXmR7hYqtIOCi5Wav12JcXd0,453
|
821
|
-
wandb-0.19.
|
822
|
-
wandb-0.19.
|
823
|
-
wandb-0.19.
|
824
|
-
wandb-0.19.
|
825
|
-
wandb-0.19.
|
834
|
+
wandb-0.19.8.dist-info/WHEEL,sha256=ZCaGMInsobf_X8ibOue5yAC0a46KTbFsnGjtmL2skyU,106
|
835
|
+
wandb-0.19.8.dist-info/METADATA,sha256=ziJ-NKmG12cZwapJt1l4pxn9CDnWqa2i7AKn8Ba1B20,10289
|
836
|
+
wandb-0.19.8.dist-info/RECORD,,
|
837
|
+
wandb-0.19.8.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
838
|
+
wandb-0.19.8.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
@@ -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
|
@@ -1,50 +0,0 @@
|
|
1
|
-
"""MessageFuturePoll - Derived from MessageFuture but implementing polling loop.
|
2
|
-
|
3
|
-
MessageFuture represents a message result of an asynchronous operation.
|
4
|
-
|
5
|
-
MessageFuturePoll implements a polling loop to periodically query for a
|
6
|
-
completed async operation.
|
7
|
-
|
8
|
-
"""
|
9
|
-
|
10
|
-
import time
|
11
|
-
from typing import Any, Optional
|
12
|
-
|
13
|
-
from wandb.proto import wandb_internal_pb2 as pb
|
14
|
-
|
15
|
-
from .message_future import MessageFuture
|
16
|
-
|
17
|
-
|
18
|
-
class MessageFuturePoll(MessageFuture):
|
19
|
-
_fn: Any
|
20
|
-
_xid: str
|
21
|
-
|
22
|
-
def __init__(self, fn: Any, xid: str) -> None:
|
23
|
-
super().__init__()
|
24
|
-
self._fn = fn
|
25
|
-
self._xid = xid
|
26
|
-
|
27
|
-
def get(self, timeout: Optional[int] = None) -> Optional[pb.Result]:
|
28
|
-
self._poll(timeout=timeout)
|
29
|
-
if self._object_ready.is_set():
|
30
|
-
return self._object
|
31
|
-
return None
|
32
|
-
|
33
|
-
def _poll(self, timeout: Optional[int] = None) -> None:
|
34
|
-
if self._object_ready.is_set():
|
35
|
-
return
|
36
|
-
done = False
|
37
|
-
start_time = time.time()
|
38
|
-
sleep_time = 0.5
|
39
|
-
while not done:
|
40
|
-
result = self._fn(xid=self._xid)
|
41
|
-
if result:
|
42
|
-
self._set_object(result)
|
43
|
-
done = True
|
44
|
-
continue
|
45
|
-
now_time = time.time()
|
46
|
-
if timeout and start_time - now_time > timeout:
|
47
|
-
done = True
|
48
|
-
continue
|
49
|
-
time.sleep(sleep_time)
|
50
|
-
sleep_time = min(sleep_time * 2, 5)
|