diff --git a/math/Makefile b/math/Makefile index 3e0b75fffa91..667b3939e17d 100644 --- a/math/Makefile +++ b/math/Makefile @@ -28,6 +28,7 @@ SUBDIR += gsl SUBDIR += hexcalc SUBDIR += lapack + SUBDIR += libneural SUBDIR += libranlib SUBDIR += linalg SUBDIR += linpack diff --git a/math/libneural/Makefile b/math/libneural/Makefile new file mode 100644 index 000000000000..ecb1ae2acaa4 --- /dev/null +++ b/math/libneural/Makefile @@ -0,0 +1,17 @@ +# New ports collection makefile for: libneural +# Date created: 14 Jun 2000 +# Whom: will +# +# $FreeBSD$ +# + +PORTNAME= libneural +PORTVERSION= 1.0.2 +CATEGORIES= devel +MASTER_SITES= http://ieee.uow.edu.au/documents/contrib/ + +MAINTAINER= ports@FreeBSD.org + +USE_LIBTOOL= yes + +.include diff --git a/math/libneural/distinfo b/math/libneural/distinfo new file mode 100644 index 000000000000..9c7305e692ef --- /dev/null +++ b/math/libneural/distinfo @@ -0,0 +1 @@ +MD5 (libneural-1.0.2.tar.gz) = 4a495e2094afc7ca3d95bce14947110b diff --git a/math/libneural/pkg-comment b/math/libneural/pkg-comment new file mode 100644 index 000000000000..031aaa9f795b --- /dev/null +++ b/math/libneural/pkg-comment @@ -0,0 +1 @@ +C++ implementation of the classic 3-layer perceptron in library form diff --git a/math/libneural/pkg-descr b/math/libneural/pkg-descr new file mode 100644 index 000000000000..4c2c0f1e2e5e --- /dev/null +++ b/math/libneural/pkg-descr @@ -0,0 +1,10 @@ +libneural is an extremely tiny library for creating a software +three layer backpropagation neural network. This is useful for +a very wide variety of pattern recognition and classification +problems. It is written in C++, based on the standard algorithm +with NO fancy features like bias terms or momentum. + +WWW: http://ieee.uow.edu.au/~daniel/software/libneural/ +Author: Daniel Franklin + +- Will diff --git a/math/libneural/pkg-plist b/math/libneural/pkg-plist new file mode 100644 index 000000000000..cc772850c3ad --- /dev/null +++ b/math/libneural/pkg-plist @@ -0,0 +1,5 @@ +include/neuron.h +include/nnwork.h +lib/libneural.so +lib/libneural.so.0 +lib/libneural.a