diff --git a/docs/guide/models_and_layers.md b/docs/guide/models_and_layers.md index cc78fca8..16096729 100644 --- a/docs/guide/models_and_layers.md +++ b/docs/guide/models_and_layers.md @@ -15,7 +15,7 @@ There are two ways to create a model using the Layers API: A _sequential_ model, ### The sequential model -The most common type of model is the [Sequential](https://js.tensorflow.org/api/0.15.1/#class:Sequential) model, which is a linear stack of layers. You can create a Sequential model by passing a list of layers to the [sequential()](https://js.tensorflow.org/api/0.15.1/#sequential) function: +The most common type of model is the [Sequential](https://js.tensorflow.org/api/latest/#sequential) model, which is a linear stack of layers. You can create a Sequential model by passing a list of layers to the [sequential()](https://js.tensorflow.org/api/latest/#sequential) function: ```js const model = tf.sequential({