similaritymetric.java
来自「dragontoolkit用于机器学习」· Java 代码 · 共 22 行
JAVA
22 行
package dragon.nlp.ontology;import dragon.nlp.Term;/** * <p>Interface of Similarity Metrics </p> * <p></p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: IST, Drexel University</p> * @author Davis Zhou * @version 1.0 */public interface SimilarityMetric { /** * Computes the similarity between two onotlogical terms. * @param a the first term * @param b the second term * @return the similarity between two onotlogical terms. */ public double getSimilarity(Term a, Term b);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?