tf.estimator.ModeKeys

TensorFlow 1 version View source on GitHub

Standard names for Estimator model modes.

The following standard keys are defined:

  • TRAIN: training/fitting mode.
  • EVAL: testing/evaluation mode.
  • PREDICT: predication/inference mode.

Class Variables

  • EVAL = 'eval'
  • PREDICT = 'infer'
  • TRAIN = 'train'