Last active
October 13, 2018 20:26
-
-
Save arnaldog12/d1d1140135d9c821a814afca4d4d2e74 to your computer and use it in GitHub Desktop.
Medium Posts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
model = Sequential() | |
model.add(Dense(units=20, activation='relu', kernel_regularizer='l2', input_dim=x.shape[1])) | |
model.add(Dense(units=10, activation='relu', kernel_regularizer='l2')) | |
model.add(Dense(units=3, activation='linear')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment