From c92d4d8c661ef70b42d4a825c6bb9e0959fde076 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Thu, 28 May 2020 10:51:13 -0700 Subject: [PATCH] docs: fix code formatting in Model docs for save() Committer: @miraleung PiperOrigin-RevId: 313618534 Change-Id: I8b7d803f7cb5ad6ff7adf4390e3c8d148322369a --- tensorflow/python/keras/saving/save.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/keras/saving/save.py b/tensorflow/python/keras/saving/save.py index 43c09a62ea9..7f725d3978e 100644 --- a/tensorflow/python/keras/saving/save.py +++ b/tensorflow/python/keras/saving/save.py @@ -76,7 +76,7 @@ def save_model(model, Note that the model weights may have different scoped names after being loaded. Scoped names include the model/layer names, such as - "dense_1/kernel:0"`. It is recommended that you use the layer properties to + `"dense_1/kernel:0"`. It is recommended that you use the layer properties to access specific variables, e.g. `model.get_layer("dense_1").kernel`. _SavedModel serialization_