wandb 0.19.8__py3-none-any.whl → 0.19.10__py3-none-any.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/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 +150 -93
- 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,19 +1,22 @@
|
|
1
1
|
package_readme.md,sha256=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
|
2
|
-
wandb/__init__.py,sha256=
|
3
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb/__init__.py,sha256=Od_wBADjhjHQSaY17SZAssmf6PHrXfgqilxMHxdzsEM,7148
|
3
|
+
wandb/__init__.pyi,sha256=_IgSAtjD_xCCrwaOK4RNG68ea9-M9jLuHwTnTl2olik,48256
|
4
4
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
5
|
-
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
6
5
|
wandb/_iterutils.py,sha256=bOhOrOENEDzOMtyQqHysivzHri9axcVlCfXt4Ai1ot8,1545
|
7
6
|
wandb/data_types.py,sha256=M-wqAO0FtIqvj28556u3h4nzSwlRcbxhXoX0B9jlJSo,2283
|
8
7
|
wandb/env.py,sha256=NtyTiZbU3xrpNiISvrTVO5SDBXVqHl58wmrhpB4MCSA,13736
|
9
|
-
wandb/jupyter.py,sha256=
|
8
|
+
wandb/jupyter.py,sha256=dMCV2TVomJeHhbhEZTHZbxsxuGHXYGkOveK_3IbXju8,17451
|
10
9
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
10
|
wandb/sklearn.py,sha256=hbPkefhS39A1RRymn0nHZZmKM2TrOd4xjlkthTZe9pY,803
|
12
11
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
13
|
-
wandb/util.py,sha256=
|
12
|
+
wandb/util.py,sha256=hfxUvseqkc177t27D0iaGr_GkkAi8JzdIPDGxI5Oxe8,63681
|
14
13
|
wandb/wandb_agent.py,sha256=0TKjcJ8jxEqaXMrs_dIflXfWFFOaulfSjzp_fpYiXD0,20985
|
15
14
|
wandb/wandb_controller.py,sha256=SksJdgwn14PpnUoIaBjJ9Ki4Nksl9BpQGGn42hT0xZg,24936
|
16
15
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
16
|
+
wandb/_pydantic/__init__.py,sha256=a6pASyD7_wO_QzScOBPS9V7YxBvivZ1m6v1d07nBbVo,622
|
17
|
+
wandb/_pydantic/base.py,sha256=2YpKfASHfoCD8rCpQG13ctGidmHBr4_NpJqdceIsaGw,4716
|
18
|
+
wandb/_pydantic/utils.py,sha256=rBhaEJ4lOwOC_ZOWx1k4eCRJN0lcMaRsC59REtTKebY,2280
|
19
|
+
wandb/_pydantic/v1_compat.py,sha256=VMtrkts9AXKd3ldXZnX_IwXfy43nsPlnJnBAVK_XsvU,11339
|
17
20
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
21
|
wandb/agents/pyagent.py,sha256=paZ04bMdruGEoApHHIBTJVJphK2I-ZHMNQ51nnR4ZZ4,13384
|
19
22
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
@@ -22,7 +25,7 @@ wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
|
|
22
25
|
wandb/apis/attrs.py,sha256=MRle0pRB8QGV31MRjVfqE7l8XJOA04FFKCtOOuDt0xE,1445
|
23
26
|
wandb/apis/internal.py,sha256=Whl1x29iH_DdIu47vUVvDSyOavEVaovdmlqXmu4-yOw,7622
|
24
27
|
wandb/apis/normalize.py,sha256=mamR8PquPZU7YAVNP1k_Q941l7FRwEoQhJhTH3SgSJQ,2676
|
25
|
-
wandb/apis/paginator.py,sha256=
|
28
|
+
wandb/apis/paginator.py,sha256=ZxG7oJkw5DPjN9u-GAFS_kBokmUiIW21QLH8SMVQ8YI,3550
|
26
29
|
wandb/apis/importers/__init__.py,sha256=ewph-RBUC9FnxL6uWbuuW0Hmdv2cHsxfqnZi0546ds4,38
|
27
30
|
wandb/apis/importers/mlflow.py,sha256=uoxzm3bSOqjQyUkgOBwuzpaBjTdGp4drPaqE9f7Ny5w,8256
|
28
31
|
wandb/apis/importers/validation.py,sha256=fVILb8fXKk_oj8BbBhUOnzSPwoUuYfF8lflwJklviYY,3190
|
@@ -30,38 +33,59 @@ wandb/apis/importers/wandb.py,sha256=u1zRAEYkPfrDSD5V2_RAuRlNnvDaBZa1ByvZ5O7mQUU
|
|
30
33
|
wandb/apis/importers/internals/internal.py,sha256=hJAe3iYTU1uM3MJ5KLm7e4XLMzx5EIepMtAlnZW3PjU,13314
|
31
34
|
wandb/apis/importers/internals/protocols.py,sha256=shZBD2bRMo81xPSUQdK2d9KK8qpop4CmMkizg8FI3WM,2885
|
32
35
|
wandb/apis/importers/internals/util.py,sha256=HvphFwhSxuYqg0omNhfP1GwZV6UzZN-m85CNaSUZXQs,2083
|
33
|
-
wandb/apis/public/__init__.py,sha256=
|
34
|
-
wandb/apis/public/api.py,sha256=
|
35
|
-
wandb/apis/public/artifacts.py,sha256=
|
36
|
+
wandb/apis/public/__init__.py,sha256=g2wkjZ7105t-a8XBvZ7k5fPGk4kaZX4ZbN7yuBPgNVY,1147
|
37
|
+
wandb/apis/public/api.py,sha256=cga1hj9ydfp-GxXIs-rPTj4z7sz-FvoZa5wsVvPc5a0,60976
|
38
|
+
wandb/apis/public/artifacts.py,sha256=4GCI5quQwZlzlYD04k1Oi8taxEkp3Uouin4O82UDpHo,26371
|
39
|
+
wandb/apis/public/automations.py,sha256=SHiYhNGt-MBING1xe3IKoGbVUN6twN6mxvXP0pd4n4o,2334
|
36
40
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
37
|
-
wandb/apis/public/files.py,sha256=
|
41
|
+
wandb/apis/public/files.py,sha256=sQNGU18jmcpc6XccK5-jUXFhnqjOJgu9-fFljsTfg4Y,8497
|
38
42
|
wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
|
43
|
+
wandb/apis/public/integrations.py,sha256=vlHal-t3jrPR5lC6XfXle-zBSVeZ4vpZ_6cQ6MxOTRs,6263
|
39
44
|
wandb/apis/public/jobs.py,sha256=Ewwh-KK2mNoOXIz3p4Q1fMoWqAkGDl1vGbTBZIkOxPc,22372
|
40
|
-
wandb/apis/public/projects.py,sha256=
|
45
|
+
wandb/apis/public/projects.py,sha256=IkXLJYno-yni-MP6dzSeztV8fBmX2vdRvb6PjiIJPgs,5475
|
41
46
|
wandb/apis/public/query_generator.py,sha256=WfyaQuBcTHEECOJ2zN_0iqkUufki9MX28fj3axYZCLU,5977
|
42
47
|
wandb/apis/public/registries.py,sha256=CaL1vD2dH74aMu916vVfgqSsKFsQWMVZf5jNfXiboa0,18404
|
43
|
-
wandb/apis/public/reports.py,sha256=
|
44
|
-
wandb/apis/public/runs.py,sha256=
|
48
|
+
wandb/apis/public/reports.py,sha256=DR_Kw3dznuy1UeaiJ_ENLbimV1j1kSerYr_vqoPtWNY,15302
|
49
|
+
wandb/apis/public/runs.py,sha256=0RIX-HChtT5yug-AeilTnmnadE6rqjROCW9gBkya3pI,35356
|
45
50
|
wandb/apis/public/sweeps.py,sha256=FYWvA-h-xqCnZ8PYXRwOEvRHgl3BS0RhuZpTftIMNrc,6547
|
46
51
|
wandb/apis/public/teams.py,sha256=YJAsJLRVM5r6UT48tdGGVA2V_f7nayDe5Q5NRTFQ8m4,5474
|
47
52
|
wandb/apis/public/users.py,sha256=nbguWN0QJWvhsmgVx6IrkLYbjJcyI-eJQAUVaoY5Qjc,3796
|
48
|
-
wandb/apis/public/utils.py,sha256=
|
49
|
-
wandb/apis/public/_generated/__init__.py,sha256=m19wAWXw_4qFC1pNaJPp1XBngTOjCab-4Eds3YmDT3U,528
|
50
|
-
wandb/apis/public/_generated/base.py,sha256=zaD3C8aYH-WNw5pL1d-UarEm0NjmEW7lYF2eMraHFpk,4017
|
51
|
-
wandb/apis/public/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
52
|
-
wandb/apis/public/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
53
|
-
wandb/apis/public/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
|
54
|
-
wandb/apis/public/_generated/server_features_query.py,sha256=VcqMZTC-_Xq9nhVUv5TD_na6O4PzuDPA2YK6lREOQmM,641
|
55
|
-
wandb/apis/public/_generated/typing_compat.py,sha256=qV4yFJH1utKxh-vl-U3JhPHyRSqxZ8d8niMSBF5K370,303
|
53
|
+
wandb/apis/public/utils.py,sha256=62ux6zpRpVug_y-_PaHUSOkPcHMTNFknAPqcINJSHFg,7893
|
56
54
|
wandb/apis/reports/__init__.py,sha256=5ZkKvOqwks3UmVeaPuwIZYwyV8_afsGbtybDOXYjSsg,32
|
57
55
|
wandb/apis/reports/v1/__init__.py,sha256=L5l1BqMaap-w5wXCzn8pC8RXB7_72MsjTx8HeLuC3XU,263
|
58
56
|
wandb/apis/reports/v2/__init__.py,sha256=jdLiTqf5QIRxnWH8drWV9Y06bZEhI5N6uGGSKAT7tv0,263
|
59
57
|
wandb/apis/workspaces/__init__.py,sha256=buvqtqELpCFWC7sHzEuslJgx24ZWDj-5lo2mdV6aHdg,265
|
60
|
-
wandb/
|
61
|
-
wandb/
|
58
|
+
wandb/automations/__init__.py,sha256=64C_OO2LNNXDaLW54MfpcieSXCrZLqbBZG8LA1fSukE,2517
|
59
|
+
wandb/automations/_utils.py,sha256=tWLJyQ3xJPk5kZfTsoH-2tcgARNZkL9Vczj2Yrcbd8A,4073
|
60
|
+
wandb/automations/_validators.py,sha256=UvjjyocgwEqyYi1kl76RSNWfhIvgLKzvWmCj9ISws7k,2242
|
61
|
+
wandb/automations/actions.py,sha256=zidZkrGv1bJrYYgX8NuRo97uwpmihO-PTixFJIlsdZw,6763
|
62
|
+
wandb/automations/automations.py,sha256=sePynVnl0iL4PVY1M21mWoUXF1TaaTeCTXvygM15XLg,3614
|
63
|
+
wandb/automations/events.py,sha256=3C1Ml9LBKj4fddfzEXF5K47_vKz8Fltj6J_3btsN6Iw,7934
|
64
|
+
wandb/automations/integrations.py,sha256=dMk5ifZjjOSb01d0io0l9vPCWScfWgGpN025CIjSPRE,559
|
65
|
+
wandb/automations/scopes.py,sha256=sFFNigGtBm13ICYFNThCKIYuSRhWxXE496G5Rgm0Fvg,2343
|
66
|
+
wandb/automations/_filters/__init__.py,sha256=UxAEPbeI7wUqZY-w8FgsMU4Jp5rgSxwuQXc_VhdpDWE,466
|
67
|
+
wandb/automations/_filters/expressions.py,sha256=_k2iqb8ocvpj8xRuDQo3CSEl-BjgDe1VUad16AkOZQo,6372
|
68
|
+
wandb/automations/_filters/operators.py,sha256=Ex4L1jGq42Wf8ewBCA5_TKxBJQTWTYGliZfe7QcFN8g,7536
|
69
|
+
wandb/automations/_filters/run_metrics.py,sha256=4l84HTeGZgHy8mQyrQTyEvRlVoeWcYCKyPRS6fAOnUE,6720
|
70
|
+
wandb/automations/_generated/__init__.py,sha256=BBdzqqvtQ8qo1qP17dxLNUGpayOvZq4xnJ8M6nrut5o,7042
|
71
|
+
wandb/automations/_generated/create_filter_trigger.py,sha256=dyBxM4HCtwoerL9DlW02BCEGs3WuukUDY1tS-xD_fIY,446
|
72
|
+
wandb/automations/_generated/create_generic_webhook_integration.py,sha256=N0r4pYu6LG4m8PrZLm9CrYmAwbDMOiI4x0W1ygRxPhQ,1420
|
73
|
+
wandb/automations/_generated/delete_trigger.py,sha256=lP0Oix0mARG33_jlCcKF95qkIKRV6ESMjfVTrpDPBzQ,395
|
74
|
+
wandb/automations/_generated/enums.py,sha256=QhdQw-UO89a5Px61iisYgRX_UMYx3QjGqB5FBgKY8DA,799
|
75
|
+
wandb/automations/_generated/fragments.py,sha256=Gf7AFIuzjBOAJ1uYFgWLimPTPGMmuj0nJg_pFWFMoD4,10762
|
76
|
+
wandb/automations/_generated/generic_webhook_integrations_by_entity.py,sha256=bwuMMOI2pZYzXWn50HvGH2yC6atEOTU5oNzYvw_MWfU,599
|
77
|
+
wandb/automations/_generated/get_triggers.py,sha256=BvMYgQOfz8_GKn_M-mhNfwq_V9tLg3IF1ip_UvpkZyw,522
|
78
|
+
wandb/automations/_generated/get_triggers_by_entity.py,sha256=U7mGH5e9b0Ey8_HF1rkPrckWPDWVm_RV0Toh4hU3loQ,562
|
79
|
+
wandb/automations/_generated/input_types.py,sha256=-BIaTQ03aoDb7vxao_D8s8pkyofFdkAYnkw9sK8IojE,3541
|
80
|
+
wandb/automations/_generated/integrations_by_entity.py,sha256=mRAf-LVgyWEmoGIKsI6CKPmuHbX2-Y1qpRzOKIAVW6c,501
|
81
|
+
wandb/automations/_generated/operations.py,sha256=w9A58H3_JyS2CoBYsZVYlAeeZI1npbkeRR99mX5rKLQ,11987
|
82
|
+
wandb/automations/_generated/slack_integrations_by_entity.py,sha256=87KtiuB4wfsHCiQD9m9_1GF9DYhdvqm4EsZ1dOxYtRU,536
|
83
|
+
wandb/automations/_generated/update_filter_trigger.py,sha256=zkz2zzJPFobjuKxRmi_dfv8FcC6Y31PxzzKWD16xb3E,446
|
84
|
+
wandb/beta/workflows.py,sha256=OW_e6_AYuNRxmSkKvv8xEjLHdCdqldApjWJSbk4-QG4,10394
|
85
|
+
wandb/bin/gpu_stats,sha256=i9-LWou7Bb66LVq5_tsvXXe7qNXXxfg6U-V_dhDyp5Q,10818624
|
62
86
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
87
|
wandb/cli/beta.py,sha256=Um35Q9CeoQPS80g0wryo2WtSaD7VA0XqF_YCQNDNiSY,5438
|
64
|
-
wandb/cli/cli.py,sha256=
|
88
|
+
wandb/cli/cli.py,sha256=7uYU19_-StslbQdt5R78kWMWK2vYoKiX7hwEDZe2g2Y,92607
|
65
89
|
wandb/docker/__init__.py,sha256=zaXUYlTQLBJo8YlxbL3kh0NBHqtXFHNg4-_TNV_WDBs,10594
|
66
90
|
wandb/docker/auth.py,sha256=Tr-BMoiMJjX8TsdUquVBBLyfxEJWR4WQZGyz6vBaJk0,15009
|
67
91
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
@@ -97,7 +121,7 @@ wandb/integration/huggingface/__init__.py,sha256=Ui-JiM_yel2YZuS9U_LyReL3mhBZZSI
|
|
97
121
|
wandb/integration/huggingface/huggingface.py,sha256=KYP0dCYERORLNE1Sk6jfp0krHF2BQ4q4qOlF-0H-vrI,443
|
98
122
|
wandb/integration/huggingface/resolver.py,sha256=Atc0vwdPar5yKzTcJF6Fu2i7h7a6TX0W9B2HdeToqrI,7858
|
99
123
|
wandb/integration/keras/__init__.py,sha256=8_vNA4cEbj1lg2pgMz-c5Iu1XJQtX9x5_vNGrv4NBdE,345
|
100
|
-
wandb/integration/keras/keras.py,sha256=
|
124
|
+
wandb/integration/keras/keras.py,sha256=a05YwRYpf5164jKAxWg1t7Iy47XQX6Fn-hrxmEgxTnc,44192
|
101
125
|
wandb/integration/keras/callbacks/__init__.py,sha256=sY5AMC3x28iA815fqbqkkArtjctqG-m9N2D5FnyR0no,223
|
102
126
|
wandb/integration/keras/callbacks/metrics_logger.py,sha256=gA2ui3ZCV4DyOEx5vQZOYRA59jPIlsZhCIC6IGvdy5k,4919
|
103
127
|
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=bbwRrex096GKi74xv-N1MaNyB6enU2eGsVEdgAIbjGQ,8546
|
@@ -107,20 +131,20 @@ wandb/integration/kfp/helpers.py,sha256=yEVO9rrz27hc4nk3WwNL3v1aRAUlS-OlXMC8Rj0G
|
|
107
131
|
wandb/integration/kfp/kfp_patch.py,sha256=CpjBa7xldINeVF7g09J54741e0aQAQYHBPLEXXjc8iI,13184
|
108
132
|
wandb/integration/kfp/wandb_logging.py,sha256=fYMImccQagOm6HB-dTV7O1LvH_1jJ-qrd7ngTUu7WVo,6167
|
109
133
|
wandb/integration/langchain/__init__.py,sha256=afRoYH4bPOw6Tyrn9YvuYHzbSae97iQT-Ufi0puJqNw,66
|
110
|
-
wandb/integration/langchain/wandb_tracer.py,sha256=
|
134
|
+
wandb/integration/langchain/wandb_tracer.py,sha256=uI24_cFAfFAHIPUUJBPw74hyk-Jcikx4utJyjGfIU2E,2259
|
111
135
|
wandb/integration/lightgbm/__init__.py,sha256=ztwqeaVneF_f6ngCd0UowwksnNopl1bhSQN9hAeyoyU,7981
|
112
136
|
wandb/integration/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
113
137
|
wandb/integration/lightning/fabric/__init__.py,sha256=RFhr2VkC0D8b6bAXUMZzcVzqDQaoOozfP_HOogAWi9o,94
|
114
138
|
wandb/integration/lightning/fabric/logger.py,sha256=ev8xFbCohaRp4MvrBn1x_5ypuvLe2FJdUWY7Jjw0ylk,27251
|
115
139
|
wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
|
116
|
-
wandb/integration/metaflow/metaflow.py,sha256=
|
140
|
+
wandb/integration/metaflow/metaflow.py,sha256=E4EVeqpTHdDlqtlZz4sw8x4YEafxzeEBOmfBPPosQFQ,11814
|
117
141
|
wandb/integration/openai/__init__.py,sha256=T6x9lIFfw2NzOSi46wi3otY_-DSwyMgnIjMIOIod7iU,66
|
118
142
|
wandb/integration/openai/fine_tuning.py,sha256=w9_F3bLTG72KdNkD2rAPRdrq6rc58EtltFxwedyI690,18555
|
119
143
|
wandb/integration/openai/openai.py,sha256=zGD1kj6yjDP1IfAAYRcltuXD5Bf569CSnMHMf4rDm54,496
|
120
144
|
wandb/integration/openai/resolver.py,sha256=KrndobRki0C9SNRL8SgPISea0-D7-1g8kvJMcFMN7SA,8164
|
121
145
|
wandb/integration/prodigy/__init__.py,sha256=1-Hg98Y4T1kSNAbrlR9TUrr7dwL1Gxxa-Exu0fsfxl0,66
|
122
146
|
wandb/integration/prodigy/prodigy.py,sha256=RQBptD6zlcyuHM5hHU8XUYUZG3smHPRYtgonmW5tirw,11368
|
123
|
-
wandb/integration/sacred/__init__.py,sha256=
|
147
|
+
wandb/integration/sacred/__init__.py,sha256=Zzi-m0yRvtbyEgB0N67xSUAWZc1eYBz8Nni3e3OxcHg,5751
|
124
148
|
wandb/integration/sagemaker/__init__.py,sha256=Eyd7rArw0IKGR2ll6zGiTXBi6y7E5nYYuyrVABt_9sI,360
|
125
149
|
wandb/integration/sagemaker/auth.py,sha256=OmCkirtBj9IpHCRD_NSE1ou3TaOT-OqIkJstkuV4X9o,969
|
126
150
|
wandb/integration/sagemaker/config.py,sha256=XLtB9n0cEUe3hA1N9OAA51E9rKco5UZGRteGv_9SCfE,1748
|
@@ -169,7 +193,7 @@ wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
|
169
193
|
wandb/old/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
170
194
|
wandb/old/core.py,sha256=bIIFlU3_E2hvrVCzMQk1VcwJtxbadbAZwDC0qsF4C2g,1501
|
171
195
|
wandb/old/settings.py,sha256=IrS10skC9gCTb8NgTWeRFgsTYL1bw36e-rG_xECk-yo,6374
|
172
|
-
wandb/old/summary.py,sha256=
|
196
|
+
wandb/old/summary.py,sha256=FZrkTyycUy6MRY1n4q7713rlTV7h-CMr8_kNoeb-wzY,13856
|
173
197
|
wandb/plot/__init__.py,sha256=Md3OLwXgT01j27Ad4WddOwzVseNWcvWxPCRSbXAtXE0,813
|
174
198
|
wandb/plot/bar.py,sha256=4mGxyMrnAZnaJekldYm9oHqEd1dcyWd1LE2UYKjPyok,2164
|
175
199
|
wandb/plot/confusion_matrix.py,sha256=C8PuEEhvBn_tpOQlAR_1WMIBnbCmfOFpt3zZ-TzcHtw,6698
|
@@ -183,58 +207,63 @@ wandb/plot/scatter.py,sha256=er_s8ARfxch_vf5uGkAcvFWb42Kw3jtd-2qsPoTj2F4,2166
|
|
183
207
|
wandb/plot/utils.py,sha256=Ri1W9_NYQijFcPv9BfGLGMKdQk_AZ8dnw1TiHJ0LANE,6803
|
184
208
|
wandb/plot/viz.py,sha256=ni1MTkt3k1TxSqArdIR_sVcD1cV0j9eKmJdX0QlBcOM,943
|
185
209
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
186
|
-
wandb/proto/wandb_base_pb2.py,sha256=
|
187
|
-
wandb/proto/wandb_deprecated.py,sha256=
|
210
|
+
wandb/proto/wandb_base_pb2.py,sha256=h09-9fMDbMC82T3jWHzmh8MB8llZ9o9za0uBOF_bL_s,385
|
211
|
+
wandb/proto/wandb_deprecated.py,sha256=tDtsCavTqZKjCPEQpFGRzhvPpW9Tgv7HFiu8swmNAvc,2422
|
188
212
|
wandb/proto/wandb_generate_deprecated.py,sha256=Iyf7PwIL_2B7XohrckYLbjjT09lccwbqknxtWelJpJM,1002
|
189
213
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
190
|
-
wandb/proto/wandb_internal_pb2.py,sha256=
|
191
|
-
wandb/proto/wandb_server_pb2.py,sha256=
|
192
|
-
wandb/proto/wandb_settings_pb2.py,sha256=
|
193
|
-
wandb/proto/wandb_telemetry_pb2.py,sha256=
|
214
|
+
wandb/proto/wandb_internal_pb2.py,sha256=hTpbURqJyoNcwHD7o3k0ofmKgZdmKEYUm9sBqLHa5iA,628
|
215
|
+
wandb/proto/wandb_server_pb2.py,sha256=82Cf27PnDjHbkQT_-ZPjQyI0AVYd9YWoAlABrGPD-xo,393
|
216
|
+
wandb/proto/wandb_settings_pb2.py,sha256=Wba7SDYTKy-Sm2sYrTmqwYH6sBvdD9ogE1i87lt_85A,401
|
217
|
+
wandb/proto/wandb_telemetry_pb2.py,sha256=Y9uzA6O9yUJ3HKqYOi86hg-mZ49NtSzQ_XRFSCONolA,405
|
194
218
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
195
219
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
196
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
220
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=Ph7mEcZbRkv3gol2zGDJvF1qC3resDSICF8LvdUWJ-k,116668
|
197
221
|
wandb/proto/v3/wandb_server_pb2.py,sha256=LQCUmuy0NFDo20N9uCUiE5VPyhP5r929WKtniae4CdQ,15514
|
198
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
199
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
222
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=m1DklMA8QFSSpy7brcn8wbAl8KFUpLT1JGWs1p7Get8,21297
|
223
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=GKa7hVNsyoGBSyQIkXURy5LLYc-7W9yRPVwnz8e8k_Q,14155
|
200
224
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
225
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
202
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
226
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=WlQIsGMLYhc1SIdTKq29MDIOs4Ov1bC9TVEobTv36bQ,53496
|
203
227
|
wandb/proto/v4/wandb_server_pb2.py,sha256=NiG6Xv9CDvxc8v8NmnM237jyYqMuRyE_nqmLAMZVdI8,6977
|
204
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
205
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
228
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=zdM6a_oxeEj4JsdlfSrrBEt-nseG9v-EKZNhlYUmp64,17672
|
229
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=8y3cukH-S3_cADQcvYAr-6fpMRpC68KextsWXDbApMc,11602
|
206
230
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
207
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
231
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=5_2vUaUY0_hX-bD8S7Dz4Pfmy419a21ql3dJb-gCQsI,57843
|
208
232
|
wandb/proto/v5/wandb_server_pb2.py,sha256=f55mk3Z77xUnq_tAbTd_Q75CiOJz6ppPbZT7CoeF7-I,7535
|
209
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
210
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
233
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=U6UXB3be65DEzCmXASG_lNU6JiQScsbp6bgMqF3wWzg,18028
|
234
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=acn_XBHWmv813oFojPqPhe4YiIhb_povERGvPfH9QK8,11872
|
235
|
+
wandb/proto/v6/wandb_base_pb2.py,sha256=5NJU1W7zgKLIsKL5brRoOL4HcLOxWieIKlWEe1IM0_g,1821
|
236
|
+
wandb/proto/v6/wandb_internal_pb2.py,sha256=ooo4Vn5XLTv00iJD9-XANTTJUHNOTk8xPAeimQ6r81U,58096
|
237
|
+
wandb/proto/v6/wandb_server_pb2.py,sha256=jH4AJat2sz9hR88er6D4yb-6bNLY5nPW5oX5CuHjBLc,7786
|
238
|
+
wandb/proto/v6/wandb_settings_pb2.py,sha256=iS9x5B-cUOEehHQpaThIxI5-yRvS7K0QVsaTdyC9e5k,18281
|
239
|
+
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=vJHyGNIzupJwdDUxg6LnpBc-bGSjOE34dA5aYV4HVFs,12126
|
211
240
|
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
212
241
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
213
|
-
wandb/sdk/wandb_config.py,sha256=
|
242
|
+
wandb/sdk/wandb_config.py,sha256=imPAYPMzP3rdhmYCK6zYWeZ1GbM7Jw5w7_PTJdoRmcc,10693
|
214
243
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
215
|
-
wandb/sdk/wandb_init.py,sha256=
|
216
|
-
wandb/sdk/wandb_login.py,sha256
|
217
|
-
wandb/sdk/wandb_metadata.py,sha256=
|
244
|
+
wandb/sdk/wandb_init.py,sha256=IEKTjQ_vSxTRRQ2DEYCQ7Yjsc_z4_KvfJRKR1Mkn2KY,64397
|
245
|
+
wandb/sdk/wandb_login.py,sha256=SwbajDUYM_wrKQuBUyyN0Jsyt24Pq0gApJYLfcTmb-g,11284
|
246
|
+
wandb/sdk/wandb_metadata.py,sha256=wnwKexZjJ7zRtAcfYbOZtaoK6rfVVU5oKDWT5-UerOk,20886
|
218
247
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
219
248
|
wandb/sdk/wandb_require.py,sha256=eYDG4oH1pwik2tHJVEdvivo4R2RypoITFomgr7umMhc,3104
|
220
249
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
221
|
-
wandb/sdk/wandb_run.py,sha256=
|
222
|
-
wandb/sdk/wandb_settings.py,sha256=
|
223
|
-
wandb/sdk/wandb_setup.py,sha256=
|
250
|
+
wandb/sdk/wandb_run.py,sha256=Igw6HrFBq2y0TcX6gykAtLFYyQA03cbmIGnqRUUhwQo,156770
|
251
|
+
wandb/sdk/wandb_settings.py,sha256=VirEHRyePG0jvoz_fkf7FvWHTWMwdVoiCfRj9BFqyuQ,64877
|
252
|
+
wandb/sdk/wandb_setup.py,sha256=iDlnTroAb9Lt2rdv0s29g0B_fJp4c9ycsgdpSxMlkY8,14709
|
224
253
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
225
254
|
wandb/sdk/wandb_sweep.py,sha256=Sg_JqxVzmjUBvii41azpdr-c6RPwHOBnSha8k7jrRhk,4028
|
226
255
|
wandb/sdk/wandb_sync.py,sha256=GNC8xYqT56ws4aw6Vd_mV_Ck-InEbqnyioSqHIybDug,2106
|
227
256
|
wandb/sdk/wandb_watch.py,sha256=F7S9CLbw9PddUp1qBjPRKsOiVFU8LPaq6A9taV3TJKI,4840
|
228
257
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
229
|
-
wandb/sdk/artifacts/_graphql_fragments.py,sha256=
|
230
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
231
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
258
|
+
wandb/sdk/artifacts/_graphql_fragments.py,sha256=bqoL9fsoGUHgJS2OaxqpppljP2AVDN2iz7t7O5QeQ0U,2583
|
259
|
+
wandb/sdk/artifacts/_validators.py,sha256=p74NPaBhRPJ-Z_2o85RdGcfDM8Tqok7DrqmIvuUbN9Y,4216
|
260
|
+
wandb/sdk/artifacts/artifact.py,sha256=36ToIQwZ9zusMfHpln1Twek9Fv6cEZqNrYXpzJwood0,93337
|
232
261
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyTA9vscxJL5-8_eupknI,1501
|
233
262
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=503z2x4CoTLXk_IfC9jRKBU9fr-X9PMiyG66h0INzQg,9744
|
234
263
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=atSUDvKjkp6by6QY0w2FLMrFUg9UKc8TIrMVWGauV64,501
|
235
264
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=YYC6o2OooTcVfkzqQIIVcxVxqdSN9TELG-qWgaSI2Qo,2545
|
236
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
237
|
-
wandb/sdk/artifacts/artifact_saver.py,sha256=
|
265
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=MNBQxU_L0MMBzgRc0FFZodn8AN3KjJznKR4douZBun0,8395
|
266
|
+
wandb/sdk/artifacts/artifact_saver.py,sha256=Dw8gT3NVMlyoVuDkIpROYdZMU5rGduVZzRTFSOnebak,9718
|
238
267
|
wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
|
239
268
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
|
240
269
|
wandb/sdk/artifacts/exceptions.py,sha256=h9tSi023BhW85_FfjLYjeNtlVgUTqZRfnYM9WgdAMbM,2023
|
@@ -242,10 +271,31 @@ wandb/sdk/artifacts/staging.py,sha256=_U3oH2S7fEevRkcYgo4nmwvdaoJnZR4V-bNiJVWlow
|
|
242
271
|
wandb/sdk/artifacts/storage_handler.py,sha256=ebMCKXvvn7z_eYunXriTOYescstuBbNbxn7MDW9qZAw,1834
|
243
272
|
wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
|
244
273
|
wandb/sdk/artifacts/storage_policy.py,sha256=BGIC8QRfryCNzF-72uk53MvQQbZVoKwQGhn2zX3NaRE,2090
|
274
|
+
wandb/sdk/artifacts/_generated/__init__.py,sha256=-i_CluEI4MsPzsyCQOiFTWHublLZNQ1iLzNmhbafo1I,10250
|
275
|
+
wandb/sdk/artifacts/_generated/artifact_collection_membership_files.py,sha256=iRG2YDjHIDgG9_O5sI4ltkJX6ILCAGJgEKJA_ImO7wE,1343
|
276
|
+
wandb/sdk/artifacts/_generated/artifact_version_files.py,sha256=-yPP-7wlB-jgv4BKrIm_7NeCucCcDwGvOb2rZSphUsk,925
|
277
|
+
wandb/sdk/artifacts/_generated/create_artifact_collection_tag_assignments.py,sha256=jvM9wBU7gfqbIyno7IvfQAh9Jbvp_bMFFDKph7qjpe8,1034
|
278
|
+
wandb/sdk/artifacts/_generated/delete_artifact_collection_tag_assignments.py,sha256=BHJKnPZbWcdHLg4-uQ2V51i4OM2voSUdovfYM5Zv7JA,642
|
279
|
+
wandb/sdk/artifacts/_generated/delete_artifact_portfolio.py,sha256=lsGr5vO2EiySHEOZ-KdWdaEXdLO9-YEavXlbuIKanYY,991
|
280
|
+
wandb/sdk/artifacts/_generated/delete_artifact_sequence.py,sha256=UGA_ymMNL8t1Bu5ThfKRl89B-elsUYhCdMa9_dGkUXU,979
|
281
|
+
wandb/sdk/artifacts/_generated/enums.py,sha256=Av9fHhSrUJDDaWPhS4fGJGLu_9X0lGhGjpKKnAEQ8iM,345
|
282
|
+
wandb/sdk/artifacts/_generated/fragments.py,sha256=6v2pKCcO-EjhYPgDut2bVpgG6hZTRsmH2NPFiCZf8NY,5349
|
283
|
+
wandb/sdk/artifacts/_generated/input_types.py,sha256=nZ4PbubRbdAYEqXlfNjyPY7p2Xcnfg3k2tPyKLmtC2o,414
|
284
|
+
wandb/sdk/artifacts/_generated/move_artifact_collection.py,sha256=Jb4kOxyoNinSY_UUuqskBG3uuFN0KanevXOgXb4Q8mw,962
|
285
|
+
wandb/sdk/artifacts/_generated/operations.py,sha256=A-ulafxdibLQVt0KJxA7zaaxyVH8n4YWFs8Xo-z3Dh8,10793
|
286
|
+
wandb/sdk/artifacts/_generated/project_artifact_collection.py,sha256=sMfS5nueyZz_EEQrdo2J7h9xo346jsAglAofHnqz1-k,3393
|
287
|
+
wandb/sdk/artifacts/_generated/project_artifact_collections.py,sha256=4vgbbsMeblXtbn3ebloXDGz20x5JRxzwZpZhci5x--w,865
|
288
|
+
wandb/sdk/artifacts/_generated/project_artifact_type.py,sha256=NOYXo2UYV1cslcbjSi0Q9167Iv5iksj9LS1XzcbsbXM,543
|
289
|
+
wandb/sdk/artifacts/_generated/project_artifact_types.py,sha256=rGbW8kK66zR72kLklWuAcDnzmp7KkCFTXLvsUctlewY,542
|
290
|
+
wandb/sdk/artifacts/_generated/project_artifacts.py,sha256=noPODtFVotO69VK5oHZeU8NF4aYLKsPPRHOtNMPhn38,1128
|
291
|
+
wandb/sdk/artifacts/_generated/run_input_artifacts.py,sha256=B9qtwEBoYXG55UuNq18MmRtOlMk2mvXukKDTW_dmPbQ,1406
|
292
|
+
wandb/sdk/artifacts/_generated/run_output_artifacts.py,sha256=055RjKbfuVwiWM2eKpErMIFiY7S74pLTjFdRSypYf1g,1432
|
293
|
+
wandb/sdk/artifacts/_generated/update_artifact_portfolio.py,sha256=tcEUGOoAE8pqr27tCwJoA9-Z95s_gNlIQkDCaUiFqkE,978
|
294
|
+
wandb/sdk/artifacts/_generated/update_artifact_sequence.py,sha256=dwkvOYLgSbTSuwjZKvW9DtlW1Q78YPgQnayuVIA1P0U,966
|
245
295
|
wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
246
296
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=IW0xTXh4j-GxgypmcJkkefXnopPrycnSnPF1Sl5ypfs,3443
|
247
297
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
248
|
-
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=
|
298
|
+
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=Y0B79t9xDrXo361O9x6VFPQWJOozIPlzQRaGx6768Sw,8333
|
249
299
|
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=hGslEr9QYi0Jp5_C5fxv7CaRu219tdmldyayncze0vc,8514
|
250
300
|
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=BI-NlGm0WRwGz8B-ZW9YtDEwlClvNwCE4_LRwSlXlpw,4070
|
251
301
|
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=XvFrNxadghPdI1fHw5X56OPYJfYolfDxLU28puQuIJY,5554
|
@@ -256,30 +306,30 @@ wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=MVLbOi-py7Fbw
|
|
256
306
|
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=JgQVx0G5wocuycEJXxXKlXAl6B7fRVlrvlBEX8_BzP0,2552
|
257
307
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
|
258
308
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
|
259
|
-
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=
|
309
|
+
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=VMy9B6Wm6I4WtNtGOTb4QGIDSlRVoVIakG0UpFNUNqo,14883
|
260
310
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
261
311
|
wandb/sdk/backend/backend.py,sha256=w9aV2IEEjUFjjAzAe8UX7Pfz49hp3dcI-fXRhpQWq9A,7791
|
262
312
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
263
313
|
wandb/sdk/data_types/_dtypes.py,sha256=NdRfTto95YxLMMK89PONQvAz_Jaey8D7caTsZ_OlvW8,30092
|
264
314
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
265
|
-
wandb/sdk/data_types/audio.py,sha256=
|
315
|
+
wandb/sdk/data_types/audio.py,sha256=q6buCUd3NYmHLs6UaQwzU0eMULKigofq4WOlIJKGg8U,5305
|
266
316
|
wandb/sdk/data_types/bokeh.py,sha256=0Aq4CJECPpoAkl7vw5LCGYhdCb9pS8i46jHB9PxTj1k,2534
|
267
317
|
wandb/sdk/data_types/graph.py,sha256=_P_z2dNj2mCJeSvusIfVHkSkVB9AL0AEO-6KaguC1ys,12089
|
268
318
|
wandb/sdk/data_types/histogram.py,sha256=syx3fUDoP6vYqA3r5m7bHXK6MAWo2MkRhpCKasihwvg,3145
|
269
|
-
wandb/sdk/data_types/html.py,sha256=
|
270
|
-
wandb/sdk/data_types/image.py,sha256=
|
271
|
-
wandb/sdk/data_types/molecule.py,sha256=
|
272
|
-
wandb/sdk/data_types/object_3d.py,sha256=
|
319
|
+
wandb/sdk/data_types/html.py,sha256=6HrVFlY7C5zDZlG6UiKG2ODItIxYFidMuijPmajyrUw,4372
|
320
|
+
wandb/sdk/data_types/image.py,sha256=qaTXC4jWiz5ps61-1VjRv1ltVpnsKLF1Qm7eWJN2wn0,31711
|
321
|
+
wandb/sdk/data_types/molecule.py,sha256=rTvaAfHLYZ3u7TZsHxEClKHA6fwNl81iolAf74KwIvQ,8490
|
322
|
+
wandb/sdk/data_types/object_3d.py,sha256=6WlsiefTzDErb84M9mVRE8aN-GXFoX1v3S4YReVOzR8,16002
|
273
323
|
wandb/sdk/data_types/plotly.py,sha256=LEIHRqtHHpSou04AEUsyH8_UMXP4adrEHHaKoEtQkxo,2913
|
274
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
275
|
-
wandb/sdk/data_types/table.py,sha256=
|
276
|
-
wandb/sdk/data_types/trace_tree.py,sha256=
|
277
|
-
wandb/sdk/data_types/utils.py,sha256=
|
278
|
-
wandb/sdk/data_types/video.py,sha256
|
324
|
+
wandb/sdk/data_types/saved_model.py,sha256=XtlrAp8PHb4Pd8-xG97I_iSvFe8fme9iHmHMR9G2KG8,16212
|
325
|
+
wandb/sdk/data_types/table.py,sha256=YzAvTswSUK18bMcedianJf3cjXNz-gz7zG84n9nbTO8,45005
|
326
|
+
wandb/sdk/data_types/trace_tree.py,sha256=i0LaWCnZsmTY560byG6_K4D9a6LTWDYJDKrnPe2YhwE,14838
|
327
|
+
wandb/sdk/data_types/utils.py,sha256=Cngs-FHDjFs9BnBQJz8DV1QjLGoNE-2Bb8HbiTU6_Do,7636
|
328
|
+
wandb/sdk/data_types/video.py,sha256=-iFFMjHzu-OXQHFvETShYaEP42WvaGyhuv9trW4RaoM,8602
|
279
329
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
280
330
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
|
281
|
-
wandb/sdk/data_types/base_types/media.py,sha256=
|
282
|
-
wandb/sdk/data_types/base_types/wb_value.py,sha256=
|
331
|
+
wandb/sdk/data_types/base_types/media.py,sha256=DMGP8hsfZv_iSgoqhW0xpcAUs-9Broe2rgpZs_KGIts,14417
|
332
|
+
wandb/sdk/data_types/base_types/wb_value.py,sha256=Qr3fhMjSelDx9teXXJEstZUU2vUcPb97rsupoPtI8fs,12294
|
283
333
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
284
334
|
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=z_cssRDjzWSoDopThg4W3oUQ6Cy17RvrO4WhB4Ha_V0,13272
|
285
335
|
wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZYRj8rvSmT7fl9ds,5520
|
@@ -289,7 +339,7 @@ wandb/sdk/integration_utils/auto_logging.py,sha256=sblNn9BIG7memxTj23UfrGXyA06t3
|
|
289
339
|
wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
|
290
340
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
291
341
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
292
|
-
wandb/sdk/interface/interface.py,sha256=
|
342
|
+
wandb/sdk/interface/interface.py,sha256=h61rB5Rs_SU0Ives8z1b3nAF6gxNC__2WwLplbnv15Q,37798
|
293
343
|
wandb/sdk/interface/interface_queue.py,sha256=zOjUB2nf_wNMoEeXGWP5di-u4-UL2_jvsVZw53EbEsk,1257
|
294
344
|
wandb/sdk/interface/interface_relay.py,sha256=lM5ZgJc6m8BS-nWOuzMCwAK0ve9UBGgOD2rgJ9flIhI,867
|
295
345
|
wandb/sdk/interface/interface_shared.py,sha256=XmEg78CyUHI4XPNtgyx59aQIlzJzQjZYEIeQVECHXSE,18645
|
@@ -307,19 +357,24 @@ wandb/sdk/internal/file_stream.py,sha256=Dnqayrbqa6L2sG03rX2oIFhWT-IME5vl5JTykyL
|
|
307
357
|
wandb/sdk/internal/flow_control.py,sha256=3LJ-KatyPPH18G7TfSMLDk-BE5tankB4JRhQqLoUOWM,8585
|
308
358
|
wandb/sdk/internal/handler.py,sha256=zquR4k6Ah5ohg9n5XJC_bKAulz3aSUuMjUlHqiIOfFE,34280
|
309
359
|
wandb/sdk/internal/internal.py,sha256=o9_-6C99LMOx_YB5xuZ1I1KgpeHk3jUgll63sEe9gCY,12182
|
310
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
360
|
+
wandb/sdk/internal/internal_api.py,sha256=HXXCtbJ7-N-w7889zwKGRKgzeN-dDSsdxpdLtzPnSZU,163705
|
311
361
|
wandb/sdk/internal/internal_util.py,sha256=dKawQKw4UdZUE6Bmme5baT0FGDC0IUgoD2zM6ey4oBU,2555
|
312
362
|
wandb/sdk/internal/job_builder.py,sha256=_L-DfGFEzDl0JLXPo535KPK3Bk0vqXsTQVF7buXeaiY,22962
|
313
|
-
wandb/sdk/internal/profiler.py,sha256=
|
363
|
+
wandb/sdk/internal/profiler.py,sha256=8RUuvXnKOAPyoul_V9D5uoQkHElg7wms89ieVfHVTHY,2408
|
314
364
|
wandb/sdk/internal/progress.py,sha256=9nNAErIXzJoapctsfqWYhESNPzFkXAu5TVAnaKsIa4k,2339
|
315
|
-
wandb/sdk/internal/run.py,sha256=
|
365
|
+
wandb/sdk/internal/run.py,sha256=X24LqoU3jxZKLUYYEl8pb0sJaGhwAhFMWX3xiYp4LXk,710
|
316
366
|
wandb/sdk/internal/sample.py,sha256=USAWLhEeP83J13BVOSIy1Rb3kDDKTK9kzR88SlhO7dw,2470
|
317
|
-
wandb/sdk/internal/sender.py,sha256=
|
318
|
-
wandb/sdk/internal/sender_config.py,sha256=
|
319
|
-
wandb/sdk/internal/settings_static.py,sha256
|
367
|
+
wandb/sdk/internal/sender.py,sha256=kU1EkHkX0S-xKRDjbk7Cj3K2ivVvscrNPsn8-RpLQnk,64588
|
368
|
+
wandb/sdk/internal/sender_config.py,sha256=3g0eAgmYJtv7tPXlqf7qayqKj-JOclvVRvzbVi8wfR4,6711
|
369
|
+
wandb/sdk/internal/settings_static.py,sha256=-3pJ5RCWxGbNVVE4RvGudTurpn8ObN8wTEx_4dkrS3o,4284
|
320
370
|
wandb/sdk/internal/tb_watcher.py,sha256=3AvQGlZLGkr8POhaSGzbeyIcX0YWkLkblJ0bksAB8U8,18738
|
321
371
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
322
372
|
wandb/sdk/internal/writer.py,sha256=jo_Ex7ik-0_rIahYDHIWcQjm_uxsUNVn92__bI8TloE,7267
|
373
|
+
wandb/sdk/internal/_generated/__init__.py,sha256=DRBzTksuUuVY9oRJQsLtRTMMItykywWYvDxktHbCfk8,381
|
374
|
+
wandb/sdk/internal/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
375
|
+
wandb/sdk/internal/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
376
|
+
wandb/sdk/internal/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
|
377
|
+
wandb/sdk/internal/_generated/server_features_query.py,sha256=WGjefMl-SDR7o7OVtJk7xKEYICBFA2wceGMXbuyj5QU,647
|
323
378
|
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
324
379
|
wandb/sdk/internal/system/env_probe_helpers.py,sha256=jIy6gbiaq37SzgcBGe6GepJho1VS5qNQThqOmu-g0OA,397
|
325
380
|
wandb/sdk/internal/system/system_info.py,sha256=51hOq_WBLdDDTX6aFUkcEnRCvOSNZcKGuwx7-ODC4iY,10072
|
@@ -390,14 +445,14 @@ wandb/sdk/launch/sweeps/scheduler.py,sha256=yPHVT5GD1my_2tlMqGsLOBL3Q8pAxCcxLoFf
|
|
390
445
|
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=beM0go0u9xRcXW20ED8MyTqq4ol_O5_4PODbA7FpN88,2987
|
391
446
|
wandb/sdk/launch/sweeps/utils.py,sha256=TbsAvn3eQnp5js0SvMmPVoP5vaT5bXMPL-ISWyZvVlQ,9837
|
392
447
|
wandb/sdk/lib/__init__.py,sha256=53BA5lIOtUXciXZcPpNsFbp-iUPzI5gQFxplTykNmOE,183
|
393
|
-
wandb/sdk/lib/apikey.py,sha256
|
394
|
-
wandb/sdk/lib/asyncio_compat.py,sha256=
|
448
|
+
wandb/sdk/lib/apikey.py,sha256=-t_qzoYTpgUOue-3q67Nh-H9vEXz-laUHVNx8XpbBug,11131
|
449
|
+
wandb/sdk/lib/asyncio_compat.py,sha256=zBC5yVXTPryiyK129ml56CW0PJE7vFm1N00Od5_WiKc,6579
|
395
450
|
wandb/sdk/lib/capped_dict.py,sha256=T2CNkmzfWeFgXOsFmx5IDPzgYmP1jxaVAb-nn3-qBBE,820
|
396
451
|
wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
|
397
452
|
wandb/sdk/lib/console_capture.py,sha256=eC1bThCHa9DiQTk21ALdK8w1ETeydBpiTOYKN31EjVs,4923
|
398
453
|
wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
|
399
|
-
wandb/sdk/lib/deprecate.py,sha256=
|
400
|
-
wandb/sdk/lib/disabled.py,sha256=
|
454
|
+
wandb/sdk/lib/deprecate.py,sha256=g5fIRwR5FrBmNpbLJhBmxh-pyvSbGh2ZumUEfScT0NA,941
|
455
|
+
wandb/sdk/lib/disabled.py,sha256=43T-YKrab-Lwkb7XBM5McPuRJX3mOnO_ne01u9h71Lg,926
|
401
456
|
wandb/sdk/lib/exit_hooks.py,sha256=_4oozaRQCJi8NJfZvHsA8livvFb0trZKLOGB8_UcHGk,1540
|
402
457
|
wandb/sdk/lib/file_stream_utils.py,sha256=NN4qaSyNufvlkg96a1YUjQ8-pYtCVU7xagJaW8mqAyI,4018
|
403
458
|
wandb/sdk/lib/filenames.py,sha256=GvzWOq85BO_Od7f69PkRKS6zYhQ88dTCtMr3c19jLEk,2006
|
@@ -415,12 +470,13 @@ wandb/sdk/lib/lazyloader.py,sha256=4Seis4C8Ph6a2-3scfYqeHh7KjKG6PO0WJ2ZPW30O0o,1
|
|
415
470
|
wandb/sdk/lib/module.py,sha256=PWxpFqOYmLyKPF-VgfINZXzkFxDcoQVunVDVNWNnbxQ,2098
|
416
471
|
wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
|
417
472
|
wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
|
418
|
-
wandb/sdk/lib/printer.py,sha256=
|
473
|
+
wandb/sdk/lib/printer.py,sha256=fqwEn2RB4ZJh8UgYB41wfz0nnWm5bPQmxo-2gWwiy3A,16318
|
474
|
+
wandb/sdk/lib/printer_asyncio.py,sha256=KfCnRz54XcJrTbVOe_yBOumO9Dhk80j95aYhv3xLEDI,1424
|
419
475
|
wandb/sdk/lib/progress.py,sha256=GakG9R_mJxVx8zG8atVHKydDZt0uRFEPwls7b3hUpsc,10652
|
420
476
|
wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2894
|
421
|
-
wandb/sdk/lib/redirect.py,sha256
|
477
|
+
wandb/sdk/lib/redirect.py,sha256=PSe53WibPfzx4riMoE8d-lSUySQZ7_wnT2pGN6NZxwY,27381
|
422
478
|
wandb/sdk/lib/retry.py,sha256=BAgPgJb1SxRguor2KTfOFnQpTlyNE4M_X8VcEc7YfMs,10173
|
423
|
-
wandb/sdk/lib/run_moment.py,sha256=
|
479
|
+
wandb/sdk/lib/run_moment.py,sha256=jMkfNAHOrYHlb6_nisqjfMu2Onm1bDy6lIubOJ2WxCM,2421
|
424
480
|
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
425
481
|
wandb/sdk/lib/server.py,sha256=dn0RXjAnpmigAULLyq75XHYyHxw17MLCJ9fhPq2v22I,1623
|
426
482
|
wandb/sdk/lib/service_connection.py,sha256=pf1T0isbDwTkv9MvuIpuk1MHTVkCebK4N8n9pXF4SSg,7455
|
@@ -430,6 +486,7 @@ wandb/sdk/lib/sparkline.py,sha256=9xQkuZ0z1DM7rHE2jFNDy5vBdPirnurd__A_bC6-Bgc,13
|
|
430
486
|
wandb/sdk/lib/telemetry.py,sha256=Q7rh7qyeicy9KdgQffVK6ZI8vHUdOtwFvxEeeJtOWcI,2754
|
431
487
|
wandb/sdk/lib/timed_input.py,sha256=D7vx3N3m4LlxwkQpzS7lDi7IOnccqZ3WfLlDYRs8Oes,3229
|
432
488
|
wandb/sdk/lib/timer.py,sha256=VZUyl7fmQAB75l9QXw9Nkz9SxyYj-CvLPawAk866YKM,440
|
489
|
+
wandb/sdk/lib/wb_logging.py,sha256=9km7TAnJRSwBTQaFSYA4BmQZV3_Gb0y1PBlzqEOdUHA,4839
|
433
490
|
wandb/sdk/mailbox/__init__.py,sha256=C4x3ym_hymymKFZiI1Q0HPlGx5x5CzeKPVF229Z2V8w,856
|
434
491
|
wandb/sdk/mailbox/mailbox.py,sha256=jUEP2Ltgi9rCZmiDtfb5ZESaqwB2wH-sy72OLRvATZk,4314
|
435
492
|
wandb/sdk/mailbox/mailbox_handle.py,sha256=YLKNMkytIAoIpMuV5Nu_g04JdTGzm8P9d9iw2EPJhV4,3743
|
@@ -439,11 +496,11 @@ wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
439
496
|
wandb/sdk/service/_startup_debug.py,sha256=A6P5iCYRoNGcVulziUc7Mw_Y2MCG8PAIAUVjzzMUTPs,602
|
440
497
|
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
441
498
|
wandb/sdk/service/server.py,sha256=_0MAn4Y1hs2AnapyQb5heYiixKQNxFENfkxIGoiiIB8,3460
|
442
|
-
wandb/sdk/service/server_sock.py,sha256=
|
443
|
-
wandb/sdk/service/service.py,sha256=
|
444
|
-
wandb/sdk/service/streams.py,sha256=
|
499
|
+
wandb/sdk/service/server_sock.py,sha256=J25fwVS6O1ljgd3Fw7opECwCHKsTeLddOTJvbE_KEA0,9802
|
500
|
+
wandb/sdk/service/service.py,sha256=o7UU5TXtcS1ixKlbLhTyImCywL74j5z__LR_fkJqFjg,8752
|
501
|
+
wandb/sdk/service/streams.py,sha256=AXv98iJcXUwx5UjPBTppCob6SEHaFf8HfjXmmzlwwbA,14948
|
445
502
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
446
|
-
wandb/sdk/verify/verify.py,sha256=
|
503
|
+
wandb/sdk/verify/verify.py,sha256=zSSAdm0_xd5Yu8E3BS5OAJbiJzVuwM0W25i-ldXCMh8,18320
|
447
504
|
wandb/sync/__init__.py,sha256=BzzKmWKjsrCTBAj24d-lJOEPkFUmTfvaK2MeXplSwcc,93
|
448
505
|
wandb/sync/sync.py,sha256=um8jeL7Ba0Hx1IBhJvXArcqBTZ4RF4xqVANPF8HbC0Y,15732
|
449
506
|
wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -830,8 +887,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=cJIaJ2EQso
|
|
830
887
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2NpFcq9UVLIS-tsS0TS_Qw8akhKxn2eY,1506
|
831
888
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
|
832
889
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
|
833
|
-
wandb-0.19.
|
834
|
-
wandb-0.19.
|
835
|
-
wandb-0.19.
|
836
|
-
wandb-0.19.
|
837
|
-
wandb-0.19.
|
890
|
+
wandb-0.19.10.dist-info/METADATA,sha256=xiNV4Ja9H8zkh45iBRhL-vKev9EHtbbqn5Ha0iwDKsk,10259
|
891
|
+
wandb-0.19.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
892
|
+
wandb-0.19.10.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
893
|
+
wandb-0.19.10.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
894
|
+
wandb-0.19.10.dist-info/RECORD,,
|
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
|
-
]
|
@@ -1,14 +0,0 @@
|
|
1
|
-
# Generated by ariadne-codegen
|
2
|
-
|
3
|
-
"""Definitions to ensure compatibility with all supported python versions."""
|
4
|
-
|
5
|
-
import sys
|
6
|
-
|
7
|
-
if sys.version_info >= (3, 12):
|
8
|
-
from typing import Annotated, override
|
9
|
-
else:
|
10
|
-
from typing_extensions import Annotated, override
|
11
|
-
|
12
|
-
|
13
|
-
Annnotated = Annotated
|
14
|
-
override = override
|
File without changes
|
File without changes
|
File without changes
|