forked from Lainports/freebsd-ports
covering several Artificial intelligence fields. It implements:
* Genetic algorithms
* Self-organized maps (SOM)
* Neural Networks
- Multilayer perceptron with Backpropagation learning
- Hopfield net
* Automatic classifiers (Machine Learning)
- ID3 (Decision Trees)
- PRISM (J. Cendrowska, 1987)
- Multilayer Perceptron
- OneR (AKA One Attribute Rule, 1R)
- ZeroR
- Hyperpipes
- Naive Bayes
- IB1 (D. Aha, D. Kibler - 1991)
* Data clustering
- K-means
- Bisecting k-means
- Single linkage
- Complete linkage
- Average linkage
- Weighted Average linkage
- Centroid linkage
- Median linkage
- Ward's method linkage
- Diana (Divisive Analysis)
WWW: http://ai4r.rubyforge.org/
PR: ports/155699
Submitted by: Eric Freeman <freebsdports at chillibear.com>
20 lines
418 B
Makefile
20 lines
418 B
Makefile
# Ports collection makefile for: rubygem-ai4r
|
|
# Date created: 19 Mar 2011
|
|
# Whom: Eric Freeman <freebsdports@chillibear.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ai4r
|
|
PORTVERSION= 1.9
|
|
CATEGORIES= science rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= freebsdports@chillibear.com
|
|
COMMENT= Ruby implementations of artificial intelligence algorithms
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBYGEMS= yes
|
|
RUBYGEM_AUTOPLIST= yes
|
|
|
|
.include <bsd.port.mk>
|