Skip to content

Commit

Permalink
Simplify imports in README
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed May 24, 2016
1 parent 5156673 commit 198c515
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -51,7 +51,7 @@ model = Sequential()
Stacking layers is as easy as `.add()`:

```python
from keras.layers.core import Dense, Activation
from keras.layers import Dense, Activation

model.add(Dense(output_dim=64, input_dim=100))
model.add(Activation("relu"))
Expand Down
2 changes: 1 addition & 1 deletion docs/templates/index.md
Expand Up @@ -49,7 +49,7 @@ model = Sequential()
Stacking layers is as easy as `.add()`:

```python
from keras.layers.core import Dense, Activation
from keras.layers import Dense, Activation

model.add(Dense(output_dim=64, input_dim=100))
model.add(Activation("relu"))
Expand Down

0 comments on commit 198c515

Please sign in to comment.