dswalter / lpproj

Scikit-learn compatible Locality Preserving Projections in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Locality Preserving Projections in Python

This is a Python implementation of Locality Preserving Projections (LPP), compatible with scikit-learn.

version status downloads build status license

Installation and Use

This package is pure Python, and depends only on numpy, scipy, and scikit-learn. The released version can be installed via pip:

$ pip install lpproj

A basic example of its use can be found in Example.ipynb; the library follows scikit-learn's patterns for fit(), transform(), and fit_transform(). The simplest example for a feature matrix X:

from lpproj import LocalityPreservingProjection 
lpp = LocalityPreservingProjection(n_components=2)

X_2D = lpp.fit_transform(X)

More Information

For information on the LPP algorithm, see the paper, Locality Preserving Projections (pdf).

About

Scikit-learn compatible Locality Preserving Projections in Python

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Jupyter Notebook 96.6%Language:Python 3.4%