mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Add libneural in its new location, moved from devel to math category w/o
a repocopy because there's no history to preserve. Libneural is a C++ library implementation of the classic 3-layer perceptron. Also release this port upon the people. Move suggested by: reg
This commit is contained in:
parent
825a75fa05
commit
bbbf0c1054
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=29962
6 changed files with 35 additions and 0 deletions
|
@ -28,6 +28,7 @@
|
||||||
SUBDIR += gsl
|
SUBDIR += gsl
|
||||||
SUBDIR += hexcalc
|
SUBDIR += hexcalc
|
||||||
SUBDIR += lapack
|
SUBDIR += lapack
|
||||||
|
SUBDIR += libneural
|
||||||
SUBDIR += libranlib
|
SUBDIR += libranlib
|
||||||
SUBDIR += linalg
|
SUBDIR += linalg
|
||||||
SUBDIR += linpack
|
SUBDIR += linpack
|
||||||
|
|
17
math/libneural/Makefile
Normal file
17
math/libneural/Makefile
Normal file
|
@ -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 <bsd.port.mk>
|
1
math/libneural/distinfo
Normal file
1
math/libneural/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (libneural-1.0.2.tar.gz) = 4a495e2094afc7ca3d95bce14947110b
|
1
math/libneural/pkg-comment
Normal file
1
math/libneural/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
C++ implementation of the classic 3-layer perceptron in library form
|
10
math/libneural/pkg-descr
Normal file
10
math/libneural/pkg-descr
Normal file
|
@ -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 <d.franklin@computer.org>
|
||||||
|
|
||||||
|
- Will <andrews@technologist.com>
|
5
math/libneural/pkg-plist
Normal file
5
math/libneural/pkg-plist
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
include/neuron.h
|
||||||
|
include/nnwork.h
|
||||||
|
lib/libneural.so
|
||||||
|
lib/libneural.so.0
|
||||||
|
lib/libneural.a
|
Loading…
Add table
Reference in a new issue