PRML-PRMLT-v1.0

所属分类:matlab编程
开发工具:matlab
文件大小:79KB
下载次数:4
上传日期:2018-01-04 09:09:39
上 传 者CU_smile
说明:  经典教材PRML(Pattern Recognition and Machine Learning)中各章节经典案例的matlab实现。
(The classical textbook PRML(Pattern Recognition and Machine Learning), the matlab implementation of the classic cases in each chapter.)

文件列表:
PRML-PRMLT-v1.0\chapter01\condEntropy.m (696, 2016-06-14)
PRML-PRMLT-v1.0\chapter01\entropy.m (352, 2016-06-14)
PRML-PRMLT-v1.0\chapter01\jointEntropy.m (559, 2016-06-14)
PRML-PRMLT-v1.0\chapter01\mutInfo.m (757, 2016-06-14)
PRML-PRMLT-v1.0\chapter01\nmi.m (923, 2016-06-14)
PRML-PRMLT-v1.0\chapter01\nvi.m (796, 2016-06-14)
PRML-PRMLT-v1.0\chapter01\relatEntropy.m (658, 2016-06-14)
PRML-PRMLT-v1.0\chapter02\logDirichlet.m (522, 2016-06-14)
PRML-PRMLT-v1.0\chapter02\logGauss.m (986, 2016-06-14)
PRML-PRMLT-v1.0\chapter02\logKde.m (423, 2016-06-14)
PRML-PRMLT-v1.0\chapter02\logMn.m (304, 2016-06-14)
PRML-PRMLT-v1.0\chapter02\logMvGamma.m (607, 2016-06-14)
PRML-PRMLT-v1.0\chapter02\logSt.m (1347, 2016-06-14)
PRML-PRMLT-v1.0\chapter02\logVmf.m (416, 2016-06-14)
PRML-PRMLT-v1.0\chapter02\logWishart.m (424, 2016-06-14)
PRML-PRMLT-v1.0\chapter03\linReg.m (818, 2016-06-14)
PRML-PRMLT-v1.0\chapter03\linRegFp.m (1322, 2016-06-14)
PRML-PRMLT-v1.0\chapter03\linRegPred.m (870, 2016-06-14)
PRML-PRMLT-v1.0\chapter03\linRnd.m (512, 2016-06-14)
PRML-PRMLT-v1.0\chapter04\binPlot.m (586, 2016-06-14)
PRML-PRMLT-v1.0\chapter04\fda.m (703, 2016-06-14)
PRML-PRMLT-v1.0\chapter04\logitBin.m (967, 2016-06-14)
PRML-PRMLT-v1.0\chapter04\logitBinPred.m (366, 2016-06-14)
PRML-PRMLT-v1.0\chapter04\logitMn.m (2124, 2016-06-14)
PRML-PRMLT-v1.0\chapter04\logitMnPred.m (461, 2016-06-14)
PRML-PRMLT-v1.0\chapter04\sigmoid.m (110, 2016-06-14)
PRML-PRMLT-v1.0\chapter04\softmax.m (308, 2016-06-14)
PRML-PRMLT-v1.0\chapter05\mlp.m (845, 2016-06-14)
PRML-PRMLT-v1.0\chapter05\mlpPred.m (322, 2016-06-14)
PRML-PRMLT-v1.0\chapter06\kn2sd.m (271, 2016-06-14)
PRML-PRMLT-v1.0\chapter06\knCenter.m (1048, 2016-06-14)
PRML-PRMLT-v1.0\chapter06\knGauss.m (453, 2016-06-14)
PRML-PRMLT-v1.0\chapter06\knKmeans.m (1055, 2016-06-14)
PRML-PRMLT-v1.0\chapter06\knKmeansPred.m (530, 2016-06-14)
PRML-PRMLT-v1.0\chapter06\knLin.m (305, 2016-06-14)
PRML-PRMLT-v1.0\chapter06\knPca.m (408, 2016-06-14)
PRML-PRMLT-v1.0\chapter06\knPcaPred.m (440, 2016-06-14)
PRML-PRMLT-v1.0\chapter06\knPoly.m (435, 2016-06-14)
PRML-PRMLT-v1.0\chapter06\knReg.m (711, 2016-06-14)
... ...

Introduction ------- 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](http://research.microsoft.com/en-us/um/people/cmbishop/prml/)). Description ------- 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: Many 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 symmetric 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 be easily read, but also to be easily used to facilitate ML research. Many functions in this package are already widely used (see [Matlab file exchange](http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A49739)). Installation ------- 1. Download the package by running: `git clone https://github.com/PRML/PRMLT.git`. 2. Run Matlab and navigate to package location as working directory, then run the init.m script. 3. Run some demos in the demo directory. Enjoy! License ------- Currently Released Under GPLv3 Contact ------- sth4nth at gmail dot com

近期下载者

相关文件


收藏者