Algorithm-LDA

 view release on metacpan or  search on metacpan

lib/Algorithm/LDA.pm  view on Meta::CPAN

    $maxIterations = $self->{_maxIterations};
    $totalDocs = $self->{_totalDocs};
    $updateCorpus = $self->{_updateCorpus};
    $threshold = $self->{_wordThreshold};
    $alpha = $self->{_alpha};
    $numWords = $self->{_numWords};
    $stop = $self->{_stop};
    
    @{$self->{documents}} = (); 

    bless $self, $class;
    
    init();
    
    return $self;
}

=head3 add

description:



( run in 1.701 second using v1.01-cache-2.11-cpan-de7293f3b23 )