wandb 0.19.6rc4__py3-none-win_amd64.whl → 0.19.8__py3-none-win_amd64.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.exe +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.3
|
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,16 +1,16 @@
|
|
1
1
|
package_readme.md,sha256=XGlaq8rMFcoBb21rCr2d5qeSM79ZI4WslLmXqRimTGQ,4395
|
2
|
-
wandb/__init__.py,sha256=
|
3
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb/__init__.py,sha256=pR6axEHyGmkw9jysest18F_BLDCT3mzJKeG4tDJ_IOo,7234
|
3
|
+
wandb/__init__.pyi,sha256=Q_vLMwNi1YTbKhtCuDgv9uiIboLdfnxvHJS51vAvZqk,49565
|
4
4
|
wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
|
5
5
|
wandb/_globals.py,sha256=NwgYSB2tl2Z5t1Tn1xpLtfkcmPy_dF01u-xxgnCbzoc,721
|
6
6
|
wandb/_iterutils.py,sha256=6c5yuQq0DKgw1D__OVbXQzOfk53ETZTfj27r7azDMgA,1591
|
7
|
-
wandb/data_types.py,sha256=
|
8
|
-
wandb/env.py,sha256=
|
7
|
+
wandb/data_types.py,sha256=DdCkf7Dh_j86Q74FWzh3M20EW_hzKpNagexjo03qv-A,2349
|
8
|
+
wandb/env.py,sha256=nUaSTP-JRAVnn5giLpdg1EMiisTb0-BMoEfV2mGCfKk,14259
|
9
9
|
wandb/jupyter.py,sha256=LG4Z-LCx-3v4eiftr8aSUGgByzLrkyhdRvNwfxPSc5A,17787
|
10
10
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
11
|
wandb/sklearn.py,sha256=8wlo8mLyekq6yRZBgluzPj4J-RP3wkLaEWm0yh7gvWw,838
|
12
12
|
wandb/trigger.py,sha256=d9TizmMPsvr0k9_3SBK2nq-Mb95bTzf9DZ1aE_F0ASo,644
|
13
|
-
wandb/util.py,sha256
|
13
|
+
wandb/util.py,sha256=-BWzlZWUBMMG-9UM31-qpFX_Nv4pviFEKGZOZ_I6NR8,65522
|
14
14
|
wandb/wandb_agent.py,sha256=S0RAKLvFUdFdN0hLqtkUNpWHk4FKj7qqEWp_he0O3p0,21568
|
15
15
|
wandb/wandb_controller.py,sha256=od0i1iO61iHMmiE_W-onoIwUAFeoym4RsUAw_0mJ11E,25655
|
16
16
|
wandb/wandb_run.py,sha256=EyOjZsthYkfV5SSorQIFmEkszZwvKfZKZCxIwzoM2Oc,164
|
@@ -31,30 +31,38 @@ wandb/apis/importers/internals/internal.py,sha256=0HPjKvOfRZwdLKKhn_rdVKI5BA3D2S
|
|
31
31
|
wandb/apis/importers/internals/protocols.py,sha256=PRnN66EtZPDtCiZomB_CtTtE0tMcebeG9aAK5OyDSGk,2988
|
32
32
|
wandb/apis/importers/internals/util.py,sha256=2bTcLqJjG7MWj6qVvmrmjP5VVkPLOSq9zr7zPM0Z_Pc,2161
|
33
33
|
wandb/apis/public/__init__.py,sha256=sVe4PFIojfDnw9mvVtQn1GHynb7UG7yIcPWrfNCoYP0,1104
|
34
|
-
wandb/apis/public/api.py,sha256=
|
35
|
-
wandb/apis/public/artifacts.py,sha256=
|
34
|
+
wandb/apis/public/api.py,sha256=9mEg-Wdf4AUIsa_InCLxi_3Hcgxkm-BLh9RHxlDehBo,60455
|
35
|
+
wandb/apis/public/artifacts.py,sha256=8zuO0otZSF_9fbPf9IL3ArXcdbszdEJnWGHRGI8Fk6w,34429
|
36
36
|
wandb/apis/public/const.py,sha256=aK9Fcp1clmTHWj0C24fTRU3ecP5u91dPmp298kLiBdM,125
|
37
37
|
wandb/apis/public/files.py,sha256=liA_plRobamlzsRmeFm45lR7f-6mCEiQpdWahSIPP1o,8742
|
38
38
|
wandb/apis/public/history.py,sha256=Dapg1I0CRm1NDzzP9gfTDrs4-K8b8zZHMgjIlpo5NA4,4785
|
39
39
|
wandb/apis/public/jobs.py,sha256=W1DKNqwE4A82lRgkjigLRiVrHw0goWE-RBUfYfGI57c,23025
|
40
40
|
wandb/apis/public/projects.py,sha256=TWTf_bvGJr-pTNKY_quNytP7KW0oimpDQ_FasOR-glA,4476
|
41
41
|
wandb/apis/public/query_generator.py,sha256=2rTLP6xBphyVb4gexvO_rz1iN-2c4LVzaUk0_rmKxTc,6143
|
42
|
+
wandb/apis/public/registries.py,sha256=1em3jt-K1-Kuc5WPme2T6CrhlDme42LVlgW9y08T5cY,18977
|
42
43
|
wandb/apis/public/reports.py,sha256=QPSgVPB7SmexC-CQmRd6h50ZymSnvMZKPrlCgCx9G-o,15736
|
43
44
|
wandb/apis/public/runs.py,sha256=V37XY9I7HEy1egC0EIDwwxvM-Pq8xqTtFYkNtUBsVaU,36209
|
44
45
|
wandb/apis/public/sweeps.py,sha256=qulkX50YqvJbvrISkOk5NqeqM8z-MnXdyFtV-V9luMI,6787
|
45
46
|
wandb/apis/public/teams.py,sha256=OZXEE6zcy8p_MVAAWx0wL7jpFvOmsiE6TozwIJm2SNI,5672
|
46
47
|
wandb/apis/public/users.py,sha256=cr_j9nBbJQyXg5TZ_heYPdC2dJICffyy4HMyTzAG-g0,3932
|
47
|
-
wandb/apis/public/utils.py,sha256=
|
48
|
+
wandb/apis/public/utils.py,sha256=118tLmG9NBk2uMjO9p754549hqAMmGO8azlv0Kb3e70,3785
|
49
|
+
wandb/apis/public/_generated/__init__.py,sha256=5A8ViFddfub4suuXNCNm13YvJxm2UQvB4InAy_KYSuQ,549
|
50
|
+
wandb/apis/public/_generated/base.py,sha256=yJoZCc4sCNONxLBc-QwpmwZVBSpBOUUHXXycdhjDOWw,4145
|
51
|
+
wandb/apis/public/_generated/enums.py,sha256=n4NAp3Y6Cb0bOtRvpJ-v8tl37-pg5CBEZ7m8Wzg7THY,128
|
52
|
+
wandb/apis/public/_generated/input_types.py,sha256=n4NAp3Y6Cb0bOtRvpJ-v8tl37-pg5CBEZ7m8Wzg7THY,128
|
53
|
+
wandb/apis/public/_generated/operations.py,sha256=7OG1bWsH0hY8rYZBY-oLfLDwzznu3j-VjlL9aPV7Ims,260
|
54
|
+
wandb/apis/public/_generated/server_features_query.py,sha256=q0Op9v6roP1PFLc3cx-q3wTF0zfgvJjGGW8a_sSh50s,668
|
55
|
+
wandb/apis/public/_generated/typing_compat.py,sha256=i5ZZUW8wUh9F0Obxxu399RLDlUdkQH8CZxJQa35JdoA,317
|
48
56
|
wandb/apis/reports/__init__.py,sha256=pKAM02nyHJV6DwGQuzAhSlqTOsCHKah1FlJIDERyY5U,33
|
49
57
|
wandb/apis/reports/v1/__init__.py,sha256=nxs3gJlbvVc0b_pV5DUypk1amMkRSq_M-xUw7qPTfwI,271
|
50
58
|
wandb/apis/reports/v2/__init__.py,sha256=vlF0ZRVHS-Qd7mBllcZri-gWE0TtjhiDSA6h5XPRVLU,271
|
51
59
|
wandb/apis/workspaces/__init__.py,sha256=XsF4ccNRUCTmI9ANjlrj_dYU1OcOi5N354Wg2Qkkaqo,273
|
52
60
|
wandb/beta/workflows.py,sha256=ENy_lmIyn3k_FHdD2ZO8HBaXdeoLrsPVbEfL_KYW8Ps,10527
|
53
|
-
wandb/bin/gpu_stats.exe,sha256=
|
54
|
-
wandb/bin/wandb-core,sha256=
|
61
|
+
wandb/bin/gpu_stats.exe,sha256=7ay_-xOcbBcp_o2SCLbK3xed0cQnpTsZZKOThppRJYc,8111616
|
62
|
+
wandb/bin/wandb-core,sha256=WlqSKjkHoo79R7H6g07cfrSTXLvOnNOAMxYNT7aNTDU,48819200
|
55
63
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
64
|
wandb/cli/beta.py,sha256=_wbqhk6J2yjnNuVQAGlYbYZ9-j0sFE73zMIXVkQYlXA,5619
|
57
|
-
wandb/cli/cli.py,sha256=
|
65
|
+
wandb/cli/cli.py,sha256=zlV94Al6XKNzUEklq8JcycPTXn8DJlko2ia7VAJ8s3A,95430
|
58
66
|
wandb/docker/__init__.py,sha256=-7Xn11uNyPYB1FTYFVF9HtEzhXGHZLUpmuyK4fuYhUs,10937
|
59
67
|
wandb/docker/auth.py,sha256=tynuijSUb1zRWVpSmNl8MpqaMsvLcVuqgB9_ljFqmgk,15444
|
60
68
|
wandb/docker/wandb-entrypoint.sh,sha256=ksJ_wObRwZxZtdu1Ahc1X8VNB1U68a3nleioDDBO-jU,1021
|
@@ -66,7 +74,7 @@ wandb/errors/term.py,sha256=i0Gwo_vMF13NzWPQ_0VUPYU6McvyW_z_I97Um8imvHQ,12622
|
|
66
74
|
wandb/errors/util.py,sha256=DEdbUq-yD7AT_BxhWjAf08xGgKrPpKttYMlz0sp4Dx8,1769
|
67
75
|
wandb/errors/warnings.py,sha256=MVBIm1GGlSo-v4Yusn0C9tRO2_hIkT4FEL-zmdf7UKY,59
|
68
76
|
wandb/filesync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
69
|
-
wandb/filesync/dir_watcher.py,sha256=
|
77
|
+
wandb/filesync/dir_watcher.py,sha256=DWJAbMSUISfOFbU0fTsHSJYb4H7YbLAGPsWsIlexsbg,16749
|
70
78
|
wandb/filesync/stats.py,sha256=RZJQD1rzV38HRAgUsFSN-aIKlOhg3w7_k2-MVGeo9Sk,3150
|
71
79
|
wandb/filesync/step_checksum.py,sha256=V5jeeSkArxid081Zl4Z7G0bZ_4rbUJ3oYDAKQwHqdM0,4832
|
72
80
|
wandb/filesync/step_prepare.py,sha256=PZQGkRAHpkwoCAucXnjO7lCcexhkqd6HGsapiX0cgYU,5674
|
@@ -186,41 +194,42 @@ wandb/proto/wandb_settings_pb2.py,sha256=Aq7nH9PsYXcPKFOPi0Oh2CAaCUpDoPfedycOleI
|
|
186
194
|
wandb/proto/wandb_telemetry_pb2.py,sha256=bNLhk5I9SDqNvzxi_anYorfvZjv8nG4cMZQvDS0BT9Q,332
|
187
195
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
196
|
wandb/proto/v3/wandb_base_pb2.py,sha256=zwma_gb3IOSfBJ1tvMIdmQtQQZLe29upb8Mqr4m9No4,2410
|
189
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
190
|
-
wandb/proto/v3/wandb_server_pb2.py,sha256=
|
191
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
192
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
197
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=nJbfTzlfJHBnL_TaWVp41J3x1NhkooAgi_Kz66Hlho4,117829
|
198
|
+
wandb/proto/v3/wandb_server_pb2.py,sha256=gjIGUr71bFP25WBV6UTtGQdS7jk_8HEasE1kw1anlyk,15742
|
199
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=uzZ42XkuRU7olhbMQV6OHFzwCqthFgXiT8IAdmPm2EE,21367
|
200
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=9Md5RatwttCtN46gyBtwr-V6laaG3_PCic6hqBUwBMA,13967
|
193
201
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
194
202
|
wandb/proto/v4/wandb_base_pb2.py,sha256=tl7f-74ItLSWCP_GDfAWm02sTEgUpWZGoP_vqEpvRE8,1452
|
195
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
196
|
-
wandb/proto/v4/wandb_server_pb2.py,sha256=
|
197
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
198
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
203
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=tU6ikBr10If0Zb6lP_TF2xSUc10m-TjTaAyWfuK45x8,53533
|
204
|
+
wandb/proto/v4/wandb_server_pb2.py,sha256=Wo4FbkBik5cftjZDtlO80LIMRfJetOGOAxj5zy9jXdQ,7044
|
205
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=RdaXugZWLzIBs7cakE-YpUM-fmIXwo04FpDwfa8e7t8,17667
|
206
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=ckM6qGNal-JLnSYEFaoqvgFeEn3pojwsI3Rmo8qW1c8,11349
|
199
207
|
wandb/proto/v5/wandb_base_pb2.py,sha256=ES3U80f2YCt-fwiqaIrz7BGHVywwx6ibEDAnlWpohig,1603
|
200
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
201
|
-
wandb/proto/v5/wandb_server_pb2.py,sha256=
|
202
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
203
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
208
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=Rn4DWokjg9YaaboJlV57N6lPhqk2ggdpKlQSXNvtv2E,57881
|
209
|
+
wandb/proto/v5/wandb_server_pb2.py,sha256=Zkw2UopD20-C514TgqZ1P3NZTSLPTGjSVqihxcMpVoM,7603
|
210
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=1L2ZtXNQ0U_nj8xQOydgMFz242bRPqmU-KsfchQrPYw,18024
|
211
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=u0Q-wFR7XQ31-WNSJKUTuhLp8hJDcVis51KtKc99ej0,11620
|
204
212
|
wandb/sdk/__init__.py,sha256=6lzqckLZUs7GpFZIwpgxGJwJDvhuyo-XCQnSrtZqE1c,850
|
205
213
|
wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
|
206
214
|
wandb/sdk/wandb_config.py,sha256=TxH6SD8DCfFU3yhmy03yewXQ4Gvgn3avZ0qbwpZJKt8,11178
|
207
215
|
wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
|
208
|
-
wandb/sdk/wandb_init.py,sha256=
|
209
|
-
wandb/sdk/wandb_login.py,sha256=
|
210
|
-
wandb/sdk/wandb_metadata.py,sha256=
|
216
|
+
wandb/sdk/wandb_init.py,sha256=nagdRtxC_L9JNkGLgE2UwggdD0uUAXZmaAvXsrFfGqI,60980
|
217
|
+
wandb/sdk/wandb_login.py,sha256=8DNW6gDrNkwoF71W7jsj_e2RGBSrT2xjuy7Zn0mQED8,11270
|
218
|
+
wandb/sdk/wandb_metadata.py,sha256=ZUad0gvUKymNRK0t-JsTnzWUVqF_yuPNQZHE43azaGY,20825
|
211
219
|
wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
|
212
|
-
wandb/sdk/wandb_require.py,sha256=
|
220
|
+
wandb/sdk/wandb_require.py,sha256=zDdqyA6FPh1rUNFLQOmNBZtK8VZSKoVK4WyYa3bI3gU,3204
|
213
221
|
wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
|
214
|
-
wandb/sdk/wandb_run.py,sha256=
|
215
|
-
wandb/sdk/wandb_settings.py,sha256=
|
216
|
-
wandb/sdk/wandb_setup.py,sha256=
|
222
|
+
wandb/sdk/wandb_run.py,sha256=uvGgY7PiJjZCu1oWigQ3Swj4LR4r7VsrOZkcqAGrVOk,157751
|
223
|
+
wandb/sdk/wandb_settings.py,sha256=i7c3snQ7UGFNkoCjAo-vlTHT7faL2LOFQ65_oKQcBeY,57238
|
224
|
+
wandb/sdk/wandb_setup.py,sha256=a_e1-xAdl_mrxu9hMkWQs5sMZLFvihkW0CJdLC-GrI8,13340
|
217
225
|
wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
|
218
226
|
wandb/sdk/wandb_sweep.py,sha256=FhjfRmWS_Ffn7CwT9kjVAnvTJFnaB50mUwaGOLb2WrU,4147
|
219
|
-
wandb/sdk/wandb_sync.py,sha256=
|
227
|
+
wandb/sdk/wandb_sync.py,sha256=Bk1X5a2RgpdB24trwwW1fLC1sEKET87ySCH84T-kgf4,2177
|
220
228
|
wandb/sdk/wandb_watch.py,sha256=o3-DqwYJomujs25ZV9cur0UMDod-atsZd4PpDjDiWfU,4990
|
221
229
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
230
|
+
wandb/sdk/artifacts/_graphql_fragments.py,sha256=Z1rE9K_yGCFlaQJwYXvhv0AN7wAbF-7nSovYIvQfCZM,3206
|
222
231
|
wandb/sdk/artifacts/_validators.py,sha256=nZ5mduNca9kELncaNIKHykJVpPpDaU8Ca0kFK4ftwRc,4292
|
223
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
232
|
+
wandb/sdk/artifacts/artifact.py,sha256=eoyK1_o_eDymNzW6RgskLhmuLXQ1AQFOg0j1ynTVnYE,92858
|
224
233
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
|
225
234
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=SedT6WuFz04JHfLnDujl-kkyRehttOQnGLybN_hz-9Y,9993
|
226
235
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=Y86c2ph4Fz1p5mfTpWMEPh1VhRzi-OyLGswa-NQDuUw,518
|
@@ -250,7 +259,7 @@ wandb/sdk/artifacts/storage_policies/__init__.py,sha256=G8quZY8-eynVVXmNBbiLGfUo
|
|
250
259
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=azfof-H42vIuvndo9hvN4cZ3UXWG-nZcrFQ1QFL9oIc,50
|
251
260
|
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=4nQNkDfG_2Uq4ANOYZIaQVcPsZsUmhs6c2MdQBOqMSI,14380
|
252
261
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
253
|
-
wandb/sdk/backend/backend.py,sha256=
|
262
|
+
wandb/sdk/backend/backend.py,sha256=AyfjJgP6C8wzQUxpMxjjDtbdL1eoxdF93IkOEOU2EOY,8019
|
254
263
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
255
264
|
wandb/sdk/data_types/_dtypes.py,sha256=JYi0cqF2Lska0JF_gndyz-FfcS09Ozu735WIarU8HKo,31010
|
256
265
|
wandb/sdk/data_types/_private.py,sha256=vpatnpMcuWUtpSI-dY-YXs9zmffAgEXCoViIGS4yVT8,309
|
@@ -263,35 +272,33 @@ wandb/sdk/data_types/image.py,sha256=QAoMcEUIOklwhBZtdzBhrRfoTp-YO1W_uDCBYVeKed8
|
|
263
272
|
wandb/sdk/data_types/molecule.py,sha256=KtG2aj4z8p3xQfv-9u-0KBeGuvxb2wavlf0GWiNiTQk,8824
|
264
273
|
wandb/sdk/data_types/object_3d.py,sha256=LvANAijnaQxvZHPurtQUfT3eN5GVkz0SrMoznRT9fPw,16418
|
265
274
|
wandb/sdk/data_types/plotly.py,sha256=UNYwRUUCODSyGvD3WEiF0p6jEseNfYiGnm8mD_tOoiI,2995
|
266
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
275
|
+
wandb/sdk/data_types/saved_model.py,sha256=z8yEcyalNW4ifWc5GzyAvPWs4cZS2d5Qy_yMnRpJ8MA,16688
|
267
276
|
wandb/sdk/data_types/table.py,sha256=K4wnoI7ZPpQaLSl_7rBeoj1AnRzN-hZaltKZXQ9GpJ0,45887
|
268
277
|
wandb/sdk/data_types/trace_tree.py,sha256=4pT5Gpn-ePe-_nRZk5mDnDb36qB5c5e6Vrz_EgHEPaA,15138
|
269
278
|
wandb/sdk/data_types/utils.py,sha256=m_OxURMP-eho92fzLU3s4UJYoxheBMDhflZzqG_8_eI,7857
|
270
|
-
wandb/sdk/data_types/video.py,sha256=
|
279
|
+
wandb/sdk/data_types/video.py,sha256=cpg3KxzqNyprTgBEf_jvoVv3KpzIgyfjANccaAaKJYM,9603
|
271
280
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
272
281
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=idI3dNB1e348AefsQC1GNpVqYl2raWzJmDfl2ITL-_w,1608
|
273
282
|
wandb/sdk/data_types/base_types/media.py,sha256=i-4KALCfpvc7cXiYZ4Ih_0gTnqqIOlWVtN7gFRdqt28,14660
|
274
283
|
wandb/sdk/data_types/base_types/wb_value.py,sha256=123pPwVfYLGSUIcqg1bOwArUOfK_KDt-4KdikYHdfNk,11742
|
275
284
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
276
|
-
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=
|
285
|
+
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=_Lzxi2NmfAHSFeA4UupaBrT7Zvg-eNV3AfnbiZ6tJtA,13585
|
277
286
|
wandb/sdk/data_types/helper_types/classes.py,sha256=A59I1s4u7fdS68UoVQJgYqr1PTQdFpfqJA8lsKOmTNI,5679
|
278
|
-
wandb/sdk/data_types/helper_types/image_mask.py,sha256=
|
287
|
+
wandb/sdk/data_types/helper_types/image_mask.py,sha256=ncY723R9kpSBCgcACzjmf9ZW7uYklid_w9kXr7tjYug,8974
|
279
288
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
280
289
|
wandb/sdk/integration_utils/auto_logging.py,sha256=143120qDwFrh7qsojhMvT4CddgHesODOMCbkE9aclhI,8465
|
281
290
|
wandb/sdk/integration_utils/data_logging.py,sha256=DtSEZB-TzxQKhjm9IXNxDeOAUZyDXGYrfRvVh2Cju54,20008
|
282
291
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
283
292
|
wandb/sdk/interface/constants.py,sha256=GKZ2hATTBCt7yU8kloafZR34yLChiI36O_VtxZZbQyg,64
|
284
|
-
wandb/sdk/interface/interface.py,sha256=
|
285
|
-
wandb/sdk/interface/interface_queue.py,sha256=
|
286
|
-
wandb/sdk/interface/interface_relay.py,sha256=
|
287
|
-
wandb/sdk/interface/interface_shared.py,sha256=
|
288
|
-
wandb/sdk/interface/interface_sock.py,sha256=
|
289
|
-
wandb/sdk/interface/
|
290
|
-
wandb/sdk/interface/
|
291
|
-
wandb/sdk/interface/
|
292
|
-
wandb/sdk/interface/
|
293
|
-
wandb/sdk/interface/router_relay.py,sha256=LlgV_zGhoDkrIs5l6KgCFo1zpPMKyiS8ZR80Ay6aWz4,990
|
294
|
-
wandb/sdk/interface/router_sock.py,sha256=xS50HSO_mG_xxVNpLoKqbHcsptBGjTFUc3-cHbfXJ7A,1096
|
293
|
+
wandb/sdk/interface/interface.py,sha256=B7GKlBaOIbpuXrw5bC86dPtRZmmYpKRyNnEelnnPwfA,38772
|
294
|
+
wandb/sdk/interface/interface_queue.py,sha256=tgK-OtoX2JMi0hvKwH0fd6lQkiYd3565RSalkWHmY6k,1300
|
295
|
+
wandb/sdk/interface/interface_relay.py,sha256=OxzeDHMrC4qC6WNUHWGJi1QOpuHAIw-Yyom3tbGO91w,905
|
296
|
+
wandb/sdk/interface/interface_shared.py,sha256=l0E0PHKIwFO0KnR0ox9CzVIu1hbvcbxpdWY1pSvjNRo,19136
|
297
|
+
wandb/sdk/interface/interface_sock.py,sha256=olNlc54pCCIYn6jHKO_YY8qCVoLASnyQ3qDsJ2-VRfg,1082
|
298
|
+
wandb/sdk/interface/router.py,sha256=RvHVVFB3NGpzMiJrz1q1iDLtARAhKBTp7qIC_9SA_rY,2719
|
299
|
+
wandb/sdk/interface/router_queue.py,sha256=DNrkDO73rR5ThyXVa03gzfP94QIjBrWhy3rKPXHqj-0,1092
|
300
|
+
wandb/sdk/interface/router_relay.py,sha256=kaHeBTFvPFr2rln3XrT2XpnVfPpPQQfyiRBXyKUy18w,1440
|
301
|
+
wandb/sdk/interface/router_sock.py,sha256=0lZp7_Ksle1wZFAWUp49Yr6hLyUBNh9_xLh5ObiwN2Q,1034
|
295
302
|
wandb/sdk/interface/summary_record.py,sha256=NZOachyUirH7MATnxNUu5PVfVvDHNUFbEkCvRyoEFUo,1744
|
296
303
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
297
304
|
wandb/sdk/internal/context.py,sha256=HNcOpyptz_03YGlZV3BVzPrBXDoMhtLBxvM2-Z_5xXs,2607
|
@@ -299,16 +306,16 @@ wandb/sdk/internal/datastore.py,sha256=FwZE0QMiS5d-OQEtXv_HEokPK6FufnnjAQb_tAnJM
|
|
299
306
|
wandb/sdk/internal/file_pusher.py,sha256=AViL7Vc3d5Fb9G-DMBUijVha8jFv3iAQ5N52avjXrXg,6279
|
300
307
|
wandb/sdk/internal/file_stream.py,sha256=NE6KzWQMYoXBsUf6CMhC1FvmlZVZQ2b2ZGknNnkPYMQ,26561
|
301
308
|
wandb/sdk/internal/flow_control.py,sha256=QjrV_SOwgay5VYA9SqwYKkeKWjHmqF41TNHNHq75G2g,8848
|
302
|
-
wandb/sdk/internal/handler.py,sha256=
|
309
|
+
wandb/sdk/internal/handler.py,sha256=kFl66omEnYRDEwbk20xHX5z3OpsGfGPGBC49XQPSWHk,35204
|
303
310
|
wandb/sdk/internal/internal.py,sha256=ueWF4YEqERzBBd_7Qvqq6FGfHXG5CdzJSzCGeYvQhro,12585
|
304
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
311
|
+
wandb/sdk/internal/internal_api.py,sha256=TQ7qPKp_dcmsnRGUqd1O18h7fDwL0saIFK2IsBlkBSM,164689
|
305
312
|
wandb/sdk/internal/internal_util.py,sha256=715OQr0OiKGoSDQeHTFNgLvjh2cB06KwzY24n10mOcU,2652
|
306
313
|
wandb/sdk/internal/job_builder.py,sha256=7h3yQcyJiJNdFkxPkl4GWgyWGLTjDlj3kO-WbFD2ffs,23600
|
307
314
|
wandb/sdk/internal/profiler.py,sha256=QM5R8-0oWE7WhllhpPEAEwCyB6Uk62HATz8e2F5qIUk,2426
|
308
315
|
wandb/sdk/internal/progress.py,sha256=jZjltXC_0Fqn80l4ceT7pznmV_CzpeUeLS6nonwUWvg,2418
|
309
316
|
wandb/sdk/internal/run.py,sha256=rkEwqdaYPUh_oB-gdCnQ1JIpSHTMoOVadV9CJEgy-kA,707
|
310
317
|
wandb/sdk/internal/sample.py,sha256=tVNzrLatHr8P1kbVzw8bWhLpqZxx7zdm4fgv7rv2hO0,2540
|
311
|
-
wandb/sdk/internal/sender.py,sha256=
|
318
|
+
wandb/sdk/internal/sender.py,sha256=1r9Wm0TRRJJaxIyzlzasyP0wDmhOYlAURb6YycGXWs8,66193
|
312
319
|
wandb/sdk/internal/sender_config.py,sha256=LZaQY4_bzb9003D2j6aynGqv-Mr2GwUGcNmnQrhJOJw,6964
|
313
320
|
wandb/sdk/internal/settings_static.py,sha256=jGEP14enXA2A9YiA_EyFzn7OhVGavyuTbr-eVEl8tBk,3767
|
314
321
|
wandb/sdk/internal/tb_watcher.py,sha256=KRIGZA8gF3guuZm1ioUo8Uy4iOX2OZ3I_MkDW_znh-k,19259
|
@@ -384,9 +391,11 @@ wandb/sdk/launch/sweeps/scheduler.py,sha256=f_HuxouNMI7eFZDO1Muocd3LZHiiiQ6S5-N3
|
|
384
391
|
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=0iZPUWcChhtXC2IQWxUVAAlE6eT2ogoNsTeIinmSCxw,3077
|
385
392
|
wandb/sdk/launch/sweeps/utils.py,sha256=MJCKDZY7SQ2Wrv1EWUCFo1YflMkuJAYIZFAswP0VCDw,10153
|
386
393
|
wandb/sdk/lib/__init__.py,sha256=_sOt85qPxtPyM_LaN0IE6dO1CImzwXJXzVHC7R24VBE,188
|
387
|
-
wandb/sdk/lib/apikey.py,sha256=
|
394
|
+
wandb/sdk/lib/apikey.py,sha256=p9yiSWu5Q5swzApWRNP7nMSVpqvHo86WTzhkcJPua8o,10825
|
395
|
+
wandb/sdk/lib/asyncio_compat.py,sha256=Uj_MBrkn9H0MfhSBlViTZZIfs1RIAN1jy_Y5f3Ly0Wo,6794
|
388
396
|
wandb/sdk/lib/capped_dict.py,sha256=HuFhPHl0e_pK6ETDxYh5RIPO-46I3EjXgzFdqbJTXDs,846
|
389
397
|
wandb/sdk/lib/config_util.py,sha256=KaSu8CSO1XFHJRBwo-OW0r802isltB3cFO3U1LeM-ec,3018
|
398
|
+
wandb/sdk/lib/console_capture.py,sha256=ZpY2oKvBf-LEd7IUfOTMsYoRfV0Y_5gmtwzbOANTTDI,5095
|
390
399
|
wandb/sdk/lib/credentials.py,sha256=DkYAb00zXMKdmJX-oUjKThh_TutoNFDcDFQilTrXOD8,4878
|
391
400
|
wandb/sdk/lib/deprecate.py,sha256=-w-0N8zNleOYZRYBTrY5_UN4Y1lYa4pyapC7U3Q7www,1504
|
392
401
|
wandb/sdk/lib/disabled.py,sha256=WQOwY0uTYb5xy4t43qRnrEtwTFbE8pJvJ3cwz4-mOaQ,913
|
@@ -404,34 +413,38 @@ wandb/sdk/lib/interrupt.py,sha256=_m7yu7q-qJD_MmqNb5BiYapP5h6LFnKRWxCJWePBz9U,13
|
|
404
413
|
wandb/sdk/lib/ipython.py,sha256=TTdmGbWNX0YkBHgTOcijyiB7eRhBNQpI7AgU3LvGegA,3908
|
405
414
|
wandb/sdk/lib/json_util.py,sha256=a3TtH5QIrVNeORPpblGvZvaF5VDItkD5luN_iwDpohQ,2664
|
406
415
|
wandb/sdk/lib/lazyloader.py,sha256=MoMgx_tBjA__yFKcYzhimWiug_TSQeRUr71sPNUkTsk,1954
|
407
|
-
wandb/sdk/lib/mailbox.py,sha256=c9qC8OqJ3YUthlTfDRTgEaMJbw54RYMSyHxr3XzwhqU,14274
|
408
416
|
wandb/sdk/lib/module.py,sha256=EB0yg1HMApnuCEfQboQXj9a0YUozWwiLXa7u23nC6Js,2176
|
409
417
|
wandb/sdk/lib/paths.py,sha256=Knkww9wdMK4wqsj5B9aMEJDvIFoCf80xXl28It3FIG4,4635
|
410
418
|
wandb/sdk/lib/preinit.py,sha256=IDK_WXbcrfzXUNWZur505lHIY_cYs1IEWp26HMpIf74,1492
|
411
419
|
wandb/sdk/lib/printer.py,sha256=PDksgOU1wCxSh2RMIdfzmwSdEJPu7E7p8vpNMl7dhUo,15837
|
412
|
-
wandb/sdk/lib/progress.py,sha256=
|
420
|
+
wandb/sdk/lib/progress.py,sha256=pGGLYwWEYEjeVR2BkZdEc2l1pYSkaTD1_YNr5k4rRgw,10993
|
413
421
|
wandb/sdk/lib/proto_util.py,sha256=YaGg9FoKtWmgQD8SkkKN630gyG93WoYY5JHqwdWaQKg,2984
|
414
|
-
wandb/sdk/lib/redirect.py,sha256=
|
422
|
+
wandb/sdk/lib/redirect.py,sha256=X_i66U0pgu-yIZ5yFrLImYlEAwoH8zWC2k8Z1VDhnIs,28120
|
415
423
|
wandb/sdk/lib/retry.py,sha256=LwZZTfhHBexX21FCcHo7AShA-5i7sJg78vIpcTXMAVE,10465
|
416
424
|
wandb/sdk/lib/run_moment.py,sha256=18ExYjWnzyoW9q6kPIlk9yX7rCsrrNd3ELlIey7RwEo,2548
|
417
425
|
wandb/sdk/lib/runid.py,sha256=rHYRTjJu8gTZ6Aoo0WZ5jQfAtNLXQo6aY6PD-i3Fh6I,404
|
418
426
|
wandb/sdk/lib/server.py,sha256=f8idM8TiJKS1nYTjijhVkzOTp8e2flNpLUWcZ2K08f0,1681
|
419
|
-
wandb/sdk/lib/service_connection.py,sha256=
|
427
|
+
wandb/sdk/lib/service_connection.py,sha256=RBTU6oZx_8V7vQVmoCvIssCX6pHDJ-YwAU9TjygPur4,7691
|
420
428
|
wandb/sdk/lib/service_token.py,sha256=GC8onzk44uphA5l5hHs8RZmQ7Auo7-Dx-KhCWOFYH9g,2565
|
421
|
-
wandb/sdk/lib/sock_client.py,sha256=
|
429
|
+
wandb/sdk/lib/sock_client.py,sha256=efSlg-mMthwQqicZtE-8-C8InDWbaUJLbu4sH6dbdt8,8623
|
422
430
|
wandb/sdk/lib/sparkline.py,sha256=CivfHHGPrbnnacpfjsoYUrCtX6Xz7AHoybEeOuWeEI0,1407
|
423
431
|
wandb/sdk/lib/telemetry.py,sha256=25ZdppATjPlRR2uTh_lLUgXVCAFS49hT8ArSYAWCN3g,2854
|
424
432
|
wandb/sdk/lib/timed_input.py,sha256=XF03SXTQj0AysHiIV-LKtbwxtSUx0E7xts7zDPs9kJQ,3362
|
425
433
|
wandb/sdk/lib/timer.py,sha256=Ar1t8f3OFAA4PB2fB2MT9D41y3g2Or56wSAYezvdXqo,459
|
434
|
+
wandb/sdk/mailbox/__init__.py,sha256=0gYfvSzPYluoQOQzT3j2AQoE4R4gPU2FCXBYcEMJOP8,879
|
435
|
+
wandb/sdk/mailbox/mailbox.py,sha256=94heh_4IaPRYviea26hT-NFk7vhFOhZITG1stTe2LRs,4449
|
436
|
+
wandb/sdk/mailbox/mailbox_handle.py,sha256=WL_fy3aSgNLxI7NdXdao5OWfSpwC6UQUTrZYP554xLY,3870
|
437
|
+
wandb/sdk/mailbox/response_handle.py,sha256=xVqqSu_T8tV61IeYxzJ9igwWYy3v1dBTuPwo0DlSWEI,5198
|
438
|
+
wandb/sdk/mailbox/wait_with_progress.py,sha256=BfkNHbF8kkwLnyRhrcVMeoFTaotJijkmuZQpSnAvffI,4261
|
426
439
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
427
440
|
wandb/sdk/service/_startup_debug.py,sha256=3uaZuL6tsHulAS__dvnUn1U_PeZdjXI0t-F3D-77bZs,624
|
428
441
|
wandb/sdk/service/port_file.py,sha256=aYA40Y8d78NMwKuJRbG3aL4J4-xH8l8UvzPFFfrwQCY,1599
|
429
442
|
wandb/sdk/service/server.py,sha256=IC4qXJKahrz7_VT-HkUb8BqPkzTmGh5-c0qflAymTu8,3567
|
430
|
-
wandb/sdk/service/server_sock.py,sha256=
|
443
|
+
wandb/sdk/service/server_sock.py,sha256=K0Csj7ip41gqtZUO7uHeHciBPwDWoUmYziyoCa1BpHo,9976
|
431
444
|
wandb/sdk/service/service.py,sha256=J9KO_FUcUom9Eeu_kvs8XdC_6tCR4pf3ey8J9IpVfSU,8856
|
432
|
-
wandb/sdk/service/streams.py,sha256
|
445
|
+
wandb/sdk/service/streams.py,sha256=mGyZ5HRGHGsaZpCU1qHH_5pAbvL6uIwufksHrQgaYls,15225
|
433
446
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
434
|
-
wandb/sdk/verify/verify.py,sha256=
|
447
|
+
wandb/sdk/verify/verify.py,sha256=8iLLeV77tvi3-4pX5Gf7a6aNpYOTL8hIY4pQo-Q5zao,18852
|
435
448
|
wandb/sync/__init__.py,sha256=4c2ia5m6KHQo4xU_kl-eQxfm22oiXOCiVYSqV3_vBLk,96
|
436
449
|
wandb/sync/sync.py,sha256=dQjyo_FEKtZrhRPyQASvQpm5weVldzEZMZdr_y3G6oc,16174
|
437
450
|
wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -818,8 +831,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
|
|
818
831
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
|
819
832
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
|
820
833
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
|
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/METADATA,sha256=qm19tpiMFdQkDIVM5-x0ERqDuSNC_pAOatXyuDVxJqE,10289
|
835
|
+
wandb-0.19.8.dist-info/WHEEL,sha256=vGlXFq5Cg2SEc12yCQt0M53oxbuIdJrfMMMiwCzLXhI,93
|
836
|
+
wandb-0.19.8.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
837
|
+
wandb-0.19.8.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
|
838
|
+
wandb-0.19.8.dist-info/RECORD,,
|
@@ -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)
|