Skip to content

Commit

Permalink
Disable flaky test.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 212706610
  • Loading branch information
fchollet authored and tensorflower-gardener committed Sep 12, 2018
1 parent 1ef9c57 commit ce73fa8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tensorflow/python/keras/layers/recurrent_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,9 @@ def test_builtin_rnn_cell_serialization(self):
y_np_2 = model.predict(x_np)
self.assertAllClose(y_np, y_np_2, atol=1e-4)

def test_stacked_rnn_dropout(self):
def DISABLED_test_stacked_rnn_dropout(self):
# Temporarily disabled test due an occasional Grappler segfault.
# See b/115523414
cells = [keras.layers.LSTMCell(3, dropout=0.1, recurrent_dropout=0.1),
keras.layers.LSTMCell(3, dropout=0.1, recurrent_dropout=0.1)]
layer = keras.layers.RNN(cells)
Expand Down

0 comments on commit ce73fa8

Please sign in to comment.