RE: [Classifier4j-devel] Several questions regarding Classifier4J
Status: Beta
Brought to you by:
nicklothian
From: <br...@bj...> - 2004-05-07 17:12:35
|
> - Are there any open-source examples available that use classifier4j? I'm using Classifier4J as a spam email classifier in my Webgate software (see http://webgate.sourceforge.net). > - Is there any support of storing the ratings in a file and > reload it on next JVM startup (some sort of > Serialisation)? I don't know the answer to this. From my dealings with it, all results are stored in a database. > - Is it possible to have a better rating granularity than > just match and not match? I thought of something like > 5 rating levels that a news may be rated (very good, good, > moderate, bad, very bad). Well - the matching returns a percentage match I think. So you could test the returned result and say, for example.. that a 0-.2 would be very good, .2-.4 good, .4-.6 moderate, etc. > - How do I train the system. With using > classifier.teachMatch()... or with using the WordProbability class? I used teachMatch() and teachNonMatch() (i think thats the correct method name) against known good and bad emails in my inbox. Hope this helps! - Brent |