aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/keras
diff options
context:
space:
mode:
authorGravatar Francois Chollet <fchollet@google.com>2017-05-23 17:14:24 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-05-23 17:18:00 -0700
commitda92fbd8b0b6b3f6f52eb840f098d708e52391d7 (patch)
tree3e2980b93a7368e47b7cea9cf38b3cb47f8028c6 /tensorflow/contrib/keras
parent1f7eeae147a4bcdb075d257b2df54dee888e1536 (diff)
Reduce threshold of integration test to avoid flakes.
PiperOrigin-RevId: 156933321
Diffstat (limited to 'tensorflow/contrib/keras')
-rw-r--r--tensorflow/contrib/keras/python/keras/integration_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/keras/python/keras/integration_test.py b/tensorflow/contrib/keras/python/keras/integration_test.py
index 16d0713b31..f25e8eeaac 100644
--- a/tensorflow/contrib/keras/python/keras/integration_test.py
+++ b/tensorflow/contrib/keras/python/keras/integration_test.py
@@ -159,7 +159,7 @@ class KerasIntegrationTest(test.TestCase):
history = model.fit(x_train, y_train, epochs=10, batch_size=16,
validation_data=(x_test, y_test),
verbose=2)
- self.assertGreater(history.history['val_acc'][-1], 0.85)
+ self.assertGreater(history.history['val_acc'][-1], 0.70)
if __name__ == '__main__':