Giter Site home page Giter Site logo

gmr's Introduction

gmr

Travis

Code Health

Gaussian Mixture Models (GMMs) (using EM and incremental) for clustering and regression in Python.

image

Example

Estimate GMM from samples and sample from GMM:

from gmr import GMM

gmm = GMM(n_components=3, random_state=random_state)
gmm.from_samples(X)
X_sampled = gmm.sample(100)

Guassian Mixture Regression Estimation Maximization:

from gmr import GMM

gmm = GMM(n_components=3, random_state=0)
gmm.from_samples(X)
Y_gmm = gmm.predict(np.array([0]), X_test[:, np.newaxis])

Guassian Mixture Regression Incremental Update:

from gmr import IGMM

igmm = IGMM(n=2, sig_init=1.1, T_nov=.1) for i in range(X.shape[0]): igmm.update(X[i,:]) Y_igmm = igmm.predict(np.array([0]), X_test[:, np.newaxis])

How Does It Compare to scikit-learn?

There is an implementation of Gaussian Mixture Models for clustering in scikit-learn as well. Regression could not be easily integrated in the interface of sklearn. That is the reason why I put the code in a separate repository.

Installation

from source:

sudo python setup.py install

gmr's People

Contributors

alexanderfabisch avatar jfsantos avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.