Add p5-AI-DecisionTree 0.08, perl module for Automatically Learning

Decision Trees.

PR:		60628
Submitted by:	Cheng-Lung Sung <clsung@dragon2.net>
This commit is contained in:
Kirill Ponomarev 2003-12-28 00:19:45 +00:00
parent bb173a1a69
commit ec8af96e9a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=96718
5 changed files with 52 additions and 0 deletions

View file

@ -98,6 +98,7 @@
SUBDIR += ntl SUBDIR += ntl
SUBDIR += octave SUBDIR += octave
SUBDIR += oleo SUBDIR += oleo
SUBDIR += p5-AI-DecisionTree
SUBDIR += p5-AI-NeuralNet-BackProp SUBDIR += p5-AI-NeuralNet-BackProp
SUBDIR += p5-AI-NeuralNet-Mesh SUBDIR += p5-AI-NeuralNet-Mesh
SUBDIR += p5-AI-Perceptron SUBDIR += p5-AI-Perceptron

View file

@ -0,0 +1,29 @@
# New ports collection makefile for: math/p5-AI-DecisionTree
# Date created: Dec 29 2003
# Whom: Cheng-Lung Sung <clsung@dragon2.net>
#
# $FreeBSD$
#
PORTNAME= AI-DecisionTree
PORTVERSION= 0.08
CATEGORIES= math perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= AI
PKGNAMEPREFIX= p5-
MAINTAINER= clsung@dragon2.net
COMMENT= Perl module for Automatically Learning Decision Trees
PERL_CONFIGURE= yes
MAN3= AI::DecisionTree.3 \
AI::DecisionTree::Instance.3
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500601
IGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again
.endif
.include <bsd.port.post.mk>

View file

@ -0,0 +1 @@
MD5 (AI-DecisionTree-0.08.tar.gz) = eaed56886a22506b8ed5f6dab88e7060

View file

@ -0,0 +1,11 @@
The AI::DecisionTree module automatically creates so-called "decision trees"
to explain a set of training data. A decision tree is a kind of categorizer
that use a flowchart-like process for categorizing new instances.
A decision tree like this one can be learned from training data, and
then applied to previously unseen data to obtain results that are consistent
with the training data.
WWW: http://search.cpan.org/dist/AI-DecisionTree
Author: Ken Williams <ken@mathforum.org>

View file

@ -0,0 +1,10 @@
%%SITE_PERL%%/%%PERL_ARCH%%/AI/DecisionTree.pm
%%SITE_PERL%%/%%PERL_ARCH%%/AI/DecisionTree/Instance.pm
%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/DecisionTree/.packlist
%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/DecisionTree/Instance/Instance.bs
%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/DecisionTree/Instance/Instance.so
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/AI/DecisionTree
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/DecisionTree/Instance
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/DecisionTree
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/AI 2>/dev/null || true
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI 2>/dev/null || true