Skip to content

Commit 0989b17

Browse files
committed
Fix spelling
1 parent 7b52bca commit 0989b17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/lstm/imdb-classifier/imdb-embedding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
weights=[embedding_matrix], trainable=True))
6161
model.add(LSTM(100, return_sequences=True))
6262
model.add(LSTM(config.hidden_dims))
63-
model.add(tf.keras.layers.Dense(1, activatio='sigmoid'))
63+
model.add(tf.keras.layers.Dense(1, activation='sigmoid'))
6464
model.compile(loss='binary_crossentropy',
6565
optimizer='rmsprop',
6666
metrics=['accuracy'])

0 commit comments

Comments
 (0)