tagdictionary.java
来自「自然语言处理领域的一个开发包」· Java 代码 · 共 16 行
JAVA
16 行
package opennlp.tools.postag;/** Interface to determine which tags are valid for a particular word based on a tag dictionary. * @author Tom Morton */public interface TagDictionary { /** * Returns a list of valid tags for the specified word. * @param word The word. * @return A list of valid tags for the specified word or null if no information is available for that word. */ public String[] getTags(String word); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?