wandb 0.18.6__py3-none-macosx_11_0_arm64.whl → 0.19.0rc1__py3-none-macosx_11_0_arm64.whl
Sign up to get free protection for your applications and to get access to all the features.
- package_readme.md +8 -0
- wandb/__init__.py +5 -7
- wandb/__init__.pyi +51 -30
- wandb/analytics/sentry.py +4 -10
- wandb/apis/importers/internals/internal.py +6 -6
- wandb/apis/importers/internals/protocols.py +11 -7
- wandb/apis/public/api.py +5 -1
- wandb/apis/public/jobs.py +1 -7
- wandb/apis/public/reports.py +6 -17
- wandb/apis/public/runs.py +12 -10
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +9 -45
- wandb/env.py +3 -5
- wandb/errors/links.py +1 -1
- wandb/errors/term.py +1 -6
- wandb/filesync/dir_watcher.py +3 -3
- wandb/filesync/step_upload.py +2 -5
- wandb/integration/fastai/__init__.py +1 -6
- wandb/integration/gym/__init__.py +1 -7
- wandb/integration/keras/callbacks/metrics_logger.py +1 -8
- wandb/integration/keras/callbacks/model_checkpoint.py +1 -8
- wandb/integration/keras/keras.py +3 -5
- wandb/integration/lightgbm/__init__.py +1 -1
- wandb/integration/sb3/sb3.py +1 -7
- wandb/integration/sklearn/utils.py +1 -1
- wandb/integration/tensorboard/log.py +1 -2
- wandb/integration/torch/wandb_torch.py +1 -1
- wandb/integration/ultralytics/bbox_utils.py +9 -2
- wandb/jupyter.py +4 -4
- wandb/proto/v3/wandb_internal_pb2.py +31 -31
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v3/wandb_telemetry_pb2.py +4 -4
- wandb/proto/v4/wandb_internal_pb2.py +31 -31
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_telemetry_pb2.py +4 -4
- wandb/proto/v5/wandb_internal_pb2.py +31 -31
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_telemetry_pb2.py +4 -4
- wandb/proto/wandb_deprecated.py +3 -11
- wandb/proto/wandb_generate_deprecated.py +3 -7
- wandb/sdk/artifacts/artifact.py +3 -11
- wandb/sdk/artifacts/artifact_file_cache.py +2 -5
- wandb/sdk/artifacts/artifact_saver.py +2 -6
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +2 -4
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py +2 -4
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +2 -4
- wandb/sdk/backend/backend.py +1 -1
- wandb/sdk/data_types/base_types/wb_value.py +20 -10
- wandb/sdk/data_types/histogram.py +1 -3
- wandb/sdk/data_types/object_3d.py +2 -6
- wandb/sdk/data_types/table.py +1 -1
- wandb/sdk/data_types/utils.py +1 -2
- wandb/sdk/data_types/video.py +15 -4
- wandb/sdk/integration_utils/auto_logging.py +1 -8
- wandb/sdk/interface/interface.py +12 -5
- wandb/sdk/interface/interface_queue.py +0 -6
- wandb/sdk/interface/interface_shared.py +9 -0
- wandb/sdk/interface/router.py +1 -2
- wandb/sdk/interface/router_queue.py +0 -3
- wandb/sdk/interface/router_relay.py +0 -2
- wandb/sdk/internal/file_stream.py +1 -4
- wandb/sdk/internal/flow_control.py +1 -1
- wandb/sdk/internal/handler.py +8 -5
- wandb/sdk/internal/internal.py +3 -17
- wandb/sdk/internal/internal_api.py +3 -10
- wandb/sdk/internal/internal_util.py +0 -3
- wandb/sdk/internal/job_builder.py +20 -12
- wandb/sdk/internal/progress.py +1 -5
- wandb/sdk/internal/sender.py +9 -15
- wandb/sdk/internal/settings_static.py +4 -10
- wandb/sdk/internal/system/assets/cpu.py +2 -2
- wandb/sdk/internal/system/assets/disk.py +3 -3
- wandb/sdk/internal/system/assets/gpu.py +7 -7
- wandb/sdk/internal/system/assets/gpu_amd.py +1 -7
- wandb/sdk/internal/system/assets/interfaces.py +11 -13
- wandb/sdk/internal/system/assets/ipu.py +1 -1
- wandb/sdk/internal/system/assets/memory.py +2 -2
- wandb/sdk/internal/system/assets/open_metrics.py +2 -8
- wandb/sdk/internal/system/assets/trainium.py +3 -9
- wandb/sdk/internal/system/system_info.py +14 -13
- wandb/sdk/internal/system/system_monitor.py +5 -12
- wandb/sdk/internal/tb_watcher.py +1 -1
- wandb/sdk/internal/writer.py +2 -4
- wandb/sdk/launch/__init__.py +2 -1
- wandb/sdk/launch/agent/run_queue_item_file_saver.py +1 -7
- wandb/sdk/launch/create_job.py +2 -3
- wandb/sdk/launch/runner/abstract.py +1 -6
- wandb/sdk/launch/runner/kubernetes_monitor.py +2 -4
- wandb/sdk/lib/apikey.py +2 -6
- wandb/sdk/lib/fsm.py +12 -6
- wandb/sdk/lib/ipython.py +1 -6
- wandb/sdk/lib/module.py +0 -3
- wandb/sdk/lib/progress.py +2 -3
- wandb/sdk/lib/run_moment.py +1 -7
- wandb/sdk/lib/server.py +10 -24
- wandb/sdk/lib/sock_client.py +0 -5
- wandb/sdk/service/server.py +3 -12
- wandb/sdk/service/server_sock.py +0 -2
- wandb/sdk/service/service.py +5 -5
- wandb/sdk/wandb_init.py +215 -166
- wandb/sdk/wandb_login.py +17 -27
- wandb/sdk/wandb_run.py +129 -161
- wandb/sdk/wandb_settings.py +978 -1760
- wandb/sdk/wandb_setup.py +87 -94
- wandb/sdk/wandb_watch.py +1 -1
- wandb/sync/sync.py +1 -2
- wandb/util.py +7 -40
- wandb/wandb_controller.py +10 -12
- {wandb-0.18.6.dist-info → wandb-0.19.0rc1.dist-info}/METADATA +13 -3
- {wandb-0.18.6.dist-info → wandb-0.19.0rc1.dist-info}/RECORD +114 -120
- wandb/integration/magic.py +0 -556
- wandb/magic.py +0 -3
- wandb/sdk/lib/_settings_toposort_generate.py +0 -159
- wandb/sdk/lib/_settings_toposort_generated.py +0 -250
- wandb/sdk/lib/reporting.py +0 -99
- wandb/sdk/lib/tracelog.py +0 -255
- {wandb-0.18.6.dist-info → wandb-0.19.0rc1.dist-info}/WHEEL +0 -0
- {wandb-0.18.6.dist-info → wandb-0.19.0rc1.dist-info}/entry_points.txt +0 -0
- {wandb-0.18.6.dist-info → wandb-0.19.0rc1.dist-info}/licenses/LICENSE +0 -0
@@ -1,24 +1,23 @@
|
|
1
|
-
package_readme.md,sha256=
|
2
|
-
wandb-0.
|
3
|
-
wandb-0.
|
4
|
-
wandb-0.
|
5
|
-
wandb-0.
|
6
|
-
wandb-0.
|
7
|
-
wandb/
|
8
|
-
wandb/
|
9
|
-
wandb/__init__.pyi,sha256=nDtg72uLmLfz-E9bTz00yQxhPWJQGJAxmvnpcg4wg7I,44641
|
1
|
+
package_readme.md,sha256=U9047nyMDICgctm1HLm4HfXwFnFKsEn2m77hsYPUZ1I,4298
|
2
|
+
wandb-0.19.0rc1.dist-info/RECORD,,
|
3
|
+
wandb-0.19.0rc1.dist-info/WHEEL,sha256=B_HTF0nESsbkeA2UeB8YgKrtPrxyKFORYURx7Qxu8Xw,101
|
4
|
+
wandb-0.19.0rc1.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
5
|
+
wandb-0.19.0rc1.dist-info/METADATA,sha256=02Mnrh6S4OwM1gjgxkZtIXOQlLGIF2G-H2ZTmpYYCKw,10229
|
6
|
+
wandb-0.19.0rc1.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
7
|
+
wandb/env.py,sha256=rfdLjLgoTgZqxQyV1bbaux-rewXIfG9MYzozxXn-lLo,13491
|
8
|
+
wandb/__init__.pyi,sha256=w-bYvesFly4CNOU8hfGfHQYAoFMwPCAdUovlxre3sUo,45574
|
10
9
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
11
|
-
wandb/util.py,sha256=
|
10
|
+
wandb/util.py,sha256=OH4BGCH6jrAkog-fQO8H0puryTOLVtyI4p0RfGT2Dt8,62269
|
12
11
|
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
13
|
-
wandb/__init__.py,sha256=
|
12
|
+
wandb/__init__.py,sha256=bsnaYrAU4cegfYp9M-4xWYcDYRYHH5PPr1LtqWlkVeA,7162
|
14
13
|
wandb/data_types.py,sha256=tjxcQ8padGuGxST192PyEDX_nhU__izHcAK-kaSyevI,2276
|
15
|
-
wandb/wandb_controller.py,sha256=
|
14
|
+
wandb/wandb_controller.py,sha256=7BaQzLIIWoRB1Pax7oJCNpigftEWPb2O_eN2Ci8gVNI,24838
|
16
15
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
16
|
wandb/wandb_agent.py,sha256=s2GiDjB15j0arw15Bf4xEvQWmwt8mpZdr5w0w-LTjQg,21076
|
18
17
|
wandb/sklearn.py,sha256=hbPkefhS39A1RRymn0nHZZmKM2TrOd4xjlkthTZe9pY,803
|
19
18
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
20
19
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
21
|
-
wandb/jupyter.py,sha256=
|
20
|
+
wandb/jupyter.py,sha256=g0-c5hJXS_l2q3G3-kq-lD5n2_-mRPHeHpPpTzCuAVc,17315
|
22
21
|
wandb/beta/workflows.py,sha256=bk12HDWnxI4uuP0KyUbfclrTSoRVXrJibAuO_QBB5tI,10239
|
23
22
|
wandb/docker/auth.py,sha256=Tr-BMoiMJjX8TsdUquVBBLyfxEJWR4WQZGyz6vBaJk0,15009
|
24
23
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
@@ -33,8 +32,8 @@ wandb/apis/importers/mlflow.py,sha256=uoxzm3bSOqjQyUkgOBwuzpaBjTdGp4drPaqE9f7Ny5
|
|
33
32
|
wandb/apis/importers/wandb.py,sha256=A8yL8rdDoTV-0Glf0VZcgVaONXueVAEL7NFYronadOg,54450
|
34
33
|
wandb/apis/importers/__init__.py,sha256=ewph-RBUC9FnxL6uWbuuW0Hmdv2cHsxfqnZi0546ds4,38
|
35
34
|
wandb/apis/importers/validation.py,sha256=fVILb8fXKk_oj8BbBhUOnzSPwoUuYfF8lflwJklviYY,3190
|
36
|
-
wandb/apis/importers/internals/internal.py,sha256=
|
37
|
-
wandb/apis/importers/internals/protocols.py,sha256=
|
35
|
+
wandb/apis/importers/internals/internal.py,sha256=hJAe3iYTU1uM3MJ5KLm7e4XLMzx5EIepMtAlnZW3PjU,13314
|
36
|
+
wandb/apis/importers/internals/protocols.py,sha256=shZBD2bRMo81xPSUQdK2d9KK8qpop4CmMkizg8FI3WM,2885
|
38
37
|
wandb/apis/importers/internals/util.py,sha256=HvphFwhSxuYqg0omNhfP1GwZV6UzZN-m85CNaSUZXQs,2083
|
39
38
|
wandb/apis/workspaces/__init__.py,sha256=ZLuZVu1MTNZ9ZWFMk-t6TXGQWDhiaI5liEl-5WN1mi4,264
|
40
39
|
wandb/apis/public/files.py,sha256=xX7hb3gmHZoVSiw08SB-W3T0kcjqnzsg5ipI9EjL4Lo,6270
|
@@ -42,14 +41,14 @@ wandb/apis/public/users.py,sha256=nbguWN0QJWvhsmgVx6IrkLYbjJcyI-eJQAUVaoY5Qjc,37
|
|
42
41
|
wandb/apis/public/query_generator.py,sha256=WfyaQuBcTHEECOJ2zN_0iqkUufki9MX28fj3axYZCLU,5977
|
43
42
|
wandb/apis/public/teams.py,sha256=YJAsJLRVM5r6UT48tdGGVA2V_f7nayDe5Q5NRTFQ8m4,5474
|
44
43
|
wandb/apis/public/__init__.py,sha256=ldsy9V8UQlRnsIf9E4qRMtYIdH89oQ8eiYThQsphXks,1070
|
45
|
-
wandb/apis/public/jobs.py,sha256=
|
46
|
-
wandb/apis/public/api.py,sha256=
|
44
|
+
wandb/apis/public/jobs.py,sha256=cw97jJMXCM0jnqGW0QCAWCHMVDVFi2ZOaTSvMv8YJh4,22363
|
45
|
+
wandb/apis/public/api.py,sha256=juyIFB2vNI7UjbUMwm-_ND41pD5gFVHydG8BQZ_mp94,51653
|
47
46
|
wandb/apis/public/utils.py,sha256=3VZ_oKACQ3wR2QG0x89hea4GOdKkjsP-cYm5qZt7gqc,2103
|
48
|
-
wandb/apis/public/reports.py,sha256=
|
47
|
+
wandb/apis/public/reports.py,sha256=xUm3UO8OnCGXMMqXw-YUhOi143HccrDPS8VO7B0xW0s,15278
|
49
48
|
wandb/apis/public/sweeps.py,sha256=t-oOyMauYcGO2YszeQ2u18QwDKw8B94-Lodhw91Kpeg,6543
|
50
49
|
wandb/apis/public/artifacts.py,sha256=ZO6vt4Qs2N8GerR8vM5Wv8Bx-mfG8tAA-FXHs5czDRk,33902
|
51
50
|
wandb/apis/public/projects.py,sha256=F5cPDxAbZD4-oVB_BxBCTsZk6k1tVL0cPU3Z0YEUqzo,4322
|
52
|
-
wandb/apis/public/runs.py,sha256
|
51
|
+
wandb/apis/public/runs.py,sha256=AG9Pp81KCJx-px9M2AFgs4uOTeox0Z1RgJr8KG6B68E,33548
|
53
52
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
54
53
|
wandb/apis/public/history.py,sha256=4gwe9HJ_NH9SSPtLtP7ELw4nIsxLPrY6ji13EK1siyM,4636
|
55
54
|
wandb/apis/reports/__init__.py,sha256=5ZkKvOqwks3UmVeaPuwIZYwyV8_afsGbtybDOXYjSsg,32
|
@@ -67,51 +66,50 @@ wandb/plot/custom_chart.py,sha256=NBI5FmSTH9DsrS3eeVbCP04IKRzb2DMcAvmfoOcHnys,43
|
|
67
66
|
wandb/plot/bar.py,sha256=dCFer_FZJzm53yU3pP4sOpGm_YMu1b1bZWdZI8lSApA,2165
|
68
67
|
wandb/plot/viz.py,sha256=ni1MTkt3k1TxSqArdIR_sVcD1cV0j9eKmJdX0QlBcOM,943
|
69
68
|
wandb/plot/confusion_matrix.py,sha256=C8PuEEhvBn_tpOQlAR_1WMIBnbCmfOFpt3zZ-TzcHtw,6698
|
70
|
-
wandb/proto/wandb_generate_deprecated.py,sha256=
|
69
|
+
wandb/proto/wandb_generate_deprecated.py,sha256=Iyf7PwIL_2B7XohrckYLbjjT09lccwbqknxtWelJpJM,1002
|
71
70
|
wandb/proto/wandb_settings_pb2.py,sha256=g5NT8BLXrE1Y7zWMM768zRoW98dBLE9TNuwttXnuyMY,319
|
72
71
|
wandb/proto/wandb_server_pb2.py,sha256=DzxnfFniVeFWpYB6cZvKMdkh0p5jEdGQK1iBu-56VNQ,313
|
73
72
|
wandb/proto/wandb_base_pb2.py,sha256=HjakgSUcYSm6X7B-nvckrmMjaUKGuUh_KE97AuFBat8,307
|
74
73
|
wandb/proto/wandb_internal_pb2.py,sha256=nIbQS1O4z7n2U0SWGxViHUnjReEBblhht3rZ7pQ0MTs,542
|
75
74
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
76
75
|
wandb/proto/wandb_generate_proto.py,sha256=KO1hlAUBGHQRNKsddhcSXvh5a6rmFM3kshKTWftbWwY,1278
|
77
|
-
wandb/proto/wandb_deprecated.py,sha256=
|
76
|
+
wandb/proto/wandb_deprecated.py,sha256=CGD8fZII6QOjVPJZ2zCGG8Cx95A5KZVYHYwFPz1Cz6k,1978
|
78
77
|
wandb/proto/wandb_telemetry_pb2.py,sha256=ReY9N2qSt46o7m1ou1khvYSYYImrzo5ro90g_9m8QsM,322
|
79
|
-
wandb/proto/v5/wandb_settings_pb2.py,sha256=
|
78
|
+
wandb/proto/v5/wandb_settings_pb2.py,sha256=iOPjjNrOyk6RL_1UNO_-est-4PEU3L2m87fhFRXL-5k,17435
|
80
79
|
wandb/proto/v5/wandb_server_pb2.py,sha256=piGeVPCrHNCMMc9yIYKQtFRNSvfvB2fQKs8ANwApJu8,7463
|
81
80
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
82
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
83
|
-
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=
|
84
|
-
wandb/proto/v4/wandb_settings_pb2.py,sha256=
|
81
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=YavvPYL4unVaRdRMiUg52rbP0FU7ck9ooNWKqhoWP8A,55402
|
82
|
+
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=tYmNIX5Mtw2AybnuX8n9KbwdxT2w4GKPvvokFfKfP8M,11522
|
83
|
+
wandb/proto/v4/wandb_settings_pb2.py,sha256=miaSpJuKusA3kFCKufT7aSo3kl4W_6pTyuC7LfO6K_A,17103
|
85
84
|
wandb/proto/v4/wandb_server_pb2.py,sha256=MjXs9_8Gy8PKlIZuNZILp0fh2GDXctwKDL5BZhXydsA,6905
|
86
85
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
87
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256=
|
86
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=3erm0AcQp_Gf0B0ji3NpaPNe4AJ3D_t5hYxOrE6E8Do,51199
|
88
87
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
90
|
-
wandb/proto/v3/wandb_settings_pb2.py,sha256=
|
88
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=sd9xk2SdYw3SBOYw77GT5pFa0YHl9v-P17-854RMMxg,11252
|
89
|
+
wandb/proto/v3/wandb_settings_pb2.py,sha256=k6a0WJ7AXUVVZYGCaaJ67RVbQ9po9BB4FDwyFHPzpO0,20372
|
91
90
|
wandb/proto/v3/wandb_server_pb2.py,sha256=v_A6xNDUCKToBeUTgr1b6sqo51-PdqBEgLLKu8oloSU,15442
|
92
91
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
93
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
92
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=_3DQZx8l62B6QSSrPpIKqNq7y_aMNJCSOMuU0L-MnHU,111588
|
94
93
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
96
|
-
wandb/bin/wandb-core,sha256=
|
97
|
-
wandb/bin/gpu_stats,sha256=
|
98
|
-
wandb/integration/magic.py,sha256=ps8PhALr7nv0h-P3kkVQF3lSBfq2O-OrqzRk6O2cb0U,17193
|
94
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=tQQJ7s3fbFYJc60JLnrkdf8yxCqKK0zJMdJaXxA3phM,13805
|
95
|
+
wandb/bin/wandb-core,sha256=DBrMnzNqNRtj7HCwuPPjzToRMxIugLAPoMuE63M9GB8,45084290
|
96
|
+
wandb/bin/gpu_stats,sha256=eTijOKNFA5cFJ-mKeKfR3ls68QLkXp3PWkZKjU8x2Ng,9541160
|
99
97
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
98
|
wandb/integration/yolov8/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
101
99
|
wandb/integration/yolov8/yolov8.py,sha256=srryantZqO65pj1x52MiKD5m2SzdQc4nIsj4o1GPK8o,11371
|
102
|
-
wandb/integration/keras/keras.py,sha256=
|
100
|
+
wandb/integration/keras/keras.py,sha256=vMeC8tUm07oaX60cStAlYRUPxck9fdjfD1gWRAZLOwI,44097
|
103
101
|
wandb/integration/keras/__init__.py,sha256=8_vNA4cEbj1lg2pgMz-c5Iu1XJQtX9x5_vNGrv4NBdE,345
|
104
102
|
wandb/integration/keras/callbacks/tables_builder.py,sha256=kmqwNGVbDaHo6pNfltUK5BED0g1oIwmtJOCGZZk-FAg,8840
|
105
103
|
wandb/integration/keras/callbacks/__init__.py,sha256=sY5AMC3x28iA815fqbqkkArtjctqG-m9N2D5FnyR0no,223
|
106
|
-
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=
|
107
|
-
wandb/integration/keras/callbacks/metrics_logger.py,sha256=
|
104
|
+
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=bbwRrex096GKi74xv-N1MaNyB6enU2eGsVEdgAIbjGQ,8546
|
105
|
+
wandb/integration/keras/callbacks/metrics_logger.py,sha256=gA2ui3ZCV4DyOEx5vQZOYRA59jPIlsZhCIC6IGvdy5k,4919
|
108
106
|
wandb/integration/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
107
|
wandb/integration/lightning/fabric/__init__.py,sha256=RFhr2VkC0D8b6bAXUMZzcVzqDQaoOozfP_HOogAWi9o,94
|
110
108
|
wandb/integration/lightning/fabric/logger.py,sha256=DSW0VUJyxQjkRAzi4t1YiOXWgvic5n4erKPxD3h81xI,27229
|
111
109
|
wandb/integration/cohere/__init__.py,sha256=8yTJGhWznxEAxHYDY7oMghvsak_KqLngSLpqjR8ic3g,52
|
112
110
|
wandb/integration/cohere/resolver.py,sha256=pQ2kbO-ynL3FKemSZeCdcsqusQrfB3n29znj-KdSiNo,13813
|
113
111
|
wandb/integration/cohere/cohere.py,sha256=CyALJXyLDnic6ZRc8I4UXmR7hYqtIOCi5Wav12JcXd0,453
|
114
|
-
wandb/integration/sb3/sb3.py,sha256=
|
112
|
+
wandb/integration/sb3/sb3.py,sha256=3dAuO2DYOS_6B9TSHNsHBGvuRPQjFlqaPe5uPB9mRw8,4797
|
115
113
|
wandb/integration/sb3/__init__.py,sha256=w_VX7C6qAE1vK7xb24JchQtORxzfpXvl6YmZHUIskJM,60
|
116
114
|
wandb/integration/langchain/__init__.py,sha256=afRoYH4bPOw6Tyrn9YvuYHzbSae97iQT-Ufi0puJqNw,66
|
117
115
|
wandb/integration/langchain/wandb_tracer.py,sha256=EnzIi-qCCjLDJZf3FlKbdAcgdJTOHRFqHU2Ml-PxYEU,2217
|
@@ -129,9 +127,9 @@ wandb/integration/kfp/__init__.py,sha256=WhBhg3mQopGNDbWzGJ8Xyld8w3FAAvmP1G1Wtv_
|
|
129
127
|
wandb/integration/kfp/kfp_patch.py,sha256=TaCW5cIhTL01NoqxVZdbnqXU2wdCusBm1nkG8Gjdb0M,13077
|
130
128
|
wandb/integration/kfp/helpers.py,sha256=yEVO9rrz27hc4nk3WwNL3v1aRAUlS-OlXMC8Rj0G1tI,1016
|
131
129
|
wandb/integration/torch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
132
|
-
wandb/integration/torch/wandb_torch.py,sha256=
|
130
|
+
wandb/integration/torch/wandb_torch.py,sha256=gEI1mlRl03K-8jYD49-k_3cDVBuNQpRF8vMd4BBaNyM,21525
|
133
131
|
wandb/integration/sklearn/__init__.py,sha256=bDnzytR60EFQblaAZdw76WlJBmfG-O7NrKavIEY97Ck,861
|
134
|
-
wandb/integration/sklearn/utils.py,sha256=
|
132
|
+
wandb/integration/sklearn/utils.py,sha256=QYFyz_k07CfWoACbiFXJg_-J4GwXm0VhXYrnau4lt38,5870
|
135
133
|
wandb/integration/sklearn/plot/classifier.py,sha256=d9YsJ5Y3j8F4WikxkALruvqilzq5hqLIFuhghzyB48E,11753
|
136
134
|
wandb/integration/sklearn/plot/__init__.py,sha256=7RgC3Dakive4tLSmYOBTiNWtFZz-9AJG3AWtW00xcJs,1368
|
137
135
|
wandb/integration/sklearn/plot/shared.py,sha256=elvnlCHFlASs7Olnh-MVh7kvuuR89qvfmit2GmbeRMo,2763
|
@@ -149,13 +147,13 @@ wandb/integration/sklearn/calculate/elbow_curve.py,sha256=bMkksPxpySAVgzITe-WECw
|
|
149
147
|
wandb/integration/sklearn/calculate/summary_metrics.py,sha256=moxThZVRHVHMIp_A5mzS7_66FZTN3w2hu1wY_AgcKj4,2010
|
150
148
|
wandb/integration/sklearn/calculate/feature_importances.py,sha256=MyhIsOac3P43wDyExblzfFK54ZI2-FfAZpF9jK7is5o,2261
|
151
149
|
wandb/integration/sklearn/calculate/confusion_matrix.py,sha256=9u6AieiGlq8NPyQIiybalJ4ZQRkPDAZMxFrB2Q_KaJM,2543
|
152
|
-
wandb/integration/fastai/__init__.py,sha256=
|
150
|
+
wandb/integration/fastai/__init__.py,sha256=H9hNlEmIr_CGfo38XdU1cKUdDDo7DLCQDWzvxsjKgcU,9344
|
153
151
|
wandb/integration/tensorflow/estimator_hook.py,sha256=fi-UtjNZxUnDkzfbNP09iH074z5x0ItZiB4dkvwMGNI,1756
|
154
152
|
wandb/integration/tensorflow/__init__.py,sha256=8y7Acc7EAxKF-4vGXuZH6tsXeNNzqXisE2blNz9RNQk,125
|
155
|
-
wandb/integration/tensorboard/log.py,sha256=
|
153
|
+
wandb/integration/tensorboard/log.py,sha256=oH6P12trF59ulmfoMczuY9czOZ4bBQdVKRdt8V4847E,14180
|
156
154
|
wandb/integration/tensorboard/__init__.py,sha256=Ivj8-XV4lGLg1JK2LdNxWlaLkqrJmXdyWTXf41ysib8,213
|
157
155
|
wandb/integration/tensorboard/monkeypatch.py,sha256=7S3i2vcmmIjEpY4f2Ro8OxfS5b2zgXYoTDoLmwcm7fw,6828
|
158
|
-
wandb/integration/gym/__init__.py,sha256=
|
156
|
+
wandb/integration/gym/__init__.py,sha256=n4Eptiae6iTvgcm8U4b8a8cUkOgB5DYvbRrwxoVkXoI,3026
|
159
157
|
wandb/integration/prodigy/__init__.py,sha256=1-Hg98Y4T1kSNAbrlR9TUrr7dwL1Gxxa-Exu0fsfxl0,66
|
160
158
|
wandb/integration/prodigy/prodigy.py,sha256=Kzo4WQp5BLka3kdNvkRO8PRtZm36ql3GMegzV2Y_m6o,11605
|
161
159
|
wandb/integration/huggingface/__init__.py,sha256=Ui-JiM_yel2YZuS9U_LyReL3mhBZZSIUNLBODjS4l4Q,57
|
@@ -163,12 +161,12 @@ wandb/integration/huggingface/huggingface.py,sha256=KYP0dCYERORLNE1Sk6jfp0krHF2B
|
|
163
161
|
wandb/integration/huggingface/resolver.py,sha256=Atc0vwdPar5yKzTcJF6Fu2i7h7a6TX0W9B2HdeToqrI,7858
|
164
162
|
wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
|
165
163
|
wandb/integration/metaflow/metaflow.py,sha256=bDHn_CG5XBfY7mWi9JpqPLx9b3V46LFScf8CuMVqrxo,11892
|
166
|
-
wandb/integration/lightgbm/__init__.py,sha256=
|
164
|
+
wandb/integration/lightgbm/__init__.py,sha256=ztwqeaVneF_f6ngCd0UowwksnNopl1bhSQN9hAeyoyU,7981
|
167
165
|
wandb/integration/ultralytics/callback.py,sha256=RzX-iBEJJULfYSEke_jN_kJkXsBwqo6qpjuRDHp3W7c,21253
|
168
166
|
wandb/integration/ultralytics/pose_utils.py,sha256=oknJAy_eoyokJY1u03uk_MpR7kKrJIK4wSRBK5lJGyw,3709
|
169
167
|
wandb/integration/ultralytics/classification_utils.py,sha256=NZy8LA1GYf_qP9SptwIWw8FCaODteuLvbTAd7z_YzAs,3168
|
170
168
|
wandb/integration/ultralytics/__init__.py,sha256=omtrUwOg6GWKWyunhIPclFdQmxW8XIXQaPoF1Ai5WxU,340
|
171
|
-
wandb/integration/ultralytics/bbox_utils.py,sha256=
|
169
|
+
wandb/integration/ultralytics/bbox_utils.py,sha256=668VePOI5SuQj2frko8wovH-XZsEwU8s-BQd_yX-NcE,8023
|
172
170
|
wandb/integration/ultralytics/mask_utils.py,sha256=uzUtDjg4C9_4Z6_fWo0wiylauYvmckZ9JQn0afd1NJg,7080
|
173
171
|
wandb/integration/catboost/catboost.py,sha256=mdVQ_J2VF8uz8ONktS6o2JMb1HAJX3LtnO02FP3v9ew,5942
|
174
172
|
wandb/integration/catboost/__init__.py,sha256=dxef0C9s9Xez_sF3sOqSJpKaSrAibAqMA_TpVUyIwac,127
|
@@ -189,50 +187,50 @@ wandb/old/summary.py,sha256=eqpzQB5CfzTKZta6tB-nVUh0ZmiLwISqjSAt4yvwocE,13952
|
|
189
187
|
wandb/old/settings.py,sha256=IrS10skC9gCTb8NgTWeRFgsTYL1bw36e-rG_xECk-yo,6374
|
190
188
|
wandb/cli/beta.py,sha256=JaDq3Q2t8ECsAgvZ-8AtgiawDydZnasQdXtECIf9ODY,5357
|
191
189
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
|
-
wandb/cli/cli.py,sha256=
|
190
|
+
wandb/cli/cli.py,sha256=tyU5kU6keDPfzM62s054muNjNTXPlS940c1KN61kkjI,92760
|
193
191
|
wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
194
192
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
195
193
|
wandb/sdk/wandb_config.py,sha256=TCddmgheDApOE-OXcZdgihhCnTpoR5jj4zeohs-9Q8M,10854
|
196
194
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
197
|
-
wandb/sdk/wandb_run.py,sha256=
|
195
|
+
wandb/sdk/wandb_run.py,sha256=7r8KJ-dvjvscJgy-r4jTwNKS6BQQ_019-NCL9ZFJBHk,154908
|
198
196
|
wandb/sdk/wandb_sync.py,sha256=GzZ6f6PrzhhuAmNh10OZgEwe7RuzyBqXSvJdLJxnt8I,2321
|
199
197
|
wandb/sdk/__init__.py,sha256=N-GTAC0AzbZF2J8RzB33DTmYk9u-jubllCwvhWrPgsE,813
|
200
|
-
wandb/sdk/wandb_init.py,sha256=
|
198
|
+
wandb/sdk/wandb_init.py,sha256=fQbSkqvI6daaotiVdZjkhYAPWPOF2UB13oWmHZ81TI8,53705
|
201
199
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
202
|
-
wandb/sdk/wandb_settings.py,sha256=
|
200
|
+
wandb/sdk/wandb_settings.py,sha256=HwGw6GYTDR898L7RjKVoOUdfLucXmUO98oA7lx280s8,46245
|
203
201
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
204
|
-
wandb/sdk/wandb_watch.py,sha256
|
205
|
-
wandb/sdk/wandb_login.py,sha256=
|
202
|
+
wandb/sdk/wandb_watch.py,sha256=F7S9CLbw9PddUp1qBjPRKsOiVFU8LPaq6A9taV3TJKI,4840
|
203
|
+
wandb/sdk/wandb_login.py,sha256=3Y1GnE7xQi6LLd9RfVeUZ_SlvsSYyhzSDeIxrqaG6YQ,10976
|
206
204
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
207
205
|
wandb/sdk/wandb_require.py,sha256=Y0ib8h27__t7hXos1F2srfsQzVfzH4BB6wq8E1aRbRA,2950
|
208
206
|
wandb/sdk/wandb_sweep.py,sha256=cboZB5qvLigAY3UeYifDTX1me_-Q4Y0EJ5UVEzYCXac,4000
|
209
|
-
wandb/sdk/wandb_setup.py,sha256=
|
207
|
+
wandb/sdk/wandb_setup.py,sha256=sEOZmboOsLYnPk1DBZYseQUvsTQuIVzz2cQGh7YZgXc,12937
|
210
208
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
211
209
|
wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
|
212
210
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
213
|
-
wandb/sdk/integration_utils/auto_logging.py,sha256=
|
211
|
+
wandb/sdk/integration_utils/auto_logging.py,sha256=sblNn9BIG7memxTj23UfrGXyA06t39FEt5igMwS0-zU,8233
|
214
212
|
wandb/sdk/interface/interface_relay.py,sha256=vQUrk5KESKInZsXpOxWF4YcWRZFLJjNz1mdNywbWbbE,1514
|
215
|
-
wandb/sdk/interface/router_queue.py,sha256=
|
213
|
+
wandb/sdk/interface/router_queue.py,sha256=4RDXvCcm1OQ7R7eSrZQi7qpaXyd_DzSStYs6CbgXHkQ,1041
|
216
214
|
wandb/sdk/interface/message_future_poll.py,sha256=drjrcBKswYPYJJQLFlj7UDXq7_zg7KNcObFVetsbvhQ,1410
|
217
215
|
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
218
216
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
219
|
-
wandb/sdk/interface/interface.py,sha256=
|
217
|
+
wandb/sdk/interface/interface.py,sha256=yomdsv6ylM5bu5LK7e4sKoUazMqEL7ZLR6TD6SICQJE,35024
|
220
218
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
221
219
|
wandb/sdk/interface/router_sock.py,sha256=7-J3SFhnaqPohYaUyljwpbsvYPBXA-ZTENYnXxzbh9U,1060
|
222
|
-
wandb/sdk/interface/interface_shared.py,sha256=
|
223
|
-
wandb/sdk/interface/interface_queue.py,sha256=
|
224
|
-
wandb/sdk/interface/router_relay.py,sha256=
|
220
|
+
wandb/sdk/interface/interface_shared.py,sha256=slAFQKvq5_PXVOiUPWAP50GOWOMTKCLC5mjI8aHGUPY,20505
|
221
|
+
wandb/sdk/interface/interface_queue.py,sha256=7lbQz6VYamqYlNpkC-Ckrn5az_Yc9CrbnmwKNFtta44,1700
|
222
|
+
wandb/sdk/interface/router_relay.py,sha256=uf0KA_WJ25xMwLsH_3RU_ZhRPNS5qujo1aFU2d_rfzs,953
|
225
223
|
wandb/sdk/interface/message_future.py,sha256=5OMApIUKTXLHP98ph_jCdshuPZB_E0Uf3UGZpOQ8sik,685
|
226
|
-
wandb/sdk/interface/router.py,sha256=
|
224
|
+
wandb/sdk/interface/router.py,sha256=uTgmF0TaQnYq8Frgs7pncUBucA6B7XXCmKcRoYEZV10,3419
|
227
225
|
wandb/sdk/interface/interface_sock.py,sha256=vA5vDMDuuenKkW8zHYfECM4OoSoqAi6hiLMJzqdepd8,1984
|
228
226
|
wandb/sdk/artifacts/storage_policy.py,sha256=BGIC8QRfryCNzF-72uk53MvQQbZVoKwQGhn2zX3NaRE,2090
|
229
227
|
wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
|
230
228
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
|
231
229
|
wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
|
232
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
230
|
+
wandb/sdk/artifacts/artifact.py,sha256=YBGy-LZvvXeuBohU3mPpSOSrg4EJp65xxoc3ksZv4E8,88128
|
233
231
|
wandb/sdk/artifacts/_validators.py,sha256=TLiRLkBZb7CMhR2ybdWTg68Z93uBQW3KiptijYHt-kM,4205
|
234
|
-
wandb/sdk/artifacts/artifact_file_cache.py,sha256=
|
235
|
-
wandb/sdk/artifacts/artifact_saver.py,sha256=
|
232
|
+
wandb/sdk/artifacts/artifact_file_cache.py,sha256=503z2x4CoTLXk_IfC9jRKBU9fr-X9PMiyG66h0INzQg,9744
|
233
|
+
wandb/sdk/artifacts/artifact_saver.py,sha256=2x_n6KKSdntz7XBIDzQt3BqTXQgxfpyHe4U0GHe0nI8,9329
|
236
234
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
237
235
|
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=gZMykmzIiBIx4777zVDKjMIYqdHWFdBJhmURgi-Y1f4,8355
|
238
236
|
wandb/sdk/artifacts/artifact_manifest.py,sha256=YYC6o2OooTcVfkzqQIIVcxVxqdSN9TELG-qWgaSI2Qo,2545
|
@@ -244,39 +242,39 @@ wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyT
|
|
244
242
|
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=m2s67vmRySPw0bkI69HoIUTO2hyYAo-Nl22jv32Rl90,14002
|
245
243
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
|
246
244
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
|
247
|
-
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=
|
245
|
+
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=XysTYz7_4zqGuvY1mdfaw--SqyIOe-WvjTowJFFHBvY,11586
|
248
246
|
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=CfVOgg4QSiauUu7gi-CD4tLCgZZmJITWTdlODEzIDo0,2553
|
249
247
|
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=MVLbOi-py7Fbw0BxTs_23At3AyB-FFTHheD7nZnyu7s,4839
|
250
248
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
251
249
|
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=4SSGuBisSNjqfvMQXguNL1keyx0lpDL9P0Dx7eZhTxo,1853
|
252
250
|
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=OGfwIi2gfMRzs6EU4mtf9KBhz279yN0AuXApauZigys,8253
|
253
|
-
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=
|
251
|
+
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=mRohKfaa4RAMST5_9jVR_mT0hkZpDAnIHgtJeImtYa8,5272
|
254
252
|
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=BI-NlGm0WRwGz8B-ZW9YtDEwlClvNwCE4_LRwSlXlpw,4070
|
255
|
-
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=
|
253
|
+
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=hGslEr9QYi0Jp5_C5fxv7CaRu219tdmldyayncze0vc,8514
|
256
254
|
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=lFWh0NIySHq6JWNJ-WOX367lUEY7KN7zFsB-zte7FpQ,2571
|
257
255
|
wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
258
256
|
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=IW0xTXh4j-GxgypmcJkkefXnopPrycnSnPF1Sl5ypfs,3443
|
259
|
-
wandb/sdk/data_types/object_3d.py,sha256=
|
257
|
+
wandb/sdk/data_types/object_3d.py,sha256=xQw-9mq_cXMxXoW817BiByh7C5wvMuC6jliJEzKEAPg,15948
|
260
258
|
wandb/sdk/data_types/molecule.py,sha256=lTScaG-_B-eGh20bRfLNA2fECDYQOuD0zdnGvQjEI8o,8583
|
261
|
-
wandb/sdk/data_types/histogram.py,sha256=
|
259
|
+
wandb/sdk/data_types/histogram.py,sha256=k6HGNKttt91ktSGsuWHEEZ46FRn2GxNvCuNdQVNQyCQ,3165
|
262
260
|
wandb/sdk/data_types/trace_tree.py,sha256=HHJE6QHmlfvWE090OMW6CxMebMT03rF_qnTSGmX0-EE,14700
|
263
261
|
wandb/sdk/data_types/graph.py,sha256=WmCHpKfmeSIc7PCkC55YZyxgbTp56EKnqN8TlkApvTA,12061
|
264
262
|
wandb/sdk/data_types/html.py,sha256=CBgxEybPGDY6vpQ1fHoKtQfGNGuqSkFQtUZF-qG9p6c,3504
|
265
263
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
266
264
|
wandb/sdk/data_types/_dtypes.py,sha256=NdRfTto95YxLMMK89PONQvAz_Jaey8D7caTsZ_OlvW8,30092
|
267
|
-
wandb/sdk/data_types/utils.py,sha256=
|
265
|
+
wandb/sdk/data_types/utils.py,sha256=n-cEEFVBew0YK83RjQNO8Anw71aN4oSUTYPMwkVkwEY,7893
|
268
266
|
wandb/sdk/data_types/audio.py,sha256=VcbZRjY-9szxIKR-x1Eg375H1Lm5R6znErT4Q8FYrWM,5364
|
269
|
-
wandb/sdk/data_types/table.py,sha256
|
267
|
+
wandb/sdk/data_types/table.py,sha256=DjppFy0-ii1iMoVOg-h_F1YEUbgk5wGPJDXlQURXLQw,44683
|
270
268
|
wandb/sdk/data_types/bokeh.py,sha256=0Aq4CJECPpoAkl7vw5LCGYhdCb9pS8i46jHB9PxTj1k,2534
|
271
269
|
wandb/sdk/data_types/saved_model.py,sha256=VNqDWxnoj9kUgj4zZvD7ieXAh5c63AQ1wf2Aads2fN0,16364
|
272
270
|
wandb/sdk/data_types/plotly.py,sha256=LEIHRqtHHpSou04AEUsyH8_UMXP4adrEHHaKoEtQkxo,2913
|
273
|
-
wandb/sdk/data_types/video.py,sha256=
|
271
|
+
wandb/sdk/data_types/video.py,sha256=4Z1p_E0iU2qnvJ1NioBCZkEvTkQl7oJ_YktCA8sddfo,9714
|
274
272
|
wandb/sdk/data_types/image.py,sha256=z1KRFRCu7xgx9UybFgbg_PgYw3lZW29KDDEh5gXrWuE,31332
|
275
273
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
276
274
|
wandb/sdk/data_types/base_types/media.py,sha256=QO6aQdNGYtwr6qZYUQ9-WbTpkB3adCBTXWSqO3ZCJjI,14284
|
277
275
|
wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
|
278
276
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
279
|
-
wandb/sdk/data_types/base_types/wb_value.py,sha256=
|
277
|
+
wandb/sdk/data_types/base_types/wb_value.py,sha256=7F2ufa0wMgZ2glMfK3O15lrg0EJQdd0iPU8NMvx61h8,11393
|
280
278
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
281
279
|
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=U_A5Ac7dhXLuuG2QOpPQFMByGYkwX9WGD6WN9QZAtBo,12782
|
282
280
|
wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZYRj8rvSmT7fl9ds,5520
|
@@ -285,16 +283,16 @@ wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
285
283
|
wandb/sdk/verify/verify.py,sha256=2C4C_l8EPGBXZw1PyXyHxnbVMuypHQhBkK5vV15xjG0,16521
|
286
284
|
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
287
285
|
wandb/sdk/launch/_launch.py,sha256=FZ2JjZc1rzAIW3biWpVKHzxTwWmRx1ZK3n5S-YUQMKE,11829
|
288
|
-
wandb/sdk/launch/__init__.py,sha256=
|
286
|
+
wandb/sdk/launch/__init__.py,sha256=moXY557JibPbvE1GSSh3nGFiyelTVaJZMdFSv61Dn2k,399
|
289
287
|
wandb/sdk/launch/_project_spec.py,sha256=lkDkVeAjg8wJylHJHHbFsX3jK3gdXXLj3PzIJIaxRV4,21748
|
290
288
|
wandb/sdk/launch/_launch_add.py,sha256=OD6JPJN3dCNz5FZ_8MzgUOBAWGRtcgMz8UYoeV26g9c,8795
|
291
289
|
wandb/sdk/launch/utils.py,sha256=kf0aoBp5yh8Od5zhYvi6CjA2x9EbbLiFImLkL2lWTKA,25689
|
292
290
|
wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
|
293
291
|
wandb/sdk/launch/errors.py,sha256=G86cx2IZSRBBxLE7thxcVFKzN9d4mGyvciaWRz0uWWM,275
|
294
|
-
wandb/sdk/launch/create_job.py,sha256=
|
292
|
+
wandb/sdk/launch/create_job.py,sha256=Uue7UhbLFZSe4Nljy_S2T92uOAAASFFoOme37UjgAxc,17381
|
295
293
|
wandb/sdk/launch/git_reference.py,sha256=6pTVlD7-BICWoraN8PsAzCKu64GV7g_GzqMSD9w3Sos,3758
|
296
|
-
wandb/sdk/launch/runner/abstract.py,sha256=
|
297
|
-
wandb/sdk/launch/runner/kubernetes_monitor.py,sha256=
|
294
|
+
wandb/sdk/launch/runner/abstract.py,sha256=3ICRrQCAkobJEar_vKagYuoEeK69WCIeh31lYeg01XE,5717
|
295
|
+
wandb/sdk/launch/runner/kubernetes_monitor.py,sha256=fLYuqqcYdxCR3jCLvHE6feQWfuIbsWXPnZx032cQ32k,17765
|
298
296
|
wandb/sdk/launch/runner/sagemaker_runner.py,sha256=20wjal1pEj8urkJ6F8Yihx6_G5uhSdiIBrySxRF3pRA,15295
|
299
297
|
wandb/sdk/launch/runner/local_container.py,sha256=nhxTNwQop183VRFGSzO-2GjctWohqJnzCSc8FC7LiqM,10358
|
300
298
|
wandb/sdk/launch/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -305,7 +303,7 @@ wandb/sdk/launch/agent/config.py,sha256=86g1NLkhEyg3a7lDY2yYtFAFV-u3Tg36zMiRJnXY
|
|
305
303
|
wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
|
306
304
|
wandb/sdk/launch/agent/agent.py,sha256=lTongYmHXc7n5huXjAdOqwFr_ekcBajLchEebugPaZI,36500
|
307
305
|
wandb/sdk/launch/agent/job_status_tracker.py,sha256=HaWU-VbXGe6m8VvM2y6riQ2Iwb2j62ugoJsR9wzUIpU,1813
|
308
|
-
wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=
|
306
|
+
wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=ty_1AZwVUQiZK10DC0gbM7hy4UKIXwir7swCrVC5VE0,1336
|
309
307
|
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=beM0go0u9xRcXW20ED8MyTqq4ol_O5_4PODbA7FpN88,2987
|
310
308
|
wandb/sdk/launch/sweeps/__init__.py,sha256=PKCn6tB55bbKdHUPxwqmrFP2ZLOT9S7iIgd93vjNwSs,903
|
311
309
|
wandb/sdk/launch/sweeps/utils.py,sha256=TbsAvn3eQnp5js0SvMmPVoP5vaT5bXMPL-ISWyZvVlQ,9837
|
@@ -334,52 +332,52 @@ wandb/sdk/launch/inputs/internal.py,sha256=xtEZ7znfUCL2ME7xZv5bD8I5C6hNpN2EqjgNd
|
|
334
332
|
wandb/sdk/launch/inputs/files.py,sha256=BWGDmAfDPLja7zz0bUzYLaF3wH4cTPesD9LqDuJRUoU,4685
|
335
333
|
wandb/sdk/launch/inputs/manage.py,sha256=O0IsTWhjUftihohRfK7DkT186LjHMMcE2NSMeG8IFBY,5003
|
336
334
|
wandb/sdk/launch/inputs/schema.py,sha256=Fs4CcxI0ifFagazbNp47uJP15JL3v43PAvVNO93f9XY,1418
|
337
|
-
wandb/sdk/internal/sender.py,sha256=
|
338
|
-
wandb/sdk/internal/internal.py,sha256=
|
335
|
+
wandb/sdk/internal/sender.py,sha256=77Nt6CPPdMa19_eZ427beqDQgl9vr_9yITuHODQWQP8,65210
|
336
|
+
wandb/sdk/internal/internal.py,sha256=QiCWUA4C2Yt1d1mJ7YOiFgrIl7blg_fIs1q0CqH8leE,12168
|
339
337
|
wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
|
340
|
-
wandb/sdk/internal/job_builder.py,sha256=
|
341
|
-
wandb/sdk/internal/internal_api.py,sha256
|
342
|
-
wandb/sdk/internal/handler.py,sha256=
|
338
|
+
wandb/sdk/internal/job_builder.py,sha256=_L-DfGFEzDl0JLXPo535KPK3Bk0vqXsTQVF7buXeaiY,22962
|
339
|
+
wandb/sdk/internal/internal_api.py,sha256=Ju4F_2y-Ux-eEzFXtlf84vXGbOQI1W-ja4trOrldraw,159406
|
340
|
+
wandb/sdk/internal/handler.py,sha256=vPt2fCZ-JlxGX-wru1yKOtTducXcuolBaNKLu-xm0L4,33416
|
343
341
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
344
342
|
wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
|
345
|
-
wandb/sdk/internal/settings_static.py,sha256=
|
343
|
+
wandb/sdk/internal/settings_static.py,sha256=R8Q8bqcl0hQvcwu2ppLrbotJ3ZQmZp_kIh2Jchdt0LY,3279
|
346
344
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
347
|
-
wandb/sdk/internal/tb_watcher.py,sha256=
|
348
|
-
wandb/sdk/internal/flow_control.py,sha256=
|
345
|
+
wandb/sdk/internal/tb_watcher.py,sha256=lJrqTvhsUkKJCcq7D9RWZi3U1QJbVSzM535GYEhOauI,18703
|
346
|
+
wandb/sdk/internal/flow_control.py,sha256=3LJ-KatyPPH18G7TfSMLDk-BE5tankB4JRhQqLoUOWM,8585
|
349
347
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
350
|
-
wandb/sdk/internal/file_stream.py,sha256=
|
348
|
+
wandb/sdk/internal/file_stream.py,sha256=nrPaWbOM3_v04x3V2IiMiHY3-cA2shc5Iaa1maXsFC4,25807
|
351
349
|
wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,2442
|
352
|
-
wandb/sdk/internal/writer.py,sha256=
|
350
|
+
wandb/sdk/internal/writer.py,sha256=jo_Ex7ik-0_rIahYDHIWcQjm_uxsUNVn92__bI8TloE,7267
|
353
351
|
wandb/sdk/internal/file_pusher.py,sha256=clBm6fj_27krGVCcFw9mUdalXHRZlIUxsj5AW_BAzZU,6098
|
354
|
-
wandb/sdk/internal/internal_util.py,sha256=
|
355
|
-
wandb/sdk/internal/progress.py,sha256=
|
352
|
+
wandb/sdk/internal/internal_util.py,sha256=dKawQKw4UdZUE6Bmme5baT0FGDC0IUgoD2zM6ey4oBU,2555
|
353
|
+
wandb/sdk/internal/progress.py,sha256=9nNAErIXzJoapctsfqWYhESNPzFkXAu5TVAnaKsIa4k,2339
|
356
354
|
wandb/sdk/internal/profiler.py,sha256=C8-mPrAhPS6_l-Fj_zCOwmXaEqhjI9Wd0EAPXS9GAEI,2348
|
357
355
|
wandb/sdk/internal/datastore.py,sha256=qqkCbh98crLbfKSTHKmO137IX-jCFYkh8wbZeh9dc6Q,9838
|
358
|
-
wandb/sdk/internal/system/system_monitor.py,sha256=
|
356
|
+
wandb/sdk/internal/system/system_monitor.py,sha256=61DKnLjXIsx7qkn4ZiA3w0BTet9P_40u3Wye0puin20,8581
|
359
357
|
wandb/sdk/internal/system/env_probe_helpers.py,sha256=jIy6gbiaq37SzgcBGe6GepJho1VS5qNQThqOmu-g0OA,397
|
360
|
-
wandb/sdk/internal/system/system_info.py,sha256=
|
358
|
+
wandb/sdk/internal/system/system_info.py,sha256=CnRvjCUqUO9JoUytjgck_BxRVvXCf3m-XTfY9jTktdI,10057
|
361
359
|
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
362
|
-
wandb/sdk/internal/system/assets/interfaces.py,sha256=
|
363
|
-
wandb/sdk/internal/system/assets/disk.py,sha256=
|
364
|
-
wandb/sdk/internal/system/assets/ipu.py,sha256=
|
365
|
-
wandb/sdk/internal/system/assets/gpu_amd.py,sha256=
|
366
|
-
wandb/sdk/internal/system/assets/memory.py,sha256=
|
367
|
-
wandb/sdk/internal/system/assets/cpu.py,sha256=
|
368
|
-
wandb/sdk/internal/system/assets/trainium.py,sha256=
|
360
|
+
wandb/sdk/internal/system/assets/interfaces.py,sha256=TofxF96YnxQEk0PLU1jpcv4E3giR2-HZ0LOYbAA4hm0,6221
|
361
|
+
wandb/sdk/internal/system/assets/disk.py,sha256=KrNCHObdu2YOVdLebbFVorQkmX2mhZ7dItnEyEvtaJU,6298
|
362
|
+
wandb/sdk/internal/system/assets/ipu.py,sha256=irMYKXo1zEluWC5FjYzGD3edySfoi3lgiIi-0GNziE8,5314
|
363
|
+
wandb/sdk/internal/system/assets/gpu_amd.py,sha256=MpL2c74p7hls_BRwF6f25C1QdW1wwToi9hthE7o7-rY,7355
|
364
|
+
wandb/sdk/internal/system/assets/memory.py,sha256=qagPlKbZwVFc0GiTJBRNT6XpY62Do-UMUPrOn3g5gCk,4292
|
365
|
+
wandb/sdk/internal/system/assets/cpu.py,sha256=DvAVWrlSb_amBjTfG-hpSKzlE1aIW3qu3JloBM_ycTs,4576
|
366
|
+
wandb/sdk/internal/system/assets/trainium.py,sha256=YlWnRf5fAxEqkAnHQ0iGZo2phvD-QTOAuYyO0PaJYJg,13346
|
369
367
|
wandb/sdk/internal/system/assets/__init__.py,sha256=X0_hRaWP1eTC-R-2WZI3Or3bKmqNwP7NsNijRq5DBVo,474
|
370
368
|
wandb/sdk/internal/system/assets/aggregators.py,sha256=EzJp_YjvYORcBH6g58OsqGtmy55HqYHYMAvaIsp2Iwg,1093
|
371
369
|
wandb/sdk/internal/system/assets/asset_registry.py,sha256=NYSoCDya3Wh7ytBJOE-tNySdPpLYnSghM6CzS9-I4nk,478
|
372
370
|
wandb/sdk/internal/system/assets/tpu.py,sha256=nwv3C9a6dgD1hc0461Rh28NQkWbNQ5fJOXsw6lOQ-Gw,4901
|
373
371
|
wandb/sdk/internal/system/assets/network.py,sha256=n3buH2-InLGT35PVlvhY5eHv_Hm5Kl_N8jH576OiVi8,3392
|
374
|
-
wandb/sdk/internal/system/assets/open_metrics.py,sha256=
|
375
|
-
wandb/sdk/internal/system/assets/gpu.py,sha256=
|
376
|
-
wandb/sdk/backend/backend.py,sha256=
|
372
|
+
wandb/sdk/internal/system/assets/open_metrics.py,sha256=VqOncOSnPztqSyQ0g-zeJWcjc_lircRk6F76rwoBWR4,9631
|
373
|
+
wandb/sdk/internal/system/assets/gpu.py,sha256=S2fXInELfKHTM18cjUGQBVChpzehVMd9m9Tc0qVTIQw,13721
|
374
|
+
wandb/sdk/backend/backend.py,sha256=GBqVx7Atkzz1zw8tomMYtm-IBzEOIiyvSOFUjl7itUA,7607
|
377
375
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
378
376
|
wandb/sdk/lib/deprecate.py,sha256=r8kT4UY2DSG7V5N78MG46kQOzycBp3_8lH49KnDXxXM,1462
|
379
377
|
wandb/sdk/lib/exit_hooks.py,sha256=_4oozaRQCJi8NJfZvHsA8livvFb0trZKLOGB8_UcHGk,1540
|
380
|
-
wandb/sdk/lib/server.py,sha256=
|
378
|
+
wandb/sdk/lib/server.py,sha256=mDqOrR9LFbSjYfCk9Bufse8P0wISS6DZOBRbw0SDgsg,1110
|
381
379
|
wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
|
382
|
-
wandb/sdk/lib/sock_client.py,sha256
|
380
|
+
wandb/sdk/lib/sock_client.py,sha256=-B2V0rTRM_pnZsqV0GuCjPTvEOAjfvjICTz5nohEIGY,10351
|
383
381
|
wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
|
384
382
|
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
385
383
|
wandb/sdk/lib/redirect.py,sha256=eTNvQp4SFLgN5Kxwmh1BP0du8_7YZxcgoXsmE_2IHSM,26132
|
@@ -398,47 +396,43 @@ wandb/sdk/lib/sparkline.py,sha256=SbeX9FkaU47BMi0-HtnpCh_cBHsUSl5n1vL7vVL9e60,13
|
|
398
396
|
wandb/sdk/lib/retry.py,sha256=FheKJLMyKtc7L-dNqGw6DJ1RK3cZ0-Ow0RZQDjJ2o9g,10092
|
399
397
|
wandb/sdk/lib/json_util.py,sha256=fAsYfaw8iMmx3KJ0wSthUSj_XpF1iAysad4XZY1kQdo,2584
|
400
398
|
wandb/sdk/lib/gitlib.py,sha256=oNd1ARdrMJxRco7hgci53QHRBGfQcGSiRxn89x8IoTs,7829
|
401
|
-
wandb/sdk/lib/tracelog.py,sha256=uI_1Z4cTq_dDWxdC5sIh2dB0js56OmVw9e_OMOwOCCE,7572
|
402
399
|
wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2894
|
403
|
-
wandb/sdk/lib/ipython.py,sha256=
|
400
|
+
wandb/sdk/lib/ipython.py,sha256=QbNEajJ1tQ8J0u46oODd6GNu6lHWGpZ78612qIByyLI,4537
|
404
401
|
wandb/sdk/lib/service_token.py,sha256=c4olk_g4Suo0zTTDaoR78oHLwpt3NgDzQeF94raigME,2471
|
405
|
-
wandb/sdk/lib/
|
406
|
-
wandb/sdk/lib/run_moment.py,sha256=zFnLv_0xq-fuyK3cGt-letX5ZNzgFcnAqvdDpB6UvXo,2306
|
402
|
+
wandb/sdk/lib/run_moment.py,sha256=-_xWnktxlB21obnogPfGeaeIaf8mCS-MIZSMepBL3ZM,2193
|
407
403
|
wandb/sdk/lib/mailbox.py,sha256=enEj8dFre9zoGhnHTWFBvrKYd4DTzzT6uy7ASYJMvTA,14228
|
408
404
|
wandb/sdk/lib/hashutil.py,sha256=aU8YsAgkTcYDlqshfcDjItiO2s9lqq2YdKt7RoA2adQ,2763
|
409
|
-
wandb/sdk/lib/module.py,sha256=
|
405
|
+
wandb/sdk/lib/module.py,sha256=PWxpFqOYmLyKPF-VgfINZXzkFxDcoQVunVDVNWNnbxQ,2098
|
410
406
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
411
407
|
wandb/sdk/lib/service_connection.py,sha256=wgxe5j66WSjP-vQ-gQUPVMYOtqvmwUGtQ-Mz8tNPHR4,6466
|
412
|
-
wandb/sdk/lib/progress.py,sha256=
|
408
|
+
wandb/sdk/lib/progress.py,sha256=c86Qc9S1GSlt6jVDFWzrEC7jlrMAaVuG9uYSabajU4o,8446
|
413
409
|
wandb/sdk/lib/gql_request.py,sha256=4-4HY6IOetwcL8EUaoFc_u3pojnNtEN4NN6-5EtT-MY,2400
|
414
|
-
wandb/sdk/lib/_settings_toposort_generated.py,sha256=Gl_WhLZs-OvXjWh6vU1SQ0hqV00eMmXkBpwRkf2RcQ4,5310
|
415
410
|
wandb/sdk/lib/config_util.py,sha256=YdYvk-KbTdTa-84XegpvbqMuQfdlOREFiVR7m3q6e3Q,2917
|
416
|
-
wandb/sdk/lib/apikey.py,sha256=
|
411
|
+
wandb/sdk/lib/apikey.py,sha256=Bmr4HSLUiy9uxrTUp0Jr5wGE7PSxEXUYsPpPDo9kQUE,9156
|
417
412
|
wandb/sdk/lib/printer.py,sha256=-StTjsAWe0reV_K43Ppbmr98tRErpCmGOIEZ3uJgigA,15061
|
418
|
-
wandb/sdk/lib/fsm.py,sha256=
|
413
|
+
wandb/sdk/lib/fsm.py,sha256=zTRH0ikxWGgTMTGpXJlqSNDW8aVVYv-TZ1ddvakr2go,5173
|
419
414
|
wandb/sdk/lib/lazyloader.py,sha256=y9mToMsUOibWeL5I6P9e993IKYRLxMYFLeUTessw3L4,1877
|
420
|
-
wandb/sdk/
|
421
|
-
wandb/sdk/service/
|
422
|
-
wandb/sdk/service/server.py,sha256=sS8SQ57ssuvKMH5PX5aRD5v8HhwKXnTBiUWHViZ0hEI,3883
|
415
|
+
wandb/sdk/service/service.py,sha256=cQhhEiaFSQtjDVCXh9AQ9f_mxPq9MP4pm5nVxpPRdxc,8602
|
416
|
+
wandb/sdk/service/server.py,sha256=_0MAn4Y1hs2AnapyQb5heYiixKQNxFENfkxIGoiiIB8,3460
|
423
417
|
wandb/sdk/service/streams.py,sha256=LITDTm-lxNr4Xj_owgflPRL3R1WlLfqNW_1cd-IaxO8,14650
|
424
418
|
wandb/sdk/service/_startup_debug.py,sha256=0-evSjgwjb2LiOP952eScrfSWL8PrAXPOKPgZbio5_M,588
|
425
|
-
wandb/sdk/service/server_sock.py,sha256=
|
419
|
+
wandb/sdk/service/server_sock.py,sha256=MKZZPFiSArhPZ0v9_xEWM0TUxDeLFotECqH64nQwKl4,9559
|
426
420
|
wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
|
427
421
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
428
422
|
wandb/filesync/step_checksum.py,sha256=AIz9ALGk59OiR3NtxGj3CJKnsKSQ_1f9PmrbIzxuarE,4690
|
429
|
-
wandb/filesync/dir_watcher.py,sha256=
|
423
|
+
wandb/filesync/dir_watcher.py,sha256=8dct43c0syDAeFFHhRAetlgH247MItjCCV7gcXo5xVQ,16345
|
430
424
|
wandb/filesync/upload_job.py,sha256=t-QgMheUcxFE8C9TIJ5Wp9Cl_4jlpCzCKfsRoPzrHbs,5493
|
431
425
|
wandb/filesync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
432
426
|
wandb/filesync/stats.py,sha256=bjVBoCU9I9ke_XbEqtUgmKJVSmFxxAs2JciBzGWPhDg,3050
|
433
|
-
wandb/filesync/step_upload.py,sha256=
|
427
|
+
wandb/filesync/step_upload.py,sha256=pNYnlYlw0Dizcfo58BQs8FdMYTvLbjSvceBYhU9IS3E,10276
|
434
428
|
wandb/filesync/step_prepare.py,sha256=CmGgLMbDtwgqC-ooDrLIfWP1NZWAf0Icl3sx3KNXnCc,5495
|
435
429
|
wandb/errors/util.py,sha256=EtipkN-l12IT5OAyqhmZyTqYiqplS-Tz5SPp2bjfsJo,1712
|
436
|
-
wandb/errors/term.py,sha256=
|
430
|
+
wandb/errors/term.py,sha256=pBY8GEt4ZSe5W-uhDy5eQfLT6RdrOzxN0te8ciDv1AM,10438
|
437
431
|
wandb/errors/warnings.py,sha256=kyLP3bfXSmlztp8nOepLtfTdM-03N-i7Ho1Y568BOtk,57
|
438
432
|
wandb/errors/__init__.py,sha256=Tlij_4c-SxruLN-p0sDfDpF-HktBcHeAbztwGqQ84cU,293
|
439
|
-
wandb/errors/links.py,sha256=
|
433
|
+
wandb/errors/links.py,sha256=sNwJ74e9qb0w4GRZfnbPXK5ZdpIqc5lkuaT4T2Snnqw,2520
|
440
434
|
wandb/errors/errors.py,sha256=EQy3yZld3hDZA5hOoe34Xcpj7JKJzOg5AkWMMs9ob2E,897
|
441
|
-
wandb/sync/sync.py,sha256=
|
435
|
+
wandb/sync/sync.py,sha256=Q8tzsbXQO8M9R0py2NE8vQuOWJhwoie2vBNDwcar3rQ,15604
|
442
436
|
wandb/sync/__init__.py,sha256=BzzKmWKjsrCTBAj24d-lJOEPkFUmTfvaK2MeXplSwcc,93
|
443
437
|
wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
444
438
|
wandb/vendor/graphql-core-1.1/setup.py,sha256=FV94NFqGy3w5eILAhH_rldtMwyQ7KNEomxwUR-ceJ3M,2743
|
@@ -825,4 +819,4 @@ wandb/vendor/promise-2.3.0/wandb_promise/schedulers/gevent.py,sha256=PnB1LI2OXnb
|
|
825
819
|
wandb/vendor/promise-2.3.0/wandb_promise/schedulers/asyncio.py,sha256=Z94PwkAXd8PDybJUM7_tLlDh_AUw5JbI4CFRg6J3_NI,512
|
826
820
|
wandb/vendor/promise-2.3.0/wandb_promise/schedulers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
827
821
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
828
|
-
wandb/analytics/sentry.py,sha256
|
822
|
+
wandb/analytics/sentry.py,sha256=-Fn7698AuFI68uaqxRGlGXnv-J6fnYxJOrSE_vv-nDQ,8411
|