This boolean is True when this is an export in the
end of training. It is False for the intermediate exports during the
training. When passing Exporter to tf.estimator.train_and_evaluateis_the_final_export is always False if TrainSpec.max_steps is
None.
Returns
The string path to the exported directory or None if export is skipped.
[null,null,["Last updated 2023-03-27 UTC."],[],[],null,["# tf.estimator.Exporter\n\n\u003cbr /\u003e\n\n|----------------------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/estimator/tree/master/tensorflow_estimator/python/estimator/exporter.py#L30-L62) |\n\nA class representing a type of model export. (deprecated)\n\n#### View aliases\n\n\n**Compat aliases for migration**\n\nSee\n[Migration guide](https://www.tensorflow.org/guide/migrate) for\nmore details.\n\n[`tf.compat.v1.estimator.Exporter`](https://www.tensorflow.org/api_docs/python/tf/estimator/Exporter)\n\n\u003cbr /\u003e\n\n tf.estimator.Exporter(\n *args, **kwargs\n )\n\n| **Deprecated:** THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: Use tf.keras instead.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Attributes ---------- ||\n|--------|-------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | Directory name. \u003cbr /\u003e A directory name under the export base directory where exports of this type are written. Should not be `None` nor empty. |\n\n\u003cbr /\u003e\n\nMethods\n-------\n\n### `export`\n\n[View source](https://github.com/tensorflow/estimator/tree/master/tensorflow_estimator/python/estimator/exporter.py#L43-L62) \n\n @abc.abstractmethod\n export(\n estimator, export_path, checkpoint_path, eval_result, is_the_final_export\n )\n\nExports the given `Estimator` to a specific format.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ||\n|-----------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `estimator` | the `Estimator` to export. |\n| `export_path` | A string containing a directory where to write the export. |\n| `checkpoint_path` | The checkpoint path to export. |\n| `eval_result` | The output of [`Estimator.evaluate`](../../tf/compat/v1/estimator/Estimator#evaluate) on this checkpoint. |\n| `is_the_final_export` | This boolean is True when this is an export in the end of training. It is False for the intermediate exports during the training. When passing `Exporter` to [`tf.estimator.train_and_evaluate`](../../tf/estimator/train_and_evaluate) `is_the_final_export` is always False if [`TrainSpec.max_steps`](../../tf/estimator/TrainSpec#max_steps) is `None`. |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ||\n|---|---|\n| The string path to the exported directory or `None` if export is skipped. ||\n\n\u003cbr /\u003e"]]