You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem seems to be at this step:
dist_mat = knn_dists[nhood_ixs, :]
whereby nhood_ixs is a 'Series'.
It would work with:
dist_mat = knn_dists[np.array(nhood_ixs), :]
The problem seems to be at this step:
dist_mat = knn_dists[nhood_ixs, :]
whereby nhood_ixs is a 'Series'.
It would work with:
dist_mat = knn_dists[np.array(nhood_ixs), :]
This seems to be a problem with scipy==1.15.1