aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/keras/_impl/keras/integration_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/keras/_impl/keras/integration_test.py')
-rw-r--r--tensorflow/python/keras/_impl/keras/integration_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/keras/_impl/keras/integration_test.py b/tensorflow/python/keras/_impl/keras/integration_test.py
index 871a8c7329..7110036848 100644
--- a/tensorflow/python/keras/_impl/keras/integration_test.py
+++ b/tensorflow/python/keras/_impl/keras/integration_test.py
@@ -93,7 +93,7 @@ class KerasIntegrationTest(test.TestCase):
y_test = keras.utils.to_categorical(y_test)
model = keras.models.Sequential()
- model.add(keras.layers.LSTM(5, return_sequences=True,
+ model.add(keras.layers.LSTM(3, return_sequences=True,
input_shape=x_train.shape[1:]))
model.add(keras.layers.GRU(y_train.shape[-1], activation='softmax'))
model.compile(loss='categorical_crossentropy',