W3cubDocs

/TensorFlow Python

tf.contrib.learn.ExportStrategy

Class ExportStrategy

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

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

A class representing a type of model export.

THIS CLASS IS DEPRECATED. See contrib/learn/README.md for general migration instructions.

Typically constructed by a utility function specific to the exporter, such as saved_model_export_utils.make_export_strategy().

Attributes:

  • name: The directory name under the export base directory where exports of this type will be written.
  • export_fn: A function that writes an export, given an estimator, a destination path, and optionally a checkpoint path and an evaluation result for that checkpoint. This export_fn() may be run repeatedly during continuous training, or just once at the end of fixed-length training. Note the export_fn() may choose whether or not to export based on the eval result or based on an internal timer or any other criterion, if exports are not desired for every checkpoint.

The signature of this function must be one of:

* `(estimator, export_path) -> export_path`
* `(estimator, export_path, checkpoint_path) -> export_path`
* `(estimator, export_path, checkpoint_path, eval_result) -> export_path`
* `(estimator, export_path, checkpoint_path, eval_result,
    strip_default_attrs) -> export_path`
  • strip_default_attrs: (Optional) Boolean. If set as True, default attrs in the GraphDef will be stripped on write. This is recommended for better forward compatibility of the resulting SavedModel.

Properties

export_fn

Alias for field number 1

name

Alias for field number 0

strip_default_attrs

Alias for field number 2

Methods

__new__

@staticmethod
__new__(
    cls,
    name,
    export_fn,
    strip_default_attrs=None
)

DEPRECATED FUNCTION

THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: Please switch to tf.estimator.train_and_evaluate, and use tf.estimator.Exporter.

export

export(
    estimator,
    export_path,
    checkpoint_path=None,
    eval_result=None
)

Exports the given Estimator to a specific format.

Args:

  • estimator: the Estimator to export.
  • export_path: A string containing a directory where to write the export.
  • checkpoint_path: The checkpoint path to export. If None (the default), the strategy may locate a checkpoint (e.g. the most recent) by itself.
  • eval_result: The output of Estimator.evaluate on this checkpoint. This should be set only if checkpoint_path is provided (otherwise it is unclear which checkpoint this eval refers to).

Returns:

The string path to the exported directory.

Raises:

  • ValueError: if the export_fn does not have the required signature

© 2018 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/ExportStrategy