Skip to content
/ PRMLT Public

Matlab code of machine learning algorithms in book PRML

License

Notifications You must be signed in to change notification settings

PRML/PRMLT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

36b2a8d · Mar 20, 2016
Mar 19, 2016
Mar 8, 2016
Mar 19, 2016
Mar 19, 2016
Mar 19, 2016
Mar 19, 2016
Mar 19, 2016
Mar 19, 2016
Mar 19, 2016
Mar 20, 2016
Mar 20, 2016
Mar 20, 2016
Mar 20, 2016
Mar 20, 2016
Mar 8, 2016
Mar 20, 2016
Jan 28, 2016
Mar 20, 2016
Mar 13, 2016
Sep 14, 2012

Repository files navigation

Pattern Recognition and Machine Learning

This package is a Matlab implementation of the algorithms described in the classical machine learning textbook: Pattern Recognition and Machine Learning by C. Bishop (PRML)

The design goal of the code are as follows:

  1. Clean: Code is very succinct. There are little nasty guarding code that distracts readers' attention. As a result, the core of the algorithms can be easily spot.
  2. Efficient: My tricks for making Matlab scripts efficient were applied (eg. vectorization and matrix factorization). Many functions are even comparable with C implementation. Usually, functions in this package are orders faster than Matlab builtin functions which provide the same functionality (eg. kmeans). If anyone found any Matlab implementation that is faster than mine, I am happy to further optimize.
  3. Robust: Many numerical stability techniques are applied, such as probability computation in log scale to avoid numerical underflow and overflow, square root form update of symetric matrix, etc.
  4. Easy to learn: The code is heavily commented. Reference formulas in PRML book are indicated for corresponding code lines.
  5. Practical: The package is designed not only to learn the algorithms in the book, but also to facilitate ML research. Many functions in this package are already among the top downloads in Matlab file exchange site and widely used.

License

Currently Released Under GPLv3

Contact

sth4nth at gmail dot com