Home

Awesome

NOT MAINTAINED

Python-TSNE

pypi build coverage license

Python library containing T-SNE algorithms.

Note: Scikit-learn v0.17 includes TSNE algorithms and you should probably be using that instead.

Installation

Requirements

From PyPI:

pip install tsne

From conda:

conda install -c maxibor tsne

Usage

Basic usage:

from tsne import bh_sne
X_2d = bh_sne(X)

Examples

Algorithms

Barnes-Hut-SNE

A python (cython) wrapper for Barnes-Hut-SNE aka fast-tsne.

I basically took osdf's code and made it pip compliant.

Additional resources