参考

GoogleCloudPlatform / tf-estimator-tutorials。其中TensorFlow Estimators: Train, Evaluate, Export, Explained!中有tf.estimator.train_and_evaluate例子。
An Advanced Example of the Tensorflow Estimator Class。tf.estimator.train_and_evaluate用法。
google: Creating Custom Estimators in TensorFlow。有tensorboard使用例子。
Tensorflow Estimator tutorial on real life data。有tensorboard使用例子。

知识点

训练过程中输出其它指标

Printing extra training metrics with Tensorflow Estimator

统计运行时间等?

How to display Runtime Statistics in Tensorboard using Estimator API in a distributed environment
session_run_hook.py

多gpu

  • 使用n个gpu时,batch_size和1gpu相同,还是变为n倍?内部运行机制?