mirror of
https://git.freebsd.org/ports.git
synced 2025-05-24 23:16:33 -04:00
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:
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
|
@ -98,6 +98,7 @@
|
|||
SUBDIR += ntl
|
||||
SUBDIR += octave
|
||||
SUBDIR += oleo
|
||||
SUBDIR += p5-AI-DecisionTree
|
||||
SUBDIR += p5-AI-NeuralNet-BackProp
|
||||
SUBDIR += p5-AI-NeuralNet-Mesh
|
||||
SUBDIR += p5-AI-Perceptron
|
||||
|
|
29
math/p5-AI-DecisionTree/Makefile
Normal file
29
math/p5-AI-DecisionTree/Makefile
Normal 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>
|
1
math/p5-AI-DecisionTree/distinfo
Normal file
1
math/p5-AI-DecisionTree/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (AI-DecisionTree-0.08.tar.gz) = eaed56886a22506b8ed5f6dab88e7060
|
11
math/p5-AI-DecisionTree/pkg-descr
Normal file
11
math/p5-AI-DecisionTree/pkg-descr
Normal 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>
|
10
math/p5-AI-DecisionTree/pkg-plist
Normal file
10
math/p5-AI-DecisionTree/pkg-plist
Normal 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
|
Loading…
Add table
Reference in a new issue