Package edu.ucla.sspace.similarity

Examples of edu.ucla.sspace.similarity.EuclideanSimilarity


            case COSINE:
                return new CosineSimilarity();
            case PEARSON_CORRELATION:
                return new PearsonCorrelation();
            case EUCLIDEAN:
                return new EuclideanSimilarity();
            case SPEARMAN_RANK_CORRELATION:
                return new SpearmanRankCorrelation();
            case JACCARD_INDEX:
                return new JaccardIndex();
            case AVERAGE_COMMON_FEATURE_RANK:
View Full Code Here

TOP

Related Classes of edu.ucla.sspace.similarity.EuclideanSimilarity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.