diff --git a/README.md b/README.md index e3ca451ae..9bac5149b 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Keras is compatible with: __Python 2.7-3.5__. ## Getting started: 30 seconds to Keras -The core data structure of Keras is a __model__, a way to organize layers. The main type of model is the [`Sequential`](http://keras.io/getting-started/sequential-model-guide) model, a linear stack of layers. For more complex architectures, you should use the [Keras function API](http://keras.io/getting-started/functional-api-guide). +The core data structure of Keras is a __model__, a way to organize layers. The main type of model is the [`Sequential`](http://keras.io/getting-started/sequential-model-guide) model, a linear stack of layers. For more complex architectures, you should use the [Keras functional API](http://keras.io/getting-started/functional-api-guide). Here's the `Sequential` model: