Pattern Recognition and Machine Learning - oilneck/prml_python GitHub Wiki
These are codes implementing some algorithms introduced in "Pattern Recognition and Machine Learning" (Author: C.M.Bishop). Python language used for these implementation.
- python 3
- numpy
- pandas
- matplotlib
- Download the file to a local folder (e.g. ~/prml_python/) by executing:
git clone https://github.com/oilneck/prml_python.git
-
Run Python and change your directory (~/prml_python/), then run the
init.py
script. -
Run some demonstration files in Sec1~Sec5 folder.
The contents of Pattern Recognition and Machine Learning
- sec.1 : Introduction
- sec.2 : Probability distributions
- sec.3 : Linear Models for Regression
- sec.4 : Linear Models for Classification
- sec.5 : Neural Networks
Deep learning and Convolutional neural network for image recognition
- Deep learning test γ Required libraries : numpy, sklearn (βto fetch data) γ
- Image recognition γ Required libraries : keras, TensorFlow, OpenCV γ
Regularization method for neural network Regularization_of_NN.pdf |
Convolutional neural network CNN.pdf |