NAME
Lingua::JA::Expand - word expander by associatives
SYNOPSIS
use Lingua::JA::Expand;
use Data::Dumper;
my $exp = Lingua::JA::Expand->new(%conf);
# expand the word by associatives
my $word_set = $exp->expand($word);
print Dumper $word_set;
# you can tokenize a document by extract featured words.
my $word_set = $exp->tokenize($text);
print Dumper $word_set;
DESCRIPTION
Lingua::JA::Expand is word expander by associatives
METHODS
new()
expand()
tokenize()
tokenizer()
datasource()
AUTHOR
Takeshi Miki <miki@cpan.org>
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.