Metadata-Version: 1.1
Name: wandb
Version: 0.4.3
Summary: A CLI and library for interacting with the Weights and Biases API.
Home-page: https://github.com/wandb/client
Author: Chris Van Pelt
Author-email: vanpelt@gmail.co
License: MIT license
Description: # Weights and Biases
        
        [![ci](https://circleci.com/gh/wandb/client.svg?style=svg)](https://circleci.com/gh/wandb/client)[![pypi](https://img.shields.io/pypi/v/wandb.svg)](https://pypi.python.org/pypi/wandb)[![coveralls](https://coveralls.io/repos/github/wandb/client/badge.svg?branch=master)](https://coveralls.io/github/wandb/client?branch=master)
        
        A CLI and library for interacting with the Weights and Biases API.
        
        [https://www.gitbook.com/book/wandb/client](https://www.gitbook.com/book/wandb/client)
        
        ## Features
        
        This library provides a CLI and python library for the [Weights & Biases](https://wanbd.ai) machine learning model management platform.  It simplifies uploading or downloading files via the command line or directly in your training code.
        
        ## Examples
        
        CLI Usage:
        
        ```shell
        cd myproject
        wandb init
        wandb push bucket model.json weights.h5
        wandb pull
        ./training_script.sh | wandb project/bucket model.json weights.h5
        ```
        
        Client Usage:
        
        ```python
        import wandb
        client = wandb.Api()
        client.push("my_model", files=[open("some_file", "rb")])
        ```
        
        
        
        
Keywords: wandb
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
