Skip to content

Commit 60bb5dd

Browse files
authored
Fix link to intro_to_graphs.ipynb in SavedModel migration guide
1 parent bd0bd66 commit 60bb5dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/en/guide/migrate/saved_model.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@
655655
"\n",
656656
"Signatures are the endpoints of a SavedModel—they tell the user how to run the model and what inputs are needed.\n",
657657
"\n",
658-
"In TensorFlow 1, signatures are created by listing the input and output tensors. In TensorFlow 2, signatures are generated by passing in *concrete functions*. (Read more about TensorFlow functions in the [Introduction to graphs and tf.function](../guide/intro_to_graphs.ipynb) guide, particularly the _Polymorphism: one Function, many graphs_ section.) In short, a concrete function is generated from a `tf.function`:\n",
658+
"In TensorFlow 1, signatures are created by listing the input and output tensors. In TensorFlow 2, signatures are generated by passing in *concrete functions*. (Read more about TensorFlow functions in the [Introduction to graphs and tf.function](../intro_to_graphs.ipynb) guide, particularly the _Polymorphism: one Function, many graphs_ section.) In short, a concrete function is generated from a `tf.function`:\n",
659659
"\n",
660660
"```python\n",
661661
"# Option 1: Specify an input signature.\n",

0 commit comments

Comments
 (0)