Tensor2tensor: Tensorboard Support?

Created on 22 Jun 2017  路  4Comments  路  Source: tensorflow/tensor2tensor

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.

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:
readme_train_tensorboard

All 4 comments

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:
readme_train_tensorboard

Thanks!

wooooooooow , nice features !

Thanks!

Was this page helpful?
0 / 5 - 0 ratings