1
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
from __future__ import absolute_import
|
||||
from keras.layers.core import Dense, Activation, Flatten
|
||||
|
||||
|
||||
def layers(input_shape):
|
||||
return [
|
||||
Dense(128, input_shape=input_shape),
|
||||
Activation('relu'),
|
||||
Dense(128, input_shape=input_shape),
|
||||
Activation('relu'),
|
||||
Flatten(),
|
||||
Dense(128),
|
||||
Activation('relu'),
|
||||
]
|
||||
Reference in New Issue
Block a user