AI-NaiveBayes1
    
    
  
  
  
view release on metacpan or search on metacpan
NaiveBayes1.pm view on Meta::CPAN
package AI::NaiveBayes1;
use strict;
require Exporter;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
@EXPORT = qw(new);
use vars qw($Version);
$Version = $VERSION = '2.012';
use vars @EXPORT_OK;
# non-exported package globals go here
use vars qw();
sub new {
  my $package = shift;
  return bless {
                attributes => [ ],
		labels     => [ ],
		attvals    => {},
		real_stat  => {},
		numof_instances => 0,
( run in 0.367 second using v1.01-cache-2.11-cpan-5dc5da66d9d )