We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 285bbd8 commit 3ecc897Copy full SHA for 3ecc897
MLP.py
@@ -56,7 +56,7 @@ def readucr(filename):
56
57
x = keras.layers.Input(x_train.shape[1:])
58
y= keras.layers.Dropout(0.1)(x)
59
- y = keras.layers.Dense(500, activation='relu')(x)
+ y = keras.layers.Dense(500, activation='relu')(y)
60
y = keras.layers.Dropout(0.2)(y)
61
y = keras.layers.Dense(500, activation='relu')(y)
62
0 commit comments