Skip to content

Latest commit

 

History

History
 
 

mnist

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Basic MNIST Example with Ignite

ported from pytorch-examples

python mnist.py

Logging with TensorboardX

MNIST example with training and validation monitoring using TensorboardX and Tensorboard.

Requirements:

  • TensorboardX: pip install tensorboardX
  • Tensorboard: pip install tensorflow (or just install tensorboard without the rest of tensorflow)

Usage:

Run the example:

python mnist_with_tensorboardx.py --log_dir=/tmp/tensorboard_logs

Start tensorboard:

tensorboard --logdir=/tmp/tensorboard_logs/

Logging with Visdom

MNIST example with training and validation monitoring using Visdom

Requirements:

Usage:

Start visdom:

python -m visdom.server

Run the example:

python mnist_with_visdom.py