Convenience function to build a SavedModel suitable for serving. (deprecated)
tf.compat.v1.saved_model.simple_save( session, export_dir, inputs, outputs, legacy_init_op=None )
In many common cases, saving models for serving will be as simple as:
simple_save(session, export_dir, inputs={"x": x, "y": y}, outputs={"z": z})
Although in many cases it's not necessary to understand all of the many ways to configure a SavedModel, this method has a few practical implications:
saved_model.SERVING
)GraphKeys.ASSET_FILEPATHS
collection. Only assets in that collection are exported; if you need more custom behavior, you'll need to use the SavedModelBuilder.More information about SavedModel and signatures can be found here: https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/saved_model/README.md
Args | |
---|---|
session | The TensorFlow session from which to save the meta graph and variables. |
export_dir | The path to which the SavedModel will be stored. |
inputs | dict mapping string input names to tensors. These are added to the SignatureDef as the inputs. |
outputs | dict mapping string output names to tensors. These are added to the SignatureDef as the outputs. |
legacy_init_op | Legacy support for op or group of ops to execute after the restore op upon a load. |
© 2020 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/versions/r2.3/api_docs/python/tf/compat/v1/saved_model/simple_save