diff --git a/docs/guide/save_load.md b/docs/guide/save_load.md index d95cf0ec..1db844f4 100644 --- a/docs/guide/save_load.md +++ b/docs/guide/save_load.md @@ -14,9 +14,7 @@ Loading these models are covered in the following two tutorials: ## Save a tf.Model -[`tf.Model`](https://js.tensorflow.org/api/0.14.2/#class:Model) and [`tf.Sequential`](https://js.tensorflow.org/api/0.14.2/#class:Model) -both provide a function [`model.save`](https://js.tensorflow.org/api/0.14.2/#tf.Model.save) that allow you to save the -_topology_ and _weights_ of a model. +[`tf.model`](https://js.tensorflow.org/api/latest/#model) and [`tf.Sequential`](https://js.tensorflow.org/api/latest/#class:Sequential) both provide a function [`model.save`](https://js.tensorflow.org/api/0.14.2/#tf.Model.save) that allow you to save the _topology_ and _weights_ of a model. - Topology: This is a file describing the architecture of a model (i.e. what operations it uses). It contains references to the models's weights which are stored externally.