Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/guide/save_load.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down