Package hultig.sumo

Examples of hultig.sumo.Sentence


    @Override
    public double getSimilarity(Collection<String> stringList1, Collection<String> stringList2)
        throws SimilarityException
    {
            Sentence s1 = new Sentence(StringUtils.join(stringList1, " "));
            Sentence s2 = new Sentence(StringUtils.join(stringList2, " "));

            double similarity = 1.0 - s1.dsumo(s2);
           
            return similarity;
    }
View Full Code Here

TOP

Related Classes of hultig.sumo.Sentence

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.