mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
69ee5c4ce8
perl class performing Bayesian prediction of categories. PR: 58527 Submitted by: clsung@dragon2.net
13 lines
552 B
Plaintext
13 lines
552 B
Plaintext
This module implements the classic "Naive Bayes" machine learning algorithm.
|
|
It is a well-studied probabilistic algorithm often used in automatic text
|
|
categorization. Compared to other algorithms (kNN, SVM, Decision Trees),
|
|
it's pretty fast and reasonably competitive in the quality of its results.
|
|
|
|
A paper by Fabrizio Sebastiani provides a really good introduction to
|
|
text categorization:
|
|
http://faure.iei.pi.cnr.it/~fabrizio/Publications/ACMCS02.pdf
|
|
|
|
WWW: http://search.cpan.org/dist/Algorithm-NaiveBayes/
|
|
|
|
Author: Ken Williams <ken@mathforum.org>
|