Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

README.md 1.3 KB

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

Comments

Loading...