Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the first example in Keras' Sequential Model guide pass #7

Closed
cesarsouza opened this issue Aug 14, 2017 · 0 comments
Closed

Make the first example in Keras' Sequential Model guide pass #7

cesarsouza opened this issue Aug 14, 2017 · 0 comments

Comments

@cesarsouza
Copy link
Owner

cesarsouza commented Aug 14, 2017

The first example in Keras' sequential model guide is:

from keras.models import Sequential
from keras.layers import Dense, Activation

model = Sequential([
    Dense(32, input_shape=(784,)),
    Activation('relu'),
    Dense(10),
    Activation('softmax'),
])

and the unit test is located at https://github.com/cesarsouza/keras-sharp/blob/master/Tests/SequentialTest.cs#L44

@cesarsouza cesarsouza changed the title Make the first example for a Sequential model pass Make the first example in Keras Sequential Model guide pass Aug 16, 2017
@cesarsouza cesarsouza changed the title Make the first example in Keras Sequential Model guide pass Make the first example in Keras' Sequential Model guide pass Aug 16, 2017
cesarsouza added a commit that referenced this issue Aug 16, 2017
Updates GH-7: Make the first example in Keras' Sequential Model guide pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant