Package it.unimi.dsi.mg4j.search.score

Source Code of it.unimi.dsi.mg4j.search.score.CountScorer

package it.unimi.dsi.mg4j.search.score;

/*    
* MG4J: Managing Gigabytes for Java
*
* Copyright (C) 2006-2010 Sebastiano Vigna
*
*  This library is free software; you can redistribute it and/or modify it
*  under the terms of the GNU Lesser General Public License as published by the Free
*  Software Foundation; either version 3 of the License, or (at your option)
*  any later version.
*
*  This library is distributed in the hope that it will be useful, but
*  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
*  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
*  for more details.
*
*  You should have received a copy of the GNU Lesser General Public License
*  along with this program; if not, see <http://www.gnu.org/licenses/>.
*
*/

import java.io.IOException;

import it.unimi.dsi.mg4j.index.Index;
import it.unimi.dsi.mg4j.search.DocumentIterator;
import it.unimi.dsi.mg4j.search.visitor.CounterCollectionVisitor;
import it.unimi.dsi.mg4j.search.visitor.CounterSetupVisitor;
import it.unimi.dsi.mg4j.search.visitor.TermCollectionVisitor;

import org.apache.log4j.Logger;

/** A trivial scorer that computes the score by adding the counts
* (the number of occurrences within the current document) of each term
* multiplied by the weight of the relative index.
* Mainly useful for debugging and testing purposes.
*
* <p>This class uses a {@link it.unimi.dsi.mg4j.search.visitor.CounterCollectionVisitor}
* and related classes to take into consideration only terms that are actually involved
* in the current document.
* @author Mauro Mereu
* @author Sebastiano Vigna
*/
public class CountScorer extends AbstractWeightedScorer implements DelegatingScorer {
  static Logger LOGGER = Logger.getLogger( CountScorer.class );
 
  /** The counter collection visitor used to estimate counts. */
  private final CounterCollectionVisitor counterCollectionVisitor;
  /** The counter setup visitor used to estimate counts. */
  private final CounterSetupVisitor counterSetupVisitor;
  /** The term collection visitor used to estimate counts. */
  private final TermCollectionVisitor termCollectionVisitor;
 
  public CountScorer() {
    termCollectionVisitor = new TermCollectionVisitor();
    counterSetupVisitor = new CounterSetupVisitor( termCollectionVisitor );
    counterCollectionVisitor = new CounterCollectionVisitor( counterSetupVisitor );
  }

  public double score() throws IOException {
    counterSetupVisitor.clear();
    documentIterator.acceptOnTruePaths( counterCollectionVisitor );

    double score = 0;
    final int[] count = counterSetupVisitor.count;
    final int[] indexNumber = counterSetupVisitor.indexNumber;
    for ( int i = count.length; i-- != 0) score += count[ i ] * currWeight[ indexNumber[ i ] ];
    return score;
  }

  public double score( final Index index ) {
    throw new UnsupportedOperationException();
  }
 
  public void wrap( DocumentIterator d ) throws IOException {
    super.wrap( d );
    termCollectionVisitor.prepare();
    d.accept( termCollectionVisitor );
    currIndex = termCollectionVisitor.indices();
    counterSetupVisitor.prepare();
    d.accept( counterSetupVisitor );
  }
 
  public synchronized CountScorer copy() {   
    final CountScorer scorer = new CountScorer();
    scorer.setWeights( index2Weight );
    return scorer;
  }

  public boolean usesIntervals() {
    return false;
  }
}
TOP

Related Classes of it.unimi.dsi.mg4j.search.score.CountScorer

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.