Package ivory.ffg.score

Examples of ivory.ffg.score.ScoringFunction


    return features;
  }

  private static Feature createFeature(String featureClass, String scoringFunctionClass, Element element)
    throws ClassNotFoundException {
    ScoringFunction scoringFunction = null;

    if(scoringFunctionClass.equals(BM25ScoringFunction.class.getName())) {
      float k1 = Float.parseFloat(element.getAttribute("k1"));
      float b = Float.parseFloat(element.getAttribute("b"));
      scoringFunction = new BM25ScoringFunction(k1, b);
View Full Code Here

TOP

Related Classes of ivory.ffg.score.ScoringFunction

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.