Package edu.ucla.sspace.similarity

Examples of edu.ucla.sspace.similarity.TanimotoCoefficient


            case KL_DIVERGENCE:
                return new KLDivergence();
            case KENDALLS_TAU:
                return new KendallsTau();
            case TANIMOTO_COEFFICIENT:
                return new TanimotoCoefficient();
        }
        throw new IllegalArgumentException("Unhandled SimType: " +
                                           similarityType);
    }
View Full Code Here

TOP

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

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.