Does the trainer currently write out logs for Tensorboard? I looked through the code in utils/trainer_utils.py, and while I see calls to tf.summary.scalar, I don't see a call to tf.summary.FileWriter.
If it does support Tensorboard, how do I configure it?
If not, I'll start working on a pull request tomorrow to implement this.
Yes, the trainer writes to $TRAIN_DIR. Run tensorboard like this:
tensorboard --logdir $TRAIN_DIR --host localhost --port 2222
Then, I see an overview of the training process:

Thanks!
wooooooooow , nice features !
Thanks!
Most helpful comment
Yes, the trainer writes to $TRAIN_DIR. Run tensorboard like this:
tensorboard --logdir $TRAIN_DIR --host localhost --port 2222
Then, I see an overview of the training process:
