Update of /cvsroot/popfile/engine/Classifier
In directory sc8-pr-cvs1:/tmp/cvs-serv1989/Classifier
Modified Files:
Bayes.pm
Log Message:
Initialize global config items in one place: Configuration.pm
Index: Bayes.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Classifier/Bayes.pm,v
retrieving revision 1.115
retrieving revision 1.116
diff -C2 -d -r1.115 -r1.116
*** Bayes.pm 5 Mar 2003 21:58:19 -0000 1.115
--- Bayes.pm 6 Mar 2003 22:08:13 -0000 1.116
***************
*** 110,122 ****
my ( $self ) = @_;
- # Subject modification (global setting is on)
- $self->global_config_( 'subject', 1 );
-
- # Adding the X-Text-Classification on
- $self->global_config_( 'xtc', 1 );
-
- # Adding the X-POPFile-Link is no
- $self->global_config_( 'xpl', 1 );
-
# No default unclassified probability
$self->config_( 'unclassified_probability', 0 );
--- 110,113 ----
|