wandb


Namewandb JSON
Version 0.18.7 PyPI version JSON
download
home_pageNone
SummaryA CLI and library for interacting with the Weights & Biases API.
upload_time2024-11-13 23:26:21
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT 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 [![PyPI](https://img.shields.io/pypi/v/wandb)](https://pypi.python.org/pypi/wandb) [![Conda (channel only)](https://img.shields.io/conda/vn/conda-forge/wandb)](https://anaconda.org/conda-forge/wandb) [![CircleCI](https://img.shields.io/circleci/build/github/wandb/wandb/main)](https://circleci.com/gh/wandb/wandb) [![Codecov](https://img.shields.io/codecov/c/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.

&nbsp;

# 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!

&nbsp;

# 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.

&nbsp;

# 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.

&nbsp;

# 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.

&nbsp;

# 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).

&nbsp;

# 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.7",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Weights & Biases <support@wandb.com>",
    "download_url": "https://files.pythonhosted.org/packages/d5/10/81cd2519a92c5dc76f0a3553daa32bc58875e05abae6eca4509e65c87d63/wandb-0.18.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 [![PyPI](https://img.shields.io/pypi/v/wandb)](https://pypi.python.org/pypi/wandb) [![Conda (channel only)](https://img.shields.io/conda/vn/conda-forge/wandb)](https://anaconda.org/conda-forge/wandb) [![CircleCI](https://img.shields.io/circleci/build/github/wandb/wandb/main)](https://circleci.com/gh/wandb/wandb) [![Codecov](https://img.shields.io/codecov/c/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&nbsp;\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&nbsp;\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&nbsp;\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&nbsp;\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&nbsp;\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&nbsp;\n\n# License\n\n[MIT License](https://github.com/wandb/wandb/blob/main/LICENSE)\n",
    "bugtrack_url": null,
    "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.",
    "summary": "A CLI and library for interacting with the Weights & Biases API.",
    "version": "0.18.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": "",
            "digests": {
                "blake2b_256": "d178ca2444c41bcacd6b49846cfa853698935c656f4419f38d0860177b31763c",
                "md5": "eaa3564b082c54ac12c2ebe8f759301a",
                "sha256": "c2b9f9fea6daf8b62a505ea5d77d7e5e375c6014947a8882c0497399a9a1e4af"
            },
            "downloads": -1,
            "filename": "wandb-0.18.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "eaa3564b082c54ac12c2ebe8f759301a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 6266739,
            "upload_time": "2024-11-13T23:25:57",
            "upload_time_iso_8601": "2024-11-13T23:25:57.351708Z",
            "url": "https://files.pythonhosted.org/packages/d1/78/ca2444c41bcacd6b49846cfa853698935c656f4419f38d0860177b31763c/wandb-0.18.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c6dcf600f649090d3c3f8ac86becf10a1d3d5c1ce305389c4d02cc9488fb8d0",
                "md5": "03caaef46396b96ec57a02ee22489d6f",
                "sha256": "9fb2d381b20a079d7bb519b1b5cbbd94a10e941a2a0c5ccc044748b00344a294"
            },
            "downloads": -1,
            "filename": "wandb-0.18.7-py3-none-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03caaef46396b96ec57a02ee22489d6f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 15789924,
            "upload_time": "2024-11-13T23:25:59",
            "upload_time_iso_8601": "2024-11-13T23:25:59.547401Z",
            "url": "https://files.pythonhosted.org/packages/0c/6d/cf600f649090d3c3f8ac86becf10a1d3d5c1ce305389c4d02cc9488fb8d0/wandb-0.18.7-py3-none-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de7f23f776942928bc9aea4d167030c39f4aee23fe07159ab5341bba8bb05a7f",
                "md5": "39cc7d83e39bb6828a2c2c55a10a7027",
                "sha256": "87209f5aed8dbcf4b699ce745d096bc13b3cb66217efa5c44dd772d4f7fe7836"
            },
            "downloads": -1,
            "filename": "wandb-0.18.7-py3-none-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "39cc7d83e39bb6828a2c2c55a10a7027",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 15223289,
            "upload_time": "2024-11-13T23:26:02",
            "upload_time_iso_8601": "2024-11-13T23:26:02.109083Z",
            "url": "https://files.pythonhosted.org/packages/de/7f/23f776942928bc9aea4d167030c39f4aee23fe07159ab5341bba8bb05a7f/wandb-0.18.7-py3-none-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0be71cfc141d8ea5138cfa8bc6383b9047c7e0c26873ce15e43bc5db8fa5f249",
                "md5": "94d327bd01bf81edc4900e0ce03397d5",
                "sha256": "e31d2115c558257406bf9beffe13d42313d958f2809cb15123a8e6a6d18d66c6"
            },
            "downloads": -1,
            "filename": "wandb-0.18.7-py3-none-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94d327bd01bf81edc4900e0ce03397d5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 15921278,
            "upload_time": "2024-11-13T23:26:05",
            "upload_time_iso_8601": "2024-11-13T23:26:05.101227Z",
            "url": "https://files.pythonhosted.org/packages/0b/e7/1cfc141d8ea5138cfa8bc6383b9047c7e0c26873ce15e43bc5db8fa5f249/wandb-0.18.7-py3-none-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fbc1688dd13505479f2a1901728e7d0e7b572ea7d9233af9beff62edf9a42fa",
                "md5": "2697790ed123105f3f2cd2e2982fee94",
                "sha256": "e261e9f87005a4487548137d04bfa10fa14e3306b9901bc6ac2f3335c73df7c6"
            },
            "downloads": -1,
            "filename": "wandb-0.18.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2697790ed123105f3f2cd2e2982fee94",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 15179910,
            "upload_time": "2024-11-13T23:26:07",
            "upload_time_iso_8601": "2024-11-13T23:26:07.977188Z",
            "url": "https://files.pythonhosted.org/packages/8f/bc/1688dd13505479f2a1901728e7d0e7b572ea7d9233af9beff62edf9a42fa/wandb-0.18.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3658af6447adb236c0b487ae44f370cb24c8afda678b5acf7f1cb4469739048",
                "md5": "09a15a12a45012987877055f4f6f443f",
                "sha256": "b3133683a5b3bd3a50cf498e6b5ecc7406738619ae9f245326a9fa2e80ad313f"
            },
            "downloads": -1,
            "filename": "wandb-0.18.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09a15a12a45012987877055f4f6f443f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 16104608,
            "upload_time": "2024-11-13T23:26:11",
            "upload_time_iso_8601": "2024-11-13T23:26:11.018273Z",
            "url": "https://files.pythonhosted.org/packages/a3/65/8af6447adb236c0b487ae44f370cb24c8afda678b5acf7f1cb4469739048/wandb-0.18.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a634fccdb0a3001200eadcf660558e549be895f18e0a10658fa957712fe02333",
                "md5": "4885c89d1f7998a607e51fa7490df0bf",
                "sha256": "7ca272660d880ba007aa7b4be2f88160692b2f12dccd431bd2f6471c85e68986"
            },
            "downloads": -1,
            "filename": "wandb-0.18.7-py3-none-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4885c89d1f7998a607e51fa7490df0bf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 16181168,
            "upload_time": "2024-11-13T23:26:13",
            "upload_time_iso_8601": "2024-11-13T23:26:13.516447Z",
            "url": "https://files.pythonhosted.org/packages/a6/34/fccdb0a3001200eadcf660558e549be895f18e0a10658fa957712fe02333/wandb-0.18.7-py3-none-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6229465482fa31ee52e310df09b365ea1f498799b1aba9b7520f9f27f83eb371",
                "md5": "e8dd9223bbb48ecff41aa1e55a63bc9e",
                "sha256": "a42b63c9b9e552b51e51b35caf26d81675dbc012317bc2701e39b3d84d479354"
            },
            "downloads": -1,
            "filename": "wandb-0.18.7-py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e8dd9223bbb48ecff41aa1e55a63bc9e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 15472552,
            "upload_time": "2024-11-13T23:26:15",
            "upload_time_iso_8601": "2024-11-13T23:26:15.790346Z",
            "url": "https://files.pythonhosted.org/packages/62/29/465482fa31ee52e310df09b365ea1f498799b1aba9b7520f9f27f83eb371/wandb-0.18.7-py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fd31996ef42e58a049d6b2d6c3e3f0c8d7d38a286f707c515672a928fd9eb6c",
                "md5": "ff4622217b6ef14d47e789d0e9b0f38c",
                "sha256": "4ba9fda6dd7db02a23c6b302411fe26c3fcfea4947cc130a65e1de19812d324e"
            },
            "downloads": -1,
            "filename": "wandb-0.18.7-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ff4622217b6ef14d47e789d0e9b0f38c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 15472555,
            "upload_time": "2024-11-13T23:26:18",
            "upload_time_iso_8601": "2024-11-13T23:26:18.733134Z",
            "url": "https://files.pythonhosted.org/packages/1f/d3/1996ef42e58a049d6b2d6c3e3f0c8d7d38a286f707c515672a928fd9eb6c/wandb-0.18.7-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d51081cd2519a92c5dc76f0a3553daa32bc58875e05abae6eca4509e65c87d63",
                "md5": "11ae67941d7d0eb6c30f71d9057ac398",
                "sha256": "00f9891558d4833ee47f21ce6c603499f0bd1a7ce117ff55ee1a041e9094f9a2"
            },
            "downloads": -1,
            "filename": "wandb-0.18.7.tar.gz",
            "has_sig": false,
            "md5_digest": "11ae67941d7d0eb6c30f71d9057ac398",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 9505273,
            "upload_time": "2024-11-13T23:26:21",
            "upload_time_iso_8601": "2024-11-13T23:26:21.777066Z",
            "url": "https://files.pythonhosted.org/packages/d5/10/81cd2519a92c5dc76f0a3553daa32bc58875e05abae6eca4509e65c87d63/wandb-0.18.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-13 23:26:21",
    "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"
}
        
Elapsed time: 0.46000s