wandb 0.19.8__py3-none-win_amd64.whl → 0.19.9__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 +5 -1
- wandb/__init__.pyi +12 -8
- 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.exe +0 -0
- wandb/bin/wandb-core +0 -0
- 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 +4 -4
- 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 +4 -4
- 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 +4 -4
- 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 +70 -36
- wandb/sdk/artifacts/artifact_saver.py +16 -2
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +23 -2
- 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/{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 +2 -0
- 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/run_moment.py +4 -6
- wandb/sdk/lib/wb_logging.py +161 -0
- wandb/sdk/wandb_config.py +44 -43
- wandb/sdk/wandb_init.py +141 -79
- wandb/sdk/wandb_metadata.py +107 -91
- wandb/sdk/wandb_run.py +152 -44
- wandb/sdk/wandb_settings.py +403 -201
- wandb/sdk/wandb_setup.py +3 -1
- {wandb-0.19.8.dist-info → wandb-0.19.9.dist-info}/METADATA +3 -3
- {wandb-0.19.8.dist-info → wandb-0.19.9.dist-info}/RECORD +64 -60
- wandb/apis/public/_generated/base.py +0 -128
- /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.8.dist-info → wandb-0.19.9.dist-info}/WHEEL +0 -0
- {wandb-0.19.8.dist-info → wandb-0.19.9.dist-info}/entry_points.txt +0 -0
- {wandb-0.19.8.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
|
|
@@ -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,12 +1,12 @@
|
|
1
1
|
package_readme.md,sha256=XGlaq8rMFcoBb21rCr2d5qeSM79ZI4WslLmXqRimTGQ,4395
|
2
|
-
wandb/__init__.py,sha256=
|
3
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb/__init__.py,sha256=Z5GqKxIjlabQ1Um9qtKcj4Wka0TBel-YsNRL5lzBtXM,7397
|
3
|
+
wandb/__init__.pyi,sha256=DN57-yrZK_kgEi5h1Q5iJLfFyVn5UQrv-QX6mzNSbws,49362
|
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
7
|
wandb/data_types.py,sha256=DdCkf7Dh_j86Q74FWzh3M20EW_hzKpNagexjo03qv-A,2349
|
8
8
|
wandb/env.py,sha256=nUaSTP-JRAVnn5giLpdg1EMiisTb0-BMoEfV2mGCfKk,14259
|
9
|
-
wandb/jupyter.py,sha256=
|
9
|
+
wandb/jupyter.py,sha256=EDZORXJkkFDg_8AterlaVHNrmqhwasmFCq-Eg3uoO0Q,17868
|
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
|
@@ -14,6 +14,9 @@ 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
|
17
|
+
wandb/_pydantic/__init__.py,sha256=TWb35rZqmFIE9Wr58-GUBThCeIHN2ABFJR7G8zjSLu0,475
|
18
|
+
wandb/_pydantic/base.py,sha256=emgZhIAA690N8gOanW3Mx2AX4GOa5b5f3qzDGyz3bps,3511
|
19
|
+
wandb/_pydantic/v1_compat.py,sha256=yGabz8_9liEGmlyj1BoO_A2XHBtYx_tqzCaYHc8f8tA,9697
|
17
20
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
21
|
wandb/agents/pyagent.py,sha256=fjJdj54IjWcSeAAAnq2aXjPe-cCmsgCz4xzW3aMKPRk,13747
|
19
22
|
wandb/analytics/__init__.py,sha256=ntvkloUY6ZO8irNqA4xi06Q8IC_6pu1VB2_1EKORczc,53
|
@@ -22,7 +25,7 @@ wandb/apis/__init__.py,sha256=DNAnd_UEdahhjkTjWPlJoYNxJX026W3K0qGqkbpgYno,1386
|
|
22
25
|
wandb/apis/attrs.py,sha256=Ao5h3bycrUFbswNl6kVOEQLHZsImYP1aHIl4QaEVc8o,1496
|
23
26
|
wandb/apis/internal.py,sha256=9WOwabh2zA75oiV-SGlx4AcikqiraAs8QRq8ZvmQu1Y,7858
|
24
27
|
wandb/apis/normalize.py,sha256=28qsegprXG94fYNcaEayJsscIyodmoGt3EzHq01jJbU,2757
|
25
|
-
wandb/apis/paginator.py,sha256=
|
28
|
+
wandb/apis/paginator.py,sha256=i9BUaemiF9APnHVnTPYr6Mb2rPOl2KnhtDZrh7tN23Q,3675
|
26
29
|
wandb/apis/importers/__init__.py,sha256=GQCWmQEjSZ9eCUjlth3v9tQcjOJyjyEY7gC3BPN7Y88,39
|
27
30
|
wandb/apis/importers/mlflow.py,sha256=SFfBtAanxy0Hlph1BcnwKPeIvJcX8qCWS6IckfhlT0U,8510
|
28
31
|
wandb/apis/importers/validation.py,sha256=wPWHHE3rcwjVenX0c5J22hR1Xy89vJQs0K2C9v-qrJU,3298
|
@@ -31,35 +34,28 @@ wandb/apis/importers/internals/internal.py,sha256=0HPjKvOfRZwdLKKhn_rdVKI5BA3D2S
|
|
31
34
|
wandb/apis/importers/internals/protocols.py,sha256=PRnN66EtZPDtCiZomB_CtTtE0tMcebeG9aAK5OyDSGk,2988
|
32
35
|
wandb/apis/importers/internals/util.py,sha256=2bTcLqJjG7MWj6qVvmrmjP5VVkPLOSq9zr7zPM0Z_Pc,2161
|
33
36
|
wandb/apis/public/__init__.py,sha256=sVe4PFIojfDnw9mvVtQn1GHynb7UG7yIcPWrfNCoYP0,1104
|
34
|
-
wandb/apis/public/api.py,sha256=
|
35
|
-
wandb/apis/public/artifacts.py,sha256=
|
37
|
+
wandb/apis/public/api.py,sha256=nG3YRqPYcw1DO4IoNlxZtFbRLpmGKD7J1kRX5VjVOC8,58239
|
38
|
+
wandb/apis/public/artifacts.py,sha256=jFRcEeR6UxHS3PiLZSXC4wo4am1YHMRrMNyUX8XEstE,37027
|
36
39
|
wandb/apis/public/const.py,sha256=aK9Fcp1clmTHWj0C24fTRU3ecP5u91dPmp298kLiBdM,125
|
37
|
-
wandb/apis/public/files.py,sha256=
|
40
|
+
wandb/apis/public/files.py,sha256=_yKZ1dwD9DhxrTPPrCoQoceHKINUZR8Y5l8rRijhFa4,8760
|
38
41
|
wandb/apis/public/history.py,sha256=Dapg1I0CRm1NDzzP9gfTDrs4-K8b8zZHMgjIlpo5NA4,4785
|
39
42
|
wandb/apis/public/jobs.py,sha256=W1DKNqwE4A82lRgkjigLRiVrHw0goWE-RBUfYfGI57c,23025
|
40
|
-
wandb/apis/public/projects.py,sha256=
|
43
|
+
wandb/apis/public/projects.py,sha256=i-8YkFFwgBO0dFIZ6uixVWeDPRzDIgeLk2ZtFt4J_k4,4575
|
41
44
|
wandb/apis/public/query_generator.py,sha256=2rTLP6xBphyVb4gexvO_rz1iN-2c4LVzaUk0_rmKxTc,6143
|
42
45
|
wandb/apis/public/registries.py,sha256=1em3jt-K1-Kuc5WPme2T6CrhlDme42LVlgW9y08T5cY,18977
|
43
|
-
wandb/apis/public/reports.py,sha256=
|
44
|
-
wandb/apis/public/runs.py,sha256=
|
46
|
+
wandb/apis/public/reports.py,sha256=h2ypmcK9V655xUV8GjidKy6-HaNfzrsRtxakrDQZUnI,15760
|
47
|
+
wandb/apis/public/runs.py,sha256=qOi6yfcZ9m0iTahzl_RLCANXeMgJ3p2Z4lgKY8lR7d0,36371
|
45
48
|
wandb/apis/public/sweeps.py,sha256=qulkX50YqvJbvrISkOk5NqeqM8z-MnXdyFtV-V9luMI,6787
|
46
49
|
wandb/apis/public/teams.py,sha256=OZXEE6zcy8p_MVAAWx0wL7jpFvOmsiE6TozwIJm2SNI,5672
|
47
50
|
wandb/apis/public/users.py,sha256=cr_j9nBbJQyXg5TZ_heYPdC2dJICffyy4HMyTzAG-g0,3932
|
48
51
|
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
|
56
52
|
wandb/apis/reports/__init__.py,sha256=pKAM02nyHJV6DwGQuzAhSlqTOsCHKah1FlJIDERyY5U,33
|
57
53
|
wandb/apis/reports/v1/__init__.py,sha256=nxs3gJlbvVc0b_pV5DUypk1amMkRSq_M-xUw7qPTfwI,271
|
58
54
|
wandb/apis/reports/v2/__init__.py,sha256=vlF0ZRVHS-Qd7mBllcZri-gWE0TtjhiDSA6h5XPRVLU,271
|
59
55
|
wandb/apis/workspaces/__init__.py,sha256=XsF4ccNRUCTmI9ANjlrj_dYU1OcOi5N354Wg2Qkkaqo,273
|
60
56
|
wandb/beta/workflows.py,sha256=ENy_lmIyn3k_FHdD2ZO8HBaXdeoLrsPVbEfL_KYW8Ps,10527
|
61
|
-
wandb/bin/gpu_stats.exe,sha256=
|
62
|
-
wandb/bin/wandb-core,sha256=
|
57
|
+
wandb/bin/gpu_stats.exe,sha256=kwL_r8tmH_dglMjFe_RxGDyxkG6ux0f5Gw6P5gM1M98,8150016
|
58
|
+
wandb/bin/wandb-core,sha256=fffQNByjzW1JTgZnDct67Fjt7NNYUszG2SVCks2VWFA,48958976
|
63
59
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
60
|
wandb/cli/beta.py,sha256=_wbqhk6J2yjnNuVQAGlYbYZ9-j0sFE73zMIXVkQYlXA,5619
|
65
61
|
wandb/cli/cli.py,sha256=zlV94Al6XKNzUEklq8JcycPTXn8DJlko2ia7VAJ8s3A,95430
|
@@ -114,14 +110,14 @@ wandb/integration/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
114
110
|
wandb/integration/lightning/fabric/__init__.py,sha256=_KF_WmU4ynBy9WT8EVXZw0cwDtF2t1TQ_GzUDQLXeAg,97
|
115
111
|
wandb/integration/lightning/fabric/logger.py,sha256=d-vODZybasjWRWfxgea2zt8M8fX54sx1jWu3FuxB0iQ,28015
|
116
112
|
wandb/integration/metaflow/__init__.py,sha256=yoTkbO85zdlJwL5f8HmXXVVNDTcIPyYwuHNhysTzkv4,112
|
117
|
-
wandb/integration/metaflow/metaflow.py,sha256=
|
113
|
+
wandb/integration/metaflow/metaflow.py,sha256=tWJI2Lc6dWxvFDfFo1H-AyO_-K6oBbxNxxRoOYIZaN4,12197
|
118
114
|
wandb/integration/openai/__init__.py,sha256=negbYxbmhe4hA7Zl41FA5FnZ1JP6G6IYUTK4lS4YSqs,69
|
119
115
|
wandb/integration/openai/fine_tuning.py,sha256=k58OEjNRrHuiwCzmXRhNIb18Jz8QDjorv9_hZZC0r7s,19035
|
120
116
|
wandb/integration/openai/openai.py,sha256=43Lm8sk_VksyRf8g6TJqbNlTlwA3ujaZxF5wfhqtjQk,518
|
121
117
|
wandb/integration/openai/resolver.py,sha256=NqntihlyuiEqNYrpxnRMSVWdVPSAcQxFfJJwAXBkPCc,8404
|
122
118
|
wandb/integration/prodigy/__init__.py,sha256=yA8FAF3nqy5AnpzLYRCH3DNwmnXLYsJ55RY-G2m1kWg,69
|
123
119
|
wandb/integration/prodigy/prodigy.py,sha256=J0Ph6A2xYYxp1TD4wcJ5Kj2cuP6S6LyGHBEm-8B9aAo,11659
|
124
|
-
wandb/integration/sacred/__init__.py,sha256=
|
120
|
+
wandb/integration/sacred/__init__.py,sha256=aeWbqlJC1xtNSXqugRz7mGc309NpV6OyvzhVrz0Oko0,5868
|
125
121
|
wandb/integration/sagemaker/__init__.py,sha256=F2Aqw0rSH669L0vqH7CIVlgstTw-A_efSIhejd076Ho,374
|
126
122
|
wandb/integration/sagemaker/auth.py,sha256=WVnvD75h9iawlg9qpzhxlv6qB7QePpScT_SySkjSaKY,997
|
127
123
|
wandb/integration/sagemaker/config.py,sha256=oB7nuIHCVI9LhbNv2YEox_EFSE0ZJq1uVIQqnRGMvCY,1806
|
@@ -185,7 +181,7 @@ wandb/plot/utils.py,sha256=VcEpRjRT9VVyYAjKRIyZVHCwypgmKtsciAMdi-TIqe4,6986
|
|
185
181
|
wandb/plot/viz.py,sha256=aS-iWx4dzGs7rrI-xbantjGNey3zPiNrjDBsunUq7Wg,984
|
186
182
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
187
183
|
wandb/proto/wandb_base_pb2.py,sha256=ghevLr0QyHSMeS6QWyR9EbQC2L8wFLBNm97R_fbkYhk,317
|
188
|
-
wandb/proto/wandb_deprecated.py,sha256=
|
184
|
+
wandb/proto/wandb_deprecated.py,sha256=yPGQrT-61gEXn_Jc-1ravGAZ2-nVBvQyHeYvDelehdU,2112
|
189
185
|
wandb/proto/wandb_generate_deprecated.py,sha256=KqmlF-rOu3mvqn4DequWfueYyUxQH4ktGU_GF1xiKLQ,1032
|
190
186
|
wandb/proto/wandb_generate_proto.py,sha256=FJDGS38j8H6yZYqsy1-19RcdmvdnXT4XP3Eq4-1bxI8,1327
|
191
187
|
wandb/proto/wandb_internal_pb2.py,sha256=he7ajUeCki-mFVaFAE4JjmbQh-ZhWDK5AKGGAl7fbrw,558
|
@@ -194,48 +190,48 @@ wandb/proto/wandb_settings_pb2.py,sha256=Aq7nH9PsYXcPKFOPi0Oh2CAaCUpDoPfedycOleI
|
|
194
190
|
wandb/proto/wandb_telemetry_pb2.py,sha256=bNLhk5I9SDqNvzxi_anYorfvZjv8nG4cMZQvDS0BT9Q,332
|
195
191
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
196
192
|
wandb/proto/v3/wandb_base_pb2.py,sha256=zwma_gb3IOSfBJ1tvMIdmQtQQZLe29upb8Mqr4m9No4,2410
|
197
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
193
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=V9yhwzVHYfD_wNvNOPgdz6rSx1AFgT89kEuEFJx4VuY,118254
|
198
194
|
wandb/proto/v3/wandb_server_pb2.py,sha256=gjIGUr71bFP25WBV6UTtGQdS7jk_8HEasE1kw1anlyk,15742
|
199
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
200
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
195
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=Yt6OZd7IVut9Z6-vddW0JeGb4wG1MB0wnCDiKtifFCE,21319
|
196
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=L-cR9YgrOf26ebL0j4a2qRr0hW5sq8l0UGFd0GHyxro,14015
|
201
197
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
202
198
|
wandb/proto/v4/wandb_base_pb2.py,sha256=tl7f-74ItLSWCP_GDfAWm02sTEgUpWZGoP_vqEpvRE8,1452
|
203
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
199
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=LncKBsfl9K4Vxf0MyBY6uC0OwvACxoPaoYp4eLLXzsk,53775
|
204
200
|
wandb/proto/v4/wandb_server_pb2.py,sha256=Wo4FbkBik5cftjZDtlO80LIMRfJetOGOAxj5zy9jXdQ,7044
|
205
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
206
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
201
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=1S76Y_ISUt9Lrt7VuKD2bpexy-12UM9zGR2cjWeWJxg,17619
|
202
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=w4JZgXCz_Tylt7Zp4NFWU069xVqF2d2ZOJdjxvu_hkg,11397
|
207
203
|
wandb/proto/v5/wandb_base_pb2.py,sha256=ES3U80f2YCt-fwiqaIrz7BGHVywwx6ibEDAnlWpohig,1603
|
208
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
204
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=DmcLhgs58J5xD_6e16yTxq46O_znfgRXKeqy1W-G9nU,58123
|
209
205
|
wandb/proto/v5/wandb_server_pb2.py,sha256=Zkw2UopD20-C514TgqZ1P3NZTSLPTGjSVqihxcMpVoM,7603
|
210
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
211
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
206
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=QXqP8JIazPwA4Yp-8oKJEx0TwKPJyrqM0Lbtat9EDvU,17976
|
207
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=x9ZMYiTGBENMERRiAqwXsc6zbM7amSk0ZhQAwEdaimQ,11668
|
212
208
|
wandb/sdk/__init__.py,sha256=6lzqckLZUs7GpFZIwpgxGJwJDvhuyo-XCQnSrtZqE1c,850
|
213
209
|
wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
|
214
|
-
wandb/sdk/wandb_config.py,sha256=
|
210
|
+
wandb/sdk/wandb_config.py,sha256=lj7MnZkQPoGwylCdx3a9Uk8lCDKr1551HSHhzw4XHSI,11016
|
215
211
|
wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
|
216
|
-
wandb/sdk/wandb_init.py,sha256=
|
212
|
+
wandb/sdk/wandb_init.py,sha256=oMsZbhWt3H4dET2ZdbVW4ZZzCfnatXZ4nCA-zlKKy0w,62949
|
217
213
|
wandb/sdk/wandb_login.py,sha256=8DNW6gDrNkwoF71W7jsj_e2RGBSrT2xjuy7Zn0mQED8,11270
|
218
|
-
wandb/sdk/wandb_metadata.py,sha256=
|
214
|
+
wandb/sdk/wandb_metadata.py,sha256=ktAftXzvb8suZdW42FWrveCLu3X7LNxU7rQk4MZWXB0,21509
|
219
215
|
wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
|
220
216
|
wandb/sdk/wandb_require.py,sha256=zDdqyA6FPh1rUNFLQOmNBZtK8VZSKoVK4WyYa3bI3gU,3204
|
221
217
|
wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
|
222
|
-
wandb/sdk/wandb_run.py,sha256=
|
223
|
-
wandb/sdk/wandb_settings.py,sha256=
|
224
|
-
wandb/sdk/wandb_setup.py,sha256=
|
218
|
+
wandb/sdk/wandb_run.py,sha256=Q1k3360QRG9UprLLe3bnqyRSnN68Hd5x7A4egvp-l1E,160742
|
219
|
+
wandb/sdk/wandb_settings.py,sha256=enmtmqcBB-xgSxQ56452-gzO5KSU9D0YctMblhHW_RQ,65830
|
220
|
+
wandb/sdk/wandb_setup.py,sha256=bHr8VLQX3a318dQlaIu010dvzbNIvl5dnBmUngG8_tg,13414
|
225
221
|
wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
|
226
222
|
wandb/sdk/wandb_sweep.py,sha256=FhjfRmWS_Ffn7CwT9kjVAnvTJFnaB50mUwaGOLb2WrU,4147
|
227
223
|
wandb/sdk/wandb_sync.py,sha256=Bk1X5a2RgpdB24trwwW1fLC1sEKET87ySCH84T-kgf4,2177
|
228
224
|
wandb/sdk/wandb_watch.py,sha256=o3-DqwYJomujs25ZV9cur0UMDod-atsZd4PpDjDiWfU,4990
|
229
225
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
230
|
-
wandb/sdk/artifacts/_graphql_fragments.py,sha256=
|
231
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
232
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
226
|
+
wandb/sdk/artifacts/_graphql_fragments.py,sha256=BS2dE5pedL_yKLrtj-Own3S1YoEaFtc0ZYHMAu3Cq9I,3050
|
227
|
+
wandb/sdk/artifacts/_validators.py,sha256=BEJAvwANZUyT5C7gg9ok9K8fAi3VzcwVoeWUCV76piM,4338
|
228
|
+
wandb/sdk/artifacts/artifact.py,sha256=Wfz-25uuT9IYgV0fq7YlwMVdXPQSGCIeWUjq9oj0O3I,94918
|
233
229
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
|
234
230
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=SedT6WuFz04JHfLnDujl-kkyRehttOQnGLybN_hz-9Y,9993
|
235
231
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=Y86c2ph4Fz1p5mfTpWMEPh1VhRzi-OyLGswa-NQDuUw,518
|
236
232
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=2Ocn_6ANCt8pokJQ838q3l3EEl6hBOtxEILRNsxUxAo,2620
|
237
233
|
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=ktsG9sfTH3jscef_2JYmS-jwfuW6im69MS_rRZQKxrE,8604
|
238
|
-
wandb/sdk/artifacts/artifact_saver.py,sha256=
|
234
|
+
wandb/sdk/artifacts/artifact_saver.py,sha256=dIbngsbAEj0dQO0KrSRw3IVJ_tH_OTpxQjfAP4Tm2rI,9997
|
239
235
|
wandb/sdk/artifacts/artifact_state.py,sha256=4-89kUayoLpJ1EHQTnex_PEEh-Y2F8Aq5_yQ2il7Sao,247
|
240
236
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=5h2GzpVsw1uA3h3piuYr-qU4qcQZDAOz3X5QcSSxnfo,93
|
241
237
|
wandb/sdk/artifacts/exceptions.py,sha256=-WiH7Spw1hfJQtucXg6IGaZhUUMWrBjA8bHLTvTs7RY,2080
|
@@ -257,29 +253,29 @@ wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=MG23hcUM5zTW5
|
|
257
253
|
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=iQyrO3KUF1QjXH75x-VjuDh2rwoBSxcaOzLymIjoYSM,2626
|
258
254
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=G8quZY8-eynVVXmNBbiLGfUoI2P1rOE-LOmpzOwNJe0,230
|
259
255
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=azfof-H42vIuvndo9hvN4cZ3UXWG-nZcrFQ1QFL9oIc,50
|
260
|
-
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=
|
256
|
+
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=dFqsn-FdurDamvtBDbwuHo1ka0odogBLniDG0fr22Cc,15282
|
261
257
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
262
258
|
wandb/sdk/backend/backend.py,sha256=AyfjJgP6C8wzQUxpMxjjDtbdL1eoxdF93IkOEOU2EOY,8019
|
263
259
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
264
260
|
wandb/sdk/data_types/_dtypes.py,sha256=JYi0cqF2Lska0JF_gndyz-FfcS09Ozu735WIarU8HKo,31010
|
265
261
|
wandb/sdk/data_types/_private.py,sha256=vpatnpMcuWUtpSI-dY-YXs9zmffAgEXCoViIGS4yVT8,309
|
266
|
-
wandb/sdk/data_types/audio.py,sha256=
|
262
|
+
wandb/sdk/data_types/audio.py,sha256=zsbTpvb9Pf0yhgC4GG151Ir-5_grUzXDvXn6ejlnAOo,5468
|
267
263
|
wandb/sdk/data_types/bokeh.py,sha256=rbOgTQn_JUWkChT9Fs9CB8OplVBTNks73Z_5nU1hqsg,2604
|
268
264
|
wandb/sdk/data_types/graph.py,sha256=eHCo-Svlzvihf_nri_50rcD-NohqHuE80PR-otiueYQ,12494
|
269
265
|
wandb/sdk/data_types/histogram.py,sha256=Icb6ox2dXP_OjaXjU6rZzkk8AfRQevQE9BHdQiedELo,3239
|
270
266
|
wandb/sdk/data_types/html.py,sha256=slGKLHF9mbY0Ydx_9hapWNEJCKFnOkOzGvrp-kbZi9k,3619
|
271
|
-
wandb/sdk/data_types/image.py,sha256=
|
272
|
-
wandb/sdk/data_types/molecule.py,sha256=
|
273
|
-
wandb/sdk/data_types/object_3d.py,sha256=
|
267
|
+
wandb/sdk/data_types/image.py,sha256=4y1BwvM17jq31JjttlWzgCrjB8SZdtnp9UV1bNvet28,32655
|
268
|
+
wandb/sdk/data_types/molecule.py,sha256=Gdm4jSBJQ5HuGUIMsMhZa7uRDKlOdZU1cMnbBxOkzFI,8727
|
269
|
+
wandb/sdk/data_types/object_3d.py,sha256=QhqbJ0Cm_p1RCzqemO27GHJE_da_vxkq7pp7fWrTpEA,16473
|
274
270
|
wandb/sdk/data_types/plotly.py,sha256=UNYwRUUCODSyGvD3WEiF0p6jEseNfYiGnm8mD_tOoiI,2995
|
275
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
271
|
+
wandb/sdk/data_types/saved_model.py,sha256=5sOS3SNNsZqXufr21nR_EC_TZNjQAtJgyLxXewNdyEk,16644
|
276
272
|
wandb/sdk/data_types/table.py,sha256=K4wnoI7ZPpQaLSl_7rBeoj1AnRzN-hZaltKZXQ9GpJ0,45887
|
277
273
|
wandb/sdk/data_types/trace_tree.py,sha256=4pT5Gpn-ePe-_nRZk5mDnDb36qB5c5e6Vrz_EgHEPaA,15138
|
278
274
|
wandb/sdk/data_types/utils.py,sha256=m_OxURMP-eho92fzLU3s4UJYoxheBMDhflZzqG_8_eI,7857
|
279
|
-
wandb/sdk/data_types/video.py,sha256=
|
275
|
+
wandb/sdk/data_types/video.py,sha256=mmn_vdYC4RSMpFpu49NDpbQUvli_54VHag3-f6jDkBw,9508
|
280
276
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
281
277
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=idI3dNB1e348AefsQC1GNpVqYl2raWzJmDfl2ITL-_w,1608
|
282
|
-
wandb/sdk/data_types/base_types/media.py,sha256=
|
278
|
+
wandb/sdk/data_types/base_types/media.py,sha256=i3n5CpWTrQdkn2GG4aXHBy8jaiZlcu8mKL9lBEY9IZM,14851
|
283
279
|
wandb/sdk/data_types/base_types/wb_value.py,sha256=123pPwVfYLGSUIcqg1bOwArUOfK_KDt-4KdikYHdfNk,11742
|
284
280
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
285
281
|
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=_Lzxi2NmfAHSFeA4UupaBrT7Zvg-eNV3AfnbiZ6tJtA,13585
|
@@ -308,19 +304,26 @@ wandb/sdk/internal/file_stream.py,sha256=NE6KzWQMYoXBsUf6CMhC1FvmlZVZQ2b2ZGknNnk
|
|
308
304
|
wandb/sdk/internal/flow_control.py,sha256=QjrV_SOwgay5VYA9SqwYKkeKWjHmqF41TNHNHq75G2g,8848
|
309
305
|
wandb/sdk/internal/handler.py,sha256=kFl66omEnYRDEwbk20xHX5z3OpsGfGPGBC49XQPSWHk,35204
|
310
306
|
wandb/sdk/internal/internal.py,sha256=ueWF4YEqERzBBd_7Qvqq6FGfHXG5CdzJSzCGeYvQhro,12585
|
311
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
307
|
+
wandb/sdk/internal/internal_api.py,sha256=lOOiDM3WTI3ctXD289VuN0Muk0r1t0m3-0YrM0xaRYU,168401
|
312
308
|
wandb/sdk/internal/internal_util.py,sha256=715OQr0OiKGoSDQeHTFNgLvjh2cB06KwzY24n10mOcU,2652
|
313
309
|
wandb/sdk/internal/job_builder.py,sha256=7h3yQcyJiJNdFkxPkl4GWgyWGLTjDlj3kO-WbFD2ffs,23600
|
314
310
|
wandb/sdk/internal/profiler.py,sha256=QM5R8-0oWE7WhllhpPEAEwCyB6Uk62HATz8e2F5qIUk,2426
|
315
311
|
wandb/sdk/internal/progress.py,sha256=jZjltXC_0Fqn80l4ceT7pznmV_CzpeUeLS6nonwUWvg,2418
|
316
312
|
wandb/sdk/internal/run.py,sha256=rkEwqdaYPUh_oB-gdCnQ1JIpSHTMoOVadV9CJEgy-kA,707
|
317
313
|
wandb/sdk/internal/sample.py,sha256=tVNzrLatHr8P1kbVzw8bWhLpqZxx7zdm4fgv7rv2hO0,2540
|
318
|
-
wandb/sdk/internal/sender.py,sha256=
|
319
|
-
wandb/sdk/internal/sender_config.py,sha256=
|
320
|
-
wandb/sdk/internal/settings_static.py,sha256=
|
314
|
+
wandb/sdk/internal/sender.py,sha256=o92VOKHUxl1PbTfNmwwDjWjNhSJfdbKFsLQPGTkeHMM,66269
|
315
|
+
wandb/sdk/internal/sender_config.py,sha256=v0Imw9oNxaha2wvsSbmDjnlnDdGJ7ODOk2K9DTeqiZ4,6905
|
316
|
+
wandb/sdk/internal/settings_static.py,sha256=EtAN0OjTHu8wCM-wWaI1X6v0wDTW66PZEAmCPSzggqo,4405
|
321
317
|
wandb/sdk/internal/tb_watcher.py,sha256=KRIGZA8gF3guuZm1ioUo8Uy4iOX2OZ3I_MkDW_znh-k,19259
|
322
318
|
wandb/sdk/internal/thread_local_settings.py,sha256=f6uzjTa0d6twZ9aFHzdUlUqv3gy6AnbOZoWYm95DxKA,545
|
323
319
|
wandb/sdk/internal/writer.py,sha256=D2vQe-2yEfUuGwqYxMvu7iZgo3rpsjUxCgrH8YwNSeA,7471
|
320
|
+
wandb/sdk/internal/_generated/__init__.py,sha256=w4dmU4U0gMfBLGu8o8UPylYZyNxr3py7ELlJP5iHvPA,396
|
321
|
+
wandb/sdk/internal/_generated/base.py,sha256=T-CROMskxDjKW153_3uQKPq3fePkHJA7e48weoV3aBE,7667
|
322
|
+
wandb/sdk/internal/_generated/enums.py,sha256=n4NAp3Y6Cb0bOtRvpJ-v8tl37-pg5CBEZ7m8Wzg7THY,128
|
323
|
+
wandb/sdk/internal/_generated/input_types.py,sha256=n4NAp3Y6Cb0bOtRvpJ-v8tl37-pg5CBEZ7m8Wzg7THY,128
|
324
|
+
wandb/sdk/internal/_generated/operations.py,sha256=7OG1bWsH0hY8rYZBY-oLfLDwzznu3j-VjlL9aPV7Ims,260
|
325
|
+
wandb/sdk/internal/_generated/server_features_query.py,sha256=Wf5-7P8KnkTstcUET1LHpfEmnIkgGpGAp8oOb5n80tw,674
|
326
|
+
wandb/sdk/internal/_generated/typing_compat.py,sha256=9qEf0D5p5vm3cFUSuhw3QvnguG1uNG0ml9GaYSV6ztE,316
|
324
327
|
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
325
328
|
wandb/sdk/internal/system/env_probe_helpers.py,sha256=DBq4Gg6mTbqdjxUDHSOlcV0Ul_aFF-oOvhKqhzb1xWY,410
|
326
329
|
wandb/sdk/internal/system/system_info.py,sha256=ReWVaLqMteAMN4TYHyn1oT8PZnNgy4QmIyxtRkPhHGA,10322
|
@@ -391,7 +394,7 @@ wandb/sdk/launch/sweeps/scheduler.py,sha256=f_HuxouNMI7eFZDO1Muocd3LZHiiiQ6S5-N3
|
|
391
394
|
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=0iZPUWcChhtXC2IQWxUVAAlE6eT2ogoNsTeIinmSCxw,3077
|
392
395
|
wandb/sdk/launch/sweeps/utils.py,sha256=MJCKDZY7SQ2Wrv1EWUCFo1YflMkuJAYIZFAswP0VCDw,10153
|
393
396
|
wandb/sdk/lib/__init__.py,sha256=_sOt85qPxtPyM_LaN0IE6dO1CImzwXJXzVHC7R24VBE,188
|
394
|
-
wandb/sdk/lib/apikey.py,sha256=
|
397
|
+
wandb/sdk/lib/apikey.py,sha256=40tAdpURSYgxFAmgsoBIe6x-ix0pjPrT0ka-qpJ1zGA,10760
|
395
398
|
wandb/sdk/lib/asyncio_compat.py,sha256=Uj_MBrkn9H0MfhSBlViTZZIfs1RIAN1jy_Y5f3Ly0Wo,6794
|
396
399
|
wandb/sdk/lib/capped_dict.py,sha256=HuFhPHl0e_pK6ETDxYh5RIPO-46I3EjXgzFdqbJTXDs,846
|
397
400
|
wandb/sdk/lib/config_util.py,sha256=KaSu8CSO1XFHJRBwo-OW0r802isltB3cFO3U1LeM-ec,3018
|
@@ -421,7 +424,7 @@ wandb/sdk/lib/progress.py,sha256=pGGLYwWEYEjeVR2BkZdEc2l1pYSkaTD1_YNr5k4rRgw,109
|
|
421
424
|
wandb/sdk/lib/proto_util.py,sha256=YaGg9FoKtWmgQD8SkkKN630gyG93WoYY5JHqwdWaQKg,2984
|
422
425
|
wandb/sdk/lib/redirect.py,sha256=X_i66U0pgu-yIZ5yFrLImYlEAwoH8zWC2k8Z1VDhnIs,28120
|
423
426
|
wandb/sdk/lib/retry.py,sha256=LwZZTfhHBexX21FCcHo7AShA-5i7sJg78vIpcTXMAVE,10465
|
424
|
-
wandb/sdk/lib/run_moment.py,sha256=
|
427
|
+
wandb/sdk/lib/run_moment.py,sha256=ucyrtSaudHHFLrJCQl7r230UnvUU1gsArIu3iAj0T6k,2503
|
425
428
|
wandb/sdk/lib/runid.py,sha256=rHYRTjJu8gTZ6Aoo0WZ5jQfAtNLXQo6aY6PD-i3Fh6I,404
|
426
429
|
wandb/sdk/lib/server.py,sha256=f8idM8TiJKS1nYTjijhVkzOTp8e2flNpLUWcZ2K08f0,1681
|
427
430
|
wandb/sdk/lib/service_connection.py,sha256=RBTU6oZx_8V7vQVmoCvIssCX6pHDJ-YwAU9TjygPur4,7691
|
@@ -431,6 +434,7 @@ wandb/sdk/lib/sparkline.py,sha256=CivfHHGPrbnnacpfjsoYUrCtX6Xz7AHoybEeOuWeEI0,14
|
|
431
434
|
wandb/sdk/lib/telemetry.py,sha256=25ZdppATjPlRR2uTh_lLUgXVCAFS49hT8ArSYAWCN3g,2854
|
432
435
|
wandb/sdk/lib/timed_input.py,sha256=XF03SXTQj0AysHiIV-LKtbwxtSUx0E7xts7zDPs9kJQ,3362
|
433
436
|
wandb/sdk/lib/timer.py,sha256=Ar1t8f3OFAA4PB2fB2MT9D41y3g2Or56wSAYezvdXqo,459
|
437
|
+
wandb/sdk/lib/wb_logging.py,sha256=riPp_MSnb57YCcdCGoroCpyC1olAkIGxZge0llyVJOA,5000
|
434
438
|
wandb/sdk/mailbox/__init__.py,sha256=0gYfvSzPYluoQOQzT3j2AQoE4R4gPU2FCXBYcEMJOP8,879
|
435
439
|
wandb/sdk/mailbox/mailbox.py,sha256=94heh_4IaPRYviea26hT-NFk7vhFOhZITG1stTe2LRs,4449
|
436
440
|
wandb/sdk/mailbox/mailbox_handle.py,sha256=WL_fy3aSgNLxI7NdXdao5OWfSpwC6UQUTrZYP554xLY,3870
|
@@ -831,8 +835,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
|
|
831
835
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
|
832
836
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
|
833
837
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
|
834
|
-
wandb-0.19.
|
835
|
-
wandb-0.19.
|
836
|
-
wandb-0.19.
|
837
|
-
wandb-0.19.
|
838
|
-
wandb-0.19.
|
838
|
+
wandb-0.19.9.dist-info/METADATA,sha256=v7khagHi3wRSTpI-H4YhFEoi7ifJxEzHv3QOE1CGPwI,10258
|
839
|
+
wandb-0.19.9.dist-info/WHEEL,sha256=vGlXFq5Cg2SEc12yCQt0M53oxbuIdJrfMMMiwCzLXhI,93
|
840
|
+
wandb-0.19.9.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
841
|
+
wandb-0.19.9.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
|
842
|
+
wandb-0.19.9.dist-info/RECORD,,
|
@@ -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
|
-
]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|