⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 namecontextgenerator.java

📁 自然语言处理领域的一个开发包
💻 JAVA
字号:
/////////////////////////////////////////////////////////////////////////////////Copyright (C) 2003 Thomas Morton// //This library is free software; you can redistribute it and/or//modify it under the terms of the GNU Lesser General Public//License as published by the Free Software Foundation; either//version 2.1 of the License, or (at your option) any later version.// //This library is distributed in the hope that it will be useful,//but WITHOUT ANY WARRANTY; without even the implied warranty of//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the//GNU Lesser General Public License for more details.// //You should have received a copy of the GNU Lesser General Public//License along with this program; if not, write to the Free Software//Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.//////////////////////////////////////////////////////////////////////////////package opennlp.tools.namefind;import java.util.List;import java.util.Map;import opennlp.tools.util.BeamSearchContextGenerator;/** * Interface for the context generator used in name finding. */public interface NameContextGenerator extends BeamSearchContextGenerator {    /**   * Returns the contexts for chunking of the specified index.   * @param i The index of the token in the specified toks array for which the context should be constructed.    * @param toks The tokens of the sentence.  The <code>toString</code> methods of these objects should return the token text.   * @param preds The previous decisions made in the taging of this sequence.  Only indices less than i will be examined.   * @param prevTags A mapping between tokens and the previous outcome for these tokens.    * @return An array of predictive contexts on which a model basis its decisions.   */  public abstract String[] getContext(int i, List toks,List preds, Map prevTags);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -