-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error: SpMat::SpMat(): invalid row or column index #62
Comments
Hi Shawn... The most recent branch is I note, though, that your dataset has only two input features, and your code would generate a dataset with two output features. LargeVis is a method for dimensionality reduction. Since your data only has two features, I'm not sure what benefit you would obtain by running it through LargeVis. Is your goal to take advantage of the hd clustering features of the package? If so, considering your datasize, you may be better off using the |
Hi elbamos, thank you for your reply. I tried to install this most recent branch but got an error:
Any ideas? The reason I am using the dbscan clustering from largeVis is I find that the clusters generated from is more 'realistic' (in my analysis context) than the dbscan package. |
Huh... I just tried cutting and pasteing your |
Hi there, I am trying to use largevis to do clustering. I have about ~200 dataset, each dataset has ~ 1000 - 100000 samples with 2 features (feature number is consistent). While the largevis function works for almost all my dataset, I still got this error message for one of my dataset:
I realized that someone had such problem before, and the solution is to install the branch 'hotfix/twobugs', I successfully installed this version as well but no luck. Any ideas? Thanks!
The dataset is here: data.csv
The function I run is:
largeVis(t(as.matrix(data[, c('X', 'Y')])), dim=2, K = K, tree_threshold = 100, max_iter = 5,sgd_batches = 1, threads = 1)
The text was updated successfully, but these errors were encountered: