blob: bdb2a46f51cf584d63b13cd0325644432d80eace (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
PCP (Pattern Classification Program) is an open-source
machine learning program for supervised classification
of patterns (vectors of measurements).
PCP implements the following algorithms and methods:
* Fisher's linear discriminant
* dimensionality reduction using Singular Value Decomposition
* Principal Component Analysis
* feature subset selection
* Bayes error estimation
* parametric classifiers (linear and quadratic)
* least-squares (pseudo-inverse) linear discriminant
* k-Nearest Neighbor (k-NN)
* neural networks (Multi-Layer Perceptron (MLP))
* Support Vector Machine (SVM) algorithm
* SVM, MLP and k-NN model selection
* cross-validation
* bagging (committee) classification
WWW: http://pcp.sourceforge.net/
|