Algorithm-ContextVector

 view release on metacpan or  search on metacpan

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

Keeps the complete feature set if omitted.

=cut

use Data::CosineSimilarity;
use Storable;

sub new {
    my $class = shift;
    my %opts = @_;
    return bless {
        top => $opts{top},
        labels => {},
    }, $class;
}

=head2 $class->new_from_file( $filename )

Returns the instance of Algorithm::ContextVector stored in $filename.

=cut



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