We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9547d3d commit ee8036aCopy full SHA for ee8036a
test/test_knn.py
@@ -402,18 +402,15 @@ def bandwidth(x):
402
403
404
def test_knn_graph_sparse_no_pca():
405
- with assert_warns_message(
406
- UserWarning, "cannot use tree with sparse input: using brute force"
407
- ):
408
- build_graph(
409
- sp.coo_matrix(data),
410
- n_pca=None, # n_pca,
411
- decay=10,
412
- knn=3,
413
- thresh=1e-4,
414
- random_state=42,
415
- use_pygsp=True,
416
- )
+ build_graph(
+ sp.coo_matrix(data),
+ n_pca=None, # n_pca,
+ decay=10,
+ knn=3,
+ thresh=1e-4,
+ random_state=42,
+ use_pygsp=True,
+ )
417
418
419
#####################################################
0 commit comments