export_savedmodel.keras.engine.training.Model {keras} | R Documentation |
Export a Saved Model
Description
Serialize a model to disk.
Usage
## S3 method for class 'keras.engine.training.Model'
export_savedmodel(
object,
export_dir_base,
overwrite = TRUE,
versioned = !overwrite,
remove_learning_phase = TRUE,
as_text = FALSE,
...
)
Arguments
object |
An R object. |
export_dir_base |
A string containing a directory in which to export the SavedModel. |
overwrite |
Should the |
versioned |
Should the model be exported under a versioned subdirectory? |
remove_learning_phase |
Should the learning phase be removed by saving
and reloading the model? Defaults to |
as_text |
Whether to write the SavedModel in text format. |
... |
Other arguments passed to tf.saved_model.save. (Used only if TensorFlow version >= 2.0) |
Value
The path to the exported directory, as a string.
[Package keras version 2.15.0 Index]