|
From: <jgr...@us...> - 2003-10-30 14:57:16
|
Update of /cvsroot/popfile/engine/Classifier
In directory sc8-pr-cvs1:/tmp/cvs-serv4123/Classifier
Modified Files:
Bayes.pm
Log Message:
Default the unclassified_weight to 100 not 10, update test suite
Index: Bayes.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Classifier/Bayes.pm,v
retrieving revision 1.218
retrieving revision 1.219
diff -C2 -d -r1.218 -r1.219
*** Bayes.pm 30 Oct 2003 14:48:28 -0000 1.218
--- Bayes.pm 30 Oct 2003 14:57:12 -0000 1.219
***************
*** 195,201 ****
# No default unclassified weight is the number of times more sure POPFile
! # must be of the top class vs the second class, default is 10 times more
! $self->config_( 'unclassified_weight', 10 );
# The corpus is kept in the 'corpus' subfolder of POPFile
--- 195,201 ----
# No default unclassified weight is the number of times more sure POPFile
! # must be of the top class vs the second class, default is 100 times more
! $self->config_( 'unclassified_weight', 100 );
# The corpus is kept in the 'corpus' subfolder of POPFile
|