mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
6f1e8de2b8
library, which implements multilayer artificial neural networks in C with support for both fully connected and sparsely connected networks. Cross-platform execution in both fixed and floating point are supported. It includes a framework for easy handling of training data sets. It is easy to use, versatile, well documented, and fast. PHP, C++, .NET, Ada, Python, Delphi, Octave, Ruby, Pure Data and Mathematica bindings are available. A reference manual accompanies the library with examples and recommendations on how to use the library. A graphical user interface is also available for the library. WWW: http://leenissen.dk/fann/ PR: ports/109853 Submitted by: Tz-Huan Huang <tzhuan at csie.org>
25 lines
530 B
Makefile
25 lines
530 B
Makefile
# New ports collection makefile for: fann
|
|
# Date created: 2007-03-04
|
|
# Whom: Tz-Huan Huang <tzhuan@csie.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fann
|
|
PORTVERSION= 2.1.0b
|
|
CATEGORIES= math science
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= fann
|
|
DISTNAME= fann-2.1.0beta
|
|
|
|
MAINTAINER= tzhuan@csie.org
|
|
COMMENT= A free open source neural network library
|
|
|
|
WRKSRC= ${WRKDIR}/fann-2.1.0
|
|
USE_ZIP= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
.include <bsd.port.mk>
|