All Projects → jakevdp → Lpproj

jakevdp / Lpproj

Licence: bsd-3-clause
Scikit-learn compatible Locality Preserving Projections in Python

Projects that are alternatives of or similar to Lpproj

Qastrategy101
strategy 101 从今天开始 逐步开放101个基础策略的QA实现 包含5个大类
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Tensorflow Brasil
Códigos e materiais sobre TensorFlow em Português
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Squeezenet Neural Style Pytorch
Lightweight implementation of neural style in Pytorch with SqueezeNet
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Rental Prediction
2018年全国大学生计算机应用能力大赛之住房月租金预测第一名代码
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Course Computational Literary Analysis
Course materials for Introduction to Computational Literary Analysis, taught at UC Berkeley in Summer 2018, 2019, and 2020, and at Columbia University in Fall 2020.
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Keras Multi Gpu
Multi-GPU data-parallel training in Keras
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Gan Vis
Visualization of GAN training process
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Image retrieval
Image retrieval system demo based on caffe and lsh
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Ace azure ml
This repository contains training material related to Azure and Machine Learning
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Selective Joint Fine Tuning
Codes and models for the CVPR 2017 spotlight paper "Borrowing Treasures from the Wealthy: Deep Transfer Learning through Selective Joint Fine-tuning".
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Python Note
《Python 学习手册》(第四版 + 第五版)笔记
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
C programming for machine learning
This is the code for "C Programming for Machine Learning" By Siraj Raval on Youtube
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Ios Coreml Mnist
Real-time Number Recognition using Apple's CoreML 2.0 and MNIST -
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Deep learning for biologists with keras
tutorials made for biologists to learn deep learning
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Mit 6.s094
MIT-6.S094: Deep Learning for Self-Driving Cars Assignments solutions
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Python
En este repositorio encontraras todo relacionado con python, desde definiciones básicas hasta Machine Learning y un poco de Data Science, este repositorio contiene todo lo que e aprendido acerca de python, espero lo disfrutes.
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Pu learning
Experiments in positive-unlabeled learning
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Pug classifier
Deep Learning for Pugs
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Ml Examples
some machine learning examples
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook
Google earth engine notebook
A walkthrough of some Google Earth Engine Features, as well as using the data in TensorFlow
Stars: ✭ 74 (+0%)
Mutual labels:  jupyter-notebook

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).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].