Name | wandb JSON |
Version |
0.19.7
JSON |
| download |
home_page | None |
Summary | A CLI and library for interacting with the Weights & Biases API. |
upload_time | 2025-02-21 01:40:59 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT License
Copyright (c) 2021 Weights and Biases, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<div align="center">
<img src="https://i.imgur.com/RUtiVzH.png" width="600" /><br><br>
</div>
# Weights and Biases [](https://pypi.python.org/pypi/wandb) [](https://anaconda.org/conda-forge/wandb) [](https://circleci.com/gh/wandb/wandb) [](https://codecov.io/gh/wandb/wandb)
Use W&B to build better models faster. Track and visualize all the pieces of your machine learning pipeline, from datasets to production machine learning models. Get started with W&B today, [sign up for an account!](https://wandb.com?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=readme)
See the [W&B Developer Guide](https://docs.wandb.ai/?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=documentation) and [API Reference Guide](https://docs.wandb.ai/ref?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=documentation) for a full technical description of the W&B platform.
# Quickstart
Get started with W&B in four steps:
1. First, sign up for a [W&B account](https://wandb.ai/login?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=quickstart).
2. Second, install the W&B SDK with [pip](https://pip.pypa.io/en/stable/). Navigate to your terminal and type the following command:
```shell
pip install wandb
```
3. Third, log into W&B:
```python
wandb.login()
```
4. Use the example code snippet below as a template to integrate W&B to your Python script:
```python
import wandb
# Start a W&B Run with wandb.init
run = wandb.init(project="my_first_project")
# Save model inputs and hyperparameters in a wandb.config object
config = run.config
config.learning_rate = 0.01
# Model training code here ...
# Log metrics over time to visualize performance with wandb.log
for i in range(10):
run.log({"loss": ...})
# Mark the run as finished, and finish uploading all data
run.finish()
```
For example, if the preceding code was stored in a script called train.py:
```shell
python train.py
```
You will see a URL in your terminal logs when your script starts and finishes. Data is staged locally in a directory named _wandb_ relative to your script. Navigate to the W&B App to view a dashboard of your first W&B Experiment. Use the W&B App to compare multiple experiments in a unified place, dive into the results of a single run, and much more!
# Integrations
Use your favorite framework with W&B. W&B integrations make it fast and easy to set up experiment tracking and data versioning inside existing projects. For more information on how to integrate W&B with the framework of your choice, see [W&B Integrations](https://docs.wandb.ai/guides/integrations) in the W&B Developer Guide.
# Python Version Support
We are committed to supporting our minimum required Python version for *at least* six months after its official end-of-life (EOL) date, as defined by the Python Software Foundation. You can find a list of Python EOL dates [here](https://devguide.python.org/versions/).
When we discontinue support for a Python version, we will increment the library’s minor version number to reflect this change.
# Contribution guidelines
Weights & Biases ❤️ open source, and we welcome contributions from the community! See the [Contribution guide](https://github.com/wandb/wandb/blob/main/CONTRIBUTING.md) for more information on the development workflow and the internals of the wandb library. For wandb bugs and feature requests, visit [GitHub Issues](https://github.com/wandb/wandb/issues) or contact support@wandb.com.
# Academic Researchers
Reach out to W&B Support at support@wandb.com to get a [free academic license](https://www.wandb.com/academic) for you and your research group.
# W&B Community
Be a part of the growing W&B Community and interact with the W&B team in our [Discord](https://wandb.me/discord). Stay connected with the latest ML updates and tutorials with [W&B Fully Connected](https://wandb.ai/fully-connected).
# License
[MIT License](https://github.com/wandb/wandb/blob/main/LICENSE)
Raw data
{
"_id": null,
"home_page": null,
"name": "wandb",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Weights & Biases <support@wandb.com>",
"download_url": "https://files.pythonhosted.org/packages/ab/76/69b19ab7547dd7abe172f9e87afe099fe1406767019366cb721799ae8208/wandb-0.19.7.tar.gz",
"platform": null,
"description": "<div align=\"center\">\n <img src=\"https://i.imgur.com/RUtiVzH.png\" width=\"600\" /><br><br>\n</div>\n\n# Weights and Biases [](https://pypi.python.org/pypi/wandb) [](https://anaconda.org/conda-forge/wandb) [](https://circleci.com/gh/wandb/wandb) [](https://codecov.io/gh/wandb/wandb)\n\nUse W&B to build better models faster. Track and visualize all the pieces of your machine learning pipeline, from datasets to production machine learning models. Get started with W&B today, [sign up for an account!](https://wandb.com?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=readme)\n\n\n\nSee the [W&B Developer Guide](https://docs.wandb.ai/?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=documentation) and [API Reference Guide](https://docs.wandb.ai/ref?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=documentation) for a full technical description of the W&B platform.\n\n \n\n# Quickstart\n\nGet started with W&B in four steps:\n\n1. First, sign up for a [W&B account](https://wandb.ai/login?utm_source=github&utm_medium=code&utm_campaign=wandb&utm_content=quickstart).\n\n2. Second, install\u00a0the W&B SDK with [pip](https://pip.pypa.io/en/stable/). Navigate to your terminal and type the following command:\n\n```shell\npip install wandb\n```\n\n3. Third, log into W&B:\n\n```python\nwandb.login()\n```\n\n4. Use the example code snippet below as a template to integrate W&B to your Python script:\n\n```python\nimport wandb\n\n# Start a W&B Run with wandb.init\nrun = wandb.init(project=\"my_first_project\")\n\n# Save model inputs and hyperparameters in a wandb.config object\nconfig = run.config\nconfig.learning_rate = 0.01\n\n# Model training code here ...\n\n# Log metrics over time to visualize performance with wandb.log\nfor i in range(10):\n run.log({\"loss\": ...})\n\n# Mark the run as finished, and finish uploading all data\nrun.finish()\n```\n\nFor example, if the preceding code was stored in a script called train.py:\n\n```shell\npython train.py\n```\n\nYou will see a URL in your terminal logs when your script starts and finishes. Data is staged locally in a directory named _wandb_ relative to your script. Navigate to the W&B App to view a dashboard of your first W&B Experiment. Use the W&B App to compare multiple experiments in a unified place, dive into the results of a single run, and much more!\n\n \n\n# Integrations\n\nUse your favorite framework with W&B. W&B integrations make it fast and easy to set up experiment tracking and data versioning inside existing projects. For more information on how to integrate W&B with the framework of your choice, see [W&B Integrations](https://docs.wandb.ai/guides/integrations) in the W&B Developer Guide.\n\n \n\n# Python Version Support\n\nWe are committed to supporting our minimum required Python version for *at least* six months after its official end-of-life (EOL) date, as defined by the Python Software Foundation. You can find a list of Python EOL dates [here](https://devguide.python.org/versions/).\n\nWhen we discontinue support for a Python version, we will increment the library\u2019s minor version number to reflect this change.\n\n \n\n# Contribution guidelines\nWeights & Biases \u2764\ufe0f open source, and we welcome contributions from the community! See the [Contribution guide](https://github.com/wandb/wandb/blob/main/CONTRIBUTING.md) for more information on the development workflow and the internals of the wandb library. For wandb bugs and feature requests, visit [GitHub Issues](https://github.com/wandb/wandb/issues) or contact support@wandb.com.\n\n \n\n# Academic Researchers\nReach out to W&B Support at support@wandb.com to get a [free academic license](https://www.wandb.com/academic) for you and your research group.\n\n \n\n# W&B Community\n\nBe a part of the growing W&B Community and interact with the W&B team in our [Discord](https://wandb.me/discord). Stay connected with the latest ML updates and tutorials with [W&B Fully Connected](https://wandb.ai/fully-connected).\n\n \n\n# License\n\n[MIT License](https://github.com/wandb/wandb/blob/main/LICENSE)\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2021 Weights and Biases, Inc.\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.",
"summary": "A CLI and library for interacting with the Weights & Biases API.",
"version": "0.19.7",
"project_urls": {
"Bug Reports": "https://github.com/wandb/wandb/issues",
"Documentation": "https://docs.wandb.ai/",
"Source": "https://github.com/wandb/wandb"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "ec2118434013639bbcb75e4e27ddab96863552597b8088bead8facb0b7c87f67",
"md5": "b678ce3249cf892fe58bd250f9b2233b",
"sha256": "01c715d437c129934c3050ff37cdad8aa16c6114f2ee0ca29c6e588a448374d3"
},
"downloads": -1,
"filename": "wandb-0.19.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b678ce3249cf892fe58bd250f9b2233b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 6399316,
"upload_time": "2025-02-21T01:40:18",
"upload_time_iso_8601": "2025-02-21T01:40:18.913952Z",
"url": "https://files.pythonhosted.org/packages/ec/21/18434013639bbcb75e4e27ddab96863552597b8088bead8facb0b7c87f67/wandb-0.19.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "adca425be622d370d5d7c992fb0cb1ab86c6162e3b16001413c481a2a02436ad",
"md5": "1f7392515fcd257b0510a0f3576cf58b",
"sha256": "e8f30bd4fa1dd1ec25563162c8c95fd73f8402fddf7f82084fe82c2e3ad3d282"
},
"downloads": -1,
"filename": "wandb-0.19.7-py3-none-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "1f7392515fcd257b0510a0f3576cf58b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 20473690,
"upload_time": "2025-02-21T01:40:22",
"upload_time_iso_8601": "2025-02-21T01:40:22.475569Z",
"url": "https://files.pythonhosted.org/packages/ad/ca/425be622d370d5d7c992fb0cb1ab86c6162e3b16001413c481a2a02436ad/wandb-0.19.7-py3-none-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7f8eac8534d45510916b47aa38732d2708a64dfd695803708eeb73f878f32c8",
"md5": "7c73e5b7ba4a106785e36f91054f9e1b",
"sha256": "d38c64ac2494412eade2544abde9012c9aec689a152540b1253a2a03bb9dcd23"
},
"downloads": -1,
"filename": "wandb-0.19.7-py3-none-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7c73e5b7ba4a106785e36f91054f9e1b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 19941904,
"upload_time": "2025-02-21T01:40:27",
"upload_time_iso_8601": "2025-02-21T01:40:27.260716Z",
"url": "https://files.pythonhosted.org/packages/e7/f8/eac8534d45510916b47aa38732d2708a64dfd695803708eeb73f878f32c8/wandb-0.19.7-py3-none-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92b009fb898c001e129d34b262614d7036f8d32cd82b5589b10b99a4d6fe0f9c",
"md5": "e137615e0adc16839b5511208b85221b",
"sha256": "0f48fa6a2eb77d9f07418497cfa77e8f78d1c753fd06fe304bae0870af83f90c"
},
"downloads": -1,
"filename": "wandb-0.19.7-py3-none-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "e137615e0adc16839b5511208b85221b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 20471590,
"upload_time": "2025-02-21T01:40:30",
"upload_time_iso_8601": "2025-02-21T01:40:30.932605Z",
"url": "https://files.pythonhosted.org/packages/92/b0/09fb898c001e129d34b262614d7036f8d32cd82b5589b10b99a4d6fe0f9c/wandb-0.19.7-py3-none-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "caf3633979662a8b6217c15c34bd20094fda55212830aa3b9c4073900cbcf2b7",
"md5": "d741c3364e29eef0dfd59fc6e0d890d7",
"sha256": "2b5b23aa51347fec2bd6a5698b01319c13f78d5b016f7a9c0df68e26924923cd"
},
"downloads": -1,
"filename": "wandb-0.19.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d741c3364e29eef0dfd59fc6e0d890d7",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 19457850,
"upload_time": "2025-02-21T01:40:35",
"upload_time_iso_8601": "2025-02-21T01:40:35.085335Z",
"url": "https://files.pythonhosted.org/packages/ca/f3/633979662a8b6217c15c34bd20094fda55212830aa3b9c4073900cbcf2b7/wandb-0.19.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d53361846bf44dcf3bc5a4be0e0cb662b42c7e6996d71c903c936e191657e0d",
"md5": "cbe17bf04128bf4fc548a2aff46c81a8",
"sha256": "0f7d71e2110c435b7f6ace6ce0e1164d2a5be9e1b8a4bcd7b90dbc42b55de7e9"
},
"downloads": -1,
"filename": "wandb-0.19.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cbe17bf04128bf4fc548a2aff46c81a8",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 20790636,
"upload_time": "2025-02-21T01:40:39",
"upload_time_iso_8601": "2025-02-21T01:40:39.428203Z",
"url": "https://files.pythonhosted.org/packages/7d/53/361846bf44dcf3bc5a4be0e0cb662b42c7e6996d71c903c936e191657e0d/wandb-0.19.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a87a3e117006170b71f691260c765be731057aa2a073d7b9d8b050b9c52ac4bd",
"md5": "3aae63f269226f93c4834e26f7a5ad2c",
"sha256": "fd3b78eef152797499cf87647d890f7309c76c90e7c60959d2986b6baecfd419"
},
"downloads": -1,
"filename": "wandb-0.19.7-py3-none-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3aae63f269226f93c4834e26f7a5ad2c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 19468440,
"upload_time": "2025-02-21T01:40:43",
"upload_time_iso_8601": "2025-02-21T01:40:43.121698Z",
"url": "https://files.pythonhosted.org/packages/a8/7a/3e117006170b71f691260c765be731057aa2a073d7b9d8b050b9c52ac4bd/wandb-0.19.7-py3-none-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d8adf5eb63ba1ecaa39381f73f28746316002ef421a9770fb0004ec2d551849",
"md5": "47b1277f36ac0c7d490b7538704682c4",
"sha256": "6f5b85e563864ebf4d3198f385048163de4a94f0b00da7e92ff9db9117773382"
},
"downloads": -1,
"filename": "wandb-0.19.7-py3-none-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "47b1277f36ac0c7d490b7538704682c4",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 20870885,
"upload_time": "2025-02-21T01:40:46",
"upload_time_iso_8601": "2025-02-21T01:40:46.436605Z",
"url": "https://files.pythonhosted.org/packages/7d/8a/df5eb63ba1ecaa39381f73f28746316002ef421a9770fb0004ec2d551849/wandb-0.19.7-py3-none-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "52867fed3dcf51604585696572cf5969f01765c368237a0cc13877431facc749",
"md5": "0680912c92d51cd84555e824e8a7c6f3",
"sha256": "1a7af0c7b117a1d53fcc0169c37df2de8c1c07e48e5abb9fe7182e16d4baa9b1"
},
"downloads": -1,
"filename": "wandb-0.19.7-py3-none-win32.whl",
"has_sig": false,
"md5_digest": "0680912c92d51cd84555e824e8a7c6f3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 20251332,
"upload_time": "2025-02-21T01:40:50",
"upload_time_iso_8601": "2025-02-21T01:40:50.837375Z",
"url": "https://files.pythonhosted.org/packages/52/86/7fed3dcf51604585696572cf5969f01765c368237a0cc13877431facc749/wandb-0.19.7-py3-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cebe020d511f537d3809ffb3fcedb855f5bf1daaf96ce2e0248022d015663332",
"md5": "c81f006bf9d9a44febc8c442de39706f",
"sha256": "2af68e147c6bf474db82ead643828198bea8a802fa2836ef1a666dfb15ef1d83"
},
"downloads": -1,
"filename": "wandb-0.19.7-py3-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "c81f006bf9d9a44febc8c442de39706f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 20251337,
"upload_time": "2025-02-21T01:40:55",
"upload_time_iso_8601": "2025-02-21T01:40:55.330523Z",
"url": "https://files.pythonhosted.org/packages/ce/be/020d511f537d3809ffb3fcedb855f5bf1daaf96ce2e0248022d015663332/wandb-0.19.7-py3-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ab7669b19ab7547dd7abe172f9e87afe099fe1406767019366cb721799ae8208",
"md5": "123287855b8ae13f8cca77e0db575bfb",
"sha256": "f4189f353dc41dfa365bb4819aa128e77b050ca4f0e1408865a67c6c2b8de604"
},
"downloads": -1,
"filename": "wandb-0.19.7.tar.gz",
"has_sig": false,
"md5_digest": "123287855b8ae13f8cca77e0db575bfb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 39230906,
"upload_time": "2025-02-21T01:40:59",
"upload_time_iso_8601": "2025-02-21T01:40:59.876134Z",
"url": "https://files.pythonhosted.org/packages/ab/76/69b19ab7547dd7abe172f9e87afe099fe1406767019366cb721799ae8208/wandb-0.19.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-21 01:40:59",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "wandb",
"github_project": "wandb",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"circle": true,
"lcname": "wandb"
}