wandb 0.13.10__py3-none-any.whl → 0.14.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- wandb/__init__.py +2 -3
- wandb/apis/__init__.py +1 -3
- wandb/apis/importers/__init__.py +4 -0
- wandb/apis/importers/base.py +312 -0
- wandb/apis/importers/mlflow.py +113 -0
- wandb/apis/internal.py +29 -2
- wandb/apis/normalize.py +6 -5
- wandb/apis/public.py +163 -180
- wandb/apis/reports/_templates.py +6 -12
- wandb/apis/reports/report.py +1 -1
- wandb/apis/reports/runset.py +1 -3
- wandb/apis/reports/util.py +12 -10
- wandb/beta/workflows.py +57 -34
- wandb/catboost/__init__.py +1 -2
- wandb/cli/cli.py +215 -133
- wandb/data_types.py +63 -56
- wandb/docker/__init__.py +78 -16
- wandb/docker/auth.py +21 -22
- wandb/env.py +0 -1
- wandb/errors/__init__.py +8 -116
- wandb/errors/term.py +1 -1
- wandb/fastai/__init__.py +1 -2
- wandb/filesync/dir_watcher.py +8 -5
- wandb/filesync/step_prepare.py +76 -75
- wandb/filesync/step_upload.py +1 -2
- wandb/integration/catboost/__init__.py +1 -3
- wandb/integration/catboost/catboost.py +8 -14
- wandb/integration/fastai/__init__.py +7 -13
- wandb/integration/gym/__init__.py +35 -4
- wandb/integration/keras/__init__.py +3 -3
- wandb/integration/keras/callbacks/metrics_logger.py +9 -8
- wandb/integration/keras/callbacks/model_checkpoint.py +9 -9
- wandb/integration/keras/callbacks/tables_builder.py +31 -19
- wandb/integration/kfp/kfp_patch.py +20 -17
- wandb/integration/kfp/wandb_logging.py +1 -2
- wandb/integration/lightgbm/__init__.py +21 -19
- wandb/integration/prodigy/prodigy.py +6 -7
- wandb/integration/sacred/__init__.py +9 -12
- wandb/integration/sagemaker/__init__.py +1 -3
- wandb/integration/sagemaker/auth.py +0 -1
- wandb/integration/sagemaker/config.py +1 -1
- wandb/integration/sagemaker/resources.py +1 -1
- wandb/integration/sb3/sb3.py +8 -4
- wandb/integration/tensorboard/__init__.py +1 -3
- wandb/integration/tensorboard/log.py +8 -8
- wandb/integration/tensorboard/monkeypatch.py +11 -9
- wandb/integration/tensorflow/__init__.py +1 -3
- wandb/integration/xgboost/__init__.py +4 -6
- wandb/integration/yolov8/__init__.py +7 -0
- wandb/integration/yolov8/yolov8.py +250 -0
- wandb/jupyter.py +31 -35
- wandb/lightgbm/__init__.py +1 -2
- wandb/old/settings.py +2 -2
- wandb/plot/bar.py +1 -2
- wandb/plot/confusion_matrix.py +1 -3
- wandb/plot/histogram.py +1 -2
- wandb/plot/line.py +1 -2
- wandb/plot/line_series.py +4 -4
- wandb/plot/pr_curve.py +17 -20
- wandb/plot/roc_curve.py +1 -3
- wandb/plot/scatter.py +1 -2
- wandb/proto/v3/wandb_server_pb2.py +85 -39
- wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v4/wandb_server_pb2.py +51 -39
- wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
- wandb/sdk/__init__.py +1 -3
- wandb/sdk/backend/backend.py +1 -1
- wandb/sdk/data_types/_dtypes.py +38 -30
- wandb/sdk/data_types/base_types/json_metadata.py +1 -3
- wandb/sdk/data_types/base_types/media.py +17 -17
- wandb/sdk/data_types/base_types/wb_value.py +33 -26
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +91 -125
- wandb/sdk/data_types/helper_types/classes.py +1 -1
- wandb/sdk/data_types/helper_types/image_mask.py +12 -12
- wandb/sdk/data_types/histogram.py +5 -4
- wandb/sdk/data_types/html.py +1 -2
- wandb/sdk/data_types/image.py +11 -11
- wandb/sdk/data_types/molecule.py +3 -6
- wandb/sdk/data_types/object_3d.py +1 -2
- wandb/sdk/data_types/plotly.py +1 -2
- wandb/sdk/data_types/saved_model.py +10 -8
- wandb/sdk/data_types/video.py +1 -1
- wandb/sdk/integration_utils/data_logging.py +5 -5
- wandb/sdk/interface/artifacts.py +288 -266
- wandb/sdk/interface/interface.py +2 -3
- wandb/sdk/interface/interface_grpc.py +1 -1
- wandb/sdk/interface/interface_queue.py +1 -1
- wandb/sdk/interface/interface_relay.py +1 -1
- wandb/sdk/interface/interface_shared.py +1 -2
- wandb/sdk/interface/interface_sock.py +1 -1
- wandb/sdk/interface/message_future.py +1 -1
- wandb/sdk/interface/message_future_poll.py +1 -1
- wandb/sdk/interface/router.py +1 -1
- wandb/sdk/interface/router_queue.py +1 -1
- wandb/sdk/interface/router_relay.py +1 -1
- wandb/sdk/interface/router_sock.py +1 -1
- wandb/sdk/interface/summary_record.py +1 -1
- wandb/sdk/internal/artifacts.py +1 -1
- wandb/sdk/internal/datastore.py +2 -3
- wandb/sdk/internal/file_pusher.py +5 -3
- wandb/sdk/internal/file_stream.py +22 -19
- wandb/sdk/internal/handler.py +5 -4
- wandb/sdk/internal/internal.py +1 -1
- wandb/sdk/internal/internal_api.py +115 -55
- wandb/sdk/internal/job_builder.py +1 -3
- wandb/sdk/internal/profiler.py +1 -1
- wandb/sdk/internal/progress.py +4 -6
- wandb/sdk/internal/sample.py +1 -3
- wandb/sdk/internal/sender.py +28 -16
- wandb/sdk/internal/settings_static.py +5 -5
- wandb/sdk/internal/system/assets/__init__.py +1 -0
- wandb/sdk/internal/system/assets/cpu.py +3 -9
- wandb/sdk/internal/system/assets/disk.py +2 -4
- wandb/sdk/internal/system/assets/gpu.py +6 -18
- wandb/sdk/internal/system/assets/gpu_apple.py +2 -4
- wandb/sdk/internal/system/assets/interfaces.py +50 -22
- wandb/sdk/internal/system/assets/ipu.py +1 -3
- wandb/sdk/internal/system/assets/memory.py +7 -13
- wandb/sdk/internal/system/assets/network.py +4 -8
- wandb/sdk/internal/system/assets/open_metrics.py +283 -0
- wandb/sdk/internal/system/assets/tpu.py +1 -4
- wandb/sdk/internal/system/assets/trainium.py +26 -14
- wandb/sdk/internal/system/system_info.py +2 -3
- wandb/sdk/internal/system/system_monitor.py +52 -20
- wandb/sdk/internal/tb_watcher.py +12 -13
- wandb/sdk/launch/_project_spec.py +54 -65
- wandb/sdk/launch/agent/agent.py +374 -90
- wandb/sdk/launch/builder/abstract.py +61 -7
- wandb/sdk/launch/builder/build.py +81 -110
- wandb/sdk/launch/builder/docker_builder.py +181 -0
- wandb/sdk/launch/builder/kaniko_builder.py +419 -0
- wandb/sdk/launch/builder/noop.py +31 -12
- wandb/sdk/launch/builder/templates/_wandb_bootstrap.py +70 -20
- wandb/sdk/launch/environment/abstract.py +28 -0
- wandb/sdk/launch/environment/aws_environment.py +276 -0
- wandb/sdk/launch/environment/gcp_environment.py +271 -0
- wandb/sdk/launch/environment/local_environment.py +65 -0
- wandb/sdk/launch/github_reference.py +3 -8
- wandb/sdk/launch/launch.py +38 -29
- wandb/sdk/launch/launch_add.py +6 -8
- wandb/sdk/launch/loader.py +230 -0
- wandb/sdk/launch/registry/abstract.py +54 -0
- wandb/sdk/launch/registry/elastic_container_registry.py +163 -0
- wandb/sdk/launch/registry/google_artifact_registry.py +203 -0
- wandb/sdk/launch/registry/local_registry.py +62 -0
- wandb/sdk/launch/runner/abstract.py +1 -16
- wandb/sdk/launch/runner/{kubernetes.py → kubernetes_runner.py} +83 -95
- wandb/sdk/launch/runner/local_container.py +46 -22
- wandb/sdk/launch/runner/local_process.py +1 -4
- wandb/sdk/launch/runner/{aws.py → sagemaker_runner.py} +53 -212
- wandb/sdk/launch/runner/{gcp_vertex.py → vertex_runner.py} +38 -55
- wandb/sdk/launch/sweeps/__init__.py +3 -2
- wandb/sdk/launch/sweeps/scheduler.py +132 -39
- wandb/sdk/launch/sweeps/scheduler_sweep.py +80 -89
- wandb/sdk/launch/utils.py +101 -30
- wandb/sdk/launch/wandb_reference.py +2 -7
- wandb/sdk/lib/_settings_toposort_generate.py +166 -0
- wandb/sdk/lib/_settings_toposort_generated.py +201 -0
- wandb/sdk/lib/apikey.py +2 -4
- wandb/sdk/lib/config_util.py +4 -1
- wandb/sdk/lib/console.py +1 -3
- wandb/sdk/lib/deprecate.py +3 -3
- wandb/sdk/lib/file_stream_utils.py +7 -5
- wandb/sdk/lib/filenames.py +1 -1
- wandb/sdk/lib/filesystem.py +61 -5
- wandb/sdk/lib/git.py +1 -3
- wandb/sdk/lib/import_hooks.py +4 -7
- wandb/sdk/lib/ipython.py +8 -5
- wandb/sdk/lib/lazyloader.py +1 -3
- wandb/sdk/lib/mailbox.py +14 -4
- wandb/sdk/lib/proto_util.py +10 -5
- wandb/sdk/lib/redirect.py +15 -22
- wandb/sdk/lib/reporting.py +1 -3
- wandb/sdk/lib/retry.py +4 -5
- wandb/sdk/lib/runid.py +1 -3
- wandb/sdk/lib/server.py +15 -9
- wandb/sdk/lib/sock_client.py +1 -1
- wandb/sdk/lib/sparkline.py +1 -1
- wandb/sdk/lib/wburls.py +1 -1
- wandb/sdk/service/port_file.py +1 -2
- wandb/sdk/service/service.py +36 -13
- wandb/sdk/service/service_base.py +12 -1
- wandb/sdk/verify/verify.py +5 -7
- wandb/sdk/wandb_artifacts.py +142 -177
- wandb/sdk/wandb_config.py +5 -8
- wandb/sdk/wandb_helper.py +1 -1
- wandb/sdk/wandb_init.py +24 -13
- wandb/sdk/wandb_login.py +9 -9
- wandb/sdk/wandb_manager.py +39 -4
- wandb/sdk/wandb_metric.py +2 -6
- wandb/sdk/wandb_require.py +4 -15
- wandb/sdk/wandb_require_helpers.py +1 -9
- wandb/sdk/wandb_run.py +95 -141
- wandb/sdk/wandb_save.py +1 -3
- wandb/sdk/wandb_settings.py +149 -54
- wandb/sdk/wandb_setup.py +66 -46
- wandb/sdk/wandb_summary.py +13 -10
- wandb/sdk/wandb_sweep.py +6 -7
- wandb/sdk/wandb_watch.py +1 -1
- wandb/sklearn/calculate/confusion_matrix.py +1 -1
- wandb/sklearn/calculate/learning_curve.py +1 -1
- wandb/sklearn/calculate/summary_metrics.py +1 -3
- wandb/sklearn/plot/__init__.py +1 -1
- wandb/sklearn/plot/classifier.py +27 -18
- wandb/sklearn/plot/clusterer.py +4 -5
- wandb/sklearn/plot/regressor.py +4 -4
- wandb/sklearn/plot/shared.py +2 -2
- wandb/sync/__init__.py +1 -3
- wandb/sync/sync.py +4 -5
- wandb/testing/relay.py +11 -10
- wandb/trigger.py +1 -1
- wandb/util.py +106 -81
- wandb/viz.py +4 -4
- wandb/wandb_agent.py +50 -50
- wandb/wandb_controller.py +2 -3
- wandb/wandb_run.py +1 -2
- wandb/wandb_torch.py +1 -1
- wandb/xgboost/__init__.py +1 -2
- {wandb-0.13.10.dist-info → wandb-0.14.0.dist-info}/METADATA +6 -2
- {wandb-0.13.10.dist-info → wandb-0.14.0.dist-info}/RECORD +224 -209
- {wandb-0.13.10.dist-info → wandb-0.14.0.dist-info}/WHEEL +1 -1
- wandb/sdk/launch/builder/docker.py +0 -80
- wandb/sdk/launch/builder/kaniko.py +0 -393
- wandb/sdk/launch/builder/loader.py +0 -32
- wandb/sdk/launch/runner/loader.py +0 -50
- {wandb-0.13.10.dist-info → wandb-0.14.0.dist-info}/LICENSE +0 -0
- {wandb-0.13.10.dist-info → wandb-0.14.0.dist-info}/entry_points.txt +0 -0
- {wandb-0.13.10.dist-info → wandb-0.14.0.dist-info}/top_level.txt +0 -0
@@ -1,111 +1,116 @@
|
|
1
|
-
wandb/__init__.py,sha256=
|
1
|
+
wandb/__init__.py,sha256=OY44rhrK9CZ3AXzdrfqtoSFOz5Da6aALYY163kBqVD0,6051
|
2
2
|
wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
|
3
3
|
wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
|
4
|
-
wandb/data_types.py,sha256=
|
5
|
-
wandb/env.py,sha256=
|
6
|
-
wandb/jupyter.py,sha256=
|
4
|
+
wandb/data_types.py,sha256=ubLUgZ74CDkzPgrJNt1E0FHQuWQbzVFM42OBkZQwxzY,75068
|
5
|
+
wandb/env.py,sha256=Dr68ejRYUI1-12lX9oxml8N9zmjct3SWWlib_wAiqX4,10341
|
6
|
+
wandb/jupyter.py,sha256=OetSXg5_Eu3WES_9TOarIzbvx6wCIfLSVyno2bEbisk,16940
|
7
7
|
wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
|
8
8
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
-
wandb/trigger.py,sha256=
|
10
|
-
wandb/util.py,sha256=
|
11
|
-
wandb/viz.py,sha256=
|
12
|
-
wandb/wandb_agent.py,sha256=
|
13
|
-
wandb/wandb_controller.py,sha256=
|
14
|
-
wandb/wandb_run.py,sha256=
|
15
|
-
wandb/wandb_torch.py,sha256=
|
9
|
+
wandb/trigger.py,sha256=s6pc7ol-s76i7YRNf4P13f9co2f4f8simzXkjcmSQG0,614
|
10
|
+
wandb/util.py,sha256=ad5rhrY3Q4CNcmh_9Ic72Yei_0L1Jm8UURwUhpyx5cQ,61173
|
11
|
+
wandb/viz.py,sha256=hrRhuDuvgelF-qK0eoVmBJyJi1DjQ3vkmrgRKgM2lyg,3217
|
12
|
+
wandb/wandb_agent.py,sha256=4ohs94jROgasA5ZH3FhIRyuFF5li1kWt3lC_UqPuSAo,23538
|
13
|
+
wandb/wandb_controller.py,sha256=SjL4Sx1scOzY-lFp9bGmf6P43p99xlLxpGUAMetRS_c,24729
|
14
|
+
wandb/wandb_run.py,sha256=CNh9S6uubFk8FphQjzkbvedyyGCN9aBEsRBKjy8tqqs,155
|
15
|
+
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=FLoOmORjVQ-MtjBtd7XUXljBqm0Tks6xguRGn1AsAs4,12921
|
18
|
-
wandb/apis/__init__.py,sha256=
|
19
|
-
wandb/apis/internal.py,sha256=
|
20
|
-
wandb/apis/normalize.py,sha256=
|
21
|
-
wandb/apis/public.py,sha256=
|
18
|
+
wandb/apis/__init__.py,sha256=haXrAmHFoC3gL1_NphdalvaMKGSiiFWB2QCOIJUhPGc,1329
|
19
|
+
wandb/apis/internal.py,sha256=2nOLHiOVv4Pduh4l6Zy3g7kGybViutn1ATbXeB6n1sA,6152
|
20
|
+
wandb/apis/normalize.py,sha256=PzB9YfayTfzM262m5H5Z7I0qH3G5gNwtkPt3lTu0BHg,2141
|
21
|
+
wandb/apis/public.py,sha256=6TtoQ2ZEbl2sInwsAmTQtF5sSYhUoh27jQ-NCL_gILI,179826
|
22
|
+
wandb/apis/importers/__init__.py,sha256=117C1xz4GGn1T3e3LOJ3GSSnQZrnWvZiS0AP_3B0K9Q,124
|
23
|
+
wandb/apis/importers/base.py,sha256=ANIeFJcg8W4tpnq9AbdDag8v48Qd-YGA2DVep8byhXc,10160
|
24
|
+
wandb/apis/importers/mlflow.py,sha256=gXzpJ1aVFMSwxeO_kUGNyl6TJvVzfNOx5EJOinM96sM,3538
|
22
25
|
wandb/apis/reports/__init__.py,sha256=Dr4Qj7g-Oprr2-yci3GnkGmmef0NWL1PVTcIeRfy8PI,949
|
23
26
|
wandb/apis/reports/_blocks.py,sha256=pauLnohwcEAPksqaJQIB04LjRn4KOe3MNQvCCWYiE7E,53785
|
24
27
|
wandb/apis/reports/_helpers.py,sha256=SlJQcvD-fDBSniXcp4BLsSxW_1fp-fhVFiZj6qYgEqg,2126
|
25
28
|
wandb/apis/reports/_panels.py,sha256=td8iEnv3wdlwYqP1XXIxhejvbXUa0B-3LHGGBQ8LwEs,47558
|
26
|
-
wandb/apis/reports/_templates.py,sha256=
|
29
|
+
wandb/apis/reports/_templates.py,sha256=o6VpXckaUW9Iumxk3C9t8Qe1yxQMfWgD9TIh4u9oe4U,18139
|
27
30
|
wandb/apis/reports/blocks.py,sha256=ZBqGF53f9O15fhIBUzifsrejpEuSiLD3SvF7PJC0T7Y,417
|
28
31
|
wandb/apis/reports/helpers.py,sha256=5b4u5aSfk6NJhLmxaGMq_0m59VVUwQVdE2z6JwfDPR8,55
|
29
32
|
wandb/apis/reports/mutations.py,sha256=TqECjJX85of5AYBJR7UtNCQZ7FZQRw0XCXcJQ2U3P7Y,1359
|
30
33
|
wandb/apis/reports/panels.py,sha256=Ejb7U_UjNGfI7VwzpGo7qJdhA5c1A5HuxnbbNi4_ivs,337
|
31
|
-
wandb/apis/reports/report.py,sha256=
|
32
|
-
wandb/apis/reports/runset.py,sha256=
|
34
|
+
wandb/apis/reports/report.py,sha256=Nm7rC5hdzIYQtmq_pDrrtqitYzKMc_ZOenFEpVfwWYc,8121
|
35
|
+
wandb/apis/reports/runset.py,sha256=HYblYs2ap6rBYGUSFeEYWH3n2ybfn4XlVfK9sSG75cg,4964
|
33
36
|
wandb/apis/reports/templates.py,sha256=LmYsgKVpfUgcaZ9SggwVhWCXQjFthmLxebRXN2pOjdg,161
|
34
|
-
wandb/apis/reports/util.py,sha256=
|
37
|
+
wandb/apis/reports/util.py,sha256=gQ11JAvvk1mKgcY6ytMyyONG04LmcwkuLEixOW10als,11940
|
35
38
|
wandb/apis/reports/validators.py,sha256=8VieYNICXinPtgjNI1xBcxIykHIXp4Rt4zfidbX-N94,4282
|
36
|
-
wandb/beta/workflows.py,sha256=
|
39
|
+
wandb/beta/workflows.py,sha256=ozY3OooklSsjdZeowl8an5VF6phCUgIn3yYv0vkIO7Q,10051
|
37
40
|
wandb/bin/apple_gpu_stats,sha256=-CVDIPhgV1f_jjM1dkXJgmo6AQY4wjy1xCGg1e8zn0w,337072
|
38
|
-
wandb/catboost/__init__.py,sha256=
|
41
|
+
wandb/catboost/__init__.py,sha256=kgsxRzur9liL-CPOVubjNVJ_FEDiktbyA7gQQXxG1n0,226
|
39
42
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
|
-
wandb/cli/cli.py,sha256=
|
41
|
-
wandb/docker/__init__.py,sha256=
|
42
|
-
wandb/docker/auth.py,sha256=
|
43
|
+
wandb/cli/cli.py,sha256=pge9FSPhpq-zk5qocxCu3E1L9GPSQsgC7Won9mPsy1U,78841
|
44
|
+
wandb/docker/__init__.py,sha256=PW64nHMdNB4B7WYVC12lZf242Zi_d5QHLtAtfThqM9g,9575
|
45
|
+
wandb/docker/auth.py,sha256=d0uCK29uATBe6HKkbhbvdEYYbSIkdppiwzvWsgUqqMc,15065
|
43
46
|
wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
|
44
47
|
wandb/docker/www_authenticate.py,sha256=eQd0ap8LpZkS9ImRn2gdgl7gnHeKprdqjClrZOaCsQo,2805
|
45
|
-
wandb/errors/__init__.py,sha256=
|
46
|
-
wandb/errors/term.py,sha256=
|
47
|
-
wandb/fastai/__init__.py,sha256=
|
48
|
+
wandb/errors/__init__.py,sha256=ov4GxOHdV5pL62zRfdIZhtE47ZSnireoesf02RvvG4M,981
|
49
|
+
wandb/errors/term.py,sha256=zPpLpWYU7-Hjs7jd-y0uNLt7b0ffkJ1mHqqEjOr5F5g,2525
|
50
|
+
wandb/fastai/__init__.py,sha256=g_yvlxAGwupME34yh49EKAAg6ZIk6tOB4ThEdazq6rY,192
|
48
51
|
wandb/filesync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
-
wandb/filesync/dir_watcher.py,sha256=
|
52
|
+
wandb/filesync/dir_watcher.py,sha256=YIqcAsQR6yWTp9cfEIleIvjy3NrnovE-3eyxfQulXtc,16399
|
50
53
|
wandb/filesync/stats.py,sha256=spwHFFy3hxyyz7Sf6qVm1Wp3MuE7NdW-hrxAXdpuQS8,3052
|
51
54
|
wandb/filesync/step_checksum.py,sha256=-BmchKaP7tYGKUeaC1-oXMw_nJY16XrQmJZ1SMJ6vqk,5275
|
52
|
-
wandb/filesync/step_prepare.py,sha256=
|
53
|
-
wandb/filesync/step_upload.py,sha256=
|
55
|
+
wandb/filesync/step_prepare.py,sha256=AMEF0bKxhouDklCHH_em5MQS7lCmc2bYWYQdSWN0cVI,5388
|
56
|
+
wandb/filesync/step_upload.py,sha256=W0yvV5rxaeHF3fKFdRRLWlLdjdPl2PUnVEJkedRXfYk,10134
|
54
57
|
wandb/filesync/upload_job.py,sha256=X88qXsRvK7ItaEOm6d6za3E4k0rkgQZwukX15L3wcuo,5683
|
55
58
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
59
|
wandb/integration/magic.py,sha256=dAoKjlXSq3bGG3gSW2rmEijilLZZnRyGi9u5eNyReWM,17243
|
57
|
-
wandb/integration/catboost/__init__.py,sha256=
|
58
|
-
wandb/integration/catboost/catboost.py,sha256=
|
59
|
-
wandb/integration/fastai/__init__.py,sha256=
|
60
|
-
wandb/integration/gym/__init__.py,sha256=
|
61
|
-
wandb/integration/keras/__init__.py,sha256=
|
60
|
+
wandb/integration/catboost/__init__.py,sha256=dxef0C9s9Xez_sF3sOqSJpKaSrAibAqMA_TpVUyIwac,127
|
61
|
+
wandb/integration/catboost/catboost.py,sha256=tGZ3RiUSPJYM4I3sSC2Fwj2HYUGhL4sLSXF7sBe3C0U,5951
|
62
|
+
wandb/integration/fastai/__init__.py,sha256=9R7mQv3SOm_8qWWR7noI8oj4YkMFx1KlCene1U6tvLQ,9573
|
63
|
+
wandb/integration/gym/__init__.py,sha256=8u0mprBlSoRUkNIW3Lv72y-EeVQPofFTrrwIZlarzuM,2236
|
64
|
+
wandb/integration/keras/__init__.py,sha256=l_pZncqHygDiUTugblyGdkfD_z4Y1f63Rj1uCrCoky0,424
|
62
65
|
wandb/integration/keras/keras.py,sha256=Tk8L--J39C3ShJleNBKVhwPs05GBc4iCADFHwnGKYgs,43739
|
63
66
|
wandb/integration/keras/callbacks/__init__.py,sha256=sY5AMC3x28iA815fqbqkkArtjctqG-m9N2D5FnyR0no,223
|
64
|
-
wandb/integration/keras/callbacks/metrics_logger.py,sha256=
|
65
|
-
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=
|
66
|
-
wandb/integration/keras/callbacks/tables_builder.py,sha256=
|
67
|
+
wandb/integration/keras/callbacks/metrics_logger.py,sha256=_khrYtlH-ThzIMAvfJT_Y5ievzHIBR6wiQfS0vUGwMc,4852
|
68
|
+
wandb/integration/keras/callbacks/model_checkpoint.py,sha256=OIy9GioKoj1E0sf3I9B61Ed13NEp6bovYtdGdQaLAqs,8557
|
69
|
+
wandb/integration/keras/callbacks/tables_builder.py,sha256=bbp_8TrIPPHKAfsVsoVZCclucwLpnHs9z_78ESiOsVE,9131
|
67
70
|
wandb/integration/kfp/__init__.py,sha256=WhBhg3mQopGNDbWzGJ8Xyld8w3FAAvmP1G1Wtv_QaC0,136
|
68
71
|
wandb/integration/kfp/helpers.py,sha256=yEVO9rrz27hc4nk3WwNL3v1aRAUlS-OlXMC8Rj0G1tI,1016
|
69
|
-
wandb/integration/kfp/kfp_patch.py,sha256=
|
70
|
-
wandb/integration/kfp/wandb_logging.py,sha256=
|
71
|
-
wandb/integration/lightgbm/__init__.py,sha256=
|
72
|
+
wandb/integration/kfp/kfp_patch.py,sha256=ajNwLge9LruWE4BdpwNqUVOb9k3RUZ4PG5VO6ltjd0E,13098
|
73
|
+
wandb/integration/kfp/wandb_logging.py,sha256=pRrMSxU06fFgFBWuw_7pNbCz87nJrPSM3n2-E-ai62w,6159
|
74
|
+
wandb/integration/lightgbm/__init__.py,sha256=ePZtdBQPlpZjbVsFdvDm96Hu9r_1vIjB7_x5MUwBaQ8,7058
|
72
75
|
wandb/integration/metaflow/__init__.py,sha256=nYn3ubiX9Ay6PFxr7r7F8Ia_2dLImb63rpYDmuDlkkQ,109
|
73
76
|
wandb/integration/metaflow/metaflow.py,sha256=AnrtyukBS5qBNfEbK3skc-oomgXIH8OyBMrSVtsqi3Q,11669
|
74
77
|
wandb/integration/prodigy/__init__.py,sha256=1-Hg98Y4T1kSNAbrlR9TUrr7dwL1Gxxa-Exu0fsfxl0,66
|
75
|
-
wandb/integration/prodigy/prodigy.py,sha256=
|
76
|
-
wandb/integration/sacred/__init__.py,sha256=
|
77
|
-
wandb/integration/sagemaker/__init__.py,sha256=
|
78
|
-
wandb/integration/sagemaker/auth.py,sha256=
|
79
|
-
wandb/integration/sagemaker/config.py,sha256=
|
78
|
+
wandb/integration/prodigy/prodigy.py,sha256=Gx_mYF8CGr-A6aE6L2UuOYpICqWNYmCxBUydckT08m0,11606
|
79
|
+
wandb/integration/sacred/__init__.py,sha256=5FPm_NRo1mZIT1i0k_x_6FIaH0h2Rqi0QGvu2H4vUe4,5759
|
80
|
+
wandb/integration/sagemaker/__init__.py,sha256=EUYDus1ohtXFwV62WZa_3h7Q3oTkeo8MUesgkFLOyjw,282
|
81
|
+
wandb/integration/sagemaker/auth.py,sha256=Ste5oGbOx8yCIP1-vO5dimKF5C90eUauqztjpakQel8,974
|
82
|
+
wandb/integration/sagemaker/config.py,sha256=iPeRFKVGTimWHhRmeSsZf6vo1bcIgOtxSkR1PFY8dR8,847
|
80
83
|
wandb/integration/sagemaker/files.py,sha256=DcAP4h3DiEniB_NkP_g8nxvoWHkV3tn93Mk1GzABYyI,153
|
81
|
-
wandb/integration/sagemaker/resources.py,sha256=
|
84
|
+
wandb/integration/sagemaker/resources.py,sha256=C0HTpXo0l3leohzY8Uu7VvsBchKwIZov_E06w25hGDs,1024
|
82
85
|
wandb/integration/sb3/__init__.py,sha256=w_VX7C6qAE1vK7xb24JchQtORxzfpXvl6YmZHUIskJM,60
|
83
|
-
wandb/integration/sb3/sb3.py,sha256=
|
84
|
-
wandb/integration/tensorboard/__init__.py,sha256=
|
85
|
-
wandb/integration/tensorboard/log.py,sha256=
|
86
|
-
wandb/integration/tensorboard/monkeypatch.py,sha256=
|
87
|
-
wandb/integration/tensorflow/__init__.py,sha256=
|
86
|
+
wandb/integration/sb3/sb3.py,sha256=U3P6e3-fGOFoJdik5XCQipqfxSDpMPs619SXsO1g5Fo,4910
|
87
|
+
wandb/integration/tensorboard/__init__.py,sha256=Ivj8-XV4lGLg1JK2LdNxWlaLkqrJmXdyWTXf41ysib8,213
|
88
|
+
wandb/integration/tensorboard/log.py,sha256=YbwfgWN_omcEUZWI5pGrS43N1Cf0pcMOf5RscduXZSY,14276
|
89
|
+
wandb/integration/tensorboard/monkeypatch.py,sha256=7S3i2vcmmIjEpY4f2Ro8OxfS5b2zgXYoTDoLmwcm7fw,6828
|
90
|
+
wandb/integration/tensorflow/__init__.py,sha256=8y7Acc7EAxKF-4vGXuZH6tsXeNNzqXisE2blNz9RNQk,125
|
88
91
|
wandb/integration/tensorflow/estimator_hook.py,sha256=fi-UtjNZxUnDkzfbNP09iH074z5x0ItZiB4dkvwMGNI,1756
|
89
92
|
wandb/integration/torch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
|
-
wandb/integration/xgboost/__init__.py,sha256=
|
93
|
+
wandb/integration/xgboost/__init__.py,sha256=Pwmii-OI64seJjfwM28cS4BdkEN2_Ms_qMGdwp3QRn8,343
|
91
94
|
wandb/integration/xgboost/xgboost.py,sha256=RSQBVer_cOLjwsdnFs71Fwg039OBXVUQWOwgbPhxp4g,6497
|
95
|
+
wandb/integration/yolov8/__init__.py,sha256=UkK6wYDlvZrWXw8zxNfAAgCLhrUDh4q64kfNsp5Teb8,242
|
96
|
+
wandb/integration/yolov8/yolov8.py,sha256=tm_FS5iozopIl26ijtv68myBW0BXFX9K-fUKp4-oINc,10212
|
92
97
|
wandb/keras/__init__.py,sha256=7NVkXkqZKC7YVSEzNti9DS5FTUSguVAnhs0o8UzZMCw,362
|
93
|
-
wandb/lightgbm/__init__.py,sha256=
|
98
|
+
wandb/lightgbm/__init__.py,sha256=bpFmlo5jQvEYpD8yUI0RHPOji7JpSO_zDaSPl6FFEuU,229
|
94
99
|
wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
100
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
96
101
|
wandb/old/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
102
|
wandb/old/core.py,sha256=MJjnAcUObCVXgLQEOW_iS7RREBiTB-YZtf9VHMYV2N4,3758
|
98
|
-
wandb/old/settings.py,sha256=
|
103
|
+
wandb/old/settings.py,sha256=NA-MeOiXUnkq-se4d_icvzP6DEUzP8DqnEN1_v2ZOyo,4445
|
99
104
|
wandb/old/summary.py,sha256=_t5LpFr9QEVU5QKBNqYA-su-ZK2G0OE_F7FhvFNjxi4,13808
|
100
105
|
wandb/plot/__init__.py,sha256=jXbVV7QdFRwcSbaWEr_J6XHd3YksHaPrn4wHBQcEO0Y,480
|
101
|
-
wandb/plot/bar.py,sha256=
|
102
|
-
wandb/plot/confusion_matrix.py,sha256=
|
103
|
-
wandb/plot/histogram.py,sha256=
|
104
|
-
wandb/plot/line.py,sha256=
|
105
|
-
wandb/plot/line_series.py,sha256=
|
106
|
-
wandb/plot/pr_curve.py,sha256=
|
107
|
-
wandb/plot/roc_curve.py,sha256=
|
108
|
-
wandb/plot/scatter.py,sha256=
|
106
|
+
wandb/plot/bar.py,sha256=W_bQoPRMGZihcS6IYzEc9noWMy0FllsNuIj4PvajBVI,917
|
107
|
+
wandb/plot/confusion_matrix.py,sha256=JDIeBA6vPnykbZ6Tsq8rxJEVS1e2UOOYxtXVLa6mBZU,3206
|
108
|
+
wandb/plot/histogram.py,sha256=zWzXSIZIeDV5NfDmN9FnhFZoIF_BKpJFb4pPfTXeBeY,760
|
109
|
+
wandb/plot/line.py,sha256=kFy71bEUM1oS4Q-s4Or0AXgi99_D0ofMnfqYdVX7P2Q,942
|
110
|
+
wandb/plot/line_series.py,sha256=vEpPbIkmYzG_geS28V3T7BVNtJ94UFoi0GXiZqiNWd4,2757
|
111
|
+
wandb/plot/pr_curve.py,sha256=hInhp8yiFtiirHQKx2fap1gr4_3DEMH6o-c4DBb7isU,4716
|
112
|
+
wandb/plot/roc_curve.py,sha256=zzGa5EMz65C1mCH5nDJDJ7K0vkfP_ZXTSJupz95Uny4,3660
|
113
|
+
wandb/plot/scatter.py,sha256=k-ZCEQEZ9g6UK6Fctuqw2rPl-lamz_LiG4vubNJOATc,744
|
109
114
|
wandb/plots/__init__.py,sha256=jrxt1IM4KAqoFJAtroRU014TXToZ3sAsxHYilge9uI0,331
|
110
115
|
wandb/plots/explain_text.py,sha256=9XPPmhuRL382ni3Id14yugIjGzbi-P5t3eh3Ri-E3mo,1254
|
111
116
|
wandb/plots/heatmap.py,sha256=Rg04vq1uOyl8FwjHtyLCYPgQPLveDXMSGJkdmDHnOy4,2755
|
@@ -126,209 +131,219 @@ wandb/proto/wandb_telemetry_pb2.py,sha256=bhx6d4Gt6P8l3DTRS0NcjPelrkjVGMPkriohzG
|
|
126
131
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
127
132
|
wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4Nzw,2248
|
128
133
|
wandb/proto/v3/wandb_internal_pb2.py,sha256=qgGpq44m9a3_dRtbdZpay94R8J_-anaYJ_bdboag_ug,79464
|
129
|
-
wandb/proto/v3/wandb_server_pb2.py,sha256=
|
134
|
+
wandb/proto/v3/wandb_server_pb2.py,sha256=l8fk4O9pGC8_8oHxC3CacxDxW1KNy1ST49DS-s_VxIk,25856
|
130
135
|
wandb/proto/v3/wandb_server_pb2_grpc.py,sha256=wPgsoCB-OyZjN2f88vG1-SCFJtr6YOceKDSn2SolOiM,70982
|
131
|
-
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=
|
136
|
+
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=yv9W4LdtFOOxRDzHDpAPVa7NAdhVOh1r_VpEG0QBlpQ,11215
|
132
137
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
133
138
|
wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
|
134
139
|
wandb/proto/v4/wandb_internal_pb2.py,sha256=z9vL6zr4V-PWDIXpBeVqGQ5KvgsqkfwSIkbCPFn5LnA,36136
|
135
|
-
wandb/proto/v4/wandb_server_pb2.py,sha256=
|
140
|
+
wandb/proto/v4/wandb_server_pb2.py,sha256=GlaUcDwBOJnhRSuQW-ddGeyXrVVD1oj05pMprt6e5Is,13976
|
136
141
|
wandb/proto/v4/wandb_server_pb2_grpc.py,sha256=wPgsoCB-OyZjN2f88vG1-SCFJtr6YOceKDSn2SolOiM,70982
|
137
|
-
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=
|
142
|
+
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=CX220fSnk6dQtSCkSKRHHiITR_x_stWxkD9A2Ql-v2g,8662
|
138
143
|
wandb/sacred/__init__.py,sha256=2sCLXqvkwjEqOvPFdtAtmo80PY4hky7rj4owO5PoJWQ,80
|
139
|
-
wandb/sdk/__init__.py,sha256=
|
144
|
+
wandb/sdk/__init__.py,sha256=_dmAd0D7tTMYXpV_FqdGpAMSn6wtmsN5dEPoFlXaXmU,719
|
140
145
|
wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
|
141
|
-
wandb/sdk/wandb_artifacts.py,sha256=
|
142
|
-
wandb/sdk/wandb_config.py,sha256=
|
143
|
-
wandb/sdk/wandb_helper.py,sha256=
|
144
|
-
wandb/sdk/wandb_init.py,sha256=
|
145
|
-
wandb/sdk/wandb_login.py,sha256=
|
146
|
-
wandb/sdk/wandb_manager.py,sha256=
|
147
|
-
wandb/sdk/wandb_metric.py,sha256=
|
148
|
-
wandb/sdk/wandb_require.py,sha256=
|
149
|
-
wandb/sdk/wandb_require_helpers.py,sha256=
|
150
|
-
wandb/sdk/wandb_run.py,sha256=
|
151
|
-
wandb/sdk/wandb_save.py,sha256=
|
152
|
-
wandb/sdk/wandb_settings.py,sha256=
|
153
|
-
wandb/sdk/wandb_setup.py,sha256=
|
154
|
-
wandb/sdk/wandb_summary.py,sha256=
|
155
|
-
wandb/sdk/wandb_sweep.py,sha256=
|
156
|
-
wandb/sdk/wandb_watch.py,sha256=
|
146
|
+
wandb/sdk/wandb_artifacts.py,sha256=mRGmysixudVkOCLzyl2PB2pYJI8FWOZUZJiksD0p5HM,71556
|
147
|
+
wandb/sdk/wandb_config.py,sha256=MyA2T-M11WEPH1T9GICcCJqz0wMq6hmPAVuac91h93E,10104
|
148
|
+
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
149
|
+
wandb/sdk/wandb_init.py,sha256=iTiXzpCxYFXiEGzS_4P93CHwsTAyPUAzdJRDv7HRmCc,48458
|
150
|
+
wandb/sdk/wandb_login.py,sha256=N2L0Llb5adkMaZYO-vz9lh4l3KyMgtu6c9zSy6EdTvI,10046
|
151
|
+
wandb/sdk/wandb_manager.py,sha256=l2sHY64fck-hQ35pmnMgY5egmGix5icpVRohFe0RqMY,6991
|
152
|
+
wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
|
153
|
+
wandb/sdk/wandb_require.py,sha256=CsclI4T0RUhPGIOEtGbjtrtFmYj9NFtgAgHUEddVyNg,2732
|
154
|
+
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
155
|
+
wandb/sdk/wandb_run.py,sha256=2ODQw3QmtePve1I0UJ6wnxLfCnauQPyAlV02Wd-5PN4,142067
|
156
|
+
wandb/sdk/wandb_save.py,sha256=RJeT-_cpmtUxqNk3AmFVW1Tb8k5s46ylmvb8cw54Vks,181
|
157
|
+
wandb/sdk/wandb_settings.py,sha256=SKrzP5W5bN79Q2Pauk4-54kfS-4eh9EZqU-exx7xm7g,65061
|
158
|
+
wandb/sdk/wandb_setup.py,sha256=A-V4BO0Lrz8elnNhme0fQsg-TJx-YIEQBTX30Zo07j8,11079
|
159
|
+
wandb/sdk/wandb_summary.py,sha256=mhZPJ5zLGy2G7J7FGCPFCBIIfaXpLTVSI86drmaUFNY,4520
|
160
|
+
wandb/sdk/wandb_sweep.py,sha256=r4UFDiyECh314cCAb0QRBiRuclMx1TuHQFCt1la1Fmg,4633
|
161
|
+
wandb/sdk/wandb_watch.py,sha256=Yj573eCyEOc6ef4tqM7G9D-Epe_DtRveHQse1YrClO0,3876
|
157
162
|
wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
158
|
-
wandb/sdk/backend/backend.py,sha256=
|
163
|
+
wandb/sdk/backend/backend.py,sha256=2hLPAzK2NPrc5KPcwhuw5nBMH-mN2PjTAiHEp3aBgKM,9222
|
159
164
|
wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
160
|
-
wandb/sdk/data_types/_dtypes.py,sha256=
|
165
|
+
wandb/sdk/data_types/_dtypes.py,sha256=HvORRmmZNCKpvqLKLMqFJ86DI4l9V9h4gTPfbMj0Gjw,30320
|
161
166
|
wandb/sdk/data_types/_private.py,sha256=IEDH2Qu3YIVow2XbMs-7BhPo1qi42KkClSiRr6O6IVY,72
|
162
|
-
wandb/sdk/data_types/histogram.py,sha256=
|
163
|
-
wandb/sdk/data_types/html.py,sha256=
|
164
|
-
wandb/sdk/data_types/image.py,sha256=
|
165
|
-
wandb/sdk/data_types/molecule.py,sha256=
|
166
|
-
wandb/sdk/data_types/object_3d.py,sha256=
|
167
|
-
wandb/sdk/data_types/plotly.py,sha256=
|
168
|
-
wandb/sdk/data_types/saved_model.py,sha256=
|
167
|
+
wandb/sdk/data_types/histogram.py,sha256=8rdsa88g8tz-Z_4CUEDkjQjlsoQxLC-tXaYx09IL2HU,3228
|
168
|
+
wandb/sdk/data_types/html.py,sha256=q5mh6dfj_AxtLixZ4wLFp949ZP89k51QUKHovYZgbsM,3550
|
169
|
+
wandb/sdk/data_types/image.py,sha256=gNJjwYVQdjI4hi7qm0-ApqChAG82P8oUvIxhHnOkD9k,24318
|
170
|
+
wandb/sdk/data_types/molecule.py,sha256=Wn9HyWKRZgIH3rns8hESgvxfDhLZOLQCwmGdldoLifI,8579
|
171
|
+
wandb/sdk/data_types/object_3d.py,sha256=EG9wwEvaPK8-d10vEuQp2emV49Ju3Xq6FLlZxD4n5uQ,10939
|
172
|
+
wandb/sdk/data_types/plotly.py,sha256=2tiKI1W_kRwWfiArww831-JTGpTYub085APK3i05fcg,2944
|
173
|
+
wandb/sdk/data_types/saved_model.py,sha256=VWgbewAfwJ08mBK46k3AWlx7Cp-rpELhJuV3jXFMXhU,16452
|
169
174
|
wandb/sdk/data_types/utils.py,sha256=zMMVDEYfkSDChbF6ll7yeEXcmOBeTLLhvyS7d_GEvKc,6199
|
170
|
-
wandb/sdk/data_types/video.py,sha256=
|
175
|
+
wandb/sdk/data_types/video.py,sha256=jL5FvT1Pnqh5voKDH6y5Tmcs4fveTHuzM7pZSmWMJGA,8852
|
171
176
|
wandb/sdk/data_types/base_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
172
|
-
wandb/sdk/data_types/base_types/json_metadata.py,sha256=
|
173
|
-
wandb/sdk/data_types/base_types/media.py,sha256=
|
174
|
-
wandb/sdk/data_types/base_types/wb_value.py,sha256=
|
177
|
+
wandb/sdk/data_types/base_types/json_metadata.py,sha256=IrxagokEv6ow2tw1KXHFxBN6Fjf_KyiEi4o3GjwNRgs,1564
|
178
|
+
wandb/sdk/data_types/base_types/media.py,sha256=8hRKs1J88tHYJbpG9lJOkS23sohyEnzdw-PS3kxyvzM,12040
|
179
|
+
wandb/sdk/data_types/base_types/wb_value.py,sha256=92EqFVRcKky2Z1CK9jWz3JkVvtBpL6Z5Lu9ZOIFI1BU,11211
|
175
180
|
wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
176
|
-
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=
|
177
|
-
wandb/sdk/data_types/helper_types/classes.py,sha256=
|
178
|
-
wandb/sdk/data_types/helper_types/image_mask.py,sha256=
|
181
|
+
wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=75Zg-eVE3fa5pyqAFkHcAuKLi868WAPkxIB-7nIWQZM,12850
|
182
|
+
wandb/sdk/data_types/helper_types/classes.py,sha256=hhIgtyvrLeZ24qpTcYzH6BtTML1HdodsunAefRSwX9c,5545
|
183
|
+
wandb/sdk/data_types/helper_types/image_mask.py,sha256=e4Mzm4Wzk9feuTDIdPobJazF5koU58rd2WgJ3vEiF_M,8675
|
179
184
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
180
|
-
wandb/sdk/integration_utils/data_logging.py,sha256=
|
185
|
+
wandb/sdk/integration_utils/data_logging.py,sha256=kPBoELGQvCK6owfqBcn7qYn4zj-FNT40gjcdgVA4BJ4,19463
|
181
186
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
182
|
-
wandb/sdk/interface/artifacts.py,sha256=
|
187
|
+
wandb/sdk/interface/artifacts.py,sha256=mJFfw-VZj-RToG8oIikAoowTY3nC4VcRr8fqllMwEC0,34075
|
183
188
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
184
|
-
wandb/sdk/interface/interface.py,sha256=
|
185
|
-
wandb/sdk/interface/interface_grpc.py,sha256=
|
186
|
-
wandb/sdk/interface/interface_queue.py,sha256=
|
187
|
-
wandb/sdk/interface/interface_relay.py,sha256=
|
188
|
-
wandb/sdk/interface/interface_shared.py,sha256=
|
189
|
-
wandb/sdk/interface/interface_sock.py,sha256=
|
190
|
-
wandb/sdk/interface/message_future.py,sha256=
|
191
|
-
wandb/sdk/interface/message_future_poll.py,sha256=
|
192
|
-
wandb/sdk/interface/router.py,sha256=
|
193
|
-
wandb/sdk/interface/router_queue.py,sha256=
|
194
|
-
wandb/sdk/interface/router_relay.py,sha256=
|
195
|
-
wandb/sdk/interface/router_sock.py,sha256=
|
196
|
-
wandb/sdk/interface/summary_record.py,sha256
|
189
|
+
wandb/sdk/interface/interface.py,sha256=urNyEPHc6wQz4cGeE5SyVgXLXL5g8ANUp2_VtlaeFJs,29398
|
190
|
+
wandb/sdk/interface/interface_grpc.py,sha256=cM35_zf_PD0YbDTtu-mRyA3Ku-iPMc9Z0V_L4_7PO4Y,15482
|
191
|
+
wandb/sdk/interface/interface_queue.py,sha256=eCvNpvwMe1GHJv_5M8R3ZSspmEvE02mXMstBDBEZy8A,1967
|
192
|
+
wandb/sdk/interface/interface_relay.py,sha256=vQUrk5KESKInZsXpOxWF4YcWRZFLJjNz1mdNywbWbbE,1514
|
193
|
+
wandb/sdk/interface/interface_shared.py,sha256=R8tRnZZiwjgpYueykXj84XYTmuRkVU9ISprxT9FS7Jo,23781
|
194
|
+
wandb/sdk/interface/interface_sock.py,sha256=SShxafIWt790CpauZz2bZ_Tyturti5jE0jZ6bT5stcs,3081
|
195
|
+
wandb/sdk/interface/message_future.py,sha256=5OMApIUKTXLHP98ph_jCdshuPZB_E0Uf3UGZpOQ8sik,685
|
196
|
+
wandb/sdk/interface/message_future_poll.py,sha256=drjrcBKswYPYJJQLFlj7UDXq7_zg7KNcObFVetsbvhQ,1410
|
197
|
+
wandb/sdk/interface/router.py,sha256=FNNwL0l_rYmkniRi3J4bFu0Krmi2ufCLkjD-zfgwbZY,3488
|
198
|
+
wandb/sdk/interface/router_queue.py,sha256=7TImXbpuwgn3iUw6kcNyC_nZ3APaBrojZyz1xDWgehI,1196
|
199
|
+
wandb/sdk/interface/router_relay.py,sha256=wjV6qPtZ5Lqdg8PNhyUrKLsidm71YMwBRwBIirbVGo4,1043
|
200
|
+
wandb/sdk/interface/router_sock.py,sha256=7-J3SFhnaqPohYaUyljwpbsvYPBXA-ZTENYnXxzbh9U,1060
|
201
|
+
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
197
202
|
wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
198
|
-
wandb/sdk/internal/artifacts.py,sha256=
|
203
|
+
wandb/sdk/internal/artifacts.py,sha256=kVbcv717vhc-LGpgYTrJVlnySnvPcomlDgge8_56DWQ,11733
|
199
204
|
wandb/sdk/internal/context.py,sha256=dnmsKEoQ2xOtmXM5OBVHdyGO3XdTQrqjxfb1lRADSTc,2518
|
200
|
-
wandb/sdk/internal/datastore.py,sha256=
|
201
|
-
wandb/sdk/internal/file_pusher.py,sha256=
|
202
|
-
wandb/sdk/internal/file_stream.py,sha256=
|
205
|
+
wandb/sdk/internal/datastore.py,sha256=hSFz8GVXESSW7u759_782Joq2j5aVnkC4AumHI7Hs9o,9790
|
206
|
+
wandb/sdk/internal/file_pusher.py,sha256=kiZt912jWnENz9B718xpeNouq9OfpwzxOzgPeYl31Tk,5584
|
207
|
+
wandb/sdk/internal/file_stream.py,sha256=zkgRlto6YIE8KKdW9wLD7ZdfDl1s21g8CQff8neYKtg,25494
|
203
208
|
wandb/sdk/internal/flow_control.py,sha256=0D6AO8nZN6wGO46g6vdj_Lc4w2EztyLdxi7ydMICRA8,8587
|
204
|
-
wandb/sdk/internal/handler.py,sha256=
|
205
|
-
wandb/sdk/internal/internal.py,sha256=
|
206
|
-
wandb/sdk/internal/internal_api.py,sha256=
|
209
|
+
wandb/sdk/internal/handler.py,sha256=aGyXyML8AelYSjWeg8WhIKiZnN__Ti7xXUBfMJKCmoI,31616
|
210
|
+
wandb/sdk/internal/internal.py,sha256=mz3ki8uFttOo0Zbq5SV_83Y1pJkBj5Uc7imSStFhLxg,12838
|
211
|
+
wandb/sdk/internal/internal_api.py,sha256=AC0XKm78cBo0BVkSYRStcvpeR1q_5wdf4DDE_s0CgLw,110317
|
207
212
|
wandb/sdk/internal/internal_util.py,sha256=1BI2ol9hhRukU7zBPbPhUcUXa58i4vLa4ocgBUya6pQ,2655
|
208
|
-
wandb/sdk/internal/job_builder.py,sha256=
|
209
|
-
wandb/sdk/internal/profiler.py,sha256=
|
210
|
-
wandb/sdk/internal/progress.py,sha256=
|
213
|
+
wandb/sdk/internal/job_builder.py,sha256=xlArhh2a7jE8rYlbBU5NDtt0Lau9cDWWExhRDDkiWXU,7788
|
214
|
+
wandb/sdk/internal/profiler.py,sha256=ZpPXJJZhkml3ZL8HPbB-vZGAVPZUv0Wv-nWjOnCMXPg,2350
|
215
|
+
wandb/sdk/internal/progress.py,sha256=8h-skin1d0UmY73909rPgoxUDHUpk2Ur_jdra3aBMJI,2447
|
211
216
|
wandb/sdk/internal/run.py,sha256=zZVFW3o78iQO6Yl74pJnEI_X4Qi1b1Y5NXD3VDDxwkU,681
|
212
|
-
wandb/sdk/internal/sample.py,sha256=
|
213
|
-
wandb/sdk/internal/sender.py,sha256=
|
214
|
-
wandb/sdk/internal/settings_static.py,sha256=
|
215
|
-
wandb/sdk/internal/tb_watcher.py,sha256=
|
217
|
+
wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,2442
|
218
|
+
wandb/sdk/internal/sender.py,sha256=A2qQYOoVIlrfilX-wXanvxTGr2fZHfWwt0NgA2jR3xg,62057
|
219
|
+
wandb/sdk/internal/settings_static.py,sha256=qxOcCFvKLsQ-AnpLRnRDmgy7ISg9SU0U89q1bpFgUTw,2925
|
220
|
+
wandb/sdk/internal/tb_watcher.py,sha256=ekM3wzkIvVKbilVCzI4dInfY-2pGYFDlBSutGhzaX1s,18376
|
216
221
|
wandb/sdk/internal/update.py,sha256=ymT7tdL-jrMrIkvxqXjYyBbHzR7Q3cwvoeivTS2qqkY,3885
|
217
222
|
wandb/sdk/internal/writer.py,sha256=Y9INh44K3ltO2tfjaQbK3p0v1wgQDxCNHbgwVfNRgj8,7399
|
218
223
|
wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
219
|
-
wandb/sdk/internal/system/system_info.py,sha256=
|
220
|
-
wandb/sdk/internal/system/system_monitor.py,sha256=
|
221
|
-
wandb/sdk/internal/system/assets/__init__.py,sha256=
|
224
|
+
wandb/sdk/internal/system/system_info.py,sha256=qEell4Mx1HRGU_22lw0QXoRU_w1IlbfPUkR6ZYcvNmI,10498
|
225
|
+
wandb/sdk/internal/system/system_monitor.py,sha256=pU-M64QcJFUwW1PRcWAccKTv3LCbFBaD4a16ABdv9wk,8445
|
226
|
+
wandb/sdk/internal/system/assets/__init__.py,sha256=y72XEXH860zIUeFO2fmRnIF_g6fB7VZ-RhzhDu9g17c,461
|
222
227
|
wandb/sdk/internal/system/assets/aggregators.py,sha256=EzJp_YjvYORcBH6g58OsqGtmy55HqYHYMAvaIsp2Iwg,1093
|
223
228
|
wandb/sdk/internal/system/assets/asset_registry.py,sha256=NYSoCDya3Wh7ytBJOE-tNySdPpLYnSghM6CzS9-I4nk,478
|
224
|
-
wandb/sdk/internal/system/assets/cpu.py,sha256=
|
225
|
-
wandb/sdk/internal/system/assets/disk.py,sha256=
|
226
|
-
wandb/sdk/internal/system/assets/gpu.py,sha256=
|
227
|
-
wandb/sdk/internal/system/assets/gpu_apple.py,sha256=
|
228
|
-
wandb/sdk/internal/system/assets/interfaces.py,sha256=
|
229
|
-
wandb/sdk/internal/system/assets/ipu.py,sha256=
|
230
|
-
wandb/sdk/internal/system/assets/memory.py,sha256=
|
231
|
-
wandb/sdk/internal/system/assets/network.py,sha256=
|
232
|
-
wandb/sdk/internal/system/assets/
|
233
|
-
wandb/sdk/internal/system/assets/
|
229
|
+
wandb/sdk/internal/system/assets/cpu.py,sha256=3QKraM7ZYN2vXAiVGpI7PAIb26yI_JfkolZ8TfMjhcs,4599
|
230
|
+
wandb/sdk/internal/system/assets/disk.py,sha256=C22gQ5CpOajjPJy_JixPZ4igt61Rq-of8upnRdauon8,1984
|
231
|
+
wandb/sdk/internal/system/assets/gpu.py,sha256=U6Pb8NMJkwo4yd_xVVQSKkdp76_C5AL0m_BDWFHigGI,12167
|
232
|
+
wandb/sdk/internal/system/assets/gpu_apple.py,sha256=vBfTVrxNa8F63dFPwA54XlFdfvtyp5_HQiNmt5C63cI,3886
|
233
|
+
wandb/sdk/internal/system/assets/interfaces.py,sha256=GEbWgJJtmpf7wfE2QUUnW6F5iuxhYpbqo5tm9MXP0ug,6447
|
234
|
+
wandb/sdk/internal/system/assets/ipu.py,sha256=FnTXBVTyauoPGBpl4AnnMJl9nRudcjmSNFRM4V99op4,5332
|
235
|
+
wandb/sdk/internal/system/assets/memory.py,sha256=_yQBttoZSS_c0rEPJymWlAe2J50vxBEoxhRN6U6qX6I,4307
|
236
|
+
wandb/sdk/internal/system/assets/network.py,sha256=sW1aYHdzugFYqQ1gf-XjcLj3BQMIsecqgqo9hyJ2VYA,3409
|
237
|
+
wandb/sdk/internal/system/assets/open_metrics.py,sha256=p6u8ygyZQnD66Ve96qbP6fzH6FrRki4suPM__joCFbw,9052
|
238
|
+
wandb/sdk/internal/system/assets/tpu.py,sha256=Iac09nmjUgV6Zm3zfbI8J9wYww671askzvXcovvfn48,4918
|
239
|
+
wandb/sdk/internal/system/assets/trainium.py,sha256=Kl0Y89Bic1OqjmKhtL1wyOB8AnKl5cULAkoYmjZXX54,12340
|
234
240
|
wandb/sdk/launch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
235
|
-
wandb/sdk/launch/_project_spec.py,sha256=
|
236
|
-
wandb/sdk/launch/github_reference.py,sha256=
|
237
|
-
wandb/sdk/launch/launch.py,sha256=
|
238
|
-
wandb/sdk/launch/launch_add.py,sha256=
|
239
|
-
wandb/sdk/launch/
|
240
|
-
wandb/sdk/launch/
|
241
|
+
wandb/sdk/launch/_project_spec.py,sha256=OzRlnrUo470ekXldX2XXNuzzYQ2GLUfOD5uVBA68gnw,19787
|
242
|
+
wandb/sdk/launch/github_reference.py,sha256=aSTDKT_WMGkci8_TPg2ICPdhiMLCnAy5ZyU17x_qIGY,8275
|
243
|
+
wandb/sdk/launch/launch.py,sha256=8KpqUIIBuIPlheYXPrh0bLLgBvVZ6Y7q79Akqldc7Ao,11020
|
244
|
+
wandb/sdk/launch/launch_add.py,sha256=1AQ454hBd5opE7m92Boa7Bx4n2yVkG2ne7zGeM6662w,7785
|
245
|
+
wandb/sdk/launch/loader.py,sha256=IsaJCS2GpZMgS8EaqRT8M0ZAzNc-NP8hjL29_Eq42UM,8213
|
246
|
+
wandb/sdk/launch/utils.py,sha256=ocrHRoWPfwEn1O6dx1_jIunoZ_8S3hjnqCJJ-eZPvsE,24486
|
247
|
+
wandb/sdk/launch/wandb_reference.py,sha256=t4REjZz5lwB9fjDW2eo8uRgw9KeLsPeZ1Uu8tiFDBfA,4253
|
241
248
|
wandb/sdk/launch/agent/__init__.py,sha256=nwGHzJptq87cXCSAJi7Wv2ShL-HZwDgMo2aFC2Rh20w,85
|
242
|
-
wandb/sdk/launch/agent/agent.py,sha256=
|
249
|
+
wandb/sdk/launch/agent/agent.py,sha256=DytOM-Evzqnvr1L_Kt0B23An9T7jby1Q9AkzO8FrhxI,19078
|
243
250
|
wandb/sdk/launch/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
244
|
-
wandb/sdk/launch/builder/abstract.py,sha256=
|
245
|
-
wandb/sdk/launch/builder/build.py,sha256=
|
246
|
-
wandb/sdk/launch/builder/
|
247
|
-
wandb/sdk/launch/builder/
|
248
|
-
wandb/sdk/launch/builder/
|
249
|
-
wandb/sdk/launch/builder/
|
250
|
-
wandb/sdk/launch/
|
251
|
+
wandb/sdk/launch/builder/abstract.py,sha256=nFrbUU7HBeJRYMrAy_EUbfGdGi2wAMNT5BubPpTwK7w,2469
|
252
|
+
wandb/sdk/launch/builder/build.py,sha256=aF24pxsNLcv7vPCbcwlXcTapvIn-gYZ2Q-PXhkBtaOI,20018
|
253
|
+
wandb/sdk/launch/builder/docker_builder.py,sha256=ovlDQ_RweyYH8wqKKC9C_ZxyLHsUgezTmq-p3VKyBpQ,6045
|
254
|
+
wandb/sdk/launch/builder/kaniko_builder.py,sha256=3AuY3eYidazWrYYfv0z68OnlkJj1_3Qj6w4mats2Zdk,15938
|
255
|
+
wandb/sdk/launch/builder/noop.py,sha256=3ZSGWKYX_ahm7Qt-Z1tXC_eyTRrqenytWbC37Wm3Akg,1490
|
256
|
+
wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=k29ACdlAfC6gxEFBo7c5F6VbVVYv3t9-6a6nfNZDiFk,5817
|
257
|
+
wandb/sdk/launch/environment/abstract.py,sha256=k65QRutKWOB6LFTrIMHP8GkWe5MWJYKk5YWFjWEIF3E,926
|
258
|
+
wandb/sdk/launch/environment/aws_environment.py,sha256=cwYVxQ6sWnxhv97ftIBeR9UbZH8ro-1zo6HgjH1LGmQ,9967
|
259
|
+
wandb/sdk/launch/environment/gcp_environment.py,sha256=vksFQyHH7k0oKFHXlzFe4kJ3_8CDaUxsb9ptlbrpPvU,10103
|
260
|
+
wandb/sdk/launch/environment/local_environment.py,sha256=pV7moIX4XuKG5vf64vqGu4yTLUwNQe-eg83iLMd2ilc,2226
|
261
|
+
wandb/sdk/launch/registry/abstract.py,sha256=3lCuTdqDAAIV_nmgGTfSd2gc1-02dTo5lY-KpuXj-wc,1400
|
262
|
+
wandb/sdk/launch/registry/elastic_container_registry.py,sha256=zfpDYJqZnNr9kJkL_HNvFNl5K_cSNngGlXevJlVM6G8,5759
|
263
|
+
wandb/sdk/launch/registry/google_artifact_registry.py,sha256=RHgg9j02JGmRebeqFhoIDD71IaZqWVIf3vZM1R2zfGI,7133
|
264
|
+
wandb/sdk/launch/registry/local_registry.py,sha256=851LoTJO9G08JZgxMmwMimiNH7OHxltjIj_tlpqf8ro,1720
|
251
265
|
wandb/sdk/launch/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
252
|
-
wandb/sdk/launch/runner/abstract.py,sha256=
|
253
|
-
wandb/sdk/launch/runner/
|
254
|
-
wandb/sdk/launch/runner/
|
255
|
-
wandb/sdk/launch/runner/
|
256
|
-
wandb/sdk/launch/runner/
|
257
|
-
wandb/sdk/launch/runner/
|
258
|
-
wandb/sdk/launch/
|
259
|
-
wandb/sdk/launch/sweeps/
|
260
|
-
wandb/sdk/launch/sweeps/
|
261
|
-
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=Zs9LMV7wBpVxJ-4B74y1yiENqX2CVOOtodbPfILwbKs,6193
|
266
|
+
wandb/sdk/launch/runner/abstract.py,sha256=Lgoylgg5ifuwBLL_bhNzM1Q5mXUaG4adIbkrfzsnKCU,5192
|
267
|
+
wandb/sdk/launch/runner/kubernetes_runner.py,sha256=YnGxySJqu795cg3DI0Nnf0dREdW0yVbvCxVtWBZcdwY,18732
|
268
|
+
wandb/sdk/launch/runner/local_container.py,sha256=wGhfwlQj6bfnf3fc4VxOy8grLOo-NLO0Y9XG2xqY-N8,8257
|
269
|
+
wandb/sdk/launch/runner/local_process.py,sha256=4n7YQcYhUVQhXl_qMdypgo6hapy96V2UaHK4uLb965o,3280
|
270
|
+
wandb/sdk/launch/runner/sagemaker_runner.py,sha256=EL7Wo04Dlerv87Vv5W20XhOnoz0Idg4WWICG_lo7uHM,12085
|
271
|
+
wandb/sdk/launch/runner/vertex_runner.py,sha256=yEBSFl2_cFyTuKs6uUnpX4uKN-JRcuI_2OuIkTeqH_0,7195
|
272
|
+
wandb/sdk/launch/sweeps/__init__.py,sha256=ROE75akKQpMzkZKZ-dg_deCyluQr0u2oo617DIsWt-c,958
|
273
|
+
wandb/sdk/launch/sweeps/scheduler.py,sha256=pYT-ZHsx68l_h3vEcscx3cHL8R9zmAP268D87o4n2_w,11722
|
274
|
+
wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=GLcB3RsOTX2ZQ914nR17MnNL765l57V_7MSKmfGYuB8,5891
|
262
275
|
wandb/sdk/lib/__init__.py,sha256=PeqhRWcgiOzo6LliKn8UgNOXMzbr2k0dx5egTAKa7g4,149
|
276
|
+
wandb/sdk/lib/_settings_toposort_generate.py,sha256=8xNbH9JAMDyOcga0p_nfUoWqQdR1AUMBGUDplYbQiyY,5272
|
277
|
+
wandb/sdk/lib/_settings_toposort_generated.py,sha256=9cbq8XhsZ95rIQc6UXjcS2QKdkQUq63f2XETkNm0S-4,3997
|
263
278
|
wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
|
264
279
|
wandb/sdk/lib/_wburls_generated.py,sha256=VNnkfin4TRuiRGiQUA66onr3BEZhQLHw4Arkw4ue7R4,383
|
265
|
-
wandb/sdk/lib/apikey.py,sha256=
|
266
|
-
wandb/sdk/lib/config_util.py,sha256=
|
267
|
-
wandb/sdk/lib/console.py,sha256=
|
268
|
-
wandb/sdk/lib/deprecate.py,sha256=
|
280
|
+
wandb/sdk/lib/apikey.py,sha256=M1NwGlFxhI7OTjLD739tKQXG7syLa3iUvz1l3v7c-Tk,7888
|
281
|
+
wandb/sdk/lib/config_util.py,sha256=5wXtrq0ziMLJxapwHfgvqZlvUqbOXngtWgBPNBcAb-8,3877
|
282
|
+
wandb/sdk/lib/console.py,sha256=GH32XoKZLFiKsP7Tajtss7dfjnyyo7fLVJzvQ86B8TE,1031
|
283
|
+
wandb/sdk/lib/deprecate.py,sha256=r8kT4UY2DSG7V5N78MG46kQOzycBp3_8lH49KnDXxXM,1462
|
269
284
|
wandb/sdk/lib/disabled.py,sha256=-REmuFxa43C5k4pzhR8k7EshPUUHRdqsgL8qi0Jt2gA,3577
|
270
285
|
wandb/sdk/lib/exit_hooks.py,sha256=099jAO8-1lNEvK0hlqc0K66o0VjGmSifaPezvPsLRwY,1541
|
271
|
-
wandb/sdk/lib/file_stream_utils.py,sha256=
|
272
|
-
wandb/sdk/lib/filenames.py,sha256=
|
273
|
-
wandb/sdk/lib/filesystem.py,sha256=
|
286
|
+
wandb/sdk/lib/file_stream_utils.py,sha256=nGzraU0hjn5t8RDtSDM4jjcQL2SBIuu3m6unFUUyDR0,4023
|
287
|
+
wandb/sdk/lib/filenames.py,sha256=82owEoViGpSnItA1IyT7LW5MvrQg6Dgz2zAOU5SG51k,1283
|
288
|
+
wandb/sdk/lib/filesystem.py,sha256=CnORcmgEn1HyQKew1uUEQKeF0M_lj7_0mTGMEpZgxYo,4065
|
274
289
|
wandb/sdk/lib/fsm.py,sha256=WTomGpMKFf7q183FJ-Dn4sWWKTY8MYrDOPZ15IGmhZQ,5311
|
275
|
-
wandb/sdk/lib/git.py,sha256=
|
290
|
+
wandb/sdk/lib/git.py,sha256=EL_1coHW7HcOACX2wheReY2c1yQbtVTTy6sERHA9Y6I,7110
|
276
291
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
277
292
|
wandb/sdk/lib/hashutil.py,sha256=dhEJn8ASC_7d6FQRwV7ZZp-19wnqgSTe2M4txlBVtcQ,1326
|
278
|
-
wandb/sdk/lib/import_hooks.py,sha256=
|
279
|
-
wandb/sdk/lib/ipython.py,sha256=
|
280
|
-
wandb/sdk/lib/lazyloader.py,sha256=
|
281
|
-
wandb/sdk/lib/mailbox.py,sha256=
|
293
|
+
wandb/sdk/lib/import_hooks.py,sha256=nNS82Jw9W0Lo5FH4z4RKKooM-ZOIldA2kFXnxOKKBNQ,8370
|
294
|
+
wandb/sdk/lib/ipython.py,sha256=VdMxKMFVT1WBnSTPpYM8T-hNtgLv3JpOts2Rt0WFm8o,3795
|
295
|
+
wandb/sdk/lib/lazyloader.py,sha256=3lWdk-WxWCwbZFnOxNOfTPCaaNxwPUePnqNaIZpievU,1878
|
296
|
+
wandb/sdk/lib/mailbox.py,sha256=AA7t1tG4oclHfKz7GEmPMicX7_JHP3bINavTYW6OL10,14250
|
282
297
|
wandb/sdk/lib/module.py,sha256=nhXo7OJGGqbJTd2iraxQsGoCB7Qh8nQZjxfjtn5wnKo,1604
|
283
298
|
wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
|
284
299
|
wandb/sdk/lib/printer.py,sha256=39FwWA-m9hTE6tHkj8zQIPIU3-wTiCZUo_bGOxXEC4w,9472
|
285
|
-
wandb/sdk/lib/proto_util.py,sha256=
|
286
|
-
wandb/sdk/lib/redirect.py,sha256=
|
287
|
-
wandb/sdk/lib/reporting.py,sha256=
|
288
|
-
wandb/sdk/lib/retry.py,sha256=
|
289
|
-
wandb/sdk/lib/runid.py,sha256=
|
290
|
-
wandb/sdk/lib/server.py,sha256=
|
291
|
-
wandb/sdk/lib/sock_client.py,sha256=
|
292
|
-
wandb/sdk/lib/sparkline.py,sha256=
|
300
|
+
wandb/sdk/lib/proto_util.py,sha256=H62uem0Xrl1E5FoLfa58rEid93Y_CG59yo7_B7-4vZQ,3553
|
301
|
+
wandb/sdk/lib/redirect.py,sha256=Y78uokgGPGv1OtaKJuYzOqg3zRngY6BeOUt3BVLRcPU,26057
|
302
|
+
wandb/sdk/lib/reporting.py,sha256=sfjVyNtNVOWFIcKihS-9C0yJhCAaUOUP3N3TDdyA-Fc,2410
|
303
|
+
wandb/sdk/lib/retry.py,sha256=fDkPqAW8xEWz5CZsAxXq_xKL_VGEeWlPXghv7wNOL24,10081
|
304
|
+
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
305
|
+
wandb/sdk/lib/server.py,sha256=R8E-IqjtAvC7yLChNf2GxRNXrzJ8OMPph3RPU0IzxHo,1684
|
306
|
+
wandb/sdk/lib/sock_client.py,sha256=blX1CyB247GdXgwHQY4RqH3J8FW1-dD31LVyj6mOG5M,10388
|
307
|
+
wandb/sdk/lib/sparkline.py,sha256=SbeX9FkaU47BMi0-HtnpCh_cBHsUSl5n1vL7vVL9e60,1373
|
293
308
|
wandb/sdk/lib/telemetry.py,sha256=OdBUbhUAU1LPDJJmW5Rm6GkRDRPpeCk2SP61XUQYm2g,2752
|
294
309
|
wandb/sdk/lib/timed_input.py,sha256=D7vx3N3m4LlxwkQpzS7lDi7IOnccqZ3WfLlDYRs8Oes,3229
|
295
310
|
wandb/sdk/lib/tracelog.py,sha256=OfjV6Mx04tWJ_qvcT7PGu7MetBaF9sC-uocGVSbh_Io,7543
|
296
|
-
wandb/sdk/lib/wburls.py,sha256=
|
311
|
+
wandb/sdk/lib/wburls.py,sha256=6KqAiTjrxPHlIw4j9Li6l66F9TPC7N5fwWKSMBk3k8A,1315
|
297
312
|
wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
298
313
|
wandb/sdk/service/_startup_debug.py,sha256=t9XV0E2e6z1l7DGBc-JivqePi6BbTwh3MwpBU1pFhRA,594
|
299
|
-
wandb/sdk/service/port_file.py,sha256=
|
314
|
+
wandb/sdk/service/port_file.py,sha256=OXiXpHA1XjLsoWizfOVaxR74w96j-KJI2XlnoVY-xH8,2002
|
300
315
|
wandb/sdk/service/server.py,sha256=GWkOsGxjCfA4d6n3VXFBezc5Olns3lb_qPXIMSHv2LI,5079
|
301
316
|
wandb/sdk/service/server_grpc.py,sha256=e_cM6w8lyNUMefsavyyUG38-OlcKw2lJNjVPtyTkeFU,16202
|
302
317
|
wandb/sdk/service/server_sock.py,sha256=L3tA-sLgHGWoTRq5UxSnnE0WHrNi03zRyppPc0Jmm14,9749
|
303
|
-
wandb/sdk/service/service.py,sha256=
|
304
|
-
wandb/sdk/service/service_base.py,sha256=
|
318
|
+
wandb/sdk/service/service.py,sha256=D2e3vUgYpJnmbyWTnqoZxkpULsdoCYS6DKSJs4YPuvU,7580
|
319
|
+
wandb/sdk/service/service_base.py,sha256=kFwGxPNCUDOFeul7L6kOVP1kqamJe8FN--6SFQpxfOY,2878
|
305
320
|
wandb/sdk/service/service_grpc.py,sha256=-2VtTnpgf56AgHcDHhwgA4EyEpiQan-0qP_nZgy8HGM,2458
|
306
321
|
wandb/sdk/service/service_sock.py,sha256=xPrt2ilchSACfp4-hQ-z1MOXzpour-Jr70swPH83Es8,2364
|
307
322
|
wandb/sdk/service/streams.py,sha256=z9gze7cHJiNXZAhSU7ojKujBXnh8yEoCAaE6BuLXbvQ,14801
|
308
323
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
309
|
-
wandb/sdk/verify/verify.py,sha256=
|
324
|
+
wandb/sdk/verify/verify.py,sha256=JrAg2Wc8ZXPvSV3xTHXFxTRB4lrtLsuu8R0gqwwX7jc,16512
|
310
325
|
wandb/sklearn/__init__.py,sha256=aWYFigKCNvEhTILHouDyo7j8pUZayo5v2AnRdbYp2vM,860
|
311
326
|
wandb/sklearn/utils.py,sha256=QoYf5--o6a1Mcd7TuQequZVjG7YuVK1C2fQ4HP7tAwI,5902
|
312
327
|
wandb/sklearn/calculate/__init__.py,sha256=T19bKtuyTbRNzcIg3QbnRD8vm085QJXQFZfQ_STjrCk,1055
|
313
328
|
wandb/sklearn/calculate/calibration_curves.py,sha256=EfyHvTJWANdhojIywQcxhJ9crUkmL01cuXktocuiVHI,3785
|
314
329
|
wandb/sklearn/calculate/class_proportions.py,sha256=1UtzZH3IuDX8-JWOZHyLiRr_HMM3ghYd-JptBFT3NWQ,2107
|
315
|
-
wandb/sklearn/calculate/confusion_matrix.py,sha256=
|
330
|
+
wandb/sklearn/calculate/confusion_matrix.py,sha256=rBBhABYe3a_6Czadt3eU3iu5kKHe6pg3Zn5IQpBbTn4,2543
|
316
331
|
wandb/sklearn/calculate/decision_boundaries.py,sha256=jHpx3WN6_Dbv3C4mUrRegZYmi5NnT-8SJGKkXpNG4Qo,1087
|
317
332
|
wandb/sklearn/calculate/elbow_curve.py,sha256=eZ3aBuSUw0FlfseF5xwYwXCo74Fmrs4PTt95cOMlHPw,1451
|
318
333
|
wandb/sklearn/calculate/feature_importances.py,sha256=MyhIsOac3P43wDyExblzfFK54ZI2-FfAZpF9jK7is5o,2261
|
319
|
-
wandb/sklearn/calculate/learning_curve.py,sha256=
|
334
|
+
wandb/sklearn/calculate/learning_curve.py,sha256=zNGKMQggOH_yR_8hIfbXMfK-Ndpm7VnTfBj8ta2KzKo,1702
|
320
335
|
wandb/sklearn/calculate/outlier_candidates.py,sha256=nrfrSrg3gHFpyL8Mn0LUp7dfJAgIYFejCv7qC0DXBM4,1920
|
321
336
|
wandb/sklearn/calculate/residuals.py,sha256=zoEQ9Q_YjG0b5Nm-1SbdD5x_B_oGu37GhvW4VdztskU,2345
|
322
337
|
wandb/sklearn/calculate/silhouette.py,sha256=F1pUOoA567tmOUQvTTqcXHaBKJFMQAw0Y5IRfWevzr0,3295
|
323
|
-
wandb/sklearn/calculate/summary_metrics.py,sha256=
|
324
|
-
wandb/sklearn/plot/__init__.py,sha256=
|
325
|
-
wandb/sklearn/plot/classifier.py,sha256=
|
326
|
-
wandb/sklearn/plot/clusterer.py,sha256=
|
327
|
-
wandb/sklearn/plot/regressor.py,sha256=
|
328
|
-
wandb/sklearn/plot/shared.py,sha256=
|
329
|
-
wandb/sync/__init__.py,sha256=
|
330
|
-
wandb/sync/sync.py,sha256=
|
331
|
-
wandb/testing/relay.py,sha256
|
338
|
+
wandb/sklearn/calculate/summary_metrics.py,sha256=ya29usT864Dgbzm_7fyxJu61kR-OkZ4H6j2VIZBFPHU,1984
|
339
|
+
wandb/sklearn/plot/__init__.py,sha256=R2YTh2kfWYLghYr6L2cyTRK6legRJI72Yzm2g6iigZA,1367
|
340
|
+
wandb/sklearn/plot/classifier.py,sha256=LmZIFCu_jBZ1Cy-ocvoZ_6dGW-zMY8BEbF_6BqZGg_k,11790
|
341
|
+
wandb/sklearn/plot/clusterer.py,sha256=_zeNa_DgNT7YeRuTFiFbgpIGL_dUV8lmQqFztJ7R10M,4847
|
342
|
+
wandb/sklearn/plot/regressor.py,sha256=yw3sFuWGDeD_mByi-Xuef79_4zdpE6ODJyIPiYEY0z8,3905
|
343
|
+
wandb/sklearn/plot/shared.py,sha256=_BMOiBmwNO_vIH5f2SDQcPASrJabxmRuKuELwA27-9k,2732
|
344
|
+
wandb/sync/__init__.py,sha256=vZMKb-AOlEwKQf4GNTndrgHuvGCeDMDTZAVwimtXZ0o,101
|
345
|
+
wandb/sync/sync.py,sha256=gdLj7biCZllbK4a0dCvAR7kh3WMRfin4O7wPHfdlAQ4,14859
|
346
|
+
wandb/testing/relay.py,sha256=DNTk5Yd8yUn39ZfxAd0D1q-N093PIwhJVPeO6pMLXoo,25127
|
332
347
|
wandb/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
333
348
|
wandb/vendor/gql-0.2.0/setup.py,sha256=_osNap_aCOVvTlDwP9f-aI10TJbpIflxcG6fEQoAxNs,1314
|
334
349
|
wandb/vendor/gql-0.2.0/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -712,10 +727,10 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=cJIaJ2EQso
|
|
712
727
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2NpFcq9UVLIS-tsS0TS_Qw8akhKxn2eY,1506
|
713
728
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
|
714
729
|
wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
|
715
|
-
wandb/xgboost/__init__.py,sha256=
|
716
|
-
wandb-0.
|
717
|
-
wandb-0.
|
718
|
-
wandb-0.
|
719
|
-
wandb-0.
|
720
|
-
wandb-0.
|
721
|
-
wandb-0.
|
730
|
+
wandb/xgboost/__init__.py,sha256=GRixyb89ki1Znfw48RRiRPxZnK41aEj1L48bBG6-Kh0,230
|
731
|
+
wandb-0.14.0.dist-info/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
732
|
+
wandb-0.14.0.dist-info/METADATA,sha256=rf29u6KpQheWvq4tiW_Y8C6kx-XrdlPaiaGuVbInlpw,7926
|
733
|
+
wandb-0.14.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
734
|
+
wandb-0.14.0.dist-info/entry_points.txt,sha256=5VEDOaS7CgcNfzb_FEaNkLS2AyPLzJJdY74xYYipTdQ,68
|
735
|
+
wandb-0.14.0.dist-info/top_level.txt,sha256=gPLPSekU6Labh_9yJz7WLb6Q9DK72I02_ARvDEG9Xsw,6
|
736
|
+
wandb-0.14.0.dist-info/RECORD,,
|