W3cubDocs

/TensorFlow Python

tf.contrib.learn.Experiment

class tf.contrib.learn.Experiment

See the guide: Learn (contrib) > Distributed training utilities

Experiment is a class containing all information needed to train a model.

After an experiment is created (by passing an Estimator and inputs for training and evaluation), an Experiment instance knows how to invoke training and eval loops in a sensible fashion for distributed training.

Properties

continuous_eval_predicate_fn

continuous_eval_throttle_secs

delay_workers_by_global_step

estimator

eval_delay_secs

eval_hooks

eval_input_fn

eval_metrics

eval_steps

export_strategies

local_eval_frequency

min_eval_frequency

train_input_fn

train_monitors

train_steps

Methods

__init__(*args, **kwargs)

Constructor for Experiment. (deprecated arguments)

SOME ARGUMENTS ARE DEPRECATED. They will be removed after 2016-10-23. Instructions for updating: local_eval_frequency is deprecated as local_run will be renamed to train_and_evaluate. Use min_eval_frequency and call train_and_evaluate instead. Note, however, that the default for min_eval_frequency is 1, meaning models will be evaluated every time a new checkpoint is available. In contrast, the default for local_eval_frequency is None, resulting in evaluation occurring only after training has completed. min_eval_frequency is ignored when calling the deprecated local_run.

Creates an Experiment instance. None of the functions passed to this constructor are executed at construction time. They are stored and used when a method is executed which requires it.

Args:

  • estimator: Object implementing Trainable and Evaluable.
  • train_input_fn: function, returns features and labels for training.
  • eval_input_fn: function, returns features and labels for evaluation. If eval_steps is None, this should be configured only to produce for a finite number of batches (generally, 1 epoch over the evaluation data).
  • eval_metrics: dict of string, metric function. If None, default set is used.
  • train_steps: Perform this many steps of training. None, the default, means train forever.
  • eval_steps: evaluate runs until input is exhausted (or another exception is raised), or for eval_steps steps, if specified.
  • train_monitors: A list of monitors to pass to the Estimator's fit function.
  • eval_hooks: A list of SessionRunHook hooks to pass to the Estimator's evaluate function.
  • local_eval_frequency: Frequency of running eval in steps, when running locally. If None, runs evaluation only at the end of training.
  • eval_delay_secs: Start evaluating after waiting for this many seconds.
  • continuous_eval_throttle_secs: Do not re-evaluate unless the last evaluation was started at least this many seconds ago for continuous_eval().
  • min_eval_frequency: (applies only to train_and_evaluate). the minimum number of steps between evaluations. Of course, evaluation does not occur if no new snapshot is available, hence, this is the minimum.
  • delay_workers_by_global_step: if True delays training workers based on global step instead of time.
  • export_strategies: A list of ExportStrategys, or a single one, or None.
  • continuous_eval_predicate_fn: A predicate function determining whether to continue eval after each iteration. predicate_fn takes the evaluation results as arguments. At the beginning of evaluation, the passed eval results will be None so it's expected that the predicate function handles that gracefully. When predicate_fn is not specified, continuous eval will run in an infinite loop.

Raises:

  • ValueError: if estimator does not implement Evaluable and Trainable, or if export_strategies has the wrong type.

continuous_eval(delay_secs=None, throttle_delay_secs=None, evaluate_checkpoint_only_once=True)

continuous_eval_on_train_data(delay_secs=None, throttle_delay_secs=None)

evaluate(delay_secs=None)

Evaluate on the evaluation data.

Runs evaluation on the evaluation data and returns the result. Runs for self._eval_steps steps, or if it's None, then run until input is exhausted or another exception is raised. Start the evaluation after delay_secs seconds, or if it's None, defaults to using self._eval_delay_secs seconds.

Args:

  • delay_secs: Start evaluating after this many seconds. If None, defaults to using self._eval_delays_secs.

Returns:

The result of the evaluate call to the Estimator.

local_run(*args, **kwargs)

DEPRECATED FUNCTION

THIS FUNCTION IS DEPRECATED. It will be removed after 2016-10-23. Instructions for updating: local_run will be renamed to train_and_evaluate and the new default behavior will be to run evaluation every time there is a new checkpoint.

run_std_server()

Starts a TensorFlow server and joins the serving thread.

Typically used for parameter servers.

Raises:

  • ValueError: if not enough information is available in the estimator's config to create a server.

test()

Tests training and evaluating the estimator both for a single step.

Returns:

The result of the evaluate call to the Estimator.

train(delay_secs=None)

Fit the estimator using the training data.

Train the estimator for self._train_steps steps, after waiting for delay_secs seconds. If self._train_steps is None, train forever.

Args:

  • delay_secs: Start training after this many seconds.

Returns:

The trained estimator.

train_and_evaluate()

Interleaves training and evaluation.

The frequency of evaluation is controlled by the contructor arg min_eval_frequency. When this parameter is None or 0, evaluation happens only after training has completed. Note that evaluation cannot happen more frequently than checkpoints are taken. If no new snapshots are available when evaluation is supposed to occur, then evaluation doesn't happen for another min_eval_frequency steps (assuming a checkpoint is available at that point). Thus, settings min_eval_frequency to 1 means that the model will be evaluated everytime there is a new checkpoint.

This is particular useful for a "Master" task in the cloud, whose responsibility it is to take checkpoints, evaluate those checkpoints, and write out summaries. Participating in training as the supervisor allows such a task to accomplish the first and last items, while performing evaluation allows for the second.

Returns:

The result of the evaluate call to the Estimator.

Defined in tensorflow/contrib/learn/python/learn/experiment.py.

© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/contrib/learn/Experiment