wandb 0.20.1rc20250604__py3-none-macosx_11_0_arm64.whl → 0.21.0__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 +3 -6
- wandb/__init__.pyi +24 -23
- wandb/analytics/sentry.py +2 -2
- wandb/apis/importers/internals/internal.py +0 -3
- wandb/apis/internal.py +3 -0
- wandb/apis/paginator.py +17 -4
- wandb/apis/public/api.py +85 -4
- wandb/apis/public/artifacts.py +10 -8
- wandb/apis/public/files.py +5 -5
- wandb/apis/public/projects.py +44 -3
- wandb/apis/public/registries/{utils.py → _utils.py} +12 -12
- wandb/apis/public/registries/registries_search.py +2 -2
- wandb/apis/public/registries/registry.py +19 -18
- wandb/apis/public/reports.py +64 -8
- wandb/apis/public/runs.py +16 -23
- wandb/automations/__init__.py +10 -10
- wandb/automations/_filters/run_metrics.py +0 -2
- wandb/automations/_utils.py +0 -2
- wandb/automations/actions.py +0 -2
- wandb/automations/automations.py +0 -2
- wandb/automations/events.py +0 -2
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/beta.py +1 -7
- wandb/cli/cli.py +0 -30
- wandb/env.py +0 -6
- wandb/integration/catboost/catboost.py +6 -2
- wandb/integration/kfp/kfp_patch.py +3 -1
- wandb/integration/sb3/sb3.py +3 -3
- wandb/integration/ultralytics/callback.py +6 -2
- wandb/plot/__init__.py +2 -0
- wandb/plot/bar.py +30 -29
- wandb/plot/confusion_matrix.py +75 -71
- wandb/plot/histogram.py +26 -25
- wandb/plot/line.py +33 -32
- wandb/plot/line_series.py +100 -103
- wandb/plot/pr_curve.py +33 -32
- wandb/plot/roc_curve.py +38 -38
- wandb/plot/scatter.py +27 -27
- wandb/proto/v3/wandb_internal_pb2.py +366 -385
- 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 +352 -356
- 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 +352 -356
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v6/wandb_internal_pb2.py +352 -356
- wandb/proto/v6/wandb_settings_pb2.py +2 -2
- wandb/proto/v6/wandb_telemetry_pb2.py +10 -10
- wandb/sdk/artifacts/_generated/__init__.py +12 -1
- wandb/sdk/artifacts/_generated/input_types.py +20 -2
- wandb/sdk/artifacts/_generated/link_artifact.py +21 -0
- wandb/sdk/artifacts/_generated/operations.py +9 -0
- wandb/sdk/artifacts/_validators.py +40 -2
- wandb/sdk/artifacts/artifact.py +163 -21
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +42 -1
- wandb/sdk/backend/backend.py +1 -1
- wandb/sdk/data_types/base_types/media.py +9 -7
- wandb/sdk/data_types/base_types/wb_value.py +6 -6
- wandb/sdk/data_types/saved_model.py +3 -3
- wandb/sdk/data_types/table.py +41 -41
- wandb/sdk/data_types/trace_tree.py +12 -12
- wandb/sdk/interface/interface.py +8 -19
- wandb/sdk/interface/interface_shared.py +7 -16
- wandb/sdk/internal/datastore.py +18 -18
- wandb/sdk/internal/handler.py +4 -74
- wandb/sdk/internal/internal_api.py +54 -0
- wandb/sdk/internal/sender.py +23 -3
- wandb/sdk/internal/sender_config.py +9 -0
- wandb/sdk/launch/_project_spec.py +3 -3
- wandb/sdk/launch/agent/agent.py +3 -3
- wandb/sdk/launch/agent/job_status_tracker.py +3 -1
- wandb/sdk/launch/utils.py +3 -3
- wandb/sdk/lib/console_capture.py +66 -19
- wandb/sdk/lib/printer.py +6 -7
- wandb/sdk/lib/progress.py +1 -3
- wandb/sdk/lib/service/ipc_support.py +13 -0
- wandb/sdk/lib/{service_connection.py → service/service_connection.py} +20 -56
- wandb/sdk/lib/service/service_port_file.py +105 -0
- wandb/sdk/lib/service/service_process.py +111 -0
- wandb/sdk/lib/service/service_token.py +164 -0
- wandb/sdk/lib/sock_client.py +8 -12
- wandb/sdk/wandb_init.py +1 -5
- wandb/sdk/wandb_require.py +9 -21
- wandb/sdk/wandb_run.py +23 -137
- wandb/sdk/wandb_settings.py +233 -80
- wandb/sdk/wandb_setup.py +2 -13
- {wandb-0.20.1rc20250604.dist-info → wandb-0.21.0.dist-info}/METADATA +1 -3
- {wandb-0.20.1rc20250604.dist-info → wandb-0.21.0.dist-info}/RECORD +94 -120
- wandb/sdk/internal/flow_control.py +0 -263
- wandb/sdk/internal/internal.py +0 -401
- wandb/sdk/internal/internal_util.py +0 -97
- wandb/sdk/internal/system/__init__.py +0 -0
- wandb/sdk/internal/system/assets/__init__.py +0 -25
- wandb/sdk/internal/system/assets/aggregators.py +0 -31
- wandb/sdk/internal/system/assets/asset_registry.py +0 -20
- wandb/sdk/internal/system/assets/cpu.py +0 -163
- wandb/sdk/internal/system/assets/disk.py +0 -210
- wandb/sdk/internal/system/assets/gpu.py +0 -416
- wandb/sdk/internal/system/assets/gpu_amd.py +0 -233
- wandb/sdk/internal/system/assets/interfaces.py +0 -205
- wandb/sdk/internal/system/assets/ipu.py +0 -177
- wandb/sdk/internal/system/assets/memory.py +0 -166
- wandb/sdk/internal/system/assets/network.py +0 -125
- wandb/sdk/internal/system/assets/open_metrics.py +0 -293
- wandb/sdk/internal/system/assets/tpu.py +0 -154
- wandb/sdk/internal/system/assets/trainium.py +0 -393
- wandb/sdk/internal/system/env_probe_helpers.py +0 -13
- wandb/sdk/internal/system/system_info.py +0 -248
- wandb/sdk/internal/system/system_monitor.py +0 -224
- wandb/sdk/internal/writer.py +0 -204
- wandb/sdk/lib/service_token.py +0 -93
- wandb/sdk/service/__init__.py +0 -0
- wandb/sdk/service/_startup_debug.py +0 -22
- wandb/sdk/service/port_file.py +0 -53
- wandb/sdk/service/server.py +0 -107
- wandb/sdk/service/server_sock.py +0 -286
- wandb/sdk/service/service.py +0 -252
- wandb/sdk/service/streams.py +0 -425
- wandb/sdk/wandb_metadata.py +0 -623
- {wandb-0.20.1rc20250604.dist-info → wandb-0.21.0.dist-info}/WHEEL +0 -0
- {wandb-0.20.1rc20250604.dist-info → wandb-0.21.0.dist-info}/entry_points.txt +0 -0
- {wandb-0.20.1rc20250604.dist-info → wandb-0.21.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,15 +1,15 @@
|
|
1
1
|
package_readme.md,sha256=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
|
2
|
-
wandb-0.
|
3
|
-
wandb-0.
|
4
|
-
wandb-0.
|
5
|
-
wandb-0.
|
6
|
-
wandb-0.
|
7
|
-
wandb/env.py,sha256=
|
8
|
-
wandb/__init__.pyi,sha256=
|
2
|
+
wandb-0.21.0.dist-info/RECORD,,
|
3
|
+
wandb-0.21.0.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
|
4
|
+
wandb-0.21.0.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
5
|
+
wandb-0.21.0.dist-info/METADATA,sha256=Dzkm_CyeHEoMZtit3QJIEB-LvkIgMbqac5AZmb9Ib20,10250
|
6
|
+
wandb-0.21.0.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
7
|
+
wandb/env.py,sha256=4nXvLaxOokeH1JnrfZAgs4mxlotelSbIvN98yn3jKdw,13862
|
8
|
+
wandb/__init__.pyi,sha256=UG_Nbr97ObjZdLyp1ILmKaLwkiGDDmbPvLGPjs2usJc,48450
|
9
9
|
wandb/util.py,sha256=fCPwfepeZVKoR9eVgEntygISAmP6Mz5q7KknhF7cn50,63114
|
10
10
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
11
11
|
wandb/_iterutils.py,sha256=NX6MaIE3JzPXsqKNXUKdnpIlX0spGG8HwGIQt5VASrk,2400
|
12
|
-
wandb/__init__.py,sha256=
|
12
|
+
wandb/__init__.py,sha256=Z73q_CWJYtVTu8GMulAsWVIZ-7pALeLKqL3_qJH1fxQ,6984
|
13
13
|
wandb/data_types.py,sha256=M-wqAO0FtIqvj28556u3h4nzSwlRcbxhXoX0B9jlJSo,2283
|
14
14
|
wandb/wandb_controller.py,sha256=SksJdgwn14PpnUoIaBjJ9Ki4Nksl9BpQGGn42hT0xZg,24936
|
15
15
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -22,56 +22,56 @@ wandb/beta/workflows.py,sha256=q9iQpax5iU7p1v_HE-bFee0kDlYFgG9Zz15u6BsCdzM,10360
|
|
22
22
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
23
23
|
wandb/docker/__init__.py,sha256=tupkiHAEcpXmrcS7V8gcjHnqim2k9GJH6ZogVMC8nts,8663
|
24
24
|
wandb/docker/names.py,sha256=xI3DYzgYpkjaCz4qTKnm49fnexMkNCUjBuhunxAYyeE,1311
|
25
|
-
wandb/apis/internal.py,sha256=
|
25
|
+
wandb/apis/internal.py,sha256=Y03FxkF2lMOysNiw2SVXN00o5choqbTZ47_DXrXIFng,7736
|
26
26
|
wandb/apis/normalize.py,sha256=xWm3tualLOtCSdz5g4reU5dUq-WHH0sE2dPool9SmIw,2665
|
27
27
|
wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
|
28
|
-
wandb/apis/paginator.py,sha256=
|
28
|
+
wandb/apis/paginator.py,sha256=aG4t64c0O8tCLbmJf6de2EDRRSdczOyEQu8fXJVIiWw,3859
|
29
29
|
wandb/apis/attrs.py,sha256=hn2chCIb02gHw7sDWCkA6bXrmarYBABSbWKNCmx_KFs,1436
|
30
30
|
wandb/apis/importers/mlflow.py,sha256=uoxzm3bSOqjQyUkgOBwuzpaBjTdGp4drPaqE9f7Ny5w,8256
|
31
31
|
wandb/apis/importers/wandb.py,sha256=A4Dd0ioykPa1OmTlxkuvpYzgtH5aNpercDl4AxH_CHo,54531
|
32
32
|
wandb/apis/importers/__init__.py,sha256=ewph-RBUC9FnxL6uWbuuW0Hmdv2cHsxfqnZi0546ds4,38
|
33
33
|
wandb/apis/importers/validation.py,sha256=5odBqLZ3BQvyyO8CkYrm7bPXySOeDt_amQPwIrMcJRE,3183
|
34
|
-
wandb/apis/importers/internals/internal.py,sha256=
|
34
|
+
wandb/apis/importers/internals/internal.py,sha256=ieAnGMYU4-6_rGY9uP7uZePeepMjP964xgUcsr-8f1w,13199
|
35
35
|
wandb/apis/importers/internals/protocols.py,sha256=shZBD2bRMo81xPSUQdK2d9KK8qpop4CmMkizg8FI3WM,2885
|
36
36
|
wandb/apis/importers/internals/util.py,sha256=lvqLAqNA1UpoOuD6eqe_1ZzRwxj8IkYKxYcP9h0S5jI,2081
|
37
37
|
wandb/apis/workspaces/__init__.py,sha256=buvqtqELpCFWC7sHzEuslJgx24ZWDj-5lo2mdV6aHdg,265
|
38
|
-
wandb/apis/public/files.py,sha256=
|
38
|
+
wandb/apis/public/files.py,sha256=BaQULBLKr5G6lP2m87a5TyaVvBfDcMctWmxSjGPDqMY,8491
|
39
39
|
wandb/apis/public/users.py,sha256=nbguWN0QJWvhsmgVx6IrkLYbjJcyI-eJQAUVaoY5Qjc,3796
|
40
40
|
wandb/apis/public/query_generator.py,sha256=WfyaQuBcTHEECOJ2zN_0iqkUufki9MX28fj3axYZCLU,5977
|
41
41
|
wandb/apis/public/teams.py,sha256=YJAsJLRVM5r6UT48tdGGVA2V_f7nayDe5Q5NRTFQ8m4,5474
|
42
42
|
wandb/apis/public/__init__.py,sha256=xHuML6BuYlSNhKR4_k97shA1zoCgndXzMYukQybmZEw,1206
|
43
43
|
wandb/apis/public/jobs.py,sha256=nwm-tLqj0XHNQRQsBKHGf3nOuLSwch0B2i9Gc2DKW90,22399
|
44
|
-
wandb/apis/public/api.py,sha256=
|
44
|
+
wandb/apis/public/api.py,sha256=w_yhFcf330V9TjvCqMLr2BAcQIWLB6evUzCrtBdjCrc,84683
|
45
45
|
wandb/apis/public/utils.py,sha256=62ux6zpRpVug_y-_PaHUSOkPcHMTNFknAPqcINJSHFg,7893
|
46
46
|
wandb/apis/public/automations.py,sha256=meQY6iI5e-1Se77AcV3NvkBet0f14TkdA5nNk8V9SFQ,2311
|
47
|
-
wandb/apis/public/reports.py,sha256=
|
47
|
+
wandb/apis/public/reports.py,sha256=VOHI5wx4t5s3J3tq9ADMA1eiPN44q6fGF3-O7ZcN4Q8,16998
|
48
48
|
wandb/apis/public/sweeps.py,sha256=FYWvA-h-xqCnZ8PYXRwOEvRHgl3BS0RhuZpTftIMNrc,6547
|
49
|
-
wandb/apis/public/artifacts.py,sha256=
|
50
|
-
wandb/apis/public/projects.py,sha256=
|
51
|
-
wandb/apis/public/runs.py,sha256=
|
49
|
+
wandb/apis/public/artifacts.py,sha256=MV-13AAOfyOKYV0Ha_TWgjmjNmoACUqFhJq0B5pMNrI,28138
|
50
|
+
wandb/apis/public/projects.py,sha256=HGWSblKEVusBHCb5uTGUu-BzoyGJERivhNa_5tamZ00,6643
|
51
|
+
wandb/apis/public/runs.py,sha256=TKYSJDtHk-7bBOC4Uy7enHsMChtTeFtHv_7oOoq5W7E,35518
|
52
52
|
wandb/apis/public/integrations.py,sha256=du02uzOUv6_8heAW1Kwu1pa2uZeYIzPFRgqcAOpF8JY,6772
|
53
53
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
54
54
|
wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
|
55
|
-
wandb/apis/public/registries/registry.py,sha256=
|
55
|
+
wandb/apis/public/registries/registry.py,sha256=fNX2Iy3yG2skLPIsp0ityR1opQDeTKXIy38VjDDkXCQ,13725
|
56
56
|
wandb/apis/public/registries/_freezable_list.py,sha256=E7qnLNnw1RF6ClQXbtkg3LRpOMs5jx2L5HiSY3RzTMo,6368
|
57
57
|
wandb/apis/public/registries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
|
-
wandb/apis/public/registries/registries_search.py,sha256=
|
59
|
-
wandb/apis/public/registries/
|
58
|
+
wandb/apis/public/registries/registries_search.py,sha256=fjmQ-iNUlkNiEpLe1Yp9vmrM0wlWtOE1flIb_binznM,15169
|
59
|
+
wandb/apis/public/registries/_utils.py,sha256=N1EDMFQgIxoi2zHJGlbolEEzsmKXyn3LKN_vSLsTyxo,4277
|
60
60
|
wandb/apis/reports/__init__.py,sha256=5ZkKvOqwks3UmVeaPuwIZYwyV8_afsGbtybDOXYjSsg,32
|
61
61
|
wandb/apis/reports/v1/__init__.py,sha256=L5l1BqMaap-w5wXCzn8pC8RXB7_72MsjTx8HeLuC3XU,263
|
62
62
|
wandb/apis/reports/v2/__init__.py,sha256=jdLiTqf5QIRxnWH8drWV9Y06bZEhI5N6uGGSKAT7tv0,263
|
63
|
-
wandb/plot/histogram.py,sha256=
|
64
|
-
wandb/plot/line.py,sha256=
|
65
|
-
wandb/plot/__init__.py,sha256=
|
66
|
-
wandb/plot/pr_curve.py,sha256=
|
67
|
-
wandb/plot/roc_curve.py,sha256=
|
63
|
+
wandb/plot/histogram.py,sha256=aZqM5gLaVU3BbFnngFfchb-2QFSYc32TtEqcBofhaTQ,1701
|
64
|
+
wandb/plot/line.py,sha256=LCGgQKhvDwEsypsUMVuGMKKi_AmC716mNh1p1hCWljE,2369
|
65
|
+
wandb/plot/__init__.py,sha256=M7sOlxO_hYYV64ZM007B3OjmIqSxF8ToY1aU0DtC-dI,863
|
66
|
+
wandb/plot/pr_curve.py,sha256=fZDATHJHK10vCLcZaUSmIwSCfr8uoMVfvO4njLTzC0E,6602
|
67
|
+
wandb/plot/roc_curve.py,sha256=rzKwKKC-ZQzkKLoUZ3rKmG4-oRF2sZcRkcsQEnKRZWM,5619
|
68
68
|
wandb/plot/utils.py,sha256=Q3SN29syvRBsb6dpcg11-Km6PFT4uQPOEfhtNrG0pmQ,6769
|
69
|
-
wandb/plot/line_series.py,sha256=
|
70
|
-
wandb/plot/scatter.py,sha256=
|
69
|
+
wandb/plot/line_series.py,sha256=Mr_UgVS8VAWytDZryQ5R3rXc_K8war2B1OZNaLJFYog,5558
|
70
|
+
wandb/plot/scatter.py,sha256=ilFNDknfPL7qj6VRCTKVTeq3-8agS-3ogU83UpP-gUA,2045
|
71
71
|
wandb/plot/custom_chart.py,sha256=NBI5FmSTH9DsrS3eeVbCP04IKRzb2DMcAvmfoOcHnys,4384
|
72
|
-
wandb/plot/bar.py,sha256=
|
72
|
+
wandb/plot/bar.py,sha256=gH29ianBYs-1iV8jjuUlWO6KixXA8Bq_kz0nXmlLmQU,2036
|
73
73
|
wandb/plot/viz.py,sha256=ni1MTkt3k1TxSqArdIR_sVcD1cV0j9eKmJdX0QlBcOM,943
|
74
|
-
wandb/plot/confusion_matrix.py,sha256=
|
74
|
+
wandb/plot/confusion_matrix.py,sha256=cjRFhh6WXVvQzuuhieKZ0fVcaMDLLevkrNZlofWiXds,6339
|
75
75
|
wandb/proto/wandb_generate_deprecated.py,sha256=Iyf7PwIL_2B7XohrckYLbjjT09lccwbqknxtWelJpJM,1002
|
76
76
|
wandb/proto/wandb_settings_pb2.py,sha256=Wba7SDYTKy-Sm2sYrTmqwYH6sBvdD9ogE1i87lt_85A,401
|
77
77
|
wandb/proto/wandb_server_pb2.py,sha256=82Cf27PnDjHbkQT_-ZPjQyI0AVYd9YWoAlABrGPD-xo,393
|
@@ -81,30 +81,30 @@ wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
81
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
82
82
|
wandb/proto/wandb_deprecated.py,sha256=1-Q8uG5gowgpWg9loSLwavCGDCyLbcL6UQBcZ3OzNoI,2422
|
83
83
|
wandb/proto/wandb_telemetry_pb2.py,sha256=Y9uzA6O9yUJ3HKqYOi86hg-mZ49NtSzQ_XRFSCONolA,405
|
84
|
-
wandb/proto/v6/wandb_settings_pb2.py,sha256=
|
84
|
+
wandb/proto/v6/wandb_settings_pb2.py,sha256=pAJA82SYCRtZs7OgUQL-OYs1Kkp1iyVayoVmRLaI6O4,18830
|
85
85
|
wandb/proto/v6/wandb_server_pb2.py,sha256=jH4AJat2sz9hR88er6D4yb-6bNLY5nPW5oX5CuHjBLc,7786
|
86
86
|
wandb/proto/v6/wandb_base_pb2.py,sha256=5NJU1W7zgKLIsKL5brRoOL4HcLOxWieIKlWEe1IM0_g,1821
|
87
|
-
wandb/proto/v6/wandb_internal_pb2.py,sha256=
|
88
|
-
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=
|
89
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
87
|
+
wandb/proto/v6/wandb_internal_pb2.py,sha256=DvKxkCsrcGowXBPKKV93ZnQlAmPNHtf1kTYbKILdhcw,58315
|
88
|
+
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=PcQVbRaqN01nHu0OBi6UPHSeSpuw7rDy4mup2RYWH04,12303
|
89
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=12an1CH04EdQAZ0EPeJHFXhVbLcKXIGco3iKFvv8gnI,18577
|
90
90
|
wandb/proto/v5/wandb_server_pb2.py,sha256=f55mk3Z77xUnq_tAbTd_Q75CiOJz6ppPbZT7CoeF7-I,7535
|
91
91
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
92
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
93
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
94
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
92
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=fnAbLeuCfkFJkndKR-El1Xx6etwwoLDkJAuXd2ShYYE,58062
|
93
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=vzKZOXISSGB0C2HaPAqCwC0gh_tQ-LzkT9qIkqmwSqg,12049
|
94
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=gPObgqI1Uy3BushWew48n8rgCLCsH06cMFCIGbP7EHg,18221
|
95
95
|
wandb/proto/v4/wandb_server_pb2.py,sha256=NiG6Xv9CDvxc8v8NmnM237jyYqMuRyE_nqmLAMZVdI8,6977
|
96
96
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
97
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
97
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=36TH4nj7e_VyMKeBsOKvlZu7vRxG2S8T_QPEAbwBXgA,53715
|
98
98
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
100
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
99
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=xQdi3cm85CE4Ck0NAtPvdK7FFtEYoXXBEGlIIF2TXvs,11779
|
100
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=GlmZKFANXdZmqv-glm8pgM9XxHXhzf1JWNYIgtKLJGw,21846
|
101
101
|
wandb/proto/v3/wandb_server_pb2.py,sha256=LQCUmuy0NFDo20N9uCUiE5VPyhP5r929WKtniae4CdQ,15514
|
102
102
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
103
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
103
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=4H5TAutKIw2P0etvIaaqFFaontK5mog4KKlVd2fFEmA,116940
|
104
104
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
105
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
106
|
-
wandb/bin/wandb-core,sha256=
|
107
|
-
wandb/bin/gpu_stats,sha256=
|
105
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=fD1_oZfqgiRghlqZE5CyXO437-_OgVv9ZIBjx9YtCno,14332
|
106
|
+
wandb/bin/wandb-core,sha256=FBQRRdb3Avi6SfTT4knu7jtaUTZ8wHMnE0tq8W8B6z8,53129730
|
107
|
+
wandb/bin/gpu_stats,sha256=T5-UC627HFDlygjfjU852bAtyTnlU0I31wAqe_JApyc,9389664
|
108
108
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
109
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
110
110
|
wandb/integration/yolov8/yolov8.py,sha256=srryantZqO65pj1x52MiKD5m2SzdQc4nIsj4o1GPK8o,11371
|
@@ -120,7 +120,7 @@ wandb/integration/lightning/fabric/logger.py,sha256=ev8xFbCohaRp4MvrBn1x_5ypuvLe
|
|
120
120
|
wandb/integration/cohere/__init__.py,sha256=8yTJGhWznxEAxHYDY7oMghvsak_KqLngSLpqjR8ic3g,52
|
121
121
|
wandb/integration/cohere/resolver.py,sha256=pQ2kbO-ynL3FKemSZeCdcsqusQrfB3n29znj-KdSiNo,13813
|
122
122
|
wandb/integration/cohere/cohere.py,sha256=CyALJXyLDnic6ZRc8I4UXmR7hYqtIOCi5Wav12JcXd0,453
|
123
|
-
wandb/integration/sb3/sb3.py,sha256=
|
123
|
+
wandb/integration/sb3/sb3.py,sha256=25fGTc_A1Zve-4MK_6IelAIaKYPg0pj4hB4ZWr0xekw,4797
|
124
124
|
wandb/integration/sb3/__init__.py,sha256=w_VX7C6qAE1vK7xb24JchQtORxzfpXvl6YmZHUIskJM,60
|
125
125
|
wandb/integration/langchain/__init__.py,sha256=afRoYH4bPOw6Tyrn9YvuYHzbSae97iQT-Ufi0puJqNw,66
|
126
126
|
wandb/integration/langchain/wandb_tracer.py,sha256=oDtb_4-3P1xxBY-nXrA4h6-WnsdEYpH6AD1z5pen0eI,2253
|
@@ -135,7 +135,7 @@ wandb/integration/diffusers/resolvers/utils.py,sha256=30RyIDGzkVd_SAIbIy6WT0DYjh
|
|
135
135
|
wandb/integration/sacred/__init__.py,sha256=Zzi-m0yRvtbyEgB0N67xSUAWZc1eYBz8Nni3e3OxcHg,5751
|
136
136
|
wandb/integration/kfp/wandb_logging.py,sha256=fYMImccQagOm6HB-dTV7O1LvH_1jJ-qrd7ngTUu7WVo,6167
|
137
137
|
wandb/integration/kfp/__init__.py,sha256=WhBhg3mQopGNDbWzGJ8Xyld8w3FAAvmP1G1Wtv_QaC0,136
|
138
|
-
wandb/integration/kfp/kfp_patch.py,sha256=
|
138
|
+
wandb/integration/kfp/kfp_patch.py,sha256=mnpx9cayPj06adPD95t-ghNnVpIGbFMWbONvuSYi-CM,13204
|
139
139
|
wandb/integration/kfp/helpers.py,sha256=yEVO9rrz27hc4nk3WwNL3v1aRAUlS-OlXMC8Rj0G1tI,1016
|
140
140
|
wandb/integration/torch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
141
141
|
wandb/integration/torch/wandb_torch.py,sha256=2mXNijW9HrjwIM7qpFSdIOosiqaIVhcaUeL2BVAwobw,21526
|
@@ -173,13 +173,13 @@ wandb/integration/huggingface/resolver.py,sha256=Atc0vwdPar5yKzTcJF6Fu2i7h7a6TX0
|
|
173
173
|
wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
|
174
174
|
wandb/integration/metaflow/metaflow.py,sha256=plhPb2F6AhvLP6NoAmSgBT9nGATh9WSqqC9E6E32uLM,11632
|
175
175
|
wandb/integration/lightgbm/__init__.py,sha256=ztwqeaVneF_f6ngCd0UowwksnNopl1bhSQN9hAeyoyU,7981
|
176
|
-
wandb/integration/ultralytics/callback.py,sha256=
|
176
|
+
wandb/integration/ultralytics/callback.py,sha256=1TrtTPYfezTNV1_ugOfNEAhFiaochREnYk2Dx4gNQdU,21297
|
177
177
|
wandb/integration/ultralytics/pose_utils.py,sha256=oknJAy_eoyokJY1u03uk_MpR7kKrJIK4wSRBK5lJGyw,3709
|
178
178
|
wandb/integration/ultralytics/classification_utils.py,sha256=NZy8LA1GYf_qP9SptwIWw8FCaODteuLvbTAd7z_YzAs,3168
|
179
179
|
wandb/integration/ultralytics/__init__.py,sha256=omtrUwOg6GWKWyunhIPclFdQmxW8XIXQaPoF1Ai5WxU,340
|
180
180
|
wandb/integration/ultralytics/bbox_utils.py,sha256=668VePOI5SuQj2frko8wovH-XZsEwU8s-BQd_yX-NcE,8023
|
181
181
|
wandb/integration/ultralytics/mask_utils.py,sha256=uzUtDjg4C9_4Z6_fWo0wiylauYvmckZ9JQn0afd1NJg,7080
|
182
|
-
wandb/integration/catboost/catboost.py,sha256=
|
182
|
+
wandb/integration/catboost/catboost.py,sha256=DutGAM8LNWFCgN5JIXpwXFIrgmZtSmq46A-LlEWXlcA,5986
|
183
183
|
wandb/integration/catboost/__init__.py,sha256=dxef0C9s9Xez_sF3sOqSJpKaSrAibAqMA_TpVUyIwac,127
|
184
184
|
wandb/integration/openai/fine_tuning.py,sha256=UpIJILybS6-tE-rStokvSMAkEute255PjOyDCkJOIaI,18539
|
185
185
|
wandb/integration/openai/__init__.py,sha256=T6x9lIFfw2NzOSi46wi3otY_-DSwyMgnIjMIOIod7iU,66
|
@@ -196,27 +196,26 @@ wandb/old/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
196
|
wandb/old/core.py,sha256=bIIFlU3_E2hvrVCzMQk1VcwJtxbadbAZwDC0qsF4C2g,1501
|
197
197
|
wandb/old/summary.py,sha256=FZrkTyycUy6MRY1n4q7713rlTV7h-CMr8_kNoeb-wzY,13856
|
198
198
|
wandb/old/settings.py,sha256=Cug-8ImuV4_x8HFGOnlATuh0iJ4JOUfmymguPFqlXvE,6482
|
199
|
-
wandb/cli/beta.py,sha256=
|
199
|
+
wandb/cli/beta.py,sha256=Mq-5A-XXH3VLIvhWPxA84DFPeirNMYGPSQ53H78Xkjc,5187
|
200
200
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
|
-
wandb/cli/cli.py,sha256=
|
201
|
+
wandb/cli/cli.py,sha256=bBhFG4VEurWE7qEItkYGnVs8ou0I8j-IBF_HlARQZqM,91136
|
202
202
|
wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
203
203
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
204
|
-
wandb/sdk/wandb_metadata.py,sha256=wnwKexZjJ7zRtAcfYbOZtaoK6rfVVU5oKDWT5-UerOk,20886
|
205
204
|
wandb/sdk/wandb_config.py,sha256=uvbpaV3yObsYsaYedYde95B4CzDZBlaU3zOPJ7tPkhs,10692
|
206
205
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
207
|
-
wandb/sdk/wandb_run.py,sha256=
|
206
|
+
wandb/sdk/wandb_run.py,sha256=9RHDTMEBNX4xhJt2DPFMy-0KyT-3qRVJSnaj5eScpw4,146456
|
208
207
|
wandb/sdk/wandb_sync.py,sha256=GNC8xYqT56ws4aw6Vd_mV_Ck-InEbqnyioSqHIybDug,2106
|
209
208
|
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
210
|
-
wandb/sdk/wandb_init.py,sha256=
|
209
|
+
wandb/sdk/wandb_init.py,sha256=PtGDN-l3ozxKehWl1yuBBVoD83pX2O-upmWm_POWisg,62428
|
211
210
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
212
|
-
wandb/sdk/wandb_settings.py,sha256=
|
211
|
+
wandb/sdk/wandb_settings.py,sha256=IosTbkiq9gxrlDRGynLJRM3HBm0Xh_eHy-ulF7TbKpE,68811
|
213
212
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
214
213
|
wandb/sdk/wandb_watch.py,sha256=oFBRAKi7dQ3aOj3urK8V8TR-Drqp-MNMcZut5qFSl2o,4803
|
215
214
|
wandb/sdk/wandb_login.py,sha256=ZX1e5WVRu-_Xq2Yp3JqSRxZSTvAQmVLSOk7lEWa7WhU,11312
|
216
215
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
217
|
-
wandb/sdk/wandb_require.py,sha256=
|
216
|
+
wandb/sdk/wandb_require.py,sha256=MYzhsbMLjXVoGRHxssg802w79BPsoyEbBXuZ6cffjCs,2713
|
218
217
|
wandb/sdk/wandb_sweep.py,sha256=Sg_JqxVzmjUBvii41azpdr-c6RPwHOBnSha8k7jrRhk,4028
|
219
|
-
wandb/sdk/wandb_setup.py,sha256=
|
218
|
+
wandb/sdk/wandb_setup.py,sha256=zdYuHg_ynqqCm6oOUya-_plJYQxgyIcn3RZM6VPgLSU,16261
|
220
219
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
221
220
|
wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
|
222
221
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -225,10 +224,10 @@ wandb/sdk/interface/interface_relay.py,sha256=lM5ZgJc6m8BS-nWOuzMCwAK0ve9UBGgOD2
|
|
225
224
|
wandb/sdk/interface/router_queue.py,sha256=wnApY1iXa_3L0-HO6t42Nbsh68zyEw3FWN3oI6PmoXM,1049
|
226
225
|
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
227
226
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
228
|
-
wandb/sdk/interface/interface.py,sha256=
|
227
|
+
wandb/sdk/interface/interface.py,sha256=eHQEQinq_tU8uCM3I_nqDXvyjEGrt3cs4a_S8D9b9KU,37888
|
229
228
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
230
229
|
wandb/sdk/interface/router_sock.py,sha256=S15CRwMoDFYKnEzwqAjvPQC6BlKtJpxE_rZHeaxM2V4,1002
|
231
|
-
wandb/sdk/interface/interface_shared.py,sha256=
|
230
|
+
wandb/sdk/interface/interface_shared.py,sha256=rDLFSkBWIUp-4Z3eh7r434WjCrI90hHJ6YV62x-XEao,18234
|
232
231
|
wandb/sdk/interface/interface_queue.py,sha256=zOjUB2nf_wNMoEeXGWP5di-u4-UL2_jvsVZw53EbEsk,1257
|
233
232
|
wandb/sdk/interface/router_relay.py,sha256=tOBQYEX7PGw9-qE91CdNhLEQb9KbJiQnlHg7XBOsijA,1390
|
234
233
|
wandb/sdk/interface/router.py,sha256=hlYzz7DjDt3sYDJQYLE1NHkxGFDezHgmfznnPRHPcHU,2630
|
@@ -237,8 +236,8 @@ wandb/sdk/artifacts/storage_policy.py,sha256=b87WYRCrzKBKy0WBNjZIB_98_YbnqP7eKS3
|
|
237
236
|
wandb/sdk/artifacts/artifact_state.py,sha256=JbPVinN8Vaq16IKdPtFmiYbBdBtCKLDMVU_ViMI8QOA,272
|
238
237
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kD_JfKVcQzZlif6PF-WKnemucWPwcISq8hX6Y8lKtY8,122
|
239
238
|
wandb/sdk/artifacts/storage_layout.py,sha256=JeI2uVqreJynIVNhFVvh7Acm-Wem25ueFQvcxg_svZU,109
|
240
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
241
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
239
|
+
wandb/sdk/artifacts/artifact.py,sha256=0Tqtu0IM47OWWDzKOAnmowpIvqxmLMJpVv1skNCM1_A,106191
|
240
|
+
wandb/sdk/artifacts/_validators.py,sha256=0EzuoBKoopT-aR10k3qBKsFzjj43hng9LsOrPJLMPfY,10576
|
242
241
|
wandb/sdk/artifacts/_internal_artifact.py,sha256=9DbDv5EbBm1W10gE2bWbzykv2BtpdkUG-k8zlpaL9Tw,1451
|
243
242
|
wandb/sdk/artifacts/artifact_file_cache.py,sha256=ErHjabIx-g8gWoCICAGEM5FU4_7aACQc3j0i0h7tm9A,9677
|
244
243
|
wandb/sdk/artifacts/artifact_saver.py,sha256=RwJIveLn87UE3_tk5zAJ8ry-TAvxwTS94yNAChwhLAk,9654
|
@@ -254,7 +253,7 @@ wandb/sdk/artifacts/_graphql_fragments.py,sha256=71o_SBwXhaD21UPWrCUu6zyhwez1btQ
|
|
254
253
|
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=g2HXQ_8Zg8ZzZS1P1UUf7Y2ePPGeWLA62GCARuu8zfc,22174
|
255
254
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
|
256
255
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
|
257
|
-
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=
|
256
|
+
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=WLplF8kL3vRKnhxIitrYciN58PmIcReVfxQEkkMqeA0,12898
|
258
257
|
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=MpYHgEkbjt1VCUV-lfg1f3MscOK10tZHSJwOFjCzGBg,2562
|
259
258
|
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=sKu9VRCcgd9DYPPdCN49Fl63g6_HfHX124xnnFyZPe8,4764
|
260
259
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -271,13 +270,14 @@ wandb/sdk/artifacts/_generated/move_artifact_collection.py,sha256=Jb4kOxyoNinSY_
|
|
271
270
|
wandb/sdk/artifacts/_generated/enums.py,sha256=Av9fHhSrUJDDaWPhS4fGJGLu_9X0lGhGjpKKnAEQ8iM,345
|
272
271
|
wandb/sdk/artifacts/_generated/add_aliases.py,sha256=-DCPnnu6-ydKyALEd8E0pxDXGGaYriHj-ktUixML4Lk,395
|
273
272
|
wandb/sdk/artifacts/_generated/update_artifact_portfolio.py,sha256=tcEUGOoAE8pqr27tCwJoA9-Z95s_gNlIQkDCaUiFqkE,978
|
274
|
-
wandb/sdk/artifacts/_generated/input_types.py,sha256=
|
275
|
-
wandb/sdk/artifacts/_generated/__init__.py,sha256
|
273
|
+
wandb/sdk/artifacts/_generated/input_types.py,sha256=nq6YCF9DLpvIXqcJ7HiJ1MJgmed69sFJUcU7hV5TRSE,1514
|
274
|
+
wandb/sdk/artifacts/_generated/__init__.py,sha256=-SEKkwBmb5R6FhvBF83HcA-ieoxt6rjVYlpIpzBdd4I,12294
|
276
275
|
wandb/sdk/artifacts/_generated/project_artifact_types.py,sha256=rGbW8kK66zR72kLklWuAcDnzmp7KkCFTXLvsUctlewY,542
|
277
276
|
wandb/sdk/artifacts/_generated/delete_artifact_collection_tag_assignments.py,sha256=BHJKnPZbWcdHLg4-uQ2V51i4OM2voSUdovfYM5Zv7JA,642
|
278
277
|
wandb/sdk/artifacts/_generated/project_artifact_type.py,sha256=NOYXo2UYV1cslcbjSi0Q9167Iv5iksj9LS1XzcbsbXM,543
|
279
|
-
wandb/sdk/artifacts/_generated/operations.py,sha256=
|
278
|
+
wandb/sdk/artifacts/_generated/operations.py,sha256=xjEoM-wn45swtYk8EGgce3vP_jkGkOr2rYjCfsh-sGk,13035
|
280
279
|
wandb/sdk/artifacts/_generated/artifact_collection_membership_files.py,sha256=iRG2YDjHIDgG9_O5sI4ltkJX6ILCAGJgEKJA_ImO7wE,1343
|
280
|
+
wandb/sdk/artifacts/_generated/link_artifact.py,sha256=c9qxPnQitxuKGms5F8iOOHwixD0ftlr8RhIe7jcadxs,456
|
281
281
|
wandb/sdk/artifacts/_generated/delete_aliases.py,sha256=0lDMciBaXsJR2XSjFO0_zgTaNRc0gPrBMwmOJLogD_A,419
|
282
282
|
wandb/sdk/artifacts/_generated/artifact_version_files.py,sha256=-yPP-7wlB-jgv4BKrIm_7NeCucCcDwGvOb2rZSphUsk,925
|
283
283
|
wandb/sdk/artifacts/_generated/run_output_artifacts.py,sha256=055RjKbfuVwiWM2eKpErMIFiY7S74pLTjFdRSypYf1g,1432
|
@@ -294,7 +294,7 @@ wandb/sdk/artifacts/_generated/project_artifacts.py,sha256=noPODtFVotO69VK5oHZeU
|
|
294
294
|
wandb/sdk/data_types/object_3d.py,sha256=83ordMmzmmFun2fp2z9P3dffNJ0fW_Hv7MfpDZROYcc,16282
|
295
295
|
wandb/sdk/data_types/molecule.py,sha256=_eVzkFEO-uydch8dsw6GjaW_hNGrZwUFfU_inMj70gM,8549
|
296
296
|
wandb/sdk/data_types/histogram.py,sha256=syx3fUDoP6vYqA3r5m7bHXK6MAWo2MkRhpCKasihwvg,3145
|
297
|
-
wandb/sdk/data_types/trace_tree.py,sha256=
|
297
|
+
wandb/sdk/data_types/trace_tree.py,sha256=zPWT-tofO4YqaFhB65SnqFMnpXgTwRl48apU04y6VeQ,14838
|
298
298
|
wandb/sdk/data_types/graph.py,sha256=_P_z2dNj2mCJeSvusIfVHkSkVB9AL0AEO-6KaguC1ys,12089
|
299
299
|
wandb/sdk/data_types/html.py,sha256=HTh2nNlJsncLgou1gXz6e-f_loaHInMEJerzlDLqKzc,4381
|
300
300
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -302,17 +302,17 @@ wandb/sdk/data_types/_dtypes.py,sha256=rzcYQjkQeD9Xb9zJg-5w8RWs7LEMcXf_167zKWgXf
|
|
302
302
|
wandb/sdk/data_types/utils.py,sha256=s9aVonN1_vZH7o29lHJPGOMKZkyjroAs3VkT6ENlN0g,8962
|
303
303
|
wandb/sdk/data_types/table_decorators.py,sha256=2D0dlnv7sBvrHyYH61LCCMhowmg8CENqyvth9BID-VQ,3727
|
304
304
|
wandb/sdk/data_types/audio.py,sha256=1wGIHBIsYknRuTdrSB-TE124xfWrq4_JLTkOuCZkM2I,5625
|
305
|
-
wandb/sdk/data_types/table.py,sha256=
|
305
|
+
wandb/sdk/data_types/table.py,sha256=9mb7_KZKSZ-rQNy0si_pWTerVbKLG44abtSqd2kXLeQ,53707
|
306
306
|
wandb/sdk/data_types/bokeh.py,sha256=RuMsi7v_yJyMEuYjfrwTL1q1B8svdCW9t_eNge9aEJA,2874
|
307
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
307
|
+
wandb/sdk/data_types/saved_model.py,sha256=WMohx2DfSaPREqLfVcOvh8fBBft_FkoWLjWMw1GeFSE,16312
|
308
308
|
wandb/sdk/data_types/plotly.py,sha256=LEIHRqtHHpSou04AEUsyH8_UMXP4adrEHHaKoEtQkxo,2913
|
309
309
|
wandb/sdk/data_types/video.py,sha256=JQ9ZJ-IqocQ7fI9iGswG_JwB0gUk89JXgMSUOemVak8,9835
|
310
310
|
wandb/sdk/data_types/image.py,sha256=xdYth860StgcqoUJ0o4NPncj83XB5BRWI7ypY5PbrUY,34811
|
311
311
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
312
|
-
wandb/sdk/data_types/base_types/media.py,sha256=
|
312
|
+
wandb/sdk/data_types/base_types/media.py,sha256=0ctA_rMUKAvOzF68ZbRmrDdvL0q-O6y2icfJ5UGyIYY,14552
|
313
313
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
|
314
314
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
315
|
-
wandb/sdk/data_types/base_types/wb_value.py,sha256=
|
315
|
+
wandb/sdk/data_types/base_types/wb_value.py,sha256=1HMmyMv7khaAu2scP9GYsmXbr0XAw75W2-RCNK5Nm_o,12067
|
316
316
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
317
317
|
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=Uy7b059tDU_XLfbwbjlIZKfalATk3frCKprSALnSBlo,13833
|
318
318
|
wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZYRj8rvSmT7fl9ds,5520
|
@@ -327,9 +327,9 @@ wandb/sdk/mailbox/mailbox.py,sha256=jUEP2Ltgi9rCZmiDtfb5ZESaqwB2wH-sy72OLRvATZk,
|
|
327
327
|
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
328
328
|
wandb/sdk/launch/_launch.py,sha256=V4CvEVWawFIZaxwFGa0KnBCsVisZeaaYH4wwaeWAnTY,11815
|
329
329
|
wandb/sdk/launch/__init__.py,sha256=moXY557JibPbvE1GSSh3nGFiyelTVaJZMdFSv61Dn2k,399
|
330
|
-
wandb/sdk/launch/_project_spec.py,sha256=
|
330
|
+
wandb/sdk/launch/_project_spec.py,sha256=n21vwzY3leq0Fi7EjpL1RFIN_c5Y6JRgpQCzvGbRi1Q,21631
|
331
331
|
wandb/sdk/launch/_launch_add.py,sha256=OD6JPJN3dCNz5FZ_8MzgUOBAWGRtcgMz8UYoeV26g9c,8795
|
332
|
-
wandb/sdk/launch/utils.py,sha256=
|
332
|
+
wandb/sdk/launch/utils.py,sha256=mS_h8z_1VHB5eKyShiMMnJkJb2FhnCYgiO1CH5ktts0,25670
|
333
333
|
wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
|
334
334
|
wandb/sdk/launch/errors.py,sha256=G86cx2IZSRBBxLE7thxcVFKzN9d4mGyvciaWRz0uWWM,275
|
335
335
|
wandb/sdk/launch/create_job.py,sha256=Uue7UhbLFZSe4Nljy_S2T92uOAAASFFoOme37UjgAxc,17381
|
@@ -344,8 +344,8 @@ wandb/sdk/launch/runner/local_process.py,sha256=jomOlDY2eiKTNMSejG6dcBnVHqZOVaFj
|
|
344
344
|
wandb/sdk/launch/runner/vertex_runner.py,sha256=e_tvhRPX03ntftx6ZOwDs_6xXplRlFgfRDrNIKqCiPs,8169
|
345
345
|
wandb/sdk/launch/agent/config.py,sha256=eojwtkeke7PEiPJW2EJfJSRNjB2E0AzL7mn3fCRNY24,9498
|
346
346
|
wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
|
347
|
-
wandb/sdk/launch/agent/agent.py,sha256=
|
348
|
-
wandb/sdk/launch/agent/job_status_tracker.py,sha256=
|
347
|
+
wandb/sdk/launch/agent/agent.py,sha256=wrO2aFH6w1BJMppWr4al_pnDFinTL9Oe3iBrJJ4bxDw,36518
|
348
|
+
wandb/sdk/launch/agent/job_status_tracker.py,sha256=yIOlPfsEi1vEQZNRnxZ9hmyW1ZjuXOf4LYzlruC6_DM,1830
|
349
349
|
wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=ty_1AZwVUQiZK10DC0gbM7hy4UKIXwir7swCrVC5VE0,1336
|
350
350
|
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=beM0go0u9xRcXW20ED8MyTqq4ol_O5_4PODbA7FpN88,2987
|
351
351
|
wandb/sdk/launch/sweeps/__init__.py,sha256=Vv3WTuhqs7064cv23YevqzX8jGca9qYZ5JpdhorBk0w,906
|
@@ -384,58 +384,36 @@ wandb/sdk/projects/_generated/__init__.py,sha256=ZjHH69hD3ps0Rrs0g5BJIXbz5JRdShW
|
|
384
384
|
wandb/sdk/projects/_generated/operations.py,sha256=MhLYsTHjekySMt3jdlXdruDI0Sg5xR6wQSOeDvTu5b4,1785
|
385
385
|
wandb/sdk/projects/_generated/fragments.py,sha256=iFeb_dX2RwGhnwKItiqv4QUX9stJwvGTS2UCsGwIynM,1101
|
386
386
|
wandb/sdk/projects/_generated/delete_project.py,sha256=2fguHdSAtLSjUl-J_t4kqCjoAeW6i5OUl2H3yv6Ig3o,495
|
387
|
-
wandb/sdk/internal/sender.py,sha256=
|
388
|
-
wandb/sdk/internal/internal.py,sha256=4hEsyuh8Yw2mfqFtcySOkq9-7A0dpfjdNEGDgURmL9s,12098
|
387
|
+
wandb/sdk/internal/sender.py,sha256=x3OuoCK44M8oY4DQM1GVKrjcFOkfN3oWQ4Z7fUw0wCM,65180
|
389
388
|
wandb/sdk/internal/run.py,sha256=MD3D-o8Zo9hYpd-v9UlslTAuvCJHD6J1gBnZeZoD4o0,624
|
390
389
|
wandb/sdk/internal/job_builder.py,sha256=2W-Oq100LaP3hoMiHajER0BNPl-KZtP6fmMg17aHFRs,22827
|
391
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
392
|
-
wandb/sdk/internal/handler.py,sha256=
|
390
|
+
wandb/sdk/internal/internal_api.py,sha256=T8CO_9AQeEI3jiCix-g48ICha2WJHbR5_jm9bBJkPMk,163682
|
391
|
+
wandb/sdk/internal/handler.py,sha256=ZmZrzaJUw-caclqGmOfQMRmv5s5ha9eDf72pcOFOcZc,31549
|
393
392
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
394
|
-
wandb/sdk/internal/sender_config.py,sha256=
|
393
|
+
wandb/sdk/internal/sender_config.py,sha256=wZkz25ikhSoO9FCb-H06QdPKGCkZzdyXXa1LZEdpu2g,7133
|
395
394
|
wandb/sdk/internal/settings_static.py,sha256=-3pJ5RCWxGbNVVE4RvGudTurpn8ObN8wTEx_4dkrS3o,4284
|
396
395
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
397
396
|
wandb/sdk/internal/tb_watcher.py,sha256=wqlBUrQKyTYQth8q_ABPb9MNMNmeatyv59_Bq5pCtaU,18676
|
398
|
-
wandb/sdk/internal/flow_control.py,sha256=3LJ-KatyPPH18G7TfSMLDk-BE5tankB4JRhQqLoUOWM,8585
|
399
397
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
400
398
|
wandb/sdk/internal/file_stream.py,sha256=dLzl8RnbQQR2taSgcLff1Br5XghCKSPgxSxkBgzegyY,25604
|
401
399
|
wandb/sdk/internal/sample.py,sha256=USAWLhEeP83J13BVOSIy1Rb3kDDKTK9kzR88SlhO7dw,2470
|
402
|
-
wandb/sdk/internal/writer.py,sha256=jo_Ex7ik-0_rIahYDHIWcQjm_uxsUNVn92__bI8TloE,7267
|
403
400
|
wandb/sdk/internal/file_pusher.py,sha256=G6JLdqasdMMeNV6wiHUVgv3nGXiCrXFYwGOa7vOfTR0,6023
|
404
|
-
wandb/sdk/internal/internal_util.py,sha256=dKawQKw4UdZUE6Bmme5baT0FGDC0IUgoD2zM6ey4oBU,2555
|
405
401
|
wandb/sdk/internal/progress.py,sha256=526DYzhDMnfBNAI3TN0p7R487c-0W8PBT8_Yft334Ro,2289
|
406
402
|
wandb/sdk/internal/profiler.py,sha256=6IJ18j5saTzX_GrGUm-qKLAYF8tW_iQMCP_jUqbaVn8,2391
|
407
|
-
wandb/sdk/internal/datastore.py,sha256=
|
403
|
+
wandb/sdk/internal/datastore.py,sha256=cbTtq452ZGSbzDVnvEJ3wdVTTCkCqSEmHullPYOnEvE,9774
|
408
404
|
wandb/sdk/internal/incremental_table_util.py,sha256=SwcLG366undgZ5nw4xfyVZ5BZS4mAUw1K9HfmenFbqg,1490
|
409
|
-
wandb/sdk/internal/system/system_monitor.py,sha256=3DyEYFCnQgZ0xZHnG1m0_RchMpGTSQprVbIG3MOD6ZI,8597
|
410
|
-
wandb/sdk/internal/system/env_probe_helpers.py,sha256=jIy6gbiaq37SzgcBGe6GepJho1VS5qNQThqOmu-g0OA,397
|
411
|
-
wandb/sdk/internal/system/system_info.py,sha256=DILyrTlXfuu9W6wknUc79Hkqmbu4jw_z8oYx4k0GWQY,10009
|
412
|
-
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
413
|
-
wandb/sdk/internal/system/assets/interfaces.py,sha256=5Qf-0DZe0OE9q6L3QAirH96ksjdQl0inw47GF8exbfo,6203
|
414
|
-
wandb/sdk/internal/system/assets/disk.py,sha256=4u-LpKSOH_pTZfHzNPtMf8kh3EMe7EKKcU7563_KbpU,6238
|
415
|
-
wandb/sdk/internal/system/assets/ipu.py,sha256=irMYKXo1zEluWC5FjYzGD3edySfoi3lgiIi-0GNziE8,5314
|
416
|
-
wandb/sdk/internal/system/assets/gpu_amd.py,sha256=7tQluuLCCgbiJI8DqJVGL60eLfLNzMurTEP39Ng1_04,7333
|
417
|
-
wandb/sdk/internal/system/assets/memory.py,sha256=lmd11JAXxEUpHUiUMX3Y5-a9bNjiMU3BgSvT9ubtpSo,4271
|
418
|
-
wandb/sdk/internal/system/assets/cpu.py,sha256=rwXZZ6bchKEijE1GCE4j6mrxLDM4-H4ZLexcgNO_55k,4578
|
419
|
-
wandb/sdk/internal/system/assets/trainium.py,sha256=LfbFRPJk3oTlQ5MJ5YTx3-U8E01vVd7ZNRFZAtlW_uU,13301
|
420
|
-
wandb/sdk/internal/system/assets/__init__.py,sha256=X0_hRaWP1eTC-R-2WZI3Or3bKmqNwP7NsNijRq5DBVo,474
|
421
|
-
wandb/sdk/internal/system/assets/aggregators.py,sha256=lFNmgLM1LQ0SgkRjDNYyr9j-GkIDoQ0XL6PdBWDyX38,981
|
422
|
-
wandb/sdk/internal/system/assets/asset_registry.py,sha256=NYSoCDya3Wh7ytBJOE-tNySdPpLYnSghM6CzS9-I4nk,478
|
423
|
-
wandb/sdk/internal/system/assets/tpu.py,sha256=-OTd91LauiImuZMHMMo3cacJ1gvcZXuO_TSyOzJi3Ng,4904
|
424
|
-
wandb/sdk/internal/system/assets/network.py,sha256=n3buH2-InLGT35PVlvhY5eHv_Hm5Kl_N8jH576OiVi8,3392
|
425
|
-
wandb/sdk/internal/system/assets/open_metrics.py,sha256=VqOncOSnPztqSyQ0g-zeJWcjc_lircRk6F76rwoBWR4,9631
|
426
|
-
wandb/sdk/internal/system/assets/gpu.py,sha256=cTjIVNnAM7AXEet7MMUgFZVn-cInWfdTFcOVqYy5jQw,13710
|
427
405
|
wandb/sdk/internal/_generated/enums.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
428
406
|
wandb/sdk/internal/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
429
407
|
wandb/sdk/internal/_generated/__init__.py,sha256=DRBzTksuUuVY9oRJQsLtRTMMItykywWYvDxktHbCfk8,381
|
430
408
|
wandb/sdk/internal/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
|
431
409
|
wandb/sdk/internal/_generated/server_features_query.py,sha256=WGjefMl-SDR7o7OVtJk7xKEYICBFA2wceGMXbuyj5QU,647
|
432
|
-
wandb/sdk/backend/backend.py,sha256=
|
410
|
+
wandb/sdk/backend/backend.py,sha256=yh3ldxlKXXIXGk7vKDwEu0OolI6MD1B2LTQSu6sBEg4,1310
|
433
411
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
434
412
|
wandb/sdk/lib/deprecate.py,sha256=g5fIRwR5FrBmNpbLJhBmxh-pyvSbGh2ZumUEfScT0NA,941
|
435
413
|
wandb/sdk/lib/exit_hooks.py,sha256=_4oozaRQCJi8NJfZvHsA8livvFb0trZKLOGB8_UcHGk,1540
|
436
414
|
wandb/sdk/lib/server.py,sha256=dn0RXjAnpmigAULLyq75XHYyHxw17MLCJ9fhPq2v22I,1623
|
437
415
|
wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
|
438
|
-
wandb/sdk/lib/sock_client.py,sha256=
|
416
|
+
wandb/sdk/lib/sock_client.py,sha256=ehrvRJ2e-I0cLtuKdlQXSelagC0Jf2dvQBBoq-1EGK0,8225
|
439
417
|
wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
|
440
418
|
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
441
419
|
wandb/sdk/lib/redirect.py,sha256=X4JHJ3W5-kG25aOYUyuYc8TBgVAKwhpV6yTaFWaR7tI,27373
|
@@ -457,43 +435,39 @@ wandb/sdk/lib/retry.py,sha256=SR1xvjZDr1tavxkuiFSALKi2ecky1zH1bvHKODO6Xlk,10015
|
|
457
435
|
wandb/sdk/lib/json_util.py,sha256=pfUM7euVZYhiRvUOPuZJx1NKXejr3lpU_u1x1fCmJX0,2466
|
458
436
|
wandb/sdk/lib/gitlib.py,sha256=UAKpxnWTyIp3xkn4bRRqxvUmv5c_xyN0gmc5nL91hpM,7832
|
459
437
|
wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2894
|
460
|
-
wandb/sdk/lib/console_capture.py,sha256=
|
438
|
+
wandb/sdk/lib/console_capture.py,sha256=gUG6n-FtogU6DW9dJ9icF_8mMh3svW5yiC3s_fiof9U,6622
|
461
439
|
wandb/sdk/lib/ipython.py,sha256=TcKyUyoCBGCNkItaJRDx8PFUHtvuPPDDIduqyMYuGfQ,3810
|
462
|
-
wandb/sdk/lib/service_token.py,sha256=YJVYSoHw6OAoFVKcn2LuZ5D47BTTKFtbvWA2CvwZsWA,2455
|
463
440
|
wandb/sdk/lib/run_moment.py,sha256=hFx3S-F9SAF6xtwRYbBnP5fMDkllMJvGSSla_eqbsA8,2419
|
464
441
|
wandb/sdk/lib/hashutil.py,sha256=aU8YsAgkTcYDlqshfcDjItiO2s9lqq2YdKt7RoA2adQ,2763
|
465
442
|
wandb/sdk/lib/wb_logging.py,sha256=9km7TAnJRSwBTQaFSYA4BmQZV3_Gb0y1PBlzqEOdUHA,4839
|
466
443
|
wandb/sdk/lib/module.py,sha256=PWxpFqOYmLyKPF-VgfINZXzkFxDcoQVunVDVNWNnbxQ,2098
|
467
444
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
468
|
-
wandb/sdk/lib/
|
469
|
-
wandb/sdk/lib/progress.py,sha256=GakG9R_mJxVx8zG8atVHKydDZt0uRFEPwls7b3hUpsc,10652
|
445
|
+
wandb/sdk/lib/progress.py,sha256=AsmqmmJQvlslb5pDb-4yuL7sAOH1l6yC4F6Vgezaju4,10550
|
470
446
|
wandb/sdk/lib/gql_request.py,sha256=-KRTtT2zqn7pTOBcl41IBdbvQ25YCrxVurROpRqrWqw,2399
|
471
447
|
wandb/sdk/lib/asyncio_compat.py,sha256=zBC5yVXTPryiyK129ml56CW0PJE7vFm1N00Od5_WiKc,6579
|
472
448
|
wandb/sdk/lib/config_util.py,sha256=Y00nnEcq0zspuDb0yqraxRuo5JIUh1HflDvZYppeDyk,2893
|
473
449
|
wandb/sdk/lib/apikey.py,sha256=s2uw8B2O53rCpBCDgiWyF8ceQH9MNpOdaTil1uvy-O0,11097
|
474
|
-
wandb/sdk/lib/printer.py,sha256=
|
450
|
+
wandb/sdk/lib/printer.py,sha256=6QjcnG2n2Q68MyAug7Y_glnpUdsFipiHnzpi4bI3r0A,16257
|
475
451
|
wandb/sdk/lib/fsm.py,sha256=2fRiEF2jF95xDoVVbOmeIRaxMqlOv0bCv4RD8F2Ivj0,5044
|
476
452
|
wandb/sdk/lib/lazyloader.py,sha256=4Seis4C8Ph6a2-3scfYqeHh7KjKG6PO0WJ2ZPW30O0o,1891
|
477
|
-
wandb/sdk/service/
|
478
|
-
wandb/sdk/service/
|
479
|
-
wandb/sdk/service/
|
480
|
-
wandb/sdk/service/
|
481
|
-
wandb/sdk/service/
|
482
|
-
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
483
|
-
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
453
|
+
wandb/sdk/lib/service/service_process.py,sha256=EDv7zYeUpF4NgN4ClTlzyUtfs75CiimdmLxTqvo72Tg,3100
|
454
|
+
wandb/sdk/lib/service/service_port_file.py,sha256=Oonq46Ml4vKR-JTcxx4exi5MthGYRvIqy8hCv84Lc5k,2943
|
455
|
+
wandb/sdk/lib/service/service_token.py,sha256=4oDIDNzRZ3egXYcyPUpqmcwvptM6x0jnhFrMKP8T52s,4676
|
456
|
+
wandb/sdk/lib/service/service_connection.py,sha256=wbbpy5_n5OCqhwQ7OJKKgwdQxT3ngx0JJpJ5e0DVvm4,6434
|
457
|
+
wandb/sdk/lib/service/ipc_support.py,sha256=UPa-bV_wY25WhYmMelVyLGZzbztSz2LSf2SUhVB-omQ,341
|
484
458
|
wandb/_pydantic/__init__.py,sha256=p1Rwdo5z3rgoQgVDz6pgcWzs5eitB2JlgVN6QeFyN0Y,662
|
485
459
|
wandb/_pydantic/v1_compat.py,sha256=pHEdEVlJv5WSs91o742Cl19Xb_sOiODLVMKSIPuf290,11423
|
486
460
|
wandb/_pydantic/utils.py,sha256=XcnRAEOdjANLxvr_FMnMPKmqv4f2HwjbNo-5J_JKKe0,2810
|
487
461
|
wandb/_pydantic/base.py,sha256=qOgf1LEMPO3o1kiYli9kOf2ZQLuP0GEMa8Qx2pDnJGY,4277
|
488
462
|
wandb/automations/scopes.py,sha256=8H6bxXqffuQHOV__Od28mm29A6ptvVPe9fg0cnKQB-M,2310
|
489
463
|
wandb/automations/_validators.py,sha256=5rEU_gC0TRx1UvFVyqCcQU6knAKsZHhTW3z_lU8eZBY,5002
|
490
|
-
wandb/automations/events.py,sha256=
|
491
|
-
wandb/automations/actions.py,sha256=
|
492
|
-
wandb/automations/__init__.py,sha256=
|
493
|
-
wandb/automations/automations.py,sha256=
|
464
|
+
wandb/automations/events.py,sha256=ZvAn6347jkp9Ex8h9gVtjXTHyOzREa-RX2J_8w8Tfgs,10443
|
465
|
+
wandb/automations/actions.py,sha256=7B1DKNYjnSIZKFZ1e0UeEOAxCz0Y11j8iy9TA2kOBA4,7391
|
466
|
+
wandb/automations/__init__.py,sha256=rX1bkA2ZpN6CHlyjf6gpwFhWYmrRdGVs14Sm1Z9RBjA,2365
|
467
|
+
wandb/automations/automations.py,sha256=95Mw-WjGSp5XUdIlW6qX-lDxbVPufwJC2rxEhn87R3g,2642
|
494
468
|
wandb/automations/integrations.py,sha256=ok3oBN8c8DMEbjt-wpFViwTd_FC-6nwRMuamsDAOiQc,1059
|
495
|
-
wandb/automations/_utils.py,sha256=
|
496
|
-
wandb/automations/_filters/run_metrics.py,sha256=
|
469
|
+
wandb/automations/_utils.py,sha256=3a39L976vsrckevwYLNHiHA5bcs-YlCdOwIuJ8UG3jc,8269
|
470
|
+
wandb/automations/_filters/run_metrics.py,sha256=bTgFimrEej0HS3RYWCdfUD5qeCNDWxyOTptn9qHhxMA,12879
|
497
471
|
wandb/automations/_filters/expressions.py,sha256=JRnjqjeiqBJ7jq1HetO_6YQ9NFNOT6QQMl0Vm_wA2Q4,6603
|
498
472
|
wandb/automations/_filters/__init__.py,sha256=UxAEPbeI7wUqZY-w8FgsMU4Jp5rgSxwuQXc_VhdpDWE,466
|
499
473
|
wandb/automations/_filters/operators.py,sha256=BVk6wogQCE05fsHoD3oupiOym1ka_fFYT-17S7rPcqc,7159
|
@@ -911,4 +885,4 @@ wandb/vendor/promise-2.3.0/wandb_promise/schedulers/gevent.py,sha256=PnB1LI2OXnb
|
|
911
885
|
wandb/vendor/promise-2.3.0/wandb_promise/schedulers/asyncio.py,sha256=Z94PwkAXd8PDybJUM7_tLlDh_AUw5JbI4CFRg6J3_NI,512
|
912
886
|
wandb/vendor/promise-2.3.0/wandb_promise/schedulers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
913
887
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
914
|
-
wandb/analytics/sentry.py,sha256=
|
888
|
+
wandb/analytics/sentry.py,sha256=7vri0-bFKXeFSV6p7wvelouYz_cYpXhtAwCO1o6tB50,8367
|