wandb 0.19.8__py3-none-macosx_11_0_arm64.whl → 0.19.10__py3-none-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wandb/__init__.py +5 -1
- wandb/__init__.pyi +15 -8
- wandb/_pydantic/__init__.py +30 -0
- wandb/_pydantic/base.py +148 -0
- wandb/_pydantic/utils.py +66 -0
- wandb/_pydantic/v1_compat.py +284 -0
- wandb/apis/paginator.py +82 -38
- wandb/apis/public/__init__.py +2 -2
- wandb/apis/public/api.py +111 -53
- wandb/apis/public/artifacts.py +387 -639
- wandb/apis/public/automations.py +69 -0
- wandb/apis/public/files.py +2 -2
- wandb/apis/public/integrations.py +168 -0
- wandb/apis/public/projects.py +32 -2
- wandb/apis/public/reports.py +2 -2
- wandb/apis/public/runs.py +19 -11
- wandb/apis/public/utils.py +107 -1
- wandb/automations/__init__.py +81 -0
- wandb/automations/_filters/__init__.py +40 -0
- wandb/automations/_filters/expressions.py +179 -0
- wandb/automations/_filters/operators.py +267 -0
- wandb/automations/_filters/run_metrics.py +183 -0
- wandb/automations/_generated/__init__.py +184 -0
- wandb/automations/_generated/create_filter_trigger.py +21 -0
- wandb/automations/_generated/create_generic_webhook_integration.py +43 -0
- wandb/automations/_generated/delete_trigger.py +19 -0
- wandb/automations/_generated/enums.py +33 -0
- wandb/automations/_generated/fragments.py +343 -0
- wandb/automations/_generated/generic_webhook_integrations_by_entity.py +22 -0
- wandb/automations/_generated/get_triggers.py +24 -0
- wandb/automations/_generated/get_triggers_by_entity.py +24 -0
- wandb/automations/_generated/input_types.py +104 -0
- wandb/automations/_generated/integrations_by_entity.py +22 -0
- wandb/automations/_generated/operations.py +710 -0
- wandb/automations/_generated/slack_integrations_by_entity.py +22 -0
- wandb/automations/_generated/update_filter_trigger.py +21 -0
- wandb/automations/_utils.py +123 -0
- wandb/automations/_validators.py +73 -0
- wandb/automations/actions.py +205 -0
- wandb/automations/automations.py +109 -0
- wandb/automations/events.py +235 -0
- wandb/automations/integrations.py +26 -0
- wandb/automations/scopes.py +76 -0
- wandb/beta/workflows.py +9 -10
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +3 -3
- wandb/integration/keras/keras.py +2 -1
- wandb/integration/langchain/wandb_tracer.py +2 -1
- wandb/integration/metaflow/metaflow.py +19 -17
- wandb/integration/sacred/__init__.py +1 -1
- wandb/jupyter.py +155 -133
- wandb/old/summary.py +0 -2
- wandb/proto/v3/wandb_internal_pb2.py +297 -292
- 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 +292 -292
- 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 +292 -292
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v6/wandb_base_pb2.py +41 -0
- wandb/proto/v6/wandb_internal_pb2.py +393 -0
- wandb/proto/v6/wandb_server_pb2.py +78 -0
- wandb/proto/v6/wandb_settings_pb2.py +58 -0
- wandb/proto/v6/wandb_telemetry_pb2.py +52 -0
- wandb/proto/wandb_base_pb2.py +2 -0
- wandb/proto/wandb_deprecated.py +10 -0
- wandb/proto/wandb_internal_pb2.py +3 -1
- wandb/proto/wandb_server_pb2.py +2 -0
- wandb/proto/wandb_settings_pb2.py +2 -0
- wandb/proto/wandb_telemetry_pb2.py +2 -0
- wandb/sdk/artifacts/_generated/__init__.py +248 -0
- wandb/sdk/artifacts/_generated/artifact_collection_membership_files.py +43 -0
- wandb/sdk/artifacts/_generated/artifact_version_files.py +36 -0
- wandb/sdk/artifacts/_generated/create_artifact_collection_tag_assignments.py +36 -0
- wandb/sdk/artifacts/_generated/delete_artifact_collection_tag_assignments.py +25 -0
- wandb/sdk/artifacts/_generated/delete_artifact_portfolio.py +35 -0
- wandb/sdk/artifacts/_generated/delete_artifact_sequence.py +35 -0
- wandb/sdk/artifacts/_generated/enums.py +17 -0
- wandb/sdk/artifacts/_generated/fragments.py +186 -0
- wandb/sdk/artifacts/_generated/input_types.py +16 -0
- wandb/sdk/artifacts/_generated/move_artifact_collection.py +35 -0
- wandb/sdk/artifacts/_generated/operations.py +510 -0
- wandb/sdk/artifacts/_generated/project_artifact_collection.py +101 -0
- wandb/sdk/artifacts/_generated/project_artifact_collections.py +33 -0
- wandb/sdk/artifacts/_generated/project_artifact_type.py +24 -0
- wandb/sdk/artifacts/_generated/project_artifact_types.py +24 -0
- wandb/sdk/artifacts/_generated/project_artifacts.py +42 -0
- wandb/sdk/artifacts/_generated/run_input_artifacts.py +51 -0
- wandb/sdk/artifacts/_generated/run_output_artifacts.py +51 -0
- wandb/sdk/artifacts/_generated/update_artifact_portfolio.py +35 -0
- wandb/sdk/artifacts/_generated/update_artifact_sequence.py +35 -0
- wandb/sdk/artifacts/_graphql_fragments.py +56 -81
- wandb/sdk/artifacts/_validators.py +1 -0
- wandb/sdk/artifacts/artifact.py +110 -49
- wandb/sdk/artifacts/artifact_manifest_entry.py +2 -1
- wandb/sdk/artifacts/artifact_saver.py +16 -2
- wandb/sdk/artifacts/storage_handlers/azure_handler.py +1 -0
- 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 +13 -7
- wandb/sdk/data_types/base_types/wb_value.py +34 -11
- wandb/sdk/data_types/html.py +36 -9
- wandb/sdk/data_types/image.py +56 -37
- 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/table.py +5 -0
- wandb/sdk/data_types/trace_tree.py +2 -0
- wandb/sdk/data_types/utils.py +1 -1
- wandb/sdk/data_types/video.py +15 -30
- wandb/sdk/interface/interface.py +2 -0
- wandb/{apis/public → sdk/internal}/_generated/__init__.py +0 -6
- wandb/{apis/public → sdk/internal}/_generated/server_features_query.py +3 -3
- wandb/sdk/internal/internal_api.py +138 -47
- wandb/sdk/internal/profiler.py +6 -5
- wandb/sdk/internal/run.py +13 -6
- 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 +40 -20
- wandb/sdk/lib/asyncio_compat.py +1 -1
- wandb/sdk/lib/deprecate.py +13 -22
- wandb/sdk/lib/disabled.py +2 -1
- wandb/sdk/lib/printer.py +37 -8
- wandb/sdk/lib/printer_asyncio.py +46 -0
- wandb/sdk/lib/redirect.py +10 -5
- wandb/sdk/lib/run_moment.py +4 -6
- wandb/sdk/lib/wb_logging.py +161 -0
- wandb/sdk/service/server_sock.py +19 -14
- wandb/sdk/service/service.py +9 -7
- wandb/sdk/service/streams.py +5 -0
- wandb/sdk/verify/verify.py +6 -3
- wandb/sdk/wandb_config.py +44 -43
- wandb/sdk/wandb_init.py +323 -141
- wandb/sdk/wandb_login.py +13 -4
- wandb/sdk/wandb_metadata.py +107 -91
- wandb/sdk/wandb_run.py +529 -325
- wandb/sdk/wandb_settings.py +422 -202
- wandb/sdk/wandb_setup.py +52 -1
- wandb/util.py +29 -29
- {wandb-0.19.8.dist-info → wandb-0.19.10.dist-info}/METADATA +7 -7
- {wandb-0.19.8.dist-info → wandb-0.19.10.dist-info}/RECORD +151 -94
- wandb/_globals.py +0 -19
- wandb/apis/public/_generated/base.py +0 -128
- wandb/apis/public/_generated/typing_compat.py +0 -14
- /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.10.dist-info}/WHEEL +0 -0
- {wandb-0.19.8.dist-info → wandb-0.19.10.dist-info}/entry_points.txt +0 -0
- {wandb-0.19.8.dist-info → wandb-0.19.10.dist-info}/licenses/LICENSE +0 -0
@@ -1,16 +1,15 @@
|
|
1
1
|
package_readme.md,sha256=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
|
2
|
-
wandb-0.19.
|
3
|
-
wandb-0.19.
|
4
|
-
wandb-0.19.
|
5
|
-
wandb-0.19.
|
6
|
-
wandb-0.19.
|
2
|
+
wandb-0.19.10.dist-info/RECORD,,
|
3
|
+
wandb-0.19.10.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
|
4
|
+
wandb-0.19.10.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
5
|
+
wandb-0.19.10.dist-info/METADATA,sha256=4Lv9MLwm1Dx6S-YUfWC-DCBYHveMNibEzdOO486G1MM,10259
|
6
|
+
wandb-0.19.10.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
7
7
|
wandb/env.py,sha256=NtyTiZbU3xrpNiISvrTVO5SDBXVqHl58wmrhpB4MCSA,13736
|
8
|
-
wandb/__init__.pyi,sha256=
|
9
|
-
wandb/
|
10
|
-
wandb/util.py,sha256=tlaNaz9W6r2T0bs0-KVDcuSPE1PiZ7642GjCjAx8Mvw,63525
|
8
|
+
wandb/__init__.pyi,sha256=_IgSAtjD_xCCrwaOK4RNG68ea9-M9jLuHwTnTl2olik,48256
|
9
|
+
wandb/util.py,sha256=hfxUvseqkc177t27D0iaGr_GkkAi8JzdIPDGxI5Oxe8,63681
|
11
10
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
12
11
|
wandb/_iterutils.py,sha256=bOhOrOENEDzOMtyQqHysivzHri9axcVlCfXt4Ai1ot8,1545
|
13
|
-
wandb/__init__.py,sha256=
|
12
|
+
wandb/__init__.py,sha256=Od_wBADjhjHQSaY17SZAssmf6PHrXfgqilxMHxdzsEM,7148
|
14
13
|
wandb/data_types.py,sha256=M-wqAO0FtIqvj28556u3h4nzSwlRcbxhXoX0B9jlJSo,2283
|
15
14
|
wandb/wandb_controller.py,sha256=SksJdgwn14PpnUoIaBjJ9Ki4Nksl9BpQGGn42hT0xZg,24936
|
16
15
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -18,8 +17,8 @@ wandb/wandb_agent.py,sha256=0TKjcJ8jxEqaXMrs_dIflXfWFFOaulfSjzp_fpYiXD0,20985
|
|
18
17
|
wandb/sklearn.py,sha256=hbPkefhS39A1RRymn0nHZZmKM2TrOd4xjlkthTZe9pY,803
|
19
18
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
20
19
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
21
|
-
wandb/jupyter.py,sha256=
|
22
|
-
wandb/beta/workflows.py,sha256=
|
20
|
+
wandb/jupyter.py,sha256=dMCV2TVomJeHhbhEZTHZbxsxuGHXYGkOveK_3IbXju8,17451
|
21
|
+
wandb/beta/workflows.py,sha256=OW_e6_AYuNRxmSkKvv8xEjLHdCdqldApjWJSbk4-QG4,10394
|
23
22
|
wandb/docker/auth.py,sha256=Tr-BMoiMJjX8TsdUquVBBLyfxEJWR4WQZGyz6vBaJk0,15009
|
24
23
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
25
24
|
wandb/docker/__init__.py,sha256=zaXUYlTQLBJo8YlxbL3kh0NBHqtXFHNg4-_TNV_WDBs,10594
|
@@ -27,7 +26,7 @@ wandb/docker/www_authenticate.py,sha256=eQd0ap8LpZkS9ImRn2gdgl7gnHeKprdqjClrZOaC
|
|
27
26
|
wandb/apis/internal.py,sha256=Whl1x29iH_DdIu47vUVvDSyOavEVaovdmlqXmu4-yOw,7622
|
28
27
|
wandb/apis/normalize.py,sha256=mamR8PquPZU7YAVNP1k_Q941l7FRwEoQhJhTH3SgSJQ,2676
|
29
28
|
wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
|
30
|
-
wandb/apis/paginator.py,sha256=
|
29
|
+
wandb/apis/paginator.py,sha256=ZxG7oJkw5DPjN9u-GAFS_kBokmUiIW21QLH8SMVQ8YI,3550
|
31
30
|
wandb/apis/attrs.py,sha256=MRle0pRB8QGV31MRjVfqE7l8XJOA04FFKCtOOuDt0xE,1445
|
32
31
|
wandb/apis/importers/mlflow.py,sha256=uoxzm3bSOqjQyUkgOBwuzpaBjTdGp4drPaqE9f7Ny5w,8256
|
33
32
|
wandb/apis/importers/wandb.py,sha256=u1zRAEYkPfrDSD5V2_RAuRlNnvDaBZa1ByvZ5O7mQUU,54451
|
@@ -37,29 +36,24 @@ wandb/apis/importers/internals/internal.py,sha256=hJAe3iYTU1uM3MJ5KLm7e4XLMzx5EI
|
|
37
36
|
wandb/apis/importers/internals/protocols.py,sha256=shZBD2bRMo81xPSUQdK2d9KK8qpop4CmMkizg8FI3WM,2885
|
38
37
|
wandb/apis/importers/internals/util.py,sha256=HvphFwhSxuYqg0omNhfP1GwZV6UzZN-m85CNaSUZXQs,2083
|
39
38
|
wandb/apis/workspaces/__init__.py,sha256=buvqtqELpCFWC7sHzEuslJgx24ZWDj-5lo2mdV6aHdg,265
|
40
|
-
wandb/apis/public/files.py,sha256=
|
39
|
+
wandb/apis/public/files.py,sha256=sQNGU18jmcpc6XccK5-jUXFhnqjOJgu9-fFljsTfg4Y,8497
|
41
40
|
wandb/apis/public/users.py,sha256=nbguWN0QJWvhsmgVx6IrkLYbjJcyI-eJQAUVaoY5Qjc,3796
|
42
41
|
wandb/apis/public/query_generator.py,sha256=WfyaQuBcTHEECOJ2zN_0iqkUufki9MX28fj3axYZCLU,5977
|
43
42
|
wandb/apis/public/teams.py,sha256=YJAsJLRVM5r6UT48tdGGVA2V_f7nayDe5Q5NRTFQ8m4,5474
|
44
|
-
wandb/apis/public/__init__.py,sha256=
|
43
|
+
wandb/apis/public/__init__.py,sha256=g2wkjZ7105t-a8XBvZ7k5fPGk4kaZX4ZbN7yuBPgNVY,1147
|
45
44
|
wandb/apis/public/jobs.py,sha256=Ewwh-KK2mNoOXIz3p4Q1fMoWqAkGDl1vGbTBZIkOxPc,22372
|
46
|
-
wandb/apis/public/api.py,sha256=
|
47
|
-
wandb/apis/public/utils.py,sha256=
|
48
|
-
wandb/apis/public/
|
45
|
+
wandb/apis/public/api.py,sha256=cga1hj9ydfp-GxXIs-rPTj4z7sz-FvoZa5wsVvPc5a0,60976
|
46
|
+
wandb/apis/public/utils.py,sha256=62ux6zpRpVug_y-_PaHUSOkPcHMTNFknAPqcINJSHFg,7893
|
47
|
+
wandb/apis/public/automations.py,sha256=SHiYhNGt-MBING1xe3IKoGbVUN6twN6mxvXP0pd4n4o,2334
|
48
|
+
wandb/apis/public/reports.py,sha256=DR_Kw3dznuy1UeaiJ_ENLbimV1j1kSerYr_vqoPtWNY,15302
|
49
49
|
wandb/apis/public/sweeps.py,sha256=FYWvA-h-xqCnZ8PYXRwOEvRHgl3BS0RhuZpTftIMNrc,6547
|
50
|
-
wandb/apis/public/artifacts.py,sha256=
|
51
|
-
wandb/apis/public/projects.py,sha256=
|
52
|
-
wandb/apis/public/runs.py,sha256=
|
50
|
+
wandb/apis/public/artifacts.py,sha256=4GCI5quQwZlzlYD04k1Oi8taxEkp3Uouin4O82UDpHo,26371
|
51
|
+
wandb/apis/public/projects.py,sha256=IkXLJYno-yni-MP6dzSeztV8fBmX2vdRvb6PjiIJPgs,5475
|
52
|
+
wandb/apis/public/runs.py,sha256=0RIX-HChtT5yug-AeilTnmnadE6rqjROCW9gBkya3pI,35356
|
53
|
+
wandb/apis/public/integrations.py,sha256=vlHal-t3jrPR5lC6XfXle-zBSVeZ4vpZ_6cQ6MxOTRs,6263
|
53
54
|
wandb/apis/public/registries.py,sha256=CaL1vD2dH74aMu916vVfgqSsKFsQWMVZf5jNfXiboa0,18404
|
54
55
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
55
56
|
wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
|
56
|
-
wandb/apis/public/_generated/typing_compat.py,sha256=qV4yFJH1utKxh-vl-U3JhPHyRSqxZ8d8niMSBF5K370,303
|
57
|
-
wandb/apis/public/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
58
|
-
wandb/apis/public/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
59
|
-
wandb/apis/public/_generated/__init__.py,sha256=m19wAWXw_4qFC1pNaJPp1XBngTOjCab-4Eds3YmDT3U,528
|
60
|
-
wandb/apis/public/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
|
61
|
-
wandb/apis/public/_generated/server_features_query.py,sha256=VcqMZTC-_Xq9nhVUv5TD_na6O4PzuDPA2YK6lREOQmM,641
|
62
|
-
wandb/apis/public/_generated/base.py,sha256=zaD3C8aYH-WNw5pL1d-UarEm0NjmEW7lYF2eMraHFpk,4017
|
63
57
|
wandb/apis/reports/__init__.py,sha256=5ZkKvOqwks3UmVeaPuwIZYwyV8_afsGbtybDOXYjSsg,32
|
64
58
|
wandb/apis/reports/v1/__init__.py,sha256=L5l1BqMaap-w5wXCzn8pC8RXB7_72MsjTx8HeLuC3XU,263
|
65
59
|
wandb/apis/reports/v2/__init__.py,sha256=jdLiTqf5QIRxnWH8drWV9Y06bZEhI5N6uGGSKAT7tv0,263
|
@@ -76,37 +70,42 @@ wandb/plot/bar.py,sha256=4mGxyMrnAZnaJekldYm9oHqEd1dcyWd1LE2UYKjPyok,2164
|
|
76
70
|
wandb/plot/viz.py,sha256=ni1MTkt3k1TxSqArdIR_sVcD1cV0j9eKmJdX0QlBcOM,943
|
77
71
|
wandb/plot/confusion_matrix.py,sha256=C8PuEEhvBn_tpOQlAR_1WMIBnbCmfOFpt3zZ-TzcHtw,6698
|
78
72
|
wandb/proto/wandb_generate_deprecated.py,sha256=Iyf7PwIL_2B7XohrckYLbjjT09lccwbqknxtWelJpJM,1002
|
79
|
-
wandb/proto/wandb_settings_pb2.py,sha256=
|
80
|
-
wandb/proto/wandb_server_pb2.py,sha256=
|
81
|
-
wandb/proto/wandb_base_pb2.py,sha256=
|
82
|
-
wandb/proto/wandb_internal_pb2.py,sha256=
|
73
|
+
wandb/proto/wandb_settings_pb2.py,sha256=Wba7SDYTKy-Sm2sYrTmqwYH6sBvdD9ogE1i87lt_85A,401
|
74
|
+
wandb/proto/wandb_server_pb2.py,sha256=82Cf27PnDjHbkQT_-ZPjQyI0AVYd9YWoAlABrGPD-xo,393
|
75
|
+
wandb/proto/wandb_base_pb2.py,sha256=h09-9fMDbMC82T3jWHzmh8MB8llZ9o9za0uBOF_bL_s,385
|
76
|
+
wandb/proto/wandb_internal_pb2.py,sha256=hTpbURqJyoNcwHD7o3k0ofmKgZdmKEYUm9sBqLHa5iA,628
|
83
77
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
84
78
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
85
|
-
wandb/proto/wandb_deprecated.py,sha256=
|
86
|
-
wandb/proto/wandb_telemetry_pb2.py,sha256=
|
87
|
-
wandb/proto/
|
79
|
+
wandb/proto/wandb_deprecated.py,sha256=tDtsCavTqZKjCPEQpFGRzhvPpW9Tgv7HFiu8swmNAvc,2422
|
80
|
+
wandb/proto/wandb_telemetry_pb2.py,sha256=Y9uzA6O9yUJ3HKqYOi86hg-mZ49NtSzQ_XRFSCONolA,405
|
81
|
+
wandb/proto/v6/wandb_settings_pb2.py,sha256=iS9x5B-cUOEehHQpaThIxI5-yRvS7K0QVsaTdyC9e5k,18281
|
82
|
+
wandb/proto/v6/wandb_server_pb2.py,sha256=jH4AJat2sz9hR88er6D4yb-6bNLY5nPW5oX5CuHjBLc,7786
|
83
|
+
wandb/proto/v6/wandb_base_pb2.py,sha256=5NJU1W7zgKLIsKL5brRoOL4HcLOxWieIKlWEe1IM0_g,1821
|
84
|
+
wandb/proto/v6/wandb_internal_pb2.py,sha256=ooo4Vn5XLTv00iJD9-XANTTJUHNOTk8xPAeimQ6r81U,58096
|
85
|
+
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=vJHyGNIzupJwdDUxg6LnpBc-bGSjOE34dA5aYV4HVFs,12126
|
86
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=U6UXB3be65DEzCmXASG_lNU6JiQScsbp6bgMqF3wWzg,18028
|
88
87
|
wandb/proto/v5/wandb_server_pb2.py,sha256=f55mk3Z77xUnq_tAbTd_Q75CiOJz6ppPbZT7CoeF7-I,7535
|
89
88
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
90
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
91
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
92
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
89
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=5_2vUaUY0_hX-bD8S7Dz4Pfmy419a21ql3dJb-gCQsI,57843
|
90
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=acn_XBHWmv813oFojPqPhe4YiIhb_povERGvPfH9QK8,11872
|
91
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=zdM6a_oxeEj4JsdlfSrrBEt-nseG9v-EKZNhlYUmp64,17672
|
93
92
|
wandb/proto/v4/wandb_server_pb2.py,sha256=NiG6Xv9CDvxc8v8NmnM237jyYqMuRyE_nqmLAMZVdI8,6977
|
94
93
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
95
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
94
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=WlQIsGMLYhc1SIdTKq29MDIOs4Ov1bC9TVEobTv36bQ,53496
|
96
95
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
98
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
96
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=8y3cukH-S3_cADQcvYAr-6fpMRpC68KextsWXDbApMc,11602
|
97
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=m1DklMA8QFSSpy7brcn8wbAl8KFUpLT1JGWs1p7Get8,21297
|
99
98
|
wandb/proto/v3/wandb_server_pb2.py,sha256=LQCUmuy0NFDo20N9uCUiE5VPyhP5r929WKtniae4CdQ,15514
|
100
99
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
101
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
100
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=Ph7mEcZbRkv3gol2zGDJvF1qC3resDSICF8LvdUWJ-k,116668
|
102
101
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
103
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
104
|
-
wandb/bin/wandb-core,sha256=
|
105
|
-
wandb/bin/gpu_stats,sha256=
|
102
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=GKa7hVNsyoGBSyQIkXURy5LLYc-7W9yRPVwnz8e8k_Q,14155
|
103
|
+
wandb/bin/wandb-core,sha256=unEpVRDtEKcWk9465Ym9lhpGJvReA5j7rnfKQ2breUw,48451522
|
104
|
+
wandb/bin/gpu_stats,sha256=nFIFuIOLHOujURI5GiXzbJGi7XDPO2ue-iLH2QqvMpA,9201920
|
106
105
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
106
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
108
107
|
wandb/integration/yolov8/yolov8.py,sha256=srryantZqO65pj1x52MiKD5m2SzdQc4nIsj4o1GPK8o,11371
|
109
|
-
wandb/integration/keras/keras.py,sha256=
|
108
|
+
wandb/integration/keras/keras.py,sha256=a05YwRYpf5164jKAxWg1t7Iy47XQX6Fn-hrxmEgxTnc,44192
|
110
109
|
wandb/integration/keras/__init__.py,sha256=8_vNA4cEbj1lg2pgMz-c5Iu1XJQtX9x5_vNGrv4NBdE,345
|
111
110
|
wandb/integration/keras/callbacks/tables_builder.py,sha256=01NGafVQJoJFvu6JmaLZsXIdmhYRkzY08KYyzOrxmEg,8881
|
112
111
|
wandb/integration/keras/callbacks/__init__.py,sha256=sY5AMC3x28iA815fqbqkkArtjctqG-m9N2D5FnyR0no,223
|
@@ -121,7 +120,7 @@ wandb/integration/cohere/cohere.py,sha256=CyALJXyLDnic6ZRc8I4UXmR7hYqtIOCi5Wav12
|
|
121
120
|
wandb/integration/sb3/sb3.py,sha256=3dAuO2DYOS_6B9TSHNsHBGvuRPQjFlqaPe5uPB9mRw8,4797
|
122
121
|
wandb/integration/sb3/__init__.py,sha256=w_VX7C6qAE1vK7xb24JchQtORxzfpXvl6YmZHUIskJM,60
|
123
122
|
wandb/integration/langchain/__init__.py,sha256=afRoYH4bPOw6Tyrn9YvuYHzbSae97iQT-Ufi0puJqNw,66
|
124
|
-
wandb/integration/langchain/wandb_tracer.py,sha256=
|
123
|
+
wandb/integration/langchain/wandb_tracer.py,sha256=uI24_cFAfFAHIPUUJBPw74hyk-Jcikx4utJyjGfIU2E,2259
|
125
124
|
wandb/integration/xgboost/__init__.py,sha256=Pwmii-OI64seJjfwM28cS4BdkEN2_Ms_qMGdwp3QRn8,343
|
126
125
|
wandb/integration/xgboost/xgboost.py,sha256=fAaoNixCOeUhxIqVTtrlu85oQu9jmx2aUCVp49oCDYo,6495
|
127
126
|
wandb/integration/diffusers/__init__.py,sha256=Rdenl4seOrFR1_LrKP9P2Sl9_JwGnD3BC5bgHSWXRgY,55
|
@@ -130,7 +129,7 @@ wandb/integration/diffusers/pipeline_resolver.py,sha256=AYnMDpSwjSdf0mno9y43tDCV
|
|
130
129
|
wandb/integration/diffusers/resolvers/multimodal.py,sha256=E9zG1iatfwTFqiyIvamV5DNGILCd2I_Boi413kKHqjM,30032
|
131
130
|
wandb/integration/diffusers/resolvers/__init__.py,sha256=07La9KIUpsOE3nNPnrcA4fESpmkeJFNhTI4FL8WPJ5k,201
|
132
131
|
wandb/integration/diffusers/resolvers/utils.py,sha256=30RyIDGzkVd_SAIbIy6WT0DYjhgcigJtMyIwHDvvqBI,3824
|
133
|
-
wandb/integration/sacred/__init__.py,sha256=
|
132
|
+
wandb/integration/sacred/__init__.py,sha256=Zzi-m0yRvtbyEgB0N67xSUAWZc1eYBz8Nni3e3OxcHg,5751
|
134
133
|
wandb/integration/kfp/wandb_logging.py,sha256=fYMImccQagOm6HB-dTV7O1LvH_1jJ-qrd7ngTUu7WVo,6167
|
135
134
|
wandb/integration/kfp/__init__.py,sha256=WhBhg3mQopGNDbWzGJ8Xyld8w3FAAvmP1G1Wtv_QaC0,136
|
136
135
|
wandb/integration/kfp/kfp_patch.py,sha256=CpjBa7xldINeVF7g09J54741e0aQAQYHBPLEXXjc8iI,13184
|
@@ -169,7 +168,7 @@ wandb/integration/huggingface/__init__.py,sha256=Ui-JiM_yel2YZuS9U_LyReL3mhBZZSI
|
|
169
168
|
wandb/integration/huggingface/huggingface.py,sha256=KYP0dCYERORLNE1Sk6jfp0krHF2BQ4q4qOlF-0H-vrI,443
|
170
169
|
wandb/integration/huggingface/resolver.py,sha256=Atc0vwdPar5yKzTcJF6Fu2i7h7a6TX0W9B2HdeToqrI,7858
|
171
170
|
wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
|
172
|
-
wandb/integration/metaflow/metaflow.py,sha256=
|
171
|
+
wandb/integration/metaflow/metaflow.py,sha256=E4EVeqpTHdDlqtlZz4sw8x4YEafxzeEBOmfBPPosQFQ,11814
|
173
172
|
wandb/integration/lightgbm/__init__.py,sha256=ztwqeaVneF_f6ngCd0UowwksnNopl1bhSQN9hAeyoyU,7981
|
174
173
|
wandb/integration/ultralytics/callback.py,sha256=RzX-iBEJJULfYSEke_jN_kJkXsBwqo6qpjuRDHp3W7c,21253
|
175
174
|
wandb/integration/ultralytics/pose_utils.py,sha256=oknJAy_eoyokJY1u03uk_MpR7kKrJIK4wSRBK5lJGyw,3709
|
@@ -192,29 +191,29 @@ wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
192
191
|
wandb/agents/pyagent.py,sha256=paZ04bMdruGEoApHHIBTJVJphK2I-ZHMNQ51nnR4ZZ4,13384
|
193
192
|
wandb/old/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
194
193
|
wandb/old/core.py,sha256=bIIFlU3_E2hvrVCzMQk1VcwJtxbadbAZwDC0qsF4C2g,1501
|
195
|
-
wandb/old/summary.py,sha256=
|
194
|
+
wandb/old/summary.py,sha256=FZrkTyycUy6MRY1n4q7713rlTV7h-CMr8_kNoeb-wzY,13856
|
196
195
|
wandb/old/settings.py,sha256=IrS10skC9gCTb8NgTWeRFgsTYL1bw36e-rG_xECk-yo,6374
|
197
196
|
wandb/cli/beta.py,sha256=Um35Q9CeoQPS80g0wryo2WtSaD7VA0XqF_YCQNDNiSY,5438
|
198
197
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
199
|
-
wandb/cli/cli.py,sha256=
|
198
|
+
wandb/cli/cli.py,sha256=7uYU19_-StslbQdt5R78kWMWK2vYoKiX7hwEDZe2g2Y,92607
|
200
199
|
wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
200
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
202
|
-
wandb/sdk/wandb_metadata.py,sha256=
|
203
|
-
wandb/sdk/wandb_config.py,sha256=
|
201
|
+
wandb/sdk/wandb_metadata.py,sha256=wnwKexZjJ7zRtAcfYbOZtaoK6rfVVU5oKDWT5-UerOk,20886
|
202
|
+
wandb/sdk/wandb_config.py,sha256=imPAYPMzP3rdhmYCK6zYWeZ1GbM7Jw5w7_PTJdoRmcc,10693
|
204
203
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
205
|
-
wandb/sdk/wandb_run.py,sha256=
|
204
|
+
wandb/sdk/wandb_run.py,sha256=Igw6HrFBq2y0TcX6gykAtLFYyQA03cbmIGnqRUUhwQo,156770
|
206
205
|
wandb/sdk/wandb_sync.py,sha256=GNC8xYqT56ws4aw6Vd_mV_Ck-InEbqnyioSqHIybDug,2106
|
207
206
|
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
208
|
-
wandb/sdk/wandb_init.py,sha256=
|
207
|
+
wandb/sdk/wandb_init.py,sha256=IEKTjQ_vSxTRRQ2DEYCQ7Yjsc_z4_KvfJRKR1Mkn2KY,64397
|
209
208
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
210
|
-
wandb/sdk/wandb_settings.py,sha256=
|
209
|
+
wandb/sdk/wandb_settings.py,sha256=VirEHRyePG0jvoz_fkf7FvWHTWMwdVoiCfRj9BFqyuQ,64877
|
211
210
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
212
211
|
wandb/sdk/wandb_watch.py,sha256=F7S9CLbw9PddUp1qBjPRKsOiVFU8LPaq6A9taV3TJKI,4840
|
213
|
-
wandb/sdk/wandb_login.py,sha256
|
212
|
+
wandb/sdk/wandb_login.py,sha256=SwbajDUYM_wrKQuBUyyN0Jsyt24Pq0gApJYLfcTmb-g,11284
|
214
213
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
215
214
|
wandb/sdk/wandb_require.py,sha256=eYDG4oH1pwik2tHJVEdvivo4R2RypoITFomgr7umMhc,3104
|
216
215
|
wandb/sdk/wandb_sweep.py,sha256=Sg_JqxVzmjUBvii41azpdr-c6RPwHOBnSha8k7jrRhk,4028
|
217
|
-
wandb/sdk/wandb_setup.py,sha256=
|
216
|
+
wandb/sdk/wandb_setup.py,sha256=iDlnTroAb9Lt2rdv0s29g0B_fJp4c9ycsgdpSxMlkY8,14709
|
218
217
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
219
218
|
wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
|
220
219
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -223,7 +222,7 @@ wandb/sdk/interface/interface_relay.py,sha256=lM5ZgJc6m8BS-nWOuzMCwAK0ve9UBGgOD2
|
|
223
222
|
wandb/sdk/interface/router_queue.py,sha256=wnApY1iXa_3L0-HO6t42Nbsh68zyEw3FWN3oI6PmoXM,1049
|
224
223
|
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
225
224
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
226
|
-
wandb/sdk/interface/interface.py,sha256=
|
225
|
+
wandb/sdk/interface/interface.py,sha256=h61rB5Rs_SU0Ives8z1b3nAF6gxNC__2WwLplbnv15Q,37798
|
227
226
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
228
227
|
wandb/sdk/interface/router_sock.py,sha256=S15CRwMoDFYKnEzwqAjvPQC6BlKtJpxE_rZHeaxM2V4,1002
|
229
228
|
wandb/sdk/interface/interface_shared.py,sha256=XmEg78CyUHI4XPNtgyx59aQIlzJzQjZYEIeQVECHXSE,18645
|
@@ -235,20 +234,20 @@ wandb/sdk/artifacts/storage_policy.py,sha256=BGIC8QRfryCNzF-72uk53MvQQbZVoKwQGhn
|
|
235
234
|
wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
|
236
235
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
|
237
236
|
wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
|
238
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
239
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
237
|
+
wandb/sdk/artifacts/artifact.py,sha256=36ToIQwZ9zusMfHpln1Twek9Fv6cEZqNrYXpzJwood0,93337
|
238
|
+
wandb/sdk/artifacts/_validators.py,sha256=p74NPaBhRPJ-Z_2o85RdGcfDM8Tqok7DrqmIvuUbN9Y,4216
|
240
239
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=503z2x4CoTLXk_IfC9jRKBU9fr-X9PMiyG66h0INzQg,9744
|
241
|
-
wandb/sdk/artifacts/artifact_saver.py,sha256=
|
240
|
+
wandb/sdk/artifacts/artifact_saver.py,sha256=Dw8gT3NVMlyoVuDkIpROYdZMU5rGduVZzRTFSOnebak,9718
|
242
241
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
243
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
242
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=MNBQxU_L0MMBzgRc0FFZodn8AN3KjJznKR4douZBun0,8395
|
244
243
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=YYC6o2OooTcVfkzqQIIVcxVxqdSN9TELG-qWgaSI2Qo,2545
|
245
244
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=atSUDvKjkp6by6QY0w2FLMrFUg9UKc8TIrMVWGauV64,501
|
246
245
|
wandb/sdk/artifacts/exceptions.py,sha256=h9tSi023BhW85_FfjLYjeNtlVgUTqZRfnYM9WgdAMbM,2023
|
247
246
|
wandb/sdk/artifacts/storage_handler.py,sha256=ebMCKXvvn7z_eYunXriTOYescstuBbNbxn7MDW9qZAw,1834
|
248
247
|
wandb/sdk/artifacts/staging.py,sha256=_U3oH2S7fEevRkcYgo4nmwvdaoJnZR4V-bNiJVWlowA,854
|
249
248
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyTA9vscxJL5-8_eupknI,1501
|
250
|
-
wandb/sdk/artifacts/_graphql_fragments.py,sha256=
|
251
|
-
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=
|
249
|
+
wandb/sdk/artifacts/_graphql_fragments.py,sha256=bqoL9fsoGUHgJS2OaxqpppljP2AVDN2iz7t7O5QeQ0U,2583
|
250
|
+
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=VMy9B6Wm6I4WtNtGOTb4QGIDSlRVoVIakG0UpFNUNqo,14883
|
252
251
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
|
253
252
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
|
254
253
|
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=XysTYz7_4zqGuvY1mdfaw--SqyIOe-WvjTowJFFHBvY,11586
|
@@ -256,40 +255,61 @@ wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=JgQVx0G
|
|
256
255
|
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=MVLbOi-py7Fbw0BxTs_23At3AyB-FFTHheD7nZnyu7s,4839
|
257
256
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
258
257
|
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=4SSGuBisSNjqfvMQXguNL1keyx0lpDL9P0Dx7eZhTxo,1853
|
259
|
-
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=
|
258
|
+
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=Y0B79t9xDrXo361O9x6VFPQWJOozIPlzQRaGx6768Sw,8333
|
260
259
|
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=XvFrNxadghPdI1fHw5X56OPYJfYolfDxLU28puQuIJY,5554
|
261
260
|
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=BI-NlGm0WRwGz8B-ZW9YtDEwlClvNwCE4_LRwSlXlpw,4070
|
262
261
|
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=hGslEr9QYi0Jp5_C5fxv7CaRu219tdmldyayncze0vc,8514
|
263
262
|
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=lFWh0NIySHq6JWNJ-WOX367lUEY7KN7zFsB-zte7FpQ,2571
|
264
263
|
wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
265
264
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=IW0xTXh4j-GxgypmcJkkefXnopPrycnSnPF1Sl5ypfs,3443
|
266
|
-
wandb/sdk/
|
267
|
-
wandb/sdk/
|
265
|
+
wandb/sdk/artifacts/_generated/move_artifact_collection.py,sha256=Jb4kOxyoNinSY_UUuqskBG3uuFN0KanevXOgXb4Q8mw,962
|
266
|
+
wandb/sdk/artifacts/_generated/enums.py,sha256=Av9fHhSrUJDDaWPhS4fGJGLu_9X0lGhGjpKKnAEQ8iM,345
|
267
|
+
wandb/sdk/artifacts/_generated/update_artifact_portfolio.py,sha256=tcEUGOoAE8pqr27tCwJoA9-Z95s_gNlIQkDCaUiFqkE,978
|
268
|
+
wandb/sdk/artifacts/_generated/input_types.py,sha256=nZ4PbubRbdAYEqXlfNjyPY7p2Xcnfg3k2tPyKLmtC2o,414
|
269
|
+
wandb/sdk/artifacts/_generated/__init__.py,sha256=-i_CluEI4MsPzsyCQOiFTWHublLZNQ1iLzNmhbafo1I,10250
|
270
|
+
wandb/sdk/artifacts/_generated/project_artifact_types.py,sha256=rGbW8kK66zR72kLklWuAcDnzmp7KkCFTXLvsUctlewY,542
|
271
|
+
wandb/sdk/artifacts/_generated/delete_artifact_collection_tag_assignments.py,sha256=BHJKnPZbWcdHLg4-uQ2V51i4OM2voSUdovfYM5Zv7JA,642
|
272
|
+
wandb/sdk/artifacts/_generated/project_artifact_type.py,sha256=NOYXo2UYV1cslcbjSi0Q9167Iv5iksj9LS1XzcbsbXM,543
|
273
|
+
wandb/sdk/artifacts/_generated/operations.py,sha256=A-ulafxdibLQVt0KJxA7zaaxyVH8n4YWFs8Xo-z3Dh8,10793
|
274
|
+
wandb/sdk/artifacts/_generated/artifact_collection_membership_files.py,sha256=iRG2YDjHIDgG9_O5sI4ltkJX6ILCAGJgEKJA_ImO7wE,1343
|
275
|
+
wandb/sdk/artifacts/_generated/artifact_version_files.py,sha256=-yPP-7wlB-jgv4BKrIm_7NeCucCcDwGvOb2rZSphUsk,925
|
276
|
+
wandb/sdk/artifacts/_generated/run_output_artifacts.py,sha256=055RjKbfuVwiWM2eKpErMIFiY7S74pLTjFdRSypYf1g,1432
|
277
|
+
wandb/sdk/artifacts/_generated/delete_artifact_sequence.py,sha256=UGA_ymMNL8t1Bu5ThfKRl89B-elsUYhCdMa9_dGkUXU,979
|
278
|
+
wandb/sdk/artifacts/_generated/project_artifact_collections.py,sha256=4vgbbsMeblXtbn3ebloXDGz20x5JRxzwZpZhci5x--w,865
|
279
|
+
wandb/sdk/artifacts/_generated/run_input_artifacts.py,sha256=B9qtwEBoYXG55UuNq18MmRtOlMk2mvXukKDTW_dmPbQ,1406
|
280
|
+
wandb/sdk/artifacts/_generated/fragments.py,sha256=6v2pKCcO-EjhYPgDut2bVpgG6hZTRsmH2NPFiCZf8NY,5349
|
281
|
+
wandb/sdk/artifacts/_generated/project_artifact_collection.py,sha256=sMfS5nueyZz_EEQrdo2J7h9xo346jsAglAofHnqz1-k,3393
|
282
|
+
wandb/sdk/artifacts/_generated/update_artifact_sequence.py,sha256=dwkvOYLgSbTSuwjZKvW9DtlW1Q78YPgQnayuVIA1P0U,966
|
283
|
+
wandb/sdk/artifacts/_generated/create_artifact_collection_tag_assignments.py,sha256=jvM9wBU7gfqbIyno7IvfQAh9Jbvp_bMFFDKph7qjpe8,1034
|
284
|
+
wandb/sdk/artifacts/_generated/delete_artifact_portfolio.py,sha256=lsGr5vO2EiySHEOZ-KdWdaEXdLO9-YEavXlbuIKanYY,991
|
285
|
+
wandb/sdk/artifacts/_generated/project_artifacts.py,sha256=noPODtFVotO69VK5oHZeU8NF4aYLKsPPRHOtNMPhn38,1128
|
286
|
+
wandb/sdk/data_types/object_3d.py,sha256=6WlsiefTzDErb84M9mVRE8aN-GXFoX1v3S4YReVOzR8,16002
|
287
|
+
wandb/sdk/data_types/molecule.py,sha256=rTvaAfHLYZ3u7TZsHxEClKHA6fwNl81iolAf74KwIvQ,8490
|
268
288
|
wandb/sdk/data_types/histogram.py,sha256=syx3fUDoP6vYqA3r5m7bHXK6MAWo2MkRhpCKasihwvg,3145
|
269
|
-
wandb/sdk/data_types/trace_tree.py,sha256=
|
289
|
+
wandb/sdk/data_types/trace_tree.py,sha256=i0LaWCnZsmTY560byG6_K4D9a6LTWDYJDKrnPe2YhwE,14838
|
270
290
|
wandb/sdk/data_types/graph.py,sha256=_P_z2dNj2mCJeSvusIfVHkSkVB9AL0AEO-6KaguC1ys,12089
|
271
|
-
wandb/sdk/data_types/html.py,sha256=
|
291
|
+
wandb/sdk/data_types/html.py,sha256=6HrVFlY7C5zDZlG6UiKG2ODItIxYFidMuijPmajyrUw,4372
|
272
292
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
273
293
|
wandb/sdk/data_types/_dtypes.py,sha256=NdRfTto95YxLMMK89PONQvAz_Jaey8D7caTsZ_OlvW8,30092
|
274
|
-
wandb/sdk/data_types/utils.py,sha256=
|
275
|
-
wandb/sdk/data_types/audio.py,sha256=
|
276
|
-
wandb/sdk/data_types/table.py,sha256=
|
294
|
+
wandb/sdk/data_types/utils.py,sha256=Cngs-FHDjFs9BnBQJz8DV1QjLGoNE-2Bb8HbiTU6_Do,7636
|
295
|
+
wandb/sdk/data_types/audio.py,sha256=q6buCUd3NYmHLs6UaQwzU0eMULKigofq4WOlIJKGg8U,5305
|
296
|
+
wandb/sdk/data_types/table.py,sha256=YzAvTswSUK18bMcedianJf3cjXNz-gz7zG84n9nbTO8,45005
|
277
297
|
wandb/sdk/data_types/bokeh.py,sha256=0Aq4CJECPpoAkl7vw5LCGYhdCb9pS8i46jHB9PxTj1k,2534
|
278
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
298
|
+
wandb/sdk/data_types/saved_model.py,sha256=XtlrAp8PHb4Pd8-xG97I_iSvFe8fme9iHmHMR9G2KG8,16212
|
279
299
|
wandb/sdk/data_types/plotly.py,sha256=LEIHRqtHHpSou04AEUsyH8_UMXP4adrEHHaKoEtQkxo,2913
|
280
|
-
wandb/sdk/data_types/video.py,sha256
|
281
|
-
wandb/sdk/data_types/image.py,sha256=
|
300
|
+
wandb/sdk/data_types/video.py,sha256=-iFFMjHzu-OXQHFvETShYaEP42WvaGyhuv9trW4RaoM,8602
|
301
|
+
wandb/sdk/data_types/image.py,sha256=qaTXC4jWiz5ps61-1VjRv1ltVpnsKLF1Qm7eWJN2wn0,31711
|
282
302
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
283
|
-
wandb/sdk/data_types/base_types/media.py,sha256=
|
303
|
+
wandb/sdk/data_types/base_types/media.py,sha256=DMGP8hsfZv_iSgoqhW0xpcAUs-9Broe2rgpZs_KGIts,14417
|
284
304
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
|
285
305
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
286
|
-
wandb/sdk/data_types/base_types/wb_value.py,sha256=
|
306
|
+
wandb/sdk/data_types/base_types/wb_value.py,sha256=Qr3fhMjSelDx9teXXJEstZUU2vUcPb97rsupoPtI8fs,12294
|
287
307
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
288
308
|
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=z_cssRDjzWSoDopThg4W3oUQ6Cy17RvrO4WhB4Ha_V0,13272
|
289
309
|
wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZYRj8rvSmT7fl9ds,5520
|
290
310
|
wandb/sdk/data_types/helper_types/image_mask.py,sha256=kx77gxfNnhNIk-Nvaw2SC-NjnDlD5x7RXEB0DBuZCis,8727
|
291
311
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
292
|
-
wandb/sdk/verify/verify.py,sha256=
|
312
|
+
wandb/sdk/verify/verify.py,sha256=zSSAdm0_xd5Yu8E3BS5OAJbiJzVuwM0W25i-ldXCMh8,18320
|
293
313
|
wandb/sdk/mailbox/mailbox_handle.py,sha256=YLKNMkytIAoIpMuV5Nu_g04JdTGzm8P9d9iw2EPJhV4,3743
|
294
314
|
wandb/sdk/mailbox/__init__.py,sha256=C4x3ym_hymymKFZiI1Q0HPlGx5x5CzeKPVF229Z2V8w,856
|
295
315
|
wandb/sdk/mailbox/response_handle.py,sha256=kZWVvVbpc92u3u23FTwAod-QCPFENUYREpjXm-wkh6Q,5031
|
@@ -346,15 +366,15 @@ wandb/sdk/launch/inputs/internal.py,sha256=xtEZ7znfUCL2ME7xZv5bD8I5C6hNpN2EqjgNd
|
|
346
366
|
wandb/sdk/launch/inputs/files.py,sha256=BWGDmAfDPLja7zz0bUzYLaF3wH4cTPesD9LqDuJRUoU,4685
|
347
367
|
wandb/sdk/launch/inputs/manage.py,sha256=O0IsTWhjUftihohRfK7DkT186LjHMMcE2NSMeG8IFBY,5003
|
348
368
|
wandb/sdk/launch/inputs/schema.py,sha256=Fs4CcxI0ifFagazbNp47uJP15JL3v43PAvVNO93f9XY,1418
|
349
|
-
wandb/sdk/internal/sender.py,sha256=
|
369
|
+
wandb/sdk/internal/sender.py,sha256=kU1EkHkX0S-xKRDjbk7Cj3K2ivVvscrNPsn8-RpLQnk,64588
|
350
370
|
wandb/sdk/internal/internal.py,sha256=o9_-6C99LMOx_YB5xuZ1I1KgpeHk3jUgll63sEe9gCY,12182
|
351
|
-
wandb/sdk/internal/run.py,sha256=
|
371
|
+
wandb/sdk/internal/run.py,sha256=X24LqoU3jxZKLUYYEl8pb0sJaGhwAhFMWX3xiYp4LXk,710
|
352
372
|
wandb/sdk/internal/job_builder.py,sha256=_L-DfGFEzDl0JLXPo535KPK3Bk0vqXsTQVF7buXeaiY,22962
|
353
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
373
|
+
wandb/sdk/internal/internal_api.py,sha256=HXXCtbJ7-N-w7889zwKGRKgzeN-dDSsdxpdLtzPnSZU,163705
|
354
374
|
wandb/sdk/internal/handler.py,sha256=zquR4k6Ah5ohg9n5XJC_bKAulz3aSUuMjUlHqiIOfFE,34280
|
355
375
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
356
|
-
wandb/sdk/internal/sender_config.py,sha256=
|
357
|
-
wandb/sdk/internal/settings_static.py,sha256
|
376
|
+
wandb/sdk/internal/sender_config.py,sha256=3g0eAgmYJtv7tPXlqf7qayqKj-JOclvVRvzbVi8wfR4,6711
|
377
|
+
wandb/sdk/internal/settings_static.py,sha256=-3pJ5RCWxGbNVVE4RvGudTurpn8ObN8wTEx_4dkrS3o,4284
|
358
378
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
359
379
|
wandb/sdk/internal/tb_watcher.py,sha256=3AvQGlZLGkr8POhaSGzbeyIcX0YWkLkblJ0bksAB8U8,18738
|
360
380
|
wandb/sdk/internal/flow_control.py,sha256=3LJ-KatyPPH18G7TfSMLDk-BE5tankB4JRhQqLoUOWM,8585
|
@@ -365,7 +385,7 @@ wandb/sdk/internal/writer.py,sha256=jo_Ex7ik-0_rIahYDHIWcQjm_uxsUNVn92__bI8TloE,
|
|
365
385
|
wandb/sdk/internal/file_pusher.py,sha256=clBm6fj_27krGVCcFw9mUdalXHRZlIUxsj5AW_BAzZU,6098
|
366
386
|
wandb/sdk/internal/internal_util.py,sha256=dKawQKw4UdZUE6Bmme5baT0FGDC0IUgoD2zM6ey4oBU,2555
|
367
387
|
wandb/sdk/internal/progress.py,sha256=9nNAErIXzJoapctsfqWYhESNPzFkXAu5TVAnaKsIa4k,2339
|
368
|
-
wandb/sdk/internal/profiler.py,sha256=
|
388
|
+
wandb/sdk/internal/profiler.py,sha256=8RUuvXnKOAPyoul_V9D5uoQkHElg7wms89ieVfHVTHY,2408
|
369
389
|
wandb/sdk/internal/datastore.py,sha256=qqkCbh98crLbfKSTHKmO137IX-jCFYkh8wbZeh9dc6Q,9838
|
370
390
|
wandb/sdk/internal/system/system_monitor.py,sha256=mUUHUoPUUa9_WrgeLEOT3f_FvIA_6DxbtIPnxYucZDc,8609
|
371
391
|
wandb/sdk/internal/system/env_probe_helpers.py,sha256=jIy6gbiaq37SzgcBGe6GepJho1VS5qNQThqOmu-g0OA,397
|
@@ -385,16 +405,21 @@ wandb/sdk/internal/system/assets/tpu.py,sha256=nwv3C9a6dgD1hc0461Rh28NQkWbNQ5fJO
|
|
385
405
|
wandb/sdk/internal/system/assets/network.py,sha256=n3buH2-InLGT35PVlvhY5eHv_Hm5Kl_N8jH576OiVi8,3392
|
386
406
|
wandb/sdk/internal/system/assets/open_metrics.py,sha256=VqOncOSnPztqSyQ0g-zeJWcjc_lircRk6F76rwoBWR4,9631
|
387
407
|
wandb/sdk/internal/system/assets/gpu.py,sha256=DnnfH9fvvfiRXzMAXjCgHZZZt_Kkn2br74T3Y_oyyhw,13722
|
408
|
+
wandb/sdk/internal/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
409
|
+
wandb/sdk/internal/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
410
|
+
wandb/sdk/internal/_generated/__init__.py,sha256=DRBzTksuUuVY9oRJQsLtRTMMItykywWYvDxktHbCfk8,381
|
411
|
+
wandb/sdk/internal/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
|
412
|
+
wandb/sdk/internal/_generated/server_features_query.py,sha256=WGjefMl-SDR7o7OVtJk7xKEYICBFA2wceGMXbuyj5QU,647
|
388
413
|
wandb/sdk/backend/backend.py,sha256=w9aV2IEEjUFjjAzAe8UX7Pfz49hp3dcI-fXRhpQWq9A,7791
|
389
414
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
390
|
-
wandb/sdk/lib/deprecate.py,sha256=
|
415
|
+
wandb/sdk/lib/deprecate.py,sha256=g5fIRwR5FrBmNpbLJhBmxh-pyvSbGh2ZumUEfScT0NA,941
|
391
416
|
wandb/sdk/lib/exit_hooks.py,sha256=_4oozaRQCJi8NJfZvHsA8livvFb0trZKLOGB8_UcHGk,1540
|
392
417
|
wandb/sdk/lib/server.py,sha256=dn0RXjAnpmigAULLyq75XHYyHxw17MLCJ9fhPq2v22I,1623
|
393
418
|
wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
|
394
419
|
wandb/sdk/lib/sock_client.py,sha256=YzR4uFMgFBA95ySl9h2QwIqXKMEAyb36Y09vpf70IPU,8383
|
395
420
|
wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
|
396
421
|
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
397
|
-
wandb/sdk/lib/redirect.py,sha256
|
422
|
+
wandb/sdk/lib/redirect.py,sha256=PSe53WibPfzx4riMoE8d-lSUySQZ7_wnT2pGN6NZxwY,27381
|
398
423
|
wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
|
399
424
|
wandb/sdk/lib/file_stream_utils.py,sha256=NN4qaSyNufvlkg96a1YUjQ8-pYtCVU7xagJaW8mqAyI,4018
|
400
425
|
wandb/sdk/lib/interrupt.py,sha256=Ea7aSVHcY0wLYnyMfm4jZbQcwGPgRcuPuoBSe0Swuds,1353
|
@@ -406,7 +431,8 @@ wandb/sdk/lib/import_hooks.py,sha256=0_TJwq-EuZFUIFzFOZoVDWOMP9-Af1r2Vq5sV5sfzg4
|
|
406
431
|
wandb/sdk/lib/timed_input.py,sha256=D7vx3N3m4LlxwkQpzS7lDi7IOnccqZ3WfLlDYRs8Oes,3229
|
407
432
|
wandb/sdk/lib/__init__.py,sha256=53BA5lIOtUXciXZcPpNsFbp-iUPzI5gQFxplTykNmOE,183
|
408
433
|
wandb/sdk/lib/telemetry.py,sha256=Q7rh7qyeicy9KdgQffVK6ZI8vHUdOtwFvxEeeJtOWcI,2754
|
409
|
-
wandb/sdk/lib/disabled.py,sha256=
|
434
|
+
wandb/sdk/lib/disabled.py,sha256=43T-YKrab-Lwkb7XBM5McPuRJX3mOnO_ne01u9h71Lg,926
|
435
|
+
wandb/sdk/lib/printer_asyncio.py,sha256=KfCnRz54XcJrTbVOe_yBOumO9Dhk80j95aYhv3xLEDI,1424
|
410
436
|
wandb/sdk/lib/sparkline.py,sha256=9xQkuZ0z1DM7rHE2jFNDy5vBdPirnurd__A_bC6-Bgc,1363
|
411
437
|
wandb/sdk/lib/retry.py,sha256=BAgPgJb1SxRguor2KTfOFnQpTlyNE4M_X8VcEc7YfMs,10173
|
412
438
|
wandb/sdk/lib/json_util.py,sha256=fAsYfaw8iMmx3KJ0wSthUSj_XpF1iAysad4XZY1kQdo,2584
|
@@ -415,26 +441,57 @@ wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2
|
|
415
441
|
wandb/sdk/lib/console_capture.py,sha256=eC1bThCHa9DiQTk21ALdK8w1ETeydBpiTOYKN31EjVs,4923
|
416
442
|
wandb/sdk/lib/ipython.py,sha256=I2iT6vY90Aaws7tmjzW_CrUdQFmfV9-WhAPk8at9LQg,3782
|
417
443
|
wandb/sdk/lib/service_token.py,sha256=c4olk_g4Suo0zTTDaoR78oHLwpt3NgDzQeF94raigME,2471
|
418
|
-
wandb/sdk/lib/run_moment.py,sha256=
|
444
|
+
wandb/sdk/lib/run_moment.py,sha256=jMkfNAHOrYHlb6_nisqjfMu2Onm1bDy6lIubOJ2WxCM,2421
|
419
445
|
wandb/sdk/lib/hashutil.py,sha256=aU8YsAgkTcYDlqshfcDjItiO2s9lqq2YdKt7RoA2adQ,2763
|
446
|
+
wandb/sdk/lib/wb_logging.py,sha256=9km7TAnJRSwBTQaFSYA4BmQZV3_Gb0y1PBlzqEOdUHA,4839
|
420
447
|
wandb/sdk/lib/module.py,sha256=PWxpFqOYmLyKPF-VgfINZXzkFxDcoQVunVDVNWNnbxQ,2098
|
421
448
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
422
449
|
wandb/sdk/lib/service_connection.py,sha256=pf1T0isbDwTkv9MvuIpuk1MHTVkCebK4N8n9pXF4SSg,7455
|
423
450
|
wandb/sdk/lib/progress.py,sha256=GakG9R_mJxVx8zG8atVHKydDZt0uRFEPwls7b3hUpsc,10652
|
424
451
|
wandb/sdk/lib/gql_request.py,sha256=-KRTtT2zqn7pTOBcl41IBdbvQ25YCrxVurROpRqrWqw,2399
|
425
|
-
wandb/sdk/lib/asyncio_compat.py,sha256=
|
452
|
+
wandb/sdk/lib/asyncio_compat.py,sha256=zBC5yVXTPryiyK129ml56CW0PJE7vFm1N00Od5_WiKc,6579
|
426
453
|
wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
|
427
|
-
wandb/sdk/lib/apikey.py,sha256
|
428
|
-
wandb/sdk/lib/printer.py,sha256=
|
454
|
+
wandb/sdk/lib/apikey.py,sha256=-t_qzoYTpgUOue-3q67Nh-H9vEXz-laUHVNx8XpbBug,11131
|
455
|
+
wandb/sdk/lib/printer.py,sha256=fqwEn2RB4ZJh8UgYB41wfz0nnWm5bPQmxo-2gWwiy3A,16318
|
429
456
|
wandb/sdk/lib/fsm.py,sha256=RLr_wp6_9vSRQbnoP6aqOXYghi53FV93eUyAMMEjcTg,5175
|
430
457
|
wandb/sdk/lib/lazyloader.py,sha256=4Seis4C8Ph6a2-3scfYqeHh7KjKG6PO0WJ2ZPW30O0o,1891
|
431
|
-
wandb/sdk/service/service.py,sha256=
|
458
|
+
wandb/sdk/service/service.py,sha256=o7UU5TXtcS1ixKlbLhTyImCywL74j5z__LR_fkJqFjg,8752
|
432
459
|
wandb/sdk/service/server.py,sha256=_0MAn4Y1hs2AnapyQb5heYiixKQNxFENfkxIGoiiIB8,3460
|
433
|
-
wandb/sdk/service/streams.py,sha256=
|
460
|
+
wandb/sdk/service/streams.py,sha256=AXv98iJcXUwx5UjPBTppCob6SEHaFf8HfjXmmzlwwbA,14948
|
434
461
|
wandb/sdk/service/_startup_debug.py,sha256=A6P5iCYRoNGcVulziUc7Mw_Y2MCG8PAIAUVjzzMUTPs,602
|
435
|
-
wandb/sdk/service/server_sock.py,sha256=
|
462
|
+
wandb/sdk/service/server_sock.py,sha256=J25fwVS6O1ljgd3Fw7opECwCHKsTeLddOTJvbE_KEA0,9802
|
436
463
|
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
437
464
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
465
|
+
wandb/_pydantic/__init__.py,sha256=a6pASyD7_wO_QzScOBPS9V7YxBvivZ1m6v1d07nBbVo,622
|
466
|
+
wandb/_pydantic/v1_compat.py,sha256=VMtrkts9AXKd3ldXZnX_IwXfy43nsPlnJnBAVK_XsvU,11339
|
467
|
+
wandb/_pydantic/utils.py,sha256=rBhaEJ4lOwOC_ZOWx1k4eCRJN0lcMaRsC59REtTKebY,2280
|
468
|
+
wandb/_pydantic/base.py,sha256=2YpKfASHfoCD8rCpQG13ctGidmHBr4_NpJqdceIsaGw,4716
|
469
|
+
wandb/automations/scopes.py,sha256=sFFNigGtBm13ICYFNThCKIYuSRhWxXE496G5Rgm0Fvg,2343
|
470
|
+
wandb/automations/_validators.py,sha256=UvjjyocgwEqyYi1kl76RSNWfhIvgLKzvWmCj9ISws7k,2242
|
471
|
+
wandb/automations/events.py,sha256=3C1Ml9LBKj4fddfzEXF5K47_vKz8Fltj6J_3btsN6Iw,7934
|
472
|
+
wandb/automations/actions.py,sha256=zidZkrGv1bJrYYgX8NuRo97uwpmihO-PTixFJIlsdZw,6763
|
473
|
+
wandb/automations/__init__.py,sha256=64C_OO2LNNXDaLW54MfpcieSXCrZLqbBZG8LA1fSukE,2517
|
474
|
+
wandb/automations/automations.py,sha256=sePynVnl0iL4PVY1M21mWoUXF1TaaTeCTXvygM15XLg,3614
|
475
|
+
wandb/automations/integrations.py,sha256=dMk5ifZjjOSb01d0io0l9vPCWScfWgGpN025CIjSPRE,559
|
476
|
+
wandb/automations/_utils.py,sha256=tWLJyQ3xJPk5kZfTsoH-2tcgARNZkL9Vczj2Yrcbd8A,4073
|
477
|
+
wandb/automations/_filters/run_metrics.py,sha256=4l84HTeGZgHy8mQyrQTyEvRlVoeWcYCKyPRS6fAOnUE,6720
|
478
|
+
wandb/automations/_filters/expressions.py,sha256=_k2iqb8ocvpj8xRuDQo3CSEl-BjgDe1VUad16AkOZQo,6372
|
479
|
+
wandb/automations/_filters/__init__.py,sha256=UxAEPbeI7wUqZY-w8FgsMU4Jp5rgSxwuQXc_VhdpDWE,466
|
480
|
+
wandb/automations/_filters/operators.py,sha256=Ex4L1jGq42Wf8ewBCA5_TKxBJQTWTYGliZfe7QcFN8g,7536
|
481
|
+
wandb/automations/_generated/integrations_by_entity.py,sha256=mRAf-LVgyWEmoGIKsI6CKPmuHbX2-Y1qpRzOKIAVW6c,501
|
482
|
+
wandb/automations/_generated/enums.py,sha256=QhdQw-UO89a5Px61iisYgRX_UMYx3QjGqB5FBgKY8DA,799
|
483
|
+
wandb/automations/_generated/get_triggers_by_entity.py,sha256=U7mGH5e9b0Ey8_HF1rkPrckWPDWVm_RV0Toh4hU3loQ,562
|
484
|
+
wandb/automations/_generated/create_generic_webhook_integration.py,sha256=N0r4pYu6LG4m8PrZLm9CrYmAwbDMOiI4x0W1ygRxPhQ,1420
|
485
|
+
wandb/automations/_generated/create_filter_trigger.py,sha256=dyBxM4HCtwoerL9DlW02BCEGs3WuukUDY1tS-xD_fIY,446
|
486
|
+
wandb/automations/_generated/input_types.py,sha256=-BIaTQ03aoDb7vxao_D8s8pkyofFdkAYnkw9sK8IojE,3541
|
487
|
+
wandb/automations/_generated/generic_webhook_integrations_by_entity.py,sha256=bwuMMOI2pZYzXWn50HvGH2yC6atEOTU5oNzYvw_MWfU,599
|
488
|
+
wandb/automations/_generated/__init__.py,sha256=BBdzqqvtQ8qo1qP17dxLNUGpayOvZq4xnJ8M6nrut5o,7042
|
489
|
+
wandb/automations/_generated/operations.py,sha256=w9A58H3_JyS2CoBYsZVYlAeeZI1npbkeRR99mX5rKLQ,11987
|
490
|
+
wandb/automations/_generated/slack_integrations_by_entity.py,sha256=87KtiuB4wfsHCiQD9m9_1GF9DYhdvqm4EsZ1dOxYtRU,536
|
491
|
+
wandb/automations/_generated/get_triggers.py,sha256=BvMYgQOfz8_GKn_M-mhNfwq_V9tLg3IF1ip_UvpkZyw,522
|
492
|
+
wandb/automations/_generated/update_filter_trigger.py,sha256=zkz2zzJPFobjuKxRmi_dfv8FcC6Y31PxzzKWD16xb3E,446
|
493
|
+
wandb/automations/_generated/fragments.py,sha256=Gf7AFIuzjBOAJ1uYFgWLimPTPGMmuj0nJg_pFWFMoD4,10762
|
494
|
+
wandb/automations/_generated/delete_trigger.py,sha256=lP0Oix0mARG33_jlCcKF95qkIKRV6ESMjfVTrpDPBzQ,395
|
438
495
|
wandb/filesync/step_checksum.py,sha256=AIz9ALGk59OiR3NtxGj3CJKnsKSQ_1f9PmrbIzxuarE,4690
|
439
496
|
wandb/filesync/dir_watcher.py,sha256=9Y57-5-hWZFzCuBL6HQVtm-MIE9p8kCRU_g_YZUVHvo,16345
|
440
497
|
wandb/filesync/upload_job.py,sha256=t-QgMheUcxFE8C9TIJ5Wp9Cl_4jlpCzCKfsRoPzrHbs,5493
|
wandb/_globals.py
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
# WARNING: This is an anti-pattern file and we should avoid
|
2
|
-
# adding to it and remove entries whenever possible. This file
|
3
|
-
# contains global objects which need to be referenced by multiple
|
4
|
-
# submodules. If you need a global object, seriously reconsider. This
|
5
|
-
# file is intended to be a stop gap to help during code migrations (eg.
|
6
|
-
# when moving to typing a module) to avoid circular references. Anything
|
7
|
-
# added here is pure tech debt. Use with care. - Tim
|
8
|
-
|
9
|
-
_glob_datatypes_callback = None
|
10
|
-
|
11
|
-
|
12
|
-
def _datatypes_set_callback(cb):
|
13
|
-
global _glob_datatypes_callback
|
14
|
-
_glob_datatypes_callback = cb
|
15
|
-
|
16
|
-
|
17
|
-
def _datatypes_callback(fname):
|
18
|
-
if _glob_datatypes_callback:
|
19
|
-
_glob_datatypes_callback(fname)
|
@@ -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
|
-
]
|