Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel
Chris Van Pelt 025031ec04
The important parts
8 years ago
ea298f5e5d
Initial commit
8 years ago
3ec9d89efa
Make it quick
8 years ago
75fa73512a
The important parts
8 years ago
75fa73512a
The important parts
8 years ago
4d3a4d75e6
Doc fixes, CI fix
8 years ago
ea298f5e5d
Initial commit
8 years ago
7713faa9cf
First pass on config
8 years ago
bedf6a7cb6
Added watchdog, fixed sets
8 years ago
ea298f5e5d
Initial commit
8 years ago
5d16c1f06c
Stupidly removed this before
8 years ago
ea298f5e5d
Initial commit
8 years ago
7b1178dac8
Merge conflicts
8 years ago
baf48a46f0
Third time's a charm: add trailing colon.
8 years ago
eab373de3d
Another attempt at CircleCI parallelization.
8 years ago
806193b7f3
Doc improvements, debug mode, test config show
8 years ago
f31efd5d91
Such pretty documentation, mind blowingly fabulous
8 years ago
f8ea38f21f
Bump version: 0.4.7 → 0.4.8
8 years ago
c0b6cb0684
All the git goodness
8 years ago
0f51bce9b1
Try to get CircleCI to parse individual test results.
8 years ago
Storage Buckets

README.md

You have to be logged in to leave a comment. Sign In

Weights and Biases

ci pypi coveralls

A CLI and library for interacting with the Weights and Biases API. Sign up for an account at wandb.ai

Features

  • Keep a history of your weights and models from every training run
  • Store all configuration parameters used in a training run
  • Search and visualize training runs in a project
  • Sync canonical models in your preferred format

Usage

CLI:

cd myproject
# Initialize a directory
wandb init
# Push files to W&B
wandb push bucket model.json weights.h5
# Pull files from canonical models
wandb pull zoo/inception-v4
# Sync training logs and push files when they change
./my_training.py | wandb bucket model.json weights.h5
# Manage configuration
wandb config set epochs=30

Client:

import wandb
conf = wandb.Config()
client = wandb.Api()

if conf.turbo:
    print("TURBO MODE!!!")

client.push("my_bucket", files=["weights.h5", "model.json"])

Detailed usage can be found in our documentation.

Tip!

Press p or to see the previous file or, n or to see the next file

About

🔥 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.

Collaborators 1

Comments

Loading...