I've built a document classification classifier by following the MALLET example here http://mallet.cs.umass.edu/classifier-devel.php
What I'd like to do next is get the most influential features for each class. I'm sure this is something simple but I haven't been able to find how to do this from Java.
Any help is appreciated.
I was running into the same problem. Here's what worked for me. (Not completely self-contained, e.g. assuming that you have a classifier already, and some test data)
Resulting in:
EDIT: plig.getInfoGain(q).getValueAtRank(i) should obviously be plig.getInfoGain(q).getValueAtRank(j)