我正在使用 Perl 的 Lingua::Stem 模块 ( Lingua::Stem ),并且我想要一个文本文件或其他可编辑的文件格式来包含我不想要词干的单词列表。我希望能够随时向文件中添加单词。
他们的例子表明:
add_exceptions($exceptions_hash_ref);
做这个的最好方式是什么?
我使用他们的方法对一些异常进行硬编码,但我想用一个文件来做到这一点。
# adding default exceptions
Lingua::Stem::add_exceptions({ 'emily' => 'emily',
'driven' => 'driven',
});