From 391601dc3f4793e10aaf9d21f5bbe2a94ecf4f50 Mon Sep 17 00:00:00 2001 From: Gergely Szilvasy Date: Mon, 26 Jun 2023 05:02:47 -0700 Subject: [PATCH] relax test_ivf_train_2level threshold (#2927) Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/2927 Reviewed By: mlomeli1 Differential Revision: D47017009 fbshipit-source-id: cfa1df4b9632b085d3a61b56d8617bebd7e5aad6 --- tests/test_contrib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_contrib.py b/tests/test_contrib.py index 528c779c1..898e7315f 100644 --- a/tests/test_contrib.py +++ b/tests/test_contrib.py @@ -521,7 +521,7 @@ class TestClustering(unittest.TestCase): # normally 47 / 200 differences ndiff = (Iref != Inew).sum() - self.assertLess(ndiff, 50) + self.assertLess(ndiff, 51) class TestBigBatchSearch(unittest.TestCase):