Skip to content

Commit d78d5dc

Browse files
committed
test_manifold: Force eigen_solver="dense"
Avoid an "ARPACK error 3: No shifts could be applied ..." when running tests on Windows.
1 parent eebf44e commit d78d5dc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Orange/tests/test_manifold.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ def __lle_test_helper(self, data, n_com):
5656
lle = lle(data)
5757

5858
ltsa = LocallyLinearEmbedding(n_neighbors=5, n_components=n_com,
59-
method="ltsa")
59+
method="ltsa",
60+
eigen_solver="dense")
6061
ltsa = ltsa(data)
6162

6263
hessian = LocallyLinearEmbedding(n_neighbors=15, n_components=n_com,

0 commit comments

Comments
 (0)