Package ivory.core.data.stat

Examples of ivory.core.data.stat.DocScoreTable4BF


    if (params.length != 2) {
      throw new RuntimeException("Missing score table. " + toString()
          + " requires two parameters as follows: <SpamScores, PageRankScores>.");
    }
    scoresSpam = new SpamPercentileScore();
    scoresPageRank = new DocScoreTable4BF();

    try {
      scoresSpam.initialize(params[0], fs);
      scoresPageRank.initialize(params[1], fs);
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of ivory.core.data.stat.DocScoreTable4BF

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.