From 238d16974fe0856b2e7e5ae13da09f129f6baf0b Mon Sep 17 00:00:00 2001 From: Francois Date: Fri, 27 Mar 2015 18:37:38 -0700 Subject: [PATCH] Small documentation fixes --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5661abd6a..696757f37 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Keras - Theano-based Deep Learning library +# Keras: Theano-based Deep Learning library ## You have just found Keras. @@ -52,7 +52,6 @@ model = Sequential() model.add(Dense(20, 64, init='uniform', activation='tanh')) model.add(Dropout(0.5)) model.add(Dense(64, 64, init='uniform', activation='tanh')) -model.add(Activation('tanh')) model.add(Dropout(0.5)) model.add(Dense(64, 1, init='uniform', activation='sigmoid') @@ -60,7 +59,7 @@ sgd = SGD(lr=0.1, decay=1e-6, momentum=0.9, nesterov=True) model.compile(loss='mean_squared_error', optimizer=sgd) ``` -### VGG-like net: +### VGG-like convnet: ```python from keras.models import Sequential