wandb 0.16.5__py3-none-any.whl → 0.17.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- package_readme.md +95 -0
- wandb/__init__.py +2 -3
- wandb/agents/pyagent.py +0 -1
- wandb/analytics/sentry.py +2 -1
- wandb/apis/importers/internals/internal.py +0 -1
- wandb/apis/importers/internals/protocols.py +30 -56
- wandb/apis/importers/mlflow.py +13 -26
- wandb/apis/importers/wandb.py +8 -14
- wandb/apis/internal.py +0 -3
- wandb/apis/public/api.py +55 -3
- wandb/apis/public/artifacts.py +1 -0
- wandb/apis/public/files.py +1 -0
- wandb/apis/public/history.py +1 -0
- wandb/apis/public/jobs.py +17 -4
- wandb/apis/public/projects.py +1 -0
- wandb/apis/public/reports.py +1 -0
- wandb/apis/public/runs.py +15 -17
- wandb/apis/public/sweeps.py +1 -0
- wandb/apis/public/teams.py +1 -0
- wandb/apis/public/users.py +1 -0
- wandb/apis/reports/v1/_blocks.py +3 -7
- wandb/apis/reports/v2/gql.py +1 -0
- wandb/apis/reports/v2/interface.py +3 -4
- wandb/apis/reports/v2/internal.py +5 -8
- wandb/cli/cli.py +95 -22
- wandb/data_types.py +9 -6
- wandb/docker/__init__.py +1 -1
- wandb/env.py +38 -8
- wandb/errors/__init__.py +5 -0
- wandb/errors/term.py +10 -2
- wandb/filesync/step_checksum.py +1 -4
- wandb/filesync/step_prepare.py +4 -24
- wandb/filesync/step_upload.py +4 -106
- wandb/filesync/upload_job.py +0 -76
- wandb/integration/catboost/catboost.py +1 -1
- wandb/integration/fastai/__init__.py +1 -0
- wandb/integration/huggingface/resolver.py +2 -2
- wandb/integration/keras/__init__.py +1 -0
- wandb/integration/keras/callbacks/metrics_logger.py +1 -1
- wandb/integration/keras/keras.py +7 -7
- wandb/integration/langchain/wandb_tracer.py +1 -0
- wandb/integration/lightning/fabric/logger.py +1 -3
- wandb/integration/metaflow/metaflow.py +41 -6
- wandb/integration/openai/fine_tuning.py +77 -40
- wandb/integration/prodigy/prodigy.py +1 -1
- wandb/old/summary.py +1 -1
- wandb/plot/confusion_matrix.py +1 -1
- wandb/plot/pr_curve.py +2 -1
- wandb/plot/roc_curve.py +2 -1
- wandb/{plots → plot}/utils.py +13 -25
- wandb/proto/v3/wandb_internal_pb2.py +364 -332
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v4/wandb_internal_pb2.py +322 -316
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
- wandb/proto/wandb_deprecated.py +7 -1
- wandb/proto/wandb_internal_codegen.py +3 -29
- wandb/sdk/artifacts/artifact.py +51 -20
- wandb/sdk/artifacts/artifact_download_logger.py +1 -0
- wandb/sdk/artifacts/artifact_file_cache.py +18 -4
- wandb/sdk/artifacts/artifact_instance_cache.py +1 -0
- wandb/sdk/artifacts/artifact_manifest.py +1 -0
- wandb/sdk/artifacts/artifact_manifest_entry.py +7 -3
- wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +1 -0
- wandb/sdk/artifacts/artifact_saver.py +18 -27
- wandb/sdk/artifacts/artifact_state.py +1 -0
- wandb/sdk/artifacts/artifact_ttl.py +1 -0
- wandb/sdk/artifacts/exceptions.py +1 -0
- wandb/sdk/artifacts/storage_handlers/azure_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +13 -18
- wandb/sdk/artifacts/storage_handlers/http_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/multi_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +5 -3
- wandb/sdk/artifacts/storage_handlers/tracking_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +1 -0
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +3 -42
- wandb/sdk/artifacts/storage_policy.py +2 -12
- wandb/sdk/data_types/_dtypes.py +8 -8
- wandb/sdk/data_types/base_types/media.py +3 -6
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +3 -1
- wandb/sdk/data_types/image.py +1 -1
- wandb/sdk/data_types/video.py +1 -1
- wandb/sdk/integration_utils/auto_logging.py +5 -6
- wandb/sdk/integration_utils/data_logging.py +10 -6
- wandb/sdk/interface/interface.py +86 -38
- wandb/sdk/interface/interface_shared.py +7 -13
- wandb/sdk/internal/datastore.py +1 -1
- wandb/sdk/internal/file_pusher.py +2 -5
- wandb/sdk/internal/file_stream.py +5 -18
- wandb/sdk/internal/handler.py +18 -2
- wandb/sdk/internal/internal.py +0 -1
- wandb/sdk/internal/internal_api.py +1 -129
- wandb/sdk/internal/internal_util.py +0 -1
- wandb/sdk/internal/job_builder.py +159 -45
- wandb/sdk/internal/profiler.py +1 -0
- wandb/sdk/internal/progress.py +0 -28
- wandb/sdk/internal/run.py +1 -0
- wandb/sdk/internal/sender.py +1 -2
- wandb/sdk/internal/system/assets/gpu_amd.py +44 -44
- wandb/sdk/internal/system/assets/gpu_apple.py +56 -11
- wandb/sdk/internal/system/assets/interfaces.py +6 -8
- wandb/sdk/internal/system/assets/open_metrics.py +2 -2
- wandb/sdk/internal/system/assets/trainium.py +1 -3
- wandb/sdk/launch/__init__.py +9 -1
- wandb/sdk/launch/_launch.py +9 -24
- wandb/sdk/launch/_launch_add.py +1 -3
- wandb/sdk/launch/_project_spec.py +188 -241
- wandb/sdk/launch/agent/agent.py +115 -48
- wandb/sdk/launch/agent/config.py +80 -14
- wandb/sdk/launch/builder/abstract.py +69 -1
- wandb/sdk/launch/builder/build.py +156 -555
- wandb/sdk/launch/builder/context_manager.py +235 -0
- wandb/sdk/launch/builder/docker_builder.py +8 -23
- wandb/sdk/launch/builder/kaniko_builder.py +161 -159
- wandb/sdk/launch/builder/noop.py +1 -0
- wandb/sdk/launch/builder/templates/dockerfile.py +92 -0
- wandb/sdk/launch/create_job.py +68 -63
- wandb/sdk/launch/environment/abstract.py +1 -0
- wandb/sdk/launch/environment/gcp_environment.py +1 -0
- wandb/sdk/launch/environment/local_environment.py +1 -0
- wandb/sdk/launch/inputs/files.py +148 -0
- wandb/sdk/launch/inputs/internal.py +217 -0
- wandb/sdk/launch/inputs/manage.py +95 -0
- wandb/sdk/launch/loader.py +1 -0
- wandb/sdk/launch/registry/abstract.py +1 -0
- wandb/sdk/launch/registry/azure_container_registry.py +1 -0
- wandb/sdk/launch/registry/elastic_container_registry.py +1 -0
- wandb/sdk/launch/registry/google_artifact_registry.py +2 -1
- wandb/sdk/launch/registry/local_registry.py +1 -0
- wandb/sdk/launch/runner/abstract.py +1 -0
- wandb/sdk/launch/runner/kubernetes_monitor.py +4 -1
- wandb/sdk/launch/runner/kubernetes_runner.py +9 -10
- wandb/sdk/launch/runner/local_container.py +2 -3
- wandb/sdk/launch/runner/local_process.py +8 -29
- wandb/sdk/launch/runner/sagemaker_runner.py +21 -20
- wandb/sdk/launch/runner/vertex_runner.py +8 -7
- wandb/sdk/launch/sweeps/scheduler.py +7 -4
- wandb/sdk/launch/sweeps/scheduler_sweep.py +2 -1
- wandb/sdk/launch/sweeps/utils.py +3 -3
- wandb/sdk/launch/utils.py +33 -140
- wandb/sdk/lib/_settings_toposort_generated.py +1 -5
- wandb/sdk/lib/fsm.py +8 -12
- wandb/sdk/lib/gitlib.py +4 -4
- wandb/sdk/lib/import_hooks.py +1 -1
- wandb/sdk/lib/lazyloader.py +0 -1
- wandb/sdk/lib/proto_util.py +23 -2
- wandb/sdk/lib/redirect.py +19 -14
- wandb/sdk/lib/retry.py +3 -2
- wandb/sdk/lib/run_moment.py +7 -1
- wandb/sdk/lib/tracelog.py +1 -1
- wandb/sdk/service/service.py +19 -16
- wandb/sdk/verify/verify.py +2 -1
- wandb/sdk/wandb_init.py +16 -63
- wandb/sdk/wandb_manager.py +2 -2
- wandb/sdk/wandb_require.py +5 -0
- wandb/sdk/wandb_run.py +164 -90
- wandb/sdk/wandb_settings.py +2 -48
- wandb/sdk/wandb_setup.py +1 -1
- wandb/sklearn/__init__.py +1 -0
- wandb/sklearn/plot/__init__.py +1 -0
- wandb/sklearn/plot/classifier.py +11 -12
- wandb/sklearn/plot/clusterer.py +2 -1
- wandb/sklearn/plot/regressor.py +1 -0
- wandb/sklearn/plot/shared.py +1 -0
- wandb/sklearn/utils.py +1 -0
- wandb/testing/relay.py +4 -4
- wandb/trigger.py +1 -0
- wandb/util.py +67 -54
- wandb/wandb_controller.py +2 -3
- wandb/wandb_torch.py +1 -2
- {wandb-0.16.5.dist-info → wandb-0.17.0.dist-info}/METADATA +67 -70
- {wandb-0.16.5.dist-info → wandb-0.17.0.dist-info}/RECORD +178 -188
- {wandb-0.16.5.dist-info → wandb-0.17.0.dist-info}/WHEEL +1 -2
- wandb/bin/apple_gpu_stats +0 -0
- wandb/catboost/__init__.py +0 -9
- wandb/fastai/__init__.py +0 -9
- wandb/keras/__init__.py +0 -18
- wandb/lightgbm/__init__.py +0 -9
- wandb/plots/__init__.py +0 -6
- wandb/plots/explain_text.py +0 -36
- wandb/plots/heatmap.py +0 -81
- wandb/plots/named_entity.py +0 -43
- wandb/plots/part_of_speech.py +0 -50
- wandb/plots/plot_definitions.py +0 -768
- wandb/plots/precision_recall.py +0 -121
- wandb/plots/roc.py +0 -103
- wandb/sacred/__init__.py +0 -3
- wandb/xgboost/__init__.py +0 -9
- wandb-0.16.5.dist-info/top_level.txt +0 -1
- {wandb-0.16.5.dist-info → wandb-0.17.0.dist-info}/entry_points.txt +0 -0
- {wandb-0.16.5.dist-info → wandb-0.17.0.dist-info/licenses}/LICENSE +0 -0
@@ -1,7 +1,10 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.17.0
|
4
4
|
Summary: A CLI and library for interacting with the Weights & Biases API.
|
5
|
+
Project-URL: Source, https://github.com/wandb/wandb
|
6
|
+
Project-URL: Bug Reports, https://github.com/wandb/wandb/issues
|
7
|
+
Project-URL: Documentation, https://docs.wandb.ai/
|
5
8
|
Author-email: Weights & Biases <support@wandb.com>
|
6
9
|
License: MIT License
|
7
10
|
|
@@ -24,104 +27,98 @@ License: MIT License
|
|
24
27
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
25
28
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
26
29
|
SOFTWARE.
|
27
|
-
|
28
|
-
Project-URL: Source, https://github.com/wandb/wandb
|
29
|
-
Project-URL: Bug Reports, https://github.com/wandb/wandb/issues
|
30
|
-
Project-URL: Documentation, https://docs.wandb.ai/
|
30
|
+
License-File: LICENSE
|
31
31
|
Classifier: Development Status :: 5 - Production/Stable
|
32
32
|
Classifier: Intended Audience :: Developers
|
33
33
|
Classifier: Intended Audience :: Science/Research
|
34
34
|
Classifier: License :: OSI Approved :: MIT License
|
35
35
|
Classifier: Natural Language :: English
|
36
36
|
Classifier: Programming Language :: Python :: 3
|
37
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
37
38
|
Classifier: Programming Language :: Python :: 3.7
|
38
39
|
Classifier: Programming Language :: Python :: 3.8
|
39
40
|
Classifier: Programming Language :: Python :: 3.9
|
40
41
|
Classifier: Programming Language :: Python :: 3.10
|
41
42
|
Classifier: Programming Language :: Python :: 3.11
|
42
43
|
Classifier: Programming Language :: Python :: 3.12
|
43
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
44
44
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
45
45
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
46
46
|
Classifier: Topic :: System :: Logging
|
47
47
|
Classifier: Topic :: System :: Monitoring
|
48
48
|
Requires-Python: >=3.7
|
49
|
-
|
50
|
-
|
51
|
-
Requires-Dist:
|
52
|
-
Requires-Dist:
|
53
|
-
Requires-Dist:
|
54
|
-
Requires-Dist:
|
55
|
-
Requires-Dist:
|
56
|
-
Requires-Dist:
|
57
|
-
Requires-Dist:
|
49
|
+
Requires-Dist: click!=8.0.0,>=7.1
|
50
|
+
Requires-Dist: docker-pycreds>=0.4.0
|
51
|
+
Requires-Dist: gitpython!=3.1.29,>=1.0.0
|
52
|
+
Requires-Dist: platformdirs
|
53
|
+
Requires-Dist: protobuf!=4.21.0,<5,>=3.12.0; python_version < '3.9' and sys_platform == 'linux'
|
54
|
+
Requires-Dist: protobuf!=4.21.0,<5,>=3.15.0; python_version == '3.9' and sys_platform == 'linux'
|
55
|
+
Requires-Dist: protobuf!=4.21.0,<5,>=3.19.0; python_version > '3.9' and sys_platform == 'linux'
|
56
|
+
Requires-Dist: protobuf!=4.21.0,<5,>=3.19.0; sys_platform != 'linux'
|
57
|
+
Requires-Dist: psutil>=5.0.0
|
58
|
+
Requires-Dist: pyyaml
|
59
|
+
Requires-Dist: requests<3,>=2.0.0
|
60
|
+
Requires-Dist: sentry-sdk>=1.0.0
|
58
61
|
Requires-Dist: setproctitle
|
59
62
|
Requires-Dist: setuptools
|
60
|
-
Requires-Dist:
|
61
|
-
Requires-Dist: typing-extensions ; python_version < "3.10"
|
62
|
-
Requires-Dist: protobuf !=4.21.0,<5,>=3.12.0 ; python_version < "3.9" and sys_platform == "linux"
|
63
|
-
Requires-Dist: protobuf !=4.21.0,<5,>=3.15.0 ; python_version == "3.9" and sys_platform == "linux"
|
64
|
-
Requires-Dist: protobuf !=4.21.0,<5,>=3.19.0 ; python_version > "3.9" and sys_platform == "linux"
|
65
|
-
Requires-Dist: protobuf !=4.21.0,<5,>=3.19.0 ; sys_platform != "linux"
|
66
|
-
Provides-Extra: async
|
67
|
-
Requires-Dist: httpx >=0.23.0 ; extra == 'async'
|
63
|
+
Requires-Dist: typing-extensions; python_version < '3.10'
|
68
64
|
Provides-Extra: aws
|
69
|
-
Requires-Dist: boto3
|
65
|
+
Requires-Dist: boto3; extra == 'aws'
|
70
66
|
Provides-Extra: azure
|
71
|
-
Requires-Dist: azure-identity
|
72
|
-
Requires-Dist: azure-storage-blob
|
67
|
+
Requires-Dist: azure-identity; extra == 'azure'
|
68
|
+
Requires-Dist: azure-storage-blob; extra == 'azure'
|
73
69
|
Provides-Extra: gcp
|
74
|
-
Requires-Dist: google-cloud-storage
|
70
|
+
Requires-Dist: google-cloud-storage; extra == 'gcp'
|
75
71
|
Provides-Extra: importers
|
76
|
-
Requires-Dist:
|
77
|
-
Requires-Dist:
|
78
|
-
Requires-Dist:
|
79
|
-
Requires-Dist:
|
80
|
-
Requires-Dist: tenacity
|
72
|
+
Requires-Dist: filelock; extra == 'importers'
|
73
|
+
Requires-Dist: mlflow; extra == 'importers'
|
74
|
+
Requires-Dist: polars; extra == 'importers'
|
75
|
+
Requires-Dist: rich; extra == 'importers'
|
76
|
+
Requires-Dist: tenacity; extra == 'importers'
|
81
77
|
Provides-Extra: kubeflow
|
82
|
-
Requires-Dist:
|
83
|
-
Requires-Dist:
|
84
|
-
Requires-Dist:
|
85
|
-
Requires-Dist: sh
|
78
|
+
Requires-Dist: google-cloud-storage; extra == 'kubeflow'
|
79
|
+
Requires-Dist: kubernetes; extra == 'kubeflow'
|
80
|
+
Requires-Dist: minio; extra == 'kubeflow'
|
81
|
+
Requires-Dist: sh; extra == 'kubeflow'
|
86
82
|
Provides-Extra: launch
|
87
|
-
Requires-Dist: awscli
|
88
|
-
Requires-Dist: azure-
|
89
|
-
Requires-Dist: azure-
|
90
|
-
Requires-Dist: azure-storage-blob
|
91
|
-
Requires-Dist: boto3
|
92
|
-
Requires-Dist: botocore
|
93
|
-
Requires-Dist: chardet
|
94
|
-
Requires-Dist: google-auth
|
95
|
-
Requires-Dist: google-cloud-aiplatform
|
96
|
-
Requires-Dist: google-cloud-artifact-registry
|
97
|
-
Requires-Dist: google-cloud-compute
|
98
|
-
Requires-Dist: google-cloud-storage
|
99
|
-
Requires-Dist: iso8601
|
100
|
-
Requires-Dist: kubernetes
|
101
|
-
Requires-Dist: kubernetes-asyncio
|
102
|
-
Requires-Dist:
|
103
|
-
Requires-Dist:
|
104
|
-
Requires-Dist:
|
105
|
-
Requires-Dist: pydantic
|
106
|
-
Requires-Dist:
|
107
|
-
Requires-Dist: tomli
|
108
|
-
Requires-Dist:
|
83
|
+
Requires-Dist: awscli; extra == 'launch'
|
84
|
+
Requires-Dist: azure-containerregistry; extra == 'launch'
|
85
|
+
Requires-Dist: azure-identity; extra == 'launch'
|
86
|
+
Requires-Dist: azure-storage-blob; extra == 'launch'
|
87
|
+
Requires-Dist: boto3; extra == 'launch'
|
88
|
+
Requires-Dist: botocore; extra == 'launch'
|
89
|
+
Requires-Dist: chardet; extra == 'launch'
|
90
|
+
Requires-Dist: google-auth; extra == 'launch'
|
91
|
+
Requires-Dist: google-cloud-aiplatform; extra == 'launch'
|
92
|
+
Requires-Dist: google-cloud-artifact-registry; extra == 'launch'
|
93
|
+
Requires-Dist: google-cloud-compute; extra == 'launch'
|
94
|
+
Requires-Dist: google-cloud-storage; extra == 'launch'
|
95
|
+
Requires-Dist: iso8601; extra == 'launch'
|
96
|
+
Requires-Dist: kubernetes; extra == 'launch'
|
97
|
+
Requires-Dist: kubernetes-asyncio; extra == 'launch'
|
98
|
+
Requires-Dist: nbconvert; extra == 'launch'
|
99
|
+
Requires-Dist: nbformat; extra == 'launch'
|
100
|
+
Requires-Dist: optuna; extra == 'launch'
|
101
|
+
Requires-Dist: pydantic; extra == 'launch'
|
102
|
+
Requires-Dist: pyyaml>=6.0.0; extra == 'launch'
|
103
|
+
Requires-Dist: tomli; extra == 'launch'
|
104
|
+
Requires-Dist: typing-extensions; extra == 'launch'
|
109
105
|
Provides-Extra: media
|
110
|
-
Requires-Dist:
|
111
|
-
Requires-Dist: moviepy
|
112
|
-
Requires-Dist:
|
113
|
-
Requires-Dist:
|
114
|
-
Requires-Dist:
|
115
|
-
Requires-Dist:
|
116
|
-
Requires-Dist:
|
106
|
+
Requires-Dist: bokeh; extra == 'media'
|
107
|
+
Requires-Dist: moviepy; extra == 'media'
|
108
|
+
Requires-Dist: numpy; extra == 'media'
|
109
|
+
Requires-Dist: pillow; extra == 'media'
|
110
|
+
Requires-Dist: plotly>=5.18.0; extra == 'media'
|
111
|
+
Requires-Dist: rdkit-pypi; extra == 'media'
|
112
|
+
Requires-Dist: soundfile; extra == 'media'
|
117
113
|
Provides-Extra: models
|
118
|
-
Requires-Dist: cloudpickle
|
114
|
+
Requires-Dist: cloudpickle; extra == 'models'
|
119
115
|
Provides-Extra: perf
|
120
|
-
Requires-Dist: orjson
|
116
|
+
Requires-Dist: orjson; extra == 'perf'
|
121
117
|
Provides-Extra: reports
|
122
|
-
Requires-Dist: pydantic
|
118
|
+
Requires-Dist: pydantic>=2.0.0; extra == 'reports'
|
123
119
|
Provides-Extra: sweeps
|
124
|
-
Requires-Dist: sweeps
|
120
|
+
Requires-Dist: sweeps>=0.2.0; extra == 'sweeps'
|
121
|
+
Description-Content-Type: text/markdown
|
125
122
|
|
126
123
|
<div align="center">
|
127
124
|
<img src="https://i.imgur.com/RUtiVzH.png" width="600" /><br><br>
|