Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sth4nth committed Feb 4, 2016
1 parent 943cd52 commit 6cf5d4c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Pattern Recognition and Machine Learning
===========

This package contains the matlab implementation of the algorithms described in the book:
Pattern Recognition and Machine Learning by C. Bishop (http://research.microsoft.com/en-us/um/people/cmbishop/prml/)
This package is a matlab implementation of the algorithms described in the book:
Pattern Recognition and Machine Learning by C. Bishop ([PRML](http://research.microsoft.com/en-us/um/people/cmbishop/prml/))

The goal of the code are as follows:

1. clean. make the code as clean as possible, which means, there are little nasty guarding code that distracts reader's attention so that the core of the algorithms is easy to spot.
2. efficient. use matlab vectorization trick as much as possible to make the function fast, many functions are even comparable with c implementation. usually, the functions in this package are orders faster than matlab builtin function which provide same functionality (such as kmeans). If anyone can find any matlab implementation that are faster than my code, I am happy to do further optimization.
3. robust. many numerical stability techniques are applied to avoid numerical underflow and overflow which often happens when dealing with high dimensional data
4. easy to learn. the code are heavily commented, and the reference formulas in PRML book are indicated for corresponding code lines
5. practical. the package is designed not only for users to learn the algorithms in the book, but also to facility ML reseearch. Many functions in this package are already among the top downloads in Matlab file exchange and widely used.
1. Clean: making the code as succinct as possible, which means, there are little nasty guarding code that distracts reader's attention so that the core of the algorithms can be easily spot.
2. Efficient: utilizing matlab vectorization trick as much as possible to make the function fast. Many functions are even comparable with C implementation. Usually, functions in this package are orders faster than matlab builtin functions which provide same functionality (such as kmeans). If anyone found any matlab implementation which 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 for users to learn the algorithms in the book, but also to facilitate ML reseearch. Many functions in this package are already among the top downloads in Matlab [file exchange](http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A49739) site and widely used.

License
-------
Expand Down

0 comments on commit 6cf5d4c

Please sign in to comment.