str or pathlib.Path object, path to the saved model file.
custom_objects
Optional dictionary mapping names
(strings) to custom classes or functions to be
considered during deserialization.
compile
Boolean, whether to compile the model after loading.
safe_mode
Boolean, whether to disallow unsafe lambda deserialization.
When safe_mode=False, loading an object has the potential to
trigger arbitrary code execution. This argument is only
applicable to the Keras v3 model format. Defaults to True.
SavedModel format arguments:
options: Only applies to SavedModel format.
Optional tf.saved_model.LoadOptions object that specifies
SavedModel loading options.
Returns
A Keras model instance. If the original model was compiled,
and the argument compile=True is set, then the returned model
will be compiled. Otherwise, the model will be left uncompiled.
Note that the model variables may have different name values
(var.name property, e.g. "dense_1/kernel:0") after being reloaded.
It is recommended that you use layer attributes to
access specific variables, e.g. model.get_layer("dense_1").kernel.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-01-23 UTC."],[],[]]