<tfoot id='PgZTH'></tfoot>

      <i id='PgZTH'><tr id='PgZTH'><dt id='PgZTH'><q id='PgZTH'><span id='PgZTH'><b id='PgZTH'><form id='PgZTH'><ins id='PgZTH'></ins><ul id='PgZTH'></ul><sub id='PgZTH'></sub></form><legend id='PgZTH'></legend><bdo id='PgZTH'><pre id='PgZTH'><center id='PgZTH'></center></pre></bdo></b><th id='PgZTH'></th></span></q></dt></tr></i><div id='PgZTH'><tfoot id='PgZTH'></tfoot><dl id='PgZTH'><fieldset id='PgZTH'></fieldset></dl></div>
      1. <legend id='PgZTH'><style id='PgZTH'><dir id='PgZTH'><q id='PgZTH'></q></dir></style></legend>

          <bdo id='PgZTH'></bdo><ul id='PgZTH'></ul>
      2. <small id='PgZTH'></small><noframes id='PgZTH'>

        使用 Lucene 提取英语单词

        时间:2023-09-30

          <i id='w3CKe'><tr id='w3CKe'><dt id='w3CKe'><q id='w3CKe'><span id='w3CKe'><b id='w3CKe'><form id='w3CKe'><ins id='w3CKe'></ins><ul id='w3CKe'></ul><sub id='w3CKe'></sub></form><legend id='w3CKe'></legend><bdo id='w3CKe'><pre id='w3CKe'><center id='w3CKe'></center></pre></bdo></b><th id='w3CKe'></th></span></q></dt></tr></i><div id='w3CKe'><tfoot id='w3CKe'></tfoot><dl id='w3CKe'><fieldset id='w3CKe'></fieldset></dl></div>
          <tfoot id='w3CKe'></tfoot>
          • <bdo id='w3CKe'></bdo><ul id='w3CKe'></ul>

                <tbody id='w3CKe'></tbody>
                <legend id='w3CKe'><style id='w3CKe'><dir id='w3CKe'><q id='w3CKe'></q></dir></style></legend>
              1. <small id='w3CKe'></small><noframes id='w3CKe'>

                  本文介绍了使用 Lucene 提取英语单词的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在一个 Java 应用程序中处理一些英文文本,我需要对它们进行词干处理.例如,从文本amenities/amenity"我需要得到amenit".

                  I'm processing some English texts in a Java application, and I need to stem them. For example, from the text "amenities/amenity" I need to get "amenit".

                  函数如下:

                  String stemTerm(String term){
                     ...
                  }
                  

                  我找到了 Lucene Analyzer,但它看起来太复杂了,无法满足我的需要.http://lucene.apache.org/java/2_2_0/api/org/apache/lucene/analysis/PorterStemFilter.html

                  I've found the Lucene Analyzer, but it looks way too complicated for what I need. http://lucene.apache.org/java/2_2_0/api/org/apache/lucene/analysis/PorterStemFilter.html

                  有没有办法在不构建分析器的情况下使用它来词干?我不了解所有 Analyzer 业务...

                  Is there a way to use it to stem words without building an Analyzer? I don't understand all the Analyzer business...

                  编辑:我实际上需要词干提取+词形还原.Lucene 可以做到这一点吗?

                  EDIT: I actually need a stemming + lemmatization. Can Lucene do this?

                  推荐答案

                  import org.apache.lucene.analysis.PorterStemmer;
                  ...
                  String stemTerm (String term) {
                      PorterStemmer stemmer = new PorterStemmer();
                      return stemmer.stem(term);
                  }
                  

                  参见这里 了解更多详情.如果您只想使用词干提取,那么您应该使用 this 而不是 Lucene.

                  See here for more details. If stemming is all you want to do, then you should use this instead of Lucene.

                  您应该在将 term 传递给 stem() 之前将其小写.

                  You should lowercase term before passing it to stem().

                  这篇关于使用 Lucene 提取英语单词的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用 Lucene 的精确短语搜索? 下一篇:Mac 用户 - 如何在 Mac 中设置 CLASSPATHS(我正在做一

                  相关文章

                  最新文章

                • <i id='KcHXc'><tr id='KcHXc'><dt id='KcHXc'><q id='KcHXc'><span id='KcHXc'><b id='KcHXc'><form id='KcHXc'><ins id='KcHXc'></ins><ul id='KcHXc'></ul><sub id='KcHXc'></sub></form><legend id='KcHXc'></legend><bdo id='KcHXc'><pre id='KcHXc'><center id='KcHXc'></center></pre></bdo></b><th id='KcHXc'></th></span></q></dt></tr></i><div id='KcHXc'><tfoot id='KcHXc'></tfoot><dl id='KcHXc'><fieldset id='KcHXc'></fieldset></dl></div>
                  <legend id='KcHXc'><style id='KcHXc'><dir id='KcHXc'><q id='KcHXc'></q></dir></style></legend>

                  <small id='KcHXc'></small><noframes id='KcHXc'>

                    <bdo id='KcHXc'></bdo><ul id='KcHXc'></ul>

                    1. <tfoot id='KcHXc'></tfoot>