Skip to content

Commit

Permalink
Larger error tolerance since approx nearest neighbors can mess things…
Browse files Browse the repository at this point in the history
… up a bit.
  • Loading branch information
lmcinnes committed Oct 27, 2021
1 parent 9f6d1a6 commit 64080c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion umap/tests/test_umap_ops.py
Expand Up @@ -259,7 +259,7 @@ def test_umap_update_large(

error = np.sum(np.abs((new_model.graph_ - comparison_graph).data))

assert error < 1.5
assert error < 3.0 # Higher error tolerance based on approx nearest neighbors


# -----------------
Expand Down

0 comments on commit 64080c5

Please sign in to comment.