Metadata-Version: 2.1
Name: gtsne
Version: 0.1.6
Summary: GTSNE algorithms
Home-page: https://github.com/songtingstone/gtsne
Maintainer: Songting Shi
Maintainer-email: songtingstone@gmail.com
License: Apache License, Version 2.0
Description: # Python-GTSNE
        
        Python library containing GTSNE algorithms.
        
        Global t-Distributed Stochastic Neighbor Embedding
        
        ## Installation
        
        ## Requirements
        
        - [cblas](http://www.netlib.org/blas/) or [openblas](https://github.com/xianyi/OpenBLAS).
        Tested version is v0.2.5 and v0.2.6 (not necessary for OSX).
        
        From PyPI:
        
        ```
        pip install gtsne
        ```
        
        ## Usage
        
        Basic usage:
        
        ```python
        from gtsne import gtsne
        X_2d = gtsne(X)
        ```
        
        ### Examples
        
        - [Iris](http://nbviewer.ipython.org/urls/raw.github.com/danielfrg/py_tsne/master/examples/iris.ipynb)
        
        ## Algorithms
        
        ## Acknowledgements
        This code is adapted from code [Barnes-Hut-SNE](https://github.com/danielfrg/tsne)
        Special thanks to Laurens van der Maaten and Daniel Rodriguez. 
        
        ## Additional resources
        
        - See *Barnes-Hut-SNE* (2013), L.J.P. van der Maaten. It is available on [arxiv](http://arxiv.org/abs/1301.3342).
        
Keywords: GTSNE,algorithms,numpy,cython
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: dev
