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
18 lines
434 B
Makefile
18 lines
434 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/09/02 11:56:15 jihbed Exp $
|
|
#
|
|
|
|
DISTNAME= pcp-2.2
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://garr.dl.sourceforge.net/project/pcp/pcp/2.2/
|
|
|
|
MAINTAINER= jihbed.research@gmail.com
|
|
HOMEPAGE= http://pcp.sourceforge.net/
|
|
COMMENT= Machine learning program for pattern classification
|
|
LICENSE= mit
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c c++ fortran
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|