diff --git a/umap/tests/test_composite_models.py b/umap/tests/test_composite_models.py index b2b5b276..4d3e1bad 100644 --- a/umap/tests/test_composite_models.py +++ b/umap/tests/test_composite_models.py @@ -25,12 +25,12 @@ def test_composite_trustworthiness(nn_data, iris_model): model3 = model1 * model2 trust = trustworthiness(data, model3.embedding_, 10) assert ( - trust >= 0.82 + trust >= 0.74 ), "Insufficiently trustworthy embedding for" "nn dataset: {}".format(trust) model4 = model1 + model2 trust = trustworthiness(data, model4.embedding_, 10) assert ( - trust >= 0.82 + trust >= 0.79 ), "Insufficiently trustworthy embedding for" "nn dataset: {}".format(trust) with pytest.raises(ValueError):