tf.estimator.ModeKeys
Standard names for Estimator model modes.
View aliases
Compat aliases for migration
See
Migration guide for
more details.
tf.compat.v1.estimator.ModeKeys
, tf.compat.v2.estimator.ModeKeys
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'