Which product (Mallet or Weka) is better for text classification task:

  1. Simpler to train
  2. Better results
  3. Documentation

I'm new for this problem so any comments will be great

link|improve this question

47% accept rate
feedback

1 Answer

MALLET is much easier to use and does most of its job invisibly. You don't have to convert the format of anything either, you just give it text files and it gives you back results.

Weka requires converting the text into a particular format (the Weka script for doing so it so slow and inefficient that I would recommend you write your own).

The problem with MALLET is that the training uses GB of memory and it can take hours, if you have large training sets.

Weka has more documentation, but most of it makes no sense. MALLET has very little documentation but is very simple to use.

To be honest, after testing the both of them, I opted for writing my own classifier.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.