Skip to main content
Try in Colab Use W&B for machine learning experiment tracking, dataset versioning, and project collaboration.
Benefits of using W&B
This Colab notebook introduces the WandbModelCheckpoint callback. Use this callback to log your model checkpoints to W&B Artifacts.

Setup and Installation

First, let us install the latest version of W&B. We will then authenticate this colab instance to use W&B.
If this is your first time using W&B or you are not logged in, the link that appears after running wandb.login() will take you to sign-up/login page. Signing up for a free account is as easy as a few clicks.

Hyperparameters

Use of proper config system is a recommended best practice for reproducible machine learning. We can track the hyperparameters for every experiment using W&B. In this colab we will be using simple Python dict as our config system.

Dataset

In this colab, we will be using Fashion-MNIST dataset from TensorFlow Dataset catalog. We aim to build a simple image classification pipeline using TensorFlow/Keras.

Model

Compile Model

Train