operation.java
来自「dragontoolkit用于机器学习」· Java 代码 · 共 26 行
JAVA
26 行
package dragon.nlp.tool.lemmatiser;/** * <p>Interface of lemmatising operations</p> * <p></p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: IST, Drexel University</p> * @author Davis Zhou * @version 1.0 */public interface Operation { /** * Executes the operation to get the base form of the given word * @param derivation the word for lemmatising * @return the lemmatised word */ String execute(String derivation); /** * Gets the option of checking the existence of the lemmatised word in the dictionary. If this option is enabled and the lemmatised * word does not exist, the execute method will return the input word. * @return true if it is required to check the existence of the lemmatised word in the dictionary. */ boolean getIndexLookupOption();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?