Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which Python Bayesian text classification modules are similar to dbacl?

A quick Google search reveals that there are a good number of Bayesian classifiers implemented as Python modules. If I want wrapped, high-level functionality similar to dbacl, which of those modules is right for me?

Training

% dbacl -l one sample1.txt
% dbacl -l two sample2.txt

Classification

% dbacl -c one -c two sample3.txt -v
one
like image 804
Dan Avatar asked Apr 02 '09 00:04

Dan


1 Answers

I think you'll find the nltk helpful. Specifically, the classify module.

like image 76
theycallmemorty Avatar answered Sep 28 '22 07:09

theycallmemorty