wandb 0.15.3__py3-none-any.whl → 0.15.5__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- wandb/__init__.py +1 -1
- wandb/analytics/sentry.py +1 -0
- wandb/apis/importers/base.py +20 -5
- wandb/apis/importers/mlflow.py +7 -1
- wandb/apis/internal.py +12 -0
- wandb/apis/public.py +247 -1387
- wandb/apis/reports/_panels.py +58 -35
- wandb/beta/workflows.py +6 -7
- wandb/cli/cli.py +130 -60
- wandb/data_types.py +3 -1
- wandb/filesync/dir_watcher.py +21 -27
- wandb/filesync/step_checksum.py +8 -8
- wandb/filesync/step_prepare.py +23 -10
- wandb/filesync/step_upload.py +13 -13
- wandb/filesync/upload_job.py +4 -8
- wandb/integration/cohere/__init__.py +3 -0
- wandb/integration/cohere/cohere.py +21 -0
- wandb/integration/cohere/resolver.py +347 -0
- wandb/integration/gym/__init__.py +4 -6
- wandb/integration/huggingface/__init__.py +3 -0
- wandb/integration/huggingface/huggingface.py +18 -0
- wandb/integration/huggingface/resolver.py +213 -0
- wandb/integration/langchain/wandb_tracer.py +16 -179
- wandb/integration/openai/__init__.py +1 -3
- wandb/integration/openai/openai.py +11 -143
- wandb/integration/openai/resolver.py +111 -38
- wandb/integration/sagemaker/config.py +2 -2
- wandb/integration/tensorboard/log.py +4 -4
- wandb/old/settings.py +24 -7
- wandb/proto/v3/wandb_telemetry_pb2.py +12 -12
- wandb/proto/v4/wandb_telemetry_pb2.py +12 -12
- wandb/proto/wandb_deprecated.py +3 -1
- wandb/sdk/__init__.py +1 -1
- wandb/sdk/artifacts/__init__.py +0 -0
- wandb/sdk/artifacts/artifact.py +2101 -0
- wandb/sdk/artifacts/artifact_download_logger.py +42 -0
- wandb/sdk/artifacts/artifact_manifest.py +67 -0
- wandb/sdk/artifacts/artifact_manifest_entry.py +159 -0
- wandb/sdk/artifacts/artifact_manifests/__init__.py +0 -0
- wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +91 -0
- wandb/sdk/{internal → artifacts}/artifact_saver.py +6 -5
- wandb/sdk/artifacts/artifact_state.py +10 -0
- wandb/sdk/{interface/artifacts/artifact_cache.py → artifacts/artifacts_cache.py} +22 -12
- wandb/sdk/artifacts/exceptions.py +55 -0
- wandb/sdk/artifacts/storage_handler.py +59 -0
- wandb/sdk/artifacts/storage_handlers/__init__.py +0 -0
- wandb/sdk/artifacts/storage_handlers/azure_handler.py +192 -0
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +224 -0
- wandb/sdk/artifacts/storage_handlers/http_handler.py +112 -0
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py +134 -0
- wandb/sdk/artifacts/storage_handlers/multi_handler.py +53 -0
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +301 -0
- wandb/sdk/artifacts/storage_handlers/tracking_handler.py +67 -0
- wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +132 -0
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +72 -0
- wandb/sdk/artifacts/storage_layout.py +6 -0
- wandb/sdk/artifacts/storage_policies/__init__.py +0 -0
- wandb/sdk/artifacts/storage_policies/s3_bucket_policy.py +61 -0
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +386 -0
- wandb/sdk/{interface/artifacts/artifact_storage.py → artifacts/storage_policy.py} +5 -57
- wandb/sdk/data_types/_dtypes.py +7 -12
- wandb/sdk/data_types/base_types/json_metadata.py +3 -2
- wandb/sdk/data_types/base_types/media.py +8 -8
- wandb/sdk/data_types/base_types/wb_value.py +12 -13
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +5 -6
- wandb/sdk/data_types/helper_types/classes.py +6 -8
- wandb/sdk/data_types/helper_types/image_mask.py +5 -6
- wandb/sdk/data_types/histogram.py +4 -3
- wandb/sdk/data_types/html.py +3 -4
- wandb/sdk/data_types/image.py +11 -9
- wandb/sdk/data_types/molecule.py +5 -3
- wandb/sdk/data_types/object_3d.py +7 -5
- wandb/sdk/data_types/plotly.py +3 -2
- wandb/sdk/data_types/saved_model.py +11 -11
- wandb/sdk/data_types/trace_tree.py +5 -4
- wandb/sdk/data_types/utils.py +3 -5
- wandb/sdk/data_types/video.py +5 -4
- wandb/sdk/integration_utils/auto_logging.py +215 -0
- wandb/sdk/interface/interface.py +15 -15
- wandb/sdk/internal/file_pusher.py +8 -16
- wandb/sdk/internal/file_stream.py +5 -11
- wandb/sdk/internal/handler.py +13 -1
- wandb/sdk/internal/internal_api.py +287 -13
- wandb/sdk/internal/job_builder.py +119 -30
- wandb/sdk/internal/sender.py +6 -26
- wandb/sdk/internal/settings_static.py +2 -0
- wandb/sdk/internal/system/assets/__init__.py +2 -0
- wandb/sdk/internal/system/assets/gpu.py +42 -0
- wandb/sdk/internal/system/assets/gpu_amd.py +216 -0
- wandb/sdk/internal/system/env_probe_helpers.py +13 -0
- wandb/sdk/internal/system/system_info.py +3 -3
- wandb/sdk/internal/tb_watcher.py +32 -22
- wandb/sdk/internal/thread_local_settings.py +18 -0
- wandb/sdk/launch/_project_spec.py +57 -11
- wandb/sdk/launch/agent/agent.py +147 -65
- wandb/sdk/launch/agent/job_status_tracker.py +34 -0
- wandb/sdk/launch/agent/run_queue_item_file_saver.py +45 -0
- wandb/sdk/launch/builder/abstract.py +5 -1
- wandb/sdk/launch/builder/build.py +21 -18
- wandb/sdk/launch/builder/docker_builder.py +10 -4
- wandb/sdk/launch/builder/kaniko_builder.py +113 -23
- wandb/sdk/launch/builder/noop.py +6 -3
- wandb/sdk/launch/builder/templates/_wandb_bootstrap.py +46 -14
- wandb/sdk/launch/environment/aws_environment.py +3 -2
- wandb/sdk/launch/environment/azure_environment.py +124 -0
- wandb/sdk/launch/environment/gcp_environment.py +2 -4
- wandb/sdk/launch/environment/local_environment.py +1 -1
- wandb/sdk/launch/errors.py +19 -0
- wandb/sdk/launch/github_reference.py +32 -19
- wandb/sdk/launch/launch.py +3 -8
- wandb/sdk/launch/launch_add.py +6 -2
- wandb/sdk/launch/loader.py +21 -2
- wandb/sdk/launch/registry/azure_container_registry.py +132 -0
- wandb/sdk/launch/registry/elastic_container_registry.py +39 -5
- wandb/sdk/launch/registry/google_artifact_registry.py +68 -26
- wandb/sdk/launch/registry/local_registry.py +2 -1
- wandb/sdk/launch/runner/abstract.py +24 -3
- wandb/sdk/launch/runner/kubernetes_runner.py +479 -26
- wandb/sdk/launch/runner/local_container.py +103 -51
- wandb/sdk/launch/runner/local_process.py +1 -1
- wandb/sdk/launch/runner/sagemaker_runner.py +60 -10
- wandb/sdk/launch/runner/vertex_runner.py +10 -5
- wandb/sdk/launch/sweeps/__init__.py +7 -9
- wandb/sdk/launch/sweeps/scheduler.py +307 -77
- wandb/sdk/launch/sweeps/scheduler_sweep.py +2 -1
- wandb/sdk/launch/sweeps/utils.py +82 -35
- wandb/sdk/launch/utils.py +89 -75
- wandb/sdk/lib/_settings_toposort_generated.py +7 -0
- wandb/sdk/lib/capped_dict.py +26 -0
- wandb/sdk/lib/{git.py → gitlib.py} +76 -59
- wandb/sdk/lib/hashutil.py +12 -4
- wandb/sdk/lib/paths.py +96 -8
- wandb/sdk/lib/sock_client.py +2 -2
- wandb/sdk/lib/timer.py +1 -0
- wandb/sdk/service/server.py +22 -9
- wandb/sdk/service/server_sock.py +1 -1
- wandb/sdk/service/service.py +27 -8
- wandb/sdk/verify/verify.py +4 -7
- wandb/sdk/wandb_config.py +2 -6
- wandb/sdk/wandb_init.py +57 -53
- wandb/sdk/wandb_require.py +7 -0
- wandb/sdk/wandb_run.py +61 -223
- wandb/sdk/wandb_settings.py +28 -4
- wandb/testing/relay.py +15 -2
- wandb/util.py +74 -36
- {wandb-0.15.3.dist-info → wandb-0.15.5.dist-info}/METADATA +15 -9
- {wandb-0.15.3.dist-info → wandb-0.15.5.dist-info}/RECORD +151 -116
- {wandb-0.15.3.dist-info → wandb-0.15.5.dist-info}/entry_points.txt +1 -0
- wandb/integration/langchain/util.py +0 -191
- wandb/sdk/interface/artifacts/__init__.py +0 -33
- wandb/sdk/interface/artifacts/artifact.py +0 -615
- wandb/sdk/interface/artifacts/artifact_manifest.py +0 -131
- wandb/sdk/wandb_artifacts.py +0 -2226
- {wandb-0.15.3.dist-info → wandb-0.15.5.dist-info}/LICENSE +0 -0
- {wandb-0.15.3.dist-info → wandb-0.15.5.dist-info}/WHEEL +0 -0
- {wandb-0.15.3.dist-info → wandb-0.15.5.dist-info}/top_level.txt +0 -0
@@ -1,13 +1,13 @@
|
|
1
|
-
wandb/__init__.py,sha256=
|
1
|
+
wandb/__init__.py,sha256=YrkBQakXJikfADT9_1eK6D3DBvAjXFkLn81jNHwlnUs,6132
|
2
2
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
3
3
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
4
|
-
wandb/data_types.py,sha256=
|
4
|
+
wandb/data_types.py,sha256=km_1MlafOLINYuMbFloK7U-kp0fwdlW4aLONxZYTrhg,75504
|
5
5
|
wandb/env.py,sha256=heyS-HwMRWVfJIvn_YHmnEi0C-kSIf6kwM655qM_fTQ,10611
|
6
6
|
wandb/jupyter.py,sha256=32Oeq37SRrx5I_JSwLYi13t9zSMWXDwQtFB8CaQwpA8,16946
|
7
7
|
wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
|
8
8
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
wandb/trigger.py,sha256=s6pc7ol-s76i7YRNf4P13f9co2f4f8simzXkjcmSQG0,614
|
10
|
-
wandb/util.py,sha256=
|
10
|
+
wandb/util.py,sha256=bT-vU9J2L5ry9iviF4yC4SW7pzymBBtdbb0lJe7dMPs,55224
|
11
11
|
wandb/viz.py,sha256=hrRhuDuvgelF-qK0eoVmBJyJi1DjQ3vkmrgRKgM2lyg,3217
|
12
12
|
wandb/wandb_agent.py,sha256=qkCO5e4HGK6ISmpY_pG0fULpFwilBaYwakPiFGrcDnY,21115
|
13
13
|
wandb/wandb_controller.py,sha256=NfrTC33aP_YqiQwnZ9770_q2T2hwKhsXM8Rscyz0tKM,24766
|
@@ -16,18 +16,18 @@ wandb/wandb_torch.py,sha256=f_xxU4unLnNWiyLSPpTT86Iwx1MGhUyqkKX5NAJx0Qs,21999
|
|
16
16
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
wandb/agents/pyagent.py,sha256=_OfX03WX2STKrzo3bLe_87h1PL2cTDN3g43ZBK2SG4g,12978
|
18
18
|
wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
|
19
|
-
wandb/analytics/sentry.py,sha256=
|
19
|
+
wandb/analytics/sentry.py,sha256=bidIRpp_VToHBHCEtyaE9uH97bseUkeDi6OzEulqesg,8712
|
20
20
|
wandb/apis/__init__.py,sha256=haXrAmHFoC3gL1_NphdalvaMKGSiiFWB2QCOIJUhPGc,1329
|
21
|
-
wandb/apis/internal.py,sha256=
|
21
|
+
wandb/apis/internal.py,sha256=s4FjC3pG9R3-x8SXEIm7hV021ujYALgqIaJVyt6GgaE,7115
|
22
22
|
wandb/apis/normalize.py,sha256=CkbtH11jPhiEl7apeWn0UKFJ_gwbaK4qkvDMvxwTxaw,2894
|
23
|
-
wandb/apis/public.py,sha256=
|
23
|
+
wandb/apis/public.py,sha256=UZ9z_cTbz4WKDsWB69Gl70aIE7rUEMvy6s5PoHkmQpk,142433
|
24
24
|
wandb/apis/importers/__init__.py,sha256=117C1xz4GGn1T3e3LOJ3GSSnQZrnWvZiS0AP_3B0K9Q,124
|
25
|
-
wandb/apis/importers/base.py,sha256=
|
26
|
-
wandb/apis/importers/mlflow.py,sha256=
|
25
|
+
wandb/apis/importers/base.py,sha256=vPVc50s2naGmNkyfzLnybp7CPqamgUdiaDzylBeLc6A,10695
|
26
|
+
wandb/apis/importers/mlflow.py,sha256=7hnxt0CbB_A1A4mifU1irv496wSNLFVDi_tBsvIKFm4,3675
|
27
27
|
wandb/apis/reports/__init__.py,sha256=Dr4Qj7g-Oprr2-yci3GnkGmmef0NWL1PVTcIeRfy8PI,949
|
28
28
|
wandb/apis/reports/_blocks.py,sha256=pauLnohwcEAPksqaJQIB04LjRn4KOe3MNQvCCWYiE7E,53785
|
29
29
|
wandb/apis/reports/_helpers.py,sha256=SlJQcvD-fDBSniXcp4BLsSxW_1fp-fhVFiZj6qYgEqg,2126
|
30
|
-
wandb/apis/reports/_panels.py,sha256=
|
30
|
+
wandb/apis/reports/_panels.py,sha256=qTF3WsysYdGda8-gWuZqS8rPjYyqLGstYKCRBoNo9bU,48256
|
31
31
|
wandb/apis/reports/_templates.py,sha256=o6VpXckaUW9Iumxk3C9t8Qe1yxQMfWgD9TIh4u9oe4U,18139
|
32
32
|
wandb/apis/reports/blocks.py,sha256=ZBqGF53f9O15fhIBUzifsrejpEuSiLD3SvF7PJC0T7Y,417
|
33
33
|
wandb/apis/reports/helpers.py,sha256=5b4u5aSfk6NJhLmxaGMq_0m59VVUwQVdE2z6JwfDPR8,55
|
@@ -38,11 +38,11 @@ wandb/apis/reports/runset.py,sha256=HYblYs2ap6rBYGUSFeEYWH3n2ybfn4XlVfK9sSG75cg,
|
|
38
38
|
wandb/apis/reports/templates.py,sha256=LmYsgKVpfUgcaZ9SggwVhWCXQjFthmLxebRXN2pOjdg,161
|
39
39
|
wandb/apis/reports/util.py,sha256=gQ11JAvvk1mKgcY6ytMyyONG04LmcwkuLEixOW10als,11940
|
40
40
|
wandb/apis/reports/validators.py,sha256=8VieYNICXinPtgjNI1xBcxIykHIXp4Rt4zfidbX-N94,4282
|
41
|
-
wandb/beta/workflows.py,sha256=
|
41
|
+
wandb/beta/workflows.py,sha256=u22a9f6R8iaBIlIGnih97T9BS_Wuq3_PuPO_vSWXAy8,9976
|
42
42
|
wandb/bin/apple_gpu_stats,sha256=-CVDIPhgV1f_jjM1dkXJgmo6AQY4wjy1xCGg1e8zn0w,337072
|
43
43
|
wandb/catboost/__init__.py,sha256=kgsxRzur9liL-CPOVubjNVJ_FEDiktbyA7gQQXxG1n0,226
|
44
44
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
|
-
wandb/cli/cli.py,sha256=
|
45
|
+
wandb/cli/cli.py,sha256=BENl3fzqdVmuZjSYZL893SU5Gz8ns4Gs55bXy5cFpks,81744
|
46
46
|
wandb/docker/__init__.py,sha256=b9tYUfG35ecrtQNxH-AZFUYpizshfgiEbLomzoLcaFA,9674
|
47
47
|
wandb/docker/auth.py,sha256=d0uCK29uATBe6HKkbhbvdEYYbSIkdppiwzvWsgUqqMc,15065
|
48
48
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
@@ -52,18 +52,24 @@ wandb/errors/term.py,sha256=zPpLpWYU7-Hjs7jd-y0uNLt7b0ffkJ1mHqqEjOr5F5g,2525
|
|
52
52
|
wandb/errors/util.py,sha256=kCoa5rpZB7DILmZlKXeIqLc9_UKnArOBz_arS7a0QT4,1680
|
53
53
|
wandb/fastai/__init__.py,sha256=g_yvlxAGwupME34yh49EKAAg6ZIk6tOB4ThEdazq6rY,192
|
54
54
|
wandb/filesync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
|
-
wandb/filesync/dir_watcher.py,sha256=
|
55
|
+
wandb/filesync/dir_watcher.py,sha256=aj5L9qwatfya6xuA8k_sTNJtvVzkCvA-pDo7MRu04A4,16378
|
56
56
|
wandb/filesync/stats.py,sha256=spwHFFy3hxyyz7Sf6qVm1Wp3MuE7NdW-hrxAXdpuQS8,3052
|
57
|
-
wandb/filesync/step_checksum.py,sha256=
|
58
|
-
wandb/filesync/step_prepare.py,sha256=
|
59
|
-
wandb/filesync/step_upload.py,sha256=
|
60
|
-
wandb/filesync/upload_job.py,sha256=
|
57
|
+
wandb/filesync/step_checksum.py,sha256=vkZAk1svljkKrp7j2VhGDpgJ44I7qJOoenXvM1OnTSM,4853
|
58
|
+
wandb/filesync/step_prepare.py,sha256=SNkFrcmSwWcah_16rlaQJKo0BwRDMn_mYnkUP3de8eE,6348
|
59
|
+
wandb/filesync/step_upload.py,sha256=kduDevE-SIWoKQHJalf9Z1-Dxl8y2Nqm2Y7cii-5g-s,14069
|
60
|
+
wandb/filesync/upload_job.py,sha256=WUwyipGyH9ZxUOQ9QXjfJMbLcl_3huxGR6dxicTZ2F0,8256
|
61
61
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
62
|
wandb/integration/magic.py,sha256=8b7GkkntZb-jJ7L0OF4M7mS1yJKtMI_o3jfsTufWMr4,17246
|
63
63
|
wandb/integration/catboost/__init__.py,sha256=dxef0C9s9Xez_sF3sOqSJpKaSrAibAqMA_TpVUyIwac,127
|
64
64
|
wandb/integration/catboost/catboost.py,sha256=tGZ3RiUSPJYM4I3sSC2Fwj2HYUGhL4sLSXF7sBe3C0U,5951
|
65
|
+
wandb/integration/cohere/__init__.py,sha256=8yTJGhWznxEAxHYDY7oMghvsak_KqLngSLpqjR8ic3g,52
|
66
|
+
wandb/integration/cohere/cohere.py,sha256=CyALJXyLDnic6ZRc8I4UXmR7hYqtIOCi5Wav12JcXd0,453
|
67
|
+
wandb/integration/cohere/resolver.py,sha256=pQ2kbO-ynL3FKemSZeCdcsqusQrfB3n29znj-KdSiNo,13813
|
65
68
|
wandb/integration/fastai/__init__.py,sha256=9R7mQv3SOm_8qWWR7noI8oj4YkMFx1KlCene1U6tvLQ,9573
|
66
|
-
wandb/integration/gym/__init__.py,sha256=
|
69
|
+
wandb/integration/gym/__init__.py,sha256=v1gqP8ypUC-V_-MUwK4l3UfLv8sW7LI_oJt48RRb9h0,2278
|
70
|
+
wandb/integration/huggingface/__init__.py,sha256=Ui-JiM_yel2YZuS9U_LyReL3mhBZZSIUNLBODjS4l4Q,57
|
71
|
+
wandb/integration/huggingface/huggingface.py,sha256=KYP0dCYERORLNE1Sk6jfp0krHF2BQ4q4qOlF-0H-vrI,443
|
72
|
+
wandb/integration/huggingface/resolver.py,sha256=EYkvpN_FL4B2W_iqlDMug_Y6MCG8e2XfHmvuCMBgV3Q,7857
|
67
73
|
wandb/integration/keras/__init__.py,sha256=l_pZncqHygDiUTugblyGdkfD_z4Y1f63Rj1uCrCoky0,424
|
68
74
|
wandb/integration/keras/keras.py,sha256=e_p8mwt4pmeDU0W2Vib9BhbGeF7dwhKi0fkbREujSyE,43737
|
69
75
|
wandb/integration/keras/callbacks/__init__.py,sha256=sY5AMC3x28iA815fqbqkkArtjctqG-m9N2D5FnyR0no,223
|
@@ -75,26 +81,25 @@ wandb/integration/kfp/helpers.py,sha256=yEVO9rrz27hc4nk3WwNL3v1aRAUlS-OlXMC8Rj0G
|
|
75
81
|
wandb/integration/kfp/kfp_patch.py,sha256=ajNwLge9LruWE4BdpwNqUVOb9k3RUZ4PG5VO6ltjd0E,13098
|
76
82
|
wandb/integration/kfp/wandb_logging.py,sha256=pRrMSxU06fFgFBWuw_7pNbCz87nJrPSM3n2-E-ai62w,6159
|
77
83
|
wandb/integration/langchain/__init__.py,sha256=afRoYH4bPOw6Tyrn9YvuYHzbSae97iQT-Ufi0puJqNw,66
|
78
|
-
wandb/integration/langchain/
|
79
|
-
wandb/integration/langchain/wandb_tracer.py,sha256=9qHUOlKwMQPxnK7yO9fS9gC8ttKEHbGaNd0yg1-QYns,7523
|
84
|
+
wandb/integration/langchain/wandb_tracer.py,sha256=obG2FjVlyzspoRoREPzHDbyM4tl46dVQsDwJm-BJ7O4,2216
|
80
85
|
wandb/integration/lightgbm/__init__.py,sha256=ePZtdBQPlpZjbVsFdvDm96Hu9r_1vIjB7_x5MUwBaQ8,7058
|
81
86
|
wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
|
82
87
|
wandb/integration/metaflow/metaflow.py,sha256=AnrtyukBS5qBNfEbK3skc-oomgXIH8OyBMrSVtsqi3Q,11669
|
83
|
-
wandb/integration/openai/__init__.py,sha256=
|
84
|
-
wandb/integration/openai/openai.py,sha256=
|
85
|
-
wandb/integration/openai/resolver.py,sha256=
|
88
|
+
wandb/integration/openai/__init__.py,sha256=pBoMFHMJSnQv2G90K2Nq02FZtIBa4EaVQTQ04FVQWNk,52
|
89
|
+
wandb/integration/openai/openai.py,sha256=1Ql4jJ5J47ZrqY9h5fJu1BDPHegZ8kvTL0vTuSU94Cg,408
|
90
|
+
wandb/integration/openai/resolver.py,sha256=KrndobRki0C9SNRL8SgPISea0-D7-1g8kvJMcFMN7SA,8164
|
86
91
|
wandb/integration/prodigy/__init__.py,sha256=1-Hg98Y4T1kSNAbrlR9TUrr7dwL1Gxxa-Exu0fsfxl0,66
|
87
92
|
wandb/integration/prodigy/prodigy.py,sha256=Gx_mYF8CGr-A6aE6L2UuOYpICqWNYmCxBUydckT08m0,11606
|
88
93
|
wandb/integration/sacred/__init__.py,sha256=5FPm_NRo1mZIT1i0k_x_6FIaH0h2Rqi0QGvu2H4vUe4,5759
|
89
94
|
wandb/integration/sagemaker/__init__.py,sha256=EUYDus1ohtXFwV62WZa_3h7Q3oTkeo8MUesgkFLOyjw,282
|
90
95
|
wandb/integration/sagemaker/auth.py,sha256=Ste5oGbOx8yCIP1-vO5dimKF5C90eUauqztjpakQel8,974
|
91
|
-
wandb/integration/sagemaker/config.py,sha256=
|
96
|
+
wandb/integration/sagemaker/config.py,sha256=XoH2D6TbsrNG0RznLmmFDvXV-D02sc-F8FWTbfBKp8o,849
|
92
97
|
wandb/integration/sagemaker/files.py,sha256=DcAP4h3DiEniB_NkP_g8nxvoWHkV3tn93Mk1GzABYyI,153
|
93
98
|
wandb/integration/sagemaker/resources.py,sha256=C0HTpXo0l3leohzY8Uu7VvsBchKwIZov_E06w25hGDs,1024
|
94
99
|
wandb/integration/sb3/__init__.py,sha256=w_VX7C6qAE1vK7xb24JchQtORxzfpXvl6YmZHUIskJM,60
|
95
100
|
wandb/integration/sb3/sb3.py,sha256=U3P6e3-fGOFoJdik5XCQipqfxSDpMPs619SXsO1g5Fo,4910
|
96
101
|
wandb/integration/tensorboard/__init__.py,sha256=Ivj8-XV4lGLg1JK2LdNxWlaLkqrJmXdyWTXf41ysib8,213
|
97
|
-
wandb/integration/tensorboard/log.py,sha256=
|
102
|
+
wandb/integration/tensorboard/log.py,sha256=OeiPQRxjeE4W6nIFgfKDRrflTLdMcUNCQmnE-iilP3k,14308
|
98
103
|
wandb/integration/tensorboard/monkeypatch.py,sha256=7S3i2vcmmIjEpY4f2Ro8OxfS5b2zgXYoTDoLmwcm7fw,6828
|
99
104
|
wandb/integration/tensorflow/__init__.py,sha256=8y7Acc7EAxKF-4vGXuZH6tsXeNNzqXisE2blNz9RNQk,125
|
100
105
|
wandb/integration/tensorflow/estimator_hook.py,sha256=fi-UtjNZxUnDkzfbNP09iH074z5x0ItZiB4dkvwMGNI,1756
|
@@ -109,7 +114,7 @@ wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
114
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
110
115
|
wandb/old/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
116
|
wandb/old/core.py,sha256=MJjnAcUObCVXgLQEOW_iS7RREBiTB-YZtf9VHMYV2N4,3758
|
112
|
-
wandb/old/settings.py,sha256=
|
117
|
+
wandb/old/settings.py,sha256=87hlSnZlaD7BiJNGao6xTFEU24HpL34-Q2lh4zj1Wnc,5191
|
113
118
|
wandb/old/summary.py,sha256=_t5LpFr9QEVU5QKBNqYA-su-ZK2G0OE_F7FhvFNjxi4,13808
|
114
119
|
wandb/plot/__init__.py,sha256=jXbVV7QdFRwcSbaWEr_J6XHd3YksHaPrn4wHBQcEO0Y,480
|
115
120
|
wandb/plot/bar.py,sha256=W_bQoPRMGZihcS6IYzEc9noWMy0FllsNuIj4PvajBVI,917
|
@@ -131,7 +136,7 @@ wandb/plots/roc.py,sha256=Vo5IooGIqWezzXy7x1RiKhneJzW7szjUk5Dpo-HRhec,3433
|
|
131
136
|
wandb/plots/utils.py,sha256=XpOrIydyDk69nnUlcGxMMtV8VUO7Zq8ECNzUyQ5IRY0,7185
|
132
137
|
wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
133
138
|
wandb/proto/wandb_base_pb2.py,sha256=qEn0atGozZcBIM5D0YVzax8cx2Sd0XiDU-YIHep_wZ8,229
|
134
|
-
wandb/proto/wandb_deprecated.py,sha256=
|
139
|
+
wandb/proto/wandb_deprecated.py,sha256=73Mh2Hz-ckjM0dq_hHPVsxNEeyNNiyCOcZdCdWCjPjY,1147
|
135
140
|
wandb/proto/wandb_internal_codegen.py,sha256=i1kieZpItvyKftv4qay2Ejnu0hyeffJ82laJvg0JDmg,4070
|
136
141
|
wandb/proto/wandb_internal_pb2.py,sha256=4YI1bDaC3PpJbB8LpqEhU4WlGI7CQcvs8rY1Jn4mOGc,237
|
137
142
|
wandb/proto/wandb_server_pb2.py,sha256=M6KrkWm66uODcsc7wdMMvD0q-3dfiuWs8YvaYKjEhYY,233
|
@@ -142,60 +147,87 @@ wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4
|
|
142
147
|
wandb/proto/v3/wandb_internal_pb2.py,sha256=tUitVYlr-IVOZQ-Y7sYggahdU22r1PXzVIPv5nf4TC0,79476
|
143
148
|
wandb/proto/v3/wandb_server_pb2.py,sha256=l8fk4O9pGC8_8oHxC3CacxDxW1KNy1ST49DS-s_VxIk,25856
|
144
149
|
wandb/proto/v3/wandb_server_pb2_grpc.py,sha256=wPgsoCB-OyZjN2f88vG1-SCFJtr6YOceKDSn2SolOiM,70982
|
145
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
150
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=83aGB3qF-3xVNO7jKg_-fn7pqx2XToJktqRRzzlrw0A,12408
|
146
151
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
147
152
|
wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
|
148
153
|
wandb/proto/v4/wandb_internal_pb2.py,sha256=QuKr-aTfa8yvGYw2bNc5CskHJ7C7JeSxWmz91jSIEnE,36148
|
149
154
|
wandb/proto/v4/wandb_server_pb2.py,sha256=GlaUcDwBOJnhRSuQW-ddGeyXrVVD1oj05pMprt6e5Is,13976
|
150
155
|
wandb/proto/v4/wandb_server_pb2_grpc.py,sha256=wPgsoCB-OyZjN2f88vG1-SCFJtr6YOceKDSn2SolOiM,70982
|
151
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
156
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=2Vtn4cleTdNdZpELRxaN61DtvB_wm38bAo7OGvc4Exk,9855
|
152
157
|
wandb/sacred/__init__.py,sha256=2sCLXqvkwjEqOvPFdtAtmo80PY4hky7rj4owO5PoJWQ,80
|
153
|
-
wandb/sdk/__init__.py,sha256=
|
158
|
+
wandb/sdk/__init__.py,sha256=9atCEEf_Y0R4gtjDvtr8zsLR7HaKD7PzNaUm8618jVE,722
|
154
159
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
155
|
-
wandb/sdk/
|
156
|
-
wandb/sdk/wandb_config.py,sha256=Ept005X9x5zcstXoS9AQCwbNAG-SzgimTsc2iCmLw_Q,10078
|
160
|
+
wandb/sdk/wandb_config.py,sha256=1bN23pvTTWtZPqPp-X4ubUCAKqgUd7NKDq5ZGpVKNBs,9945
|
157
161
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
158
|
-
wandb/sdk/wandb_init.py,sha256=
|
162
|
+
wandb/sdk/wandb_init.py,sha256=Inf_S_Oa5fBDHX99dTBhs63QCldyLH3e61Lke1tYr_k,49161
|
159
163
|
wandb/sdk/wandb_login.py,sha256=CdOGFbW9wjAJAmcT71BZf45XBRK8nlsKur-ON5-a0Rk,10016
|
160
164
|
wandb/sdk/wandb_manager.py,sha256=RBqyE5KQn581-Ugipj4N7SUqbB5FAhknjHbVLfF6BX8,7026
|
161
165
|
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
162
|
-
wandb/sdk/wandb_require.py,sha256=
|
166
|
+
wandb/sdk/wandb_require.py,sha256=pOaOSlw1TQzaHtBQvTW5qAFtbRKix7HicqpzHTGklXE,2900
|
163
167
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
164
|
-
wandb/sdk/wandb_run.py,sha256=
|
168
|
+
wandb/sdk/wandb_run.py,sha256=rY1kgxbse6oQZ9kTxb3jGwMgnwEaDm8sinMpRSPU4i0,138723
|
165
169
|
wandb/sdk/wandb_save.py,sha256=RJeT-_cpmtUxqNk3AmFVW1Tb8k5s46ylmvb8cw54Vks,181
|
166
|
-
wandb/sdk/wandb_settings.py,sha256=
|
170
|
+
wandb/sdk/wandb_settings.py,sha256=uZ1iDVFzYF1i_0bbrg63DFmFum4w3StbGtBw80GgvA8,70105
|
167
171
|
wandb/sdk/wandb_setup.py,sha256=A-V4BO0Lrz8elnNhme0fQsg-TJx-YIEQBTX30Zo07j8,11079
|
168
172
|
wandb/sdk/wandb_summary.py,sha256=mhZPJ5zLGy2G7J7FGCPFCBIIfaXpLTVSI86drmaUFNY,4520
|
169
173
|
wandb/sdk/wandb_sweep.py,sha256=8EaZ6ES2n-WyUyBwPl6lGEMhH3hksssZamgCWu1t6f4,4652
|
170
174
|
wandb/sdk/wandb_watch.py,sha256=Yj573eCyEOc6ef4tqM7G9D-Epe_DtRveHQse1YrClO0,3876
|
175
|
+
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
176
|
+
wandb/sdk/artifacts/artifact.py,sha256=1pggn7aBjZcyN1asWJMuW7uBan1n2wy4iTZDG8h1xwg,75502
|
177
|
+
wandb/sdk/artifacts/artifact_download_logger.py,sha256=GAwxH3FLnDiGv8CgusV6O4K3vOvYTAD6X_5XLD38whk,1500
|
178
|
+
wandb/sdk/artifacts/artifact_manifest.py,sha256=NO16pE-u6-j1seF5Vp3EcnjJ7jif0CL3DQ4E0ke2vtE,2361
|
179
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=4t9-uJKlgHgoR7rLuI_VydrTJWCT3-J_sTExEOSOlMk,5347
|
180
|
+
wandb/sdk/artifacts/artifact_saver.py,sha256=E3S0cc4-La5b7wOry6atwQnC_2-vE3YnemZNJeYOPE8,11719
|
181
|
+
wandb/sdk/artifacts/artifact_state.py,sha256=oUh-Q7LzVmOBxJXkXK39bz3fAxZxYlQts5v5JDhze40,235
|
182
|
+
wandb/sdk/artifacts/artifacts_cache.py,sha256=HMnVAfJ1xZHrvnf8qCqzS6zgayeRPKc0hoCDQuHnciw,6680
|
183
|
+
wandb/sdk/artifacts/exceptions.py,sha256=ZAY2svJRSmhu9Opok1-iFeSxWrW2A_rs9yWKRdwUHG0,1851
|
184
|
+
wandb/sdk/artifacts/storage_handler.py,sha256=xm-S5hQWkbII_fHhRlK83oLTnwgLPbjh2ycBrL3H4a8,1840
|
185
|
+
wandb/sdk/artifacts/storage_layout.py,sha256=No2cLJEuU3Dr8rJ5Pq-e-36S6p-WKoYcCG24DKAKzro,73
|
186
|
+
wandb/sdk/artifacts/storage_policy.py,sha256=ClHha5OVSYwp9bjJgDmm_BR5MatWlSZQzt5MZbfJQnY,2167
|
187
|
+
wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
|
+
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=iCwQQSKwMKiv5Ee_ZAl3j2a2vGOMa4H26TrSXzu8Ngc,3672
|
189
|
+
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
|
+
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=N4CMjzDDvQNnGQmryuQoC-LG2oyfIC79C6EXEuYpWjk,7487
|
191
|
+
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=Zj5_aFoTSOHFvfoFyzLYQbhaLk0DwVM2EHNC9Rv3lZc,8562
|
192
|
+
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=-eVSyWKCWKIjtKyKjyiII01jxtFgGtqIB8sghosf8I4,4080
|
193
|
+
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=KXxgnDL4E0cx9a8J66GQlOEJYWNcK4wOtXsSmIqXScQ,5242
|
194
|
+
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=uXP24q8f8ItHMLTJ7r3TqfjSNzm6Efm8dL3O1BDoe2c,1869
|
195
|
+
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=lEBnLcBUjgh5sK_2DXg4bNrr93rkwJZ1PGcb0futUtw,11775
|
196
|
+
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=mM_BsDhryiE9NkTOytUxoLpYizbFjICfNGAfRVHflPA,2524
|
197
|
+
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=zFtIPvgOl_Dy_-h30Es0SaAcaVrr3vWS8oKiSu0Fszc,4851
|
198
|
+
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=nTBURriVtlZXpK5trgJmT2AX--2SDv85pRSlAafBQuk,2580
|
199
|
+
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
200
|
+
wandb/sdk/artifacts/storage_policies/s3_bucket_policy.py,sha256=JCpp0_dQ6QpDCvrJlzuqRbY4ql-hJUSB4Y5PryW3KQ0,2076
|
201
|
+
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=QJ6i-z3SNRxop0XMTWUDesQbMYe7AjvWS1bG4B67IpY,14037
|
171
202
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
172
203
|
wandb/sdk/backend/backend.py,sha256=Rca4XXpQQyVONnqk_oW8JrrJNdCGWC-DVD5QGG2pKfM,9137
|
173
204
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
174
|
-
wandb/sdk/data_types/_dtypes.py,sha256=
|
205
|
+
wandb/sdk/data_types/_dtypes.py,sha256=_F3suxZxJE8lf6TRw2_RMZUWcHYKZru9aKpyUn_ik5o,30148
|
175
206
|
wandb/sdk/data_types/_private.py,sha256=IEDH2Qu3YIVow2XbMs-7BhPo1qi42KkClSiRr6O6IVY,72
|
176
|
-
wandb/sdk/data_types/histogram.py,sha256=
|
177
|
-
wandb/sdk/data_types/html.py,sha256=
|
178
|
-
wandb/sdk/data_types/image.py,sha256=
|
179
|
-
wandb/sdk/data_types/molecule.py,sha256=
|
180
|
-
wandb/sdk/data_types/object_3d.py,sha256=
|
181
|
-
wandb/sdk/data_types/plotly.py,sha256=
|
182
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
183
|
-
wandb/sdk/data_types/trace_tree.py,sha256=
|
184
|
-
wandb/sdk/data_types/utils.py,sha256=
|
185
|
-
wandb/sdk/data_types/video.py,sha256=
|
207
|
+
wandb/sdk/data_types/histogram.py,sha256=BiIYj3yY-9oetopHf_cwPp9Z7mKS7bm3ve_ZMX0hwUg,3202
|
208
|
+
wandb/sdk/data_types/html.py,sha256=NED-Hal9jr0yU4hcq6TYHMezIlQfJJRhQHKma1G30Vk,3490
|
209
|
+
wandb/sdk/data_types/image.py,sha256=BWlHFHt17PLi5PwM_Kvv0_K0KTQBaUD_0aoYQIF4xZ4,24344
|
210
|
+
wandb/sdk/data_types/molecule.py,sha256=wZzxT_OKuM2CAZxc38o6COfrGgz9t8JCKuy0fd21A9w,8598
|
211
|
+
wandb/sdk/data_types/object_3d.py,sha256=hxqH0tpQ6Kus_c3lBwaSiQ6K7rWI-vD1m2fpBzJl03U,12516
|
212
|
+
wandb/sdk/data_types/plotly.py,sha256=m75HRKSCdd9-cu-odpZ5d2Tu8KwmR_LVdW9u0H-68AE,2918
|
213
|
+
wandb/sdk/data_types/saved_model.py,sha256=XKav4XRi50OJpqzWeQ30X08nFBWpq1dq5uACglry1mI,16360
|
214
|
+
wandb/sdk/data_types/trace_tree.py,sha256=jWjVGsUlk_wb7wMbuE7RfPEOnIFB4O2zD8yBFJCbQlI,4614
|
215
|
+
wandb/sdk/data_types/utils.py,sha256=uZnJSQOokfoWjjM--nBAG97B9VhWtxo_7PFIRXWRv6M,6149
|
216
|
+
wandb/sdk/data_types/video.py,sha256=4jtALvKtFWXCz9Q0Ri8cAcdJi3RRk7fp0Jb85EKpGVw,8842
|
186
217
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
187
|
-
wandb/sdk/data_types/base_types/json_metadata.py,sha256=
|
188
|
-
wandb/sdk/data_types/base_types/media.py,sha256=
|
189
|
-
wandb/sdk/data_types/base_types/wb_value.py,sha256=
|
218
|
+
wandb/sdk/data_types/base_types/json_metadata.py,sha256=oKpimndUQvDW30n15tb2pbyyyKhhWwm8wsYNBEot060,1553
|
219
|
+
wandb/sdk/data_types/base_types/media.py,sha256=cjQ2X3hb4oCyc4PqXH2t25qd4v_RdmSrLZoXxNeBqNI,11961
|
220
|
+
wandb/sdk/data_types/base_types/wb_value.py,sha256=sdc09QEn3lkBfHpFNyFsfPl28EJbirCn5lq4Hqpkc-8,11085
|
190
221
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
191
|
-
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=
|
192
|
-
wandb/sdk/data_types/helper_types/classes.py,sha256=
|
193
|
-
wandb/sdk/data_types/helper_types/image_mask.py,sha256=
|
222
|
+
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=tmRlzc3Ps3DL1LDRPLxQdlWL9fNOfDUq_HB3thjA9uE,12736
|
223
|
+
wandb/sdk/data_types/helper_types/classes.py,sha256=cg-AwUgULbb3T_-ptOdliXGvYjXZYRj8rvSmT7fl9ds,5520
|
224
|
+
wandb/sdk/data_types/helper_types/image_mask.py,sha256=bXrg2-8A9L34Hmzd9FsnO0ZfoB96sf3GG2lWxh5G-YU,8561
|
194
225
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
226
|
+
wandb/sdk/integration_utils/auto_logging.py,sha256=-Mb2owhnvxxiz4nyIymf6CKKJagsGKFAlaVM_MNHUVI,7261
|
195
227
|
wandb/sdk/integration_utils/data_logging.py,sha256=kPBoELGQvCK6owfqBcn7qYn4zj-FNT40gjcdgVA4BJ4,19463
|
196
228
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
197
229
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
198
|
-
wandb/sdk/interface/interface.py,sha256=
|
230
|
+
wandb/sdk/interface/interface.py,sha256=FNMDTMgHLji1QLqyyGB-z32nwxa7BxA4EyxPyKfK6VE,29319
|
199
231
|
wandb/sdk/interface/interface_grpc.py,sha256=cM35_zf_PD0YbDTtu-mRyA3Ku-iPMc9Z0V_L4_7PO4Y,15482
|
200
232
|
wandb/sdk/interface/interface_queue.py,sha256=eCvNpvwMe1GHJv_5M8R3ZSspmEvE02mXMstBDBEZy8A,1967
|
201
233
|
wandb/sdk/interface/interface_relay.py,sha256=vQUrk5KESKInZsXpOxWF4YcWRZFLJjNz1mdNywbWbbE,1514
|
@@ -208,41 +240,38 @@ wandb/sdk/interface/router_queue.py,sha256=7TImXbpuwgn3iUw6kcNyC_nZ3APaBrojZyz1x
|
|
208
240
|
wandb/sdk/interface/router_relay.py,sha256=wjV6qPtZ5Lqdg8PNhyUrKLsidm71YMwBRwBIirbVGo4,1043
|
209
241
|
wandb/sdk/interface/router_sock.py,sha256=7-J3SFhnaqPohYaUyljwpbsvYPBXA-ZTENYnXxzbh9U,1060
|
210
242
|
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
211
|
-
wandb/sdk/interface/artifacts/__init__.py,sha256=ZVsjNX72aYjDONscw2nu3jk_STpPL9U2PvOl0l7Q2yI,774
|
212
|
-
wandb/sdk/interface/artifacts/artifact.py,sha256=XpT-UWfG_UzHccMEcLKRHwzd2VJYIri-kUTM2E8gLnk,20981
|
213
|
-
wandb/sdk/interface/artifacts/artifact_cache.py,sha256=ZGMOzgB13sCP0Vl5k3mDmCHxYfgbzm8zfJJhjOGu5YM,6232
|
214
|
-
wandb/sdk/interface/artifacts/artifact_manifest.py,sha256=CknbXH6ukBpCeNI9ilpgd6f8vll9mBhnYgk672OqFXI,4324
|
215
|
-
wandb/sdk/interface/artifacts/artifact_storage.py,sha256=N3YOQQ29XxLb2Bt_brcQJzUvwSS78QnNzvyQdPXk7dQ,3627
|
216
243
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
|
-
wandb/sdk/internal/artifact_saver.py,sha256=zjJ6HsmCrDo_IerdAllB-BYCM5P3lFAEKSmVxhkUtlU,11609
|
218
244
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
219
245
|
wandb/sdk/internal/datastore.py,sha256=hSFz8GVXESSW7u759_782Joq2j5aVnkC4AumHI7Hs9o,9790
|
220
|
-
wandb/sdk/internal/file_pusher.py,sha256=
|
221
|
-
wandb/sdk/internal/file_stream.py,sha256=
|
246
|
+
wandb/sdk/internal/file_pusher.py,sha256=P_yQDjK7VwYe9l6a1kSttVsk5_7Vzf5rscmGbIyJVeU,5574
|
247
|
+
wandb/sdk/internal/file_stream.py,sha256=aSvk99IJ3JgunPjO9IWSLqnzh5CyMj5ZO2smxDNDvFc,25432
|
222
248
|
wandb/sdk/internal/flow_control.py,sha256=STZbGEwBtVHE8kMIh0PKLEsvPBiMc03EMs9WfGVsLhA,8586
|
223
|
-
wandb/sdk/internal/handler.py,sha256=
|
249
|
+
wandb/sdk/internal/handler.py,sha256=srl904iB-e8BHP48eWnMvTIF6j6V6sKuW3y-3ARQtt0,32210
|
224
250
|
wandb/sdk/internal/internal.py,sha256=0NPQVjF44Op0kFAhRnfN9f01mP3B9raozTYK47QF1cs,12800
|
225
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
251
|
+
wandb/sdk/internal/internal_api.py,sha256=W2j7mLhKPZiPRh7ZBPRlYMl6sgNrbcQ_bdLDV6UbFcc,125806
|
226
252
|
wandb/sdk/internal/internal_util.py,sha256=1BI2ol9hhRukU7zBPbPhUcUXa58i4vLa4ocgBUya6pQ,2655
|
227
|
-
wandb/sdk/internal/job_builder.py,sha256=
|
253
|
+
wandb/sdk/internal/job_builder.py,sha256=dFlbRqH3Ugc39NbRnCCphrCr45JXTwNjPxoLohIqUec,12077
|
228
254
|
wandb/sdk/internal/profiler.py,sha256=ZpPXJJZhkml3ZL8HPbB-vZGAVPZUv0Wv-nWjOnCMXPg,2350
|
229
255
|
wandb/sdk/internal/progress.py,sha256=k1x9xthDDLGRN6Gw7qr5unaHYDkdcYxKM1jra5CC4k4,3273
|
230
256
|
wandb/sdk/internal/run.py,sha256=zZVFW3o78iQO6Yl74pJnEI_X4Qi1b1Y5NXD3VDDxwkU,681
|
231
257
|
wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,2442
|
232
|
-
wandb/sdk/internal/sender.py,sha256=
|
233
|
-
wandb/sdk/internal/settings_static.py,sha256=
|
234
|
-
wandb/sdk/internal/tb_watcher.py,sha256=
|
258
|
+
wandb/sdk/internal/sender.py,sha256=fchB23e4mPP7_7g4pVYKgGNTaHaI6rN_v48mbiqkyF4,63587
|
259
|
+
wandb/sdk/internal/settings_static.py,sha256=YNOf8ZgqXzpr-3tfDnGizsYjGNLoRrJQPZtn2cOiaZs,3133
|
260
|
+
wandb/sdk/internal/tb_watcher.py,sha256=hz6vMNG9R6UIdjWopeDPrSDkaq8kW6B-iiVUOOSPv6M,18692
|
261
|
+
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
235
262
|
wandb/sdk/internal/update.py,sha256=VLtttroJVglx6hidllhp7KHpsF-mrrMex90K5q6ZGV4,3881
|
236
263
|
wandb/sdk/internal/writer.py,sha256=Y9INh44K3ltO2tfjaQbK3p0v1wgQDxCNHbgwVfNRgj8,7399
|
237
264
|
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
238
|
-
wandb/sdk/internal/system/
|
265
|
+
wandb/sdk/internal/system/env_probe_helpers.py,sha256=jIy6gbiaq37SzgcBGe6GepJho1VS5qNQThqOmu-g0OA,397
|
266
|
+
wandb/sdk/internal/system/system_info.py,sha256=3c1ta9RcYUKXd83fzUDoqb-pSvT8dLYe-v2oZtcm29U,10501
|
239
267
|
wandb/sdk/internal/system/system_monitor.py,sha256=OS8I4JxPS2-wWiYaaIqU2YiojVqhflblsiU0kdGvzSI,8312
|
240
|
-
wandb/sdk/internal/system/assets/__init__.py,sha256=
|
268
|
+
wandb/sdk/internal/system/assets/__init__.py,sha256=MYjvhda8QWI55ygVE8hzLULgJhrJPMftB3z4F660Hso,522
|
241
269
|
wandb/sdk/internal/system/assets/aggregators.py,sha256=EzJp_YjvYORcBH6g58OsqGtmy55HqYHYMAvaIsp2Iwg,1093
|
242
270
|
wandb/sdk/internal/system/assets/asset_registry.py,sha256=NYSoCDya3Wh7ytBJOE-tNySdPpLYnSghM6CzS9-I4nk,478
|
243
271
|
wandb/sdk/internal/system/assets/cpu.py,sha256=WwW_FVd0Ju2MCs8Qbc3i42bvKFXTN0Wb_rov5asecCk,4582
|
244
272
|
wandb/sdk/internal/system/assets/disk.py,sha256=at7EUsmnObXUFAgKgcCGErl-ajCpkBsm9qLStD2wAHE,1967
|
245
|
-
wandb/sdk/internal/system/assets/gpu.py,sha256=
|
273
|
+
wandb/sdk/internal/system/assets/gpu.py,sha256=fqBxRR6dcnLYX0uDEZ3u2UWk853kdKQQ6mr1yXzXzs0,13631
|
274
|
+
wandb/sdk/internal/system/assets/gpu_amd.py,sha256=QtuFiaMGnW0nxHpNFOlpIUsiwVwQjDZmNi_iYxE0HV4,6635
|
246
275
|
wandb/sdk/internal/system/assets/gpu_apple.py,sha256=5s257qSGFUKfMAMxeUB1szsVG3XodKoKvXLMehq2Sno,3869
|
247
276
|
wandb/sdk/internal/system/assets/interfaces.py,sha256=rdliGhXcUx7FjFuEKmqtBwjfphyVdbUDjTQiXlG-xDc,6566
|
248
277
|
wandb/sdk/internal/system/assets/ipu.py,sha256=ITxv7FyciajhjM5u1zxH97izfQyWWX0XKHJYEstXXeQ,5315
|
@@ -252,47 +281,53 @@ wandb/sdk/internal/system/assets/open_metrics.py,sha256=mjcC8wLIS5RbSfn_5GkhZi_Y
|
|
252
281
|
wandb/sdk/internal/system/assets/tpu.py,sha256=nwv3C9a6dgD1hc0461Rh28NQkWbNQ5fJOXsw6lOQ-Gw,4901
|
253
282
|
wandb/sdk/internal/system/assets/trainium.py,sha256=y9VUiCZZlI29APc7L5aSbPtrpjPWTxif6zPDSrHttbM,13409
|
254
283
|
wandb/sdk/launch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
255
|
-
wandb/sdk/launch/_project_spec.py,sha256=-
|
256
|
-
wandb/sdk/launch/
|
257
|
-
wandb/sdk/launch/
|
258
|
-
wandb/sdk/launch/
|
259
|
-
wandb/sdk/launch/
|
260
|
-
wandb/sdk/launch/
|
284
|
+
wandb/sdk/launch/_project_spec.py,sha256=-bUFJtRHPxsIgyBdeZZhw8LLiWtUqGqAse8P6CJR1aY,20796
|
285
|
+
wandb/sdk/launch/errors.py,sha256=CC1M5x7FnyyO3VVcWtqH6LgJReTS-g0nqqC-yKiEr_w,305
|
286
|
+
wandb/sdk/launch/github_reference.py,sha256=11fmAtszeAg3LJdxWelHgWssApi0ks0bZDVF44Iu5dc,8565
|
287
|
+
wandb/sdk/launch/launch.py,sha256=-wzDgR-A-mBRc-RDtDJIOZ-gdYkShDP0MOZN4WIPF-Q,10206
|
288
|
+
wandb/sdk/launch/launch_add.py,sha256=DHDotr1OOGQrnAZtHAkWRCwIEM8fLSaBxSonikj8DxA,7727
|
289
|
+
wandb/sdk/launch/loader.py,sha256=Q_LqqRYIw6S70ObJiqXCZGsiDosiSIOTvYquZv-E9iE,9014
|
290
|
+
wandb/sdk/launch/utils.py,sha256=42j0PfAZYCKcc72WOOICdcwI0IyWv7WqG2Qiol07eI8,25325
|
261
291
|
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
262
292
|
wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
|
263
|
-
wandb/sdk/launch/agent/agent.py,sha256=
|
293
|
+
wandb/sdk/launch/agent/agent.py,sha256=7q8iA6NuOs8PiOvb86Y0T0i5VlFuTH3VuEozHY63tkA,24368
|
294
|
+
wandb/sdk/launch/agent/job_status_tracker.py,sha256=_JpiGoHqnZD55ycTqQTFQ6LzZrg5cep-P-pUdq3sr-8,1042
|
295
|
+
wandb/sdk/launch/agent/run_queue_item_file_saver.py,sha256=EFcT6qojSC3s4MU_1FFCD0ohjrwyLWTgitC1UJOl5rk,1491
|
264
296
|
wandb/sdk/launch/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
265
|
-
wandb/sdk/launch/builder/abstract.py,sha256=
|
266
|
-
wandb/sdk/launch/builder/build.py,sha256=
|
267
|
-
wandb/sdk/launch/builder/docker_builder.py,sha256=
|
268
|
-
wandb/sdk/launch/builder/kaniko_builder.py,sha256=
|
269
|
-
wandb/sdk/launch/builder/noop.py,sha256=
|
270
|
-
wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=
|
297
|
+
wandb/sdk/launch/builder/abstract.py,sha256=rQvrYyn1WKaUoI34LBVGgOztRiyZu4oGNpr4cSpf6oM,2658
|
298
|
+
wandb/sdk/launch/builder/build.py,sha256=IE0f9UT9AxU_SWCQbMp6O63eeQTm8kXTVEqiK4ck7rI,20459
|
299
|
+
wandb/sdk/launch/builder/docker_builder.py,sha256=KXNcw5F2OgMmt6MJF20U9_uGTUpWhdoa4dVRp1bR5A0,6505
|
300
|
+
wandb/sdk/launch/builder/kaniko_builder.py,sha256=RMDmBsseb4QBvkgz1l6qhn3vZrMJ8_36_ZPTi9VKwPQ,20087
|
301
|
+
wandb/sdk/launch/builder/noop.py,sha256=YKoG0wCyXRXylR75gXlH65ztrSiqJOwnl06J145jSSc,1684
|
302
|
+
wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=7Zx1bChrrfL2wOxmPOPAn48ABisLwTpWBs_GYCUK2T0,7189
|
271
303
|
wandb/sdk/launch/environment/abstract.py,sha256=k65QRutKWOB6LFTrIMHP8GkWe5MWJYKk5YWFjWEIF3E,926
|
272
|
-
wandb/sdk/launch/environment/aws_environment.py,sha256=
|
273
|
-
wandb/sdk/launch/environment/
|
274
|
-
wandb/sdk/launch/environment/
|
304
|
+
wandb/sdk/launch/environment/aws_environment.py,sha256=PK2EvDit-x2yA1Ucnigv2zdEoP3JfJjCo_lLCg1ahko,10028
|
305
|
+
wandb/sdk/launch/environment/azure_environment.py,sha256=HCMpafl80CTfphLGf2QmHBsop9y8JPQrJWE-m-dIItM,4348
|
306
|
+
wandb/sdk/launch/environment/gcp_environment.py,sha256=-XdUUP42qaA08SB8BUGqQ-yTMcWVIz7p0x0Rm4UJ514,9943
|
307
|
+
wandb/sdk/launch/environment/local_environment.py,sha256=dRmyS0flrH0Xxzm_XFcG3iTJaK9wppiMFgZ3DnU5O_E,2227
|
275
308
|
wandb/sdk/launch/registry/abstract.py,sha256=3lCuTdqDAAIV_nmgGTfSd2gc1-02dTo5lY-KpuXj-wc,1400
|
276
|
-
wandb/sdk/launch/registry/
|
277
|
-
wandb/sdk/launch/registry/
|
278
|
-
wandb/sdk/launch/registry/
|
309
|
+
wandb/sdk/launch/registry/azure_container_registry.py,sha256=D1wsBSt0q8sa7jTj4HGFUt-pn72jvbdfXNTctNfGz4U,4463
|
310
|
+
wandb/sdk/launch/registry/elastic_container_registry.py,sha256=GIvqKwD2HRDrOEVAsd6taIkTo2B6b7VESANyzB2fmaU,7442
|
311
|
+
wandb/sdk/launch/registry/google_artifact_registry.py,sha256=cTIS4A0Atwc58rKeb3iuhWakrgFsPjeYTxTwD-2nKLI,9404
|
312
|
+
wandb/sdk/launch/registry/local_registry.py,sha256=VusohprYxIq0RB46v_vCksdTDAnjmKu8f2JPzvNMVF8,1755
|
279
313
|
wandb/sdk/launch/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
280
|
-
wandb/sdk/launch/runner/abstract.py,sha256=
|
281
|
-
wandb/sdk/launch/runner/kubernetes_runner.py,sha256=
|
282
|
-
wandb/sdk/launch/runner/local_container.py,sha256=
|
283
|
-
wandb/sdk/launch/runner/local_process.py,sha256=
|
284
|
-
wandb/sdk/launch/runner/sagemaker_runner.py,sha256=
|
285
|
-
wandb/sdk/launch/runner/vertex_runner.py,sha256=
|
286
|
-
wandb/sdk/launch/sweeps/__init__.py,sha256=
|
287
|
-
wandb/sdk/launch/sweeps/scheduler.py,sha256=
|
288
|
-
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=
|
289
|
-
wandb/sdk/launch/sweeps/utils.py,sha256=
|
314
|
+
wandb/sdk/launch/runner/abstract.py,sha256=k9g1W1o8Dsnrf2DU2Zy5cDvvJYe0ZioAOX0ylyCbKQU,5784
|
315
|
+
wandb/sdk/launch/runner/kubernetes_runner.py,sha256=iBFZRX1JRdtgStAF5cc_dSVUtryQCnzndv_r9lFlQA4,32315
|
316
|
+
wandb/sdk/launch/runner/local_container.py,sha256=KykwL5D18Yzdoh0BRuMUL9bIFzAlFe9iVpKJUp38Jcs,9919
|
317
|
+
wandb/sdk/launch/runner/local_process.py,sha256=ulZR2OmGuwx2m6t-o097u15SFP1XPAWS0D4ofPblgTU,3296
|
318
|
+
wandb/sdk/launch/runner/sagemaker_runner.py,sha256=AWRqaAU9PxGany6ifgMJCXKRDA9zPkG7OPNIOvMOoaI,14097
|
319
|
+
wandb/sdk/launch/runner/vertex_runner.py,sha256=XDtItc5g7sxz2HQ4sdwEFBNVuu71leBjaHO1rsQd2II,7439
|
320
|
+
wandb/sdk/launch/sweeps/__init__.py,sha256=qQ96Pq9fXRIs-w8y3jy_Z6fKz9DIJ8zrMjwEZLrDGB8,913
|
321
|
+
wandb/sdk/launch/sweeps/scheduler.py,sha256=wQT_YR-JvZn6GNI_nSlidW64sL6WCAnOnN0mTPH3GPI,25194
|
322
|
+
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=XeuTH44rbaQPc0ngpD-evsQaG0i_WSWiOz-JvtrPFJw,2999
|
323
|
+
wandb/sdk/launch/sweeps/utils.py,sha256=EKc6Yqwq9HJhI9PzQIwhp126sdvO3VmDaAqvy8JlFU0,9796
|
290
324
|
wandb/sdk/lib/__init__.py,sha256=K0x-PO-Ub5qblYhK0cGKLL4DQKShngxaWiK2Ab_2TaQ,151
|
291
325
|
wandb/sdk/lib/_settings_toposort_generate.py,sha256=k7JiWdPTiPVs27QFbs88bpIzzgKAru_VX_OKFZMfR6M,5306
|
292
|
-
wandb/sdk/lib/_settings_toposort_generated.py,sha256=
|
326
|
+
wandb/sdk/lib/_settings_toposort_generated.py,sha256=o-y-RP9wz2dU--nAIpPtukdM0vSV2JX32qUTW19i_3I,4332
|
293
327
|
wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
|
294
328
|
wandb/sdk/lib/_wburls_generated.py,sha256=VNnkfin4TRuiRGiQUA66onr3BEZhQLHw4Arkw4ue7R4,383
|
295
329
|
wandb/sdk/lib/apikey.py,sha256=HFMpwk_fc2f7I-xBgvTozpmibaU8MUQ9j-DWSq0iKeM,8700
|
330
|
+
wandb/sdk/lib/capped_dict.py,sha256=T2CNkmzfWeFgXOsFmx5IDPzgYmP1jxaVAb-nn3-qBBE,820
|
296
331
|
wandb/sdk/lib/config_util.py,sha256=xH-_UVxpGVQgy6pwtpGV3o9ZlsN3ww2SmhUwUabtO6w,3906
|
297
332
|
wandb/sdk/lib/console.py,sha256=GH32XoKZLFiKsP7Tajtss7dfjnyyo7fLVJzvQ86B8TE,1031
|
298
333
|
wandb/sdk/lib/deprecate.py,sha256=r8kT4UY2DSG7V5N78MG46kQOzycBp3_8lH49KnDXxXM,1462
|
@@ -302,16 +337,16 @@ wandb/sdk/lib/file_stream_utils.py,sha256=nGzraU0hjn5t8RDtSDM4jjcQL2SBIuu3m6unFU
|
|
302
337
|
wandb/sdk/lib/filenames.py,sha256=82owEoViGpSnItA1IyT7LW5MvrQg6Dgz2zAOU5SG51k,1283
|
303
338
|
wandb/sdk/lib/filesystem.py,sha256=8t6xAJmCMeyU-p7kXcoghyN9xJyNbr5-XXpJIIbzJC0,6775
|
304
339
|
wandb/sdk/lib/fsm.py,sha256=WTomGpMKFf7q183FJ-Dn4sWWKTY8MYrDOPZ15IGmhZQ,5311
|
305
|
-
wandb/sdk/lib/
|
340
|
+
wandb/sdk/lib/gitlib.py,sha256=zktMxSW4yC4_ZfTkOVslN_pveLWmJblOl7ShBfUTu6o,7549
|
306
341
|
wandb/sdk/lib/gql_request.py,sha256=afIEUjHuziaJxp_kcKadzQ1euLMYKTgoS5i8ZOyROZs,2281
|
307
342
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
308
|
-
wandb/sdk/lib/hashutil.py,sha256=
|
343
|
+
wandb/sdk/lib/hashutil.py,sha256=3T0DyZZPZ6VXrYrmLzusdoAtD1JsuXsx0_iNuyqim9M,1745
|
309
344
|
wandb/sdk/lib/import_hooks.py,sha256=SUFX3QSYvQKGouyV2VY_RcHWRL08Zz_gW4U2WxLkXh4,10270
|
310
345
|
wandb/sdk/lib/ipython.py,sha256=0ukPxnnyQYFGoyRQhk-UkJ5C0NWR_Ag3pheCE4yBBrM,4387
|
311
346
|
wandb/sdk/lib/lazyloader.py,sha256=3lWdk-WxWCwbZFnOxNOfTPCaaNxwPUePnqNaIZpievU,1878
|
312
347
|
wandb/sdk/lib/mailbox.py,sha256=AA7t1tG4oclHfKz7GEmPMicX7_JHP3bINavTYW6OL10,14250
|
313
348
|
wandb/sdk/lib/module.py,sha256=nhXo7OJGGqbJTd2iraxQsGoCB7Qh8nQZjxfjtn5wnKo,1604
|
314
|
-
wandb/sdk/lib/paths.py,sha256=
|
349
|
+
wandb/sdk/lib/paths.py,sha256=YiEE5mkYB5ahMuI4C27IsNvejC3z6MI5JPW1iISi864,4529
|
315
350
|
wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
|
316
351
|
wandb/sdk/lib/printer.py,sha256=A9gieCE4RtH-B_ZItw2QX1ezzFlqTpeY5ffn8MlUmIY,9429
|
317
352
|
wandb/sdk/lib/proto_util.py,sha256=H62uem0Xrl1E5FoLfa58rEid93Y_CG59yo7_B7-4vZQ,3553
|
@@ -320,26 +355,26 @@ wandb/sdk/lib/reporting.py,sha256=sfjVyNtNVOWFIcKihS-9C0yJhCAaUOUP3N3TDdyA-Fc,24
|
|
320
355
|
wandb/sdk/lib/retry.py,sha256=aSKtlpQWCqmNyZ3ZbWndSDE-7B6exzvHONPS-MdnAq4,10082
|
321
356
|
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
322
357
|
wandb/sdk/lib/server.py,sha256=R8E-IqjtAvC7yLChNf2GxRNXrzJ8OMPph3RPU0IzxHo,1684
|
323
|
-
wandb/sdk/lib/sock_client.py,sha256
|
358
|
+
wandb/sdk/lib/sock_client.py,sha256=-KUS5JYHX8qjYjl2sCqyGr2i-tf2LjwbRPCoKYzKzRQ,10387
|
324
359
|
wandb/sdk/lib/sparkline.py,sha256=SbeX9FkaU47BMi0-HtnpCh_cBHsUSl5n1vL7vVL9e60,1373
|
325
360
|
wandb/sdk/lib/telemetry.py,sha256=OdBUbhUAU1LPDJJmW5Rm6GkRDRPpeCk2SP61XUQYm2g,2752
|
326
361
|
wandb/sdk/lib/timed_input.py,sha256=D7vx3N3m4LlxwkQpzS7lDi7IOnccqZ3WfLlDYRs8Oes,3229
|
327
|
-
wandb/sdk/lib/timer.py,sha256=
|
362
|
+
wandb/sdk/lib/timer.py,sha256=VZUyl7fmQAB75l9QXw9Nkz9SxyYj-CvLPawAk866YKM,440
|
328
363
|
wandb/sdk/lib/tracelog.py,sha256=OfjV6Mx04tWJ_qvcT7PGu7MetBaF9sC-uocGVSbh_Io,7543
|
329
364
|
wandb/sdk/lib/wburls.py,sha256=6KqAiTjrxPHlIw4j9Li6l66F9TPC7N5fwWKSMBk3k8A,1315
|
330
365
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
331
366
|
wandb/sdk/service/_startup_debug.py,sha256=t9XV0E2e6z1l7DGBc-JivqePi6BbTwh3MwpBU1pFhRA,594
|
332
367
|
wandb/sdk/service/port_file.py,sha256=OXiXpHA1XjLsoWizfOVaxR74w96j-KJI2XlnoVY-xH8,2002
|
333
|
-
wandb/sdk/service/server.py,sha256=
|
368
|
+
wandb/sdk/service/server.py,sha256=Fnz4-gmqiOQMad_3T4USLRPCE3b4d2jWqaujJi4XLXI,5637
|
334
369
|
wandb/sdk/service/server_grpc.py,sha256=e_cM6w8lyNUMefsavyyUG38-OlcKw2lJNjVPtyTkeFU,16202
|
335
|
-
wandb/sdk/service/server_sock.py,sha256=
|
336
|
-
wandb/sdk/service/service.py,sha256=
|
370
|
+
wandb/sdk/service/server_sock.py,sha256=P42XcHWrpMVv9xf7hCUBVWityzA4IokHMu5VAHpQr88,9750
|
371
|
+
wandb/sdk/service/service.py,sha256=__ZJ-VZ0q--UHU0Fc5H4GZHyPFktxutrX-jbYogvtm8,8428
|
337
372
|
wandb/sdk/service/service_base.py,sha256=9FRN4S9Tey7gkvPCmhz_rGyr6nnHD8ViKZdWEn71Vc8,2877
|
338
373
|
wandb/sdk/service/service_grpc.py,sha256=-2VtTnpgf56AgHcDHhwgA4EyEpiQan-0qP_nZgy8HGM,2458
|
339
374
|
wandb/sdk/service/service_sock.py,sha256=xPrt2ilchSACfp4-hQ-z1MOXzpour-Jr70swPH83Es8,2364
|
340
375
|
wandb/sdk/service/streams.py,sha256=gS1lhjGwTv5LqHHrv0s5EUXupyH8g7VrK0mM-mZ9xBU,14819
|
341
376
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
342
|
-
wandb/sdk/verify/verify.py,sha256=
|
377
|
+
wandb/sdk/verify/verify.py,sha256=3M7w23jRveVLtDQxQbszTS4xAKjdFxLnYNEjDpwwGCo,16425
|
343
378
|
wandb/sklearn/__init__.py,sha256=aWYFigKCNvEhTILHouDyo7j8pUZayo5v2AnRdbYp2vM,860
|
344
379
|
wandb/sklearn/utils.py,sha256=QoYf5--o6a1Mcd7TuQequZVjG7YuVK1C2fQ4HP7tAwI,5902
|
345
380
|
wandb/sklearn/calculate/__init__.py,sha256=T19bKtuyTbRNzcIg3QbnRD8vm085QJXQFZfQ_STjrCk,1055
|
@@ -361,7 +396,7 @@ wandb/sklearn/plot/regressor.py,sha256=yw3sFuWGDeD_mByi-Xuef79_4zdpE6ODJyIPiYEY0
|
|
361
396
|
wandb/sklearn/plot/shared.py,sha256=_BMOiBmwNO_vIH5f2SDQcPASrJabxmRuKuELwA27-9k,2732
|
362
397
|
wandb/sync/__init__.py,sha256=vZMKb-AOlEwKQf4GNTndrgHuvGCeDMDTZAVwimtXZ0o,101
|
363
398
|
wandb/sync/sync.py,sha256=gdLj7biCZllbK4a0dCvAR7kh3WMRfin4O7wPHfdlAQ4,14859
|
364
|
-
wandb/testing/relay.py,sha256=
|
399
|
+
wandb/testing/relay.py,sha256=KWkG-EmFk8YREmet6rw9aN6ah98oYhG2v1jwE9eFQN0,25112
|
365
400
|
wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
366
401
|
wandb/vendor/gql-0.2.0/setup.py,sha256=_osNap_aCOVvTlDwP9f-aI10TJbpIflxcG6fEQoAxNs,1314
|
367
402
|
wandb/vendor/gql-0.2.0/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -746,9 +781,9 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2
|
|
746
781
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
|
747
782
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
|
748
783
|
wandb/xgboost/__init__.py,sha256=GRixyb89ki1Znfw48RRiRPxZnK41aEj1L48bBG6-Kh0,230
|
749
|
-
wandb-0.15.
|
750
|
-
wandb-0.15.
|
751
|
-
wandb-0.15.
|
752
|
-
wandb-0.15.
|
753
|
-
wandb-0.15.
|
754
|
-
wandb-0.15.
|
784
|
+
wandb-0.15.5.dist-info/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
785
|
+
wandb-0.15.5.dist-info/METADATA,sha256=E8ml321xKuyGbeSKg1_MmityYHLur7rFxY7KYAzflaU,8229
|
786
|
+
wandb-0.15.5.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
787
|
+
wandb-0.15.5.dist-info/entry_points.txt,sha256=5VEDOaS7CgcNfzb_FEaNkLS2AyPLzJJdY74xYYipTdQ,68
|
788
|
+
wandb-0.15.5.dist-info/top_level.txt,sha256=gPLPSekU6Labh_9yJz7WLb6Q9DK72I02_ARvDEG9Xsw,6
|
789
|
+
wandb-0.15.5.dist-info/RECORD,,
|