Package org.terrier.utility

Examples of org.terrier.utility.FieldScore


    if (pointers.length < 3 || pointers[2] == null)
      return numOfModifiedDocs;
   
    int[] fieldscores = pointers[2];
    final int numOfPointers = fieldscores.length;
    FieldScore fScore = new FieldScore();
    fScore.insertField(field);
    int fieldScore = fScore.getFieldScore();
    if (fieldScore == 0)
      return numOfModifiedDocs;
   
    //for each document that contains the query term, the score is computed.
    //int docFieldScore;
View Full Code Here

TOP

Related Classes of org.terrier.utility.FieldScore

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.