openTSNE icon indicating copy to clipboard operation
openTSNE copied to clipboard

Extensible, parallel implementations of t-SNE

Results 13 openTSNE issues
Sort by recently updated
recently updated
newest added

Thank you for your very good work, very inspiring to me, would like to ask where the macosko_2015.pkl.gz file can be downloaded, thank you!

The docstring here https://github.com/pavlin-policar/openTSNE/blob/master/openTSNE/nearest_neighbors.py#L213 (about pickling Annoy objects into a separate file) seems obsolete: that's not the way this is currently done in the code.

##### Expected behaviour On Windows OS, when trying to save the TSNEEmbedding object, or affinities, tried to save it with `pickle.dump(embeddings,open(os.path.join(self.models_path,"tsne_global_embeddings.sav"),"wb"))` or also tried to save as array to reconstruct...

##### Expected behaviour When I run tSNE on a symmetric 200x200 block matrix such as this one ![distancematrix0](https://user-images.githubusercontent.com/64090304/115153699-9ff33280-a077-11eb-8e9b-fa457b0b9abc.png) I expect TSNE to return 4 distinct clusters (actually 4 points only)....

bug

Hi Pavlin, I worked with openTSNE using pandas DataFrames as input for a while and it worked fine. Suddenly I got a KeyError. It seems that for larger DataFrames openTSNE...

bug

Hello, is there a way to use k-nearest neighbors data created externally? My current strategy is to create a dummy class of the form: ```python class PrecomputedKNNIndex: def __init__(self, indices,...

Hi guys, I'm using openTSNE for the first time. However, it seems that openTSNE is not compatible with newer versions of Numpy. I don't know if that is an issue,...

I'm reopening a previously closed issue (https://github.com/pavlin-policar/openTSNE/issues/210) In version 1.0.0, the problem still occurs. I tried running my code as administrator and the issue persists. There seems to be a...

Hey, thanks for working on this, @pavlin-policar. However, when building the package in i386, one of the tests fails: ``` =================================== FAILURES =================================== _________ TestTSNECorrectnessUsingPrecomputedDistanceMatrix.test_iris __________ self = def test_iris(self):...

Hi Pavlin, for packages that depend on openTSNE, it is somewhat cumbersome that openTSNE requires the oldest supported numpy version for the given python version, because this can easily lead...