Skip to content
Snippets Groups Projects
Commit 6c6dfacc authored by Christof Kaufmann's avatar Christof Kaufmann
Browse files

Fix old variable name

parent edaccc59
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ y_train = to_categorical(y_train, 10)
y_test = to_categorical(y_test, 10)
model = Sequential()
myANN.add(Input((28, 28, 1)))
model.add(Input((28, 28, 1)))
model.add(Conv2D(9, kernel_size=(3, 3), activation='relu', kernel_initializer='he_uniform'))
model.add(MaxPooling2D(2))
model.add(Flatten())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment