Examples of PwaBM25


Examples of org.apache.lucene.search.features.querydependent.PwaBM25

    tf.add(3);
   
    Vector<Integer> idf=new Vector<Integer>();
    idf.add(1000);
     
    PwaBM25 ranker=new PwaBM25(tf,idf,100,1000.0,10000000);
    System.out.println(ranker.score());
        assertTrue(ranker.score()==9.862371362773622);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.