tf.estimator.EvalSpec

View source on GitHub

Configuration for the "eval" part for the train_and_evaluate call.

tf.estimator.EvalSpec(
    input_fn, steps=100, name=None, hooks=None, exporters=None,
    start_delay_secs=120, throttle_secs=600
)

EvalSpec combines details of evaluation of the trained model as well as its export. Evaluation consists of computing metrics to judge the performance of the trained model. Export writes out the trained model on to external storage.

Args:

Attributes:

Raises: