Package com.browseengine.bobo.query.scoring

Examples of com.browseengine.bobo.query.scoring.MultiplicativeFacetTermScoringFunctionFactory


  protected final Map<String,Map<String,Float>> _boostMaps;
  protected final FacetTermScoringFunctionFactory _scoringFunctionFactory;
 
  public FacetBasedBoostScorerBuilder(Map<String,Map<String,Float>> boostMaps)
  {
    this(boostMaps, new MultiplicativeFacetTermScoringFunctionFactory());
  }
View Full Code Here


public class FacetBasedBoostScorerBuilder implements ScorerBuilder {
  protected final Map<String, Map<String, Float>> _boostMaps;
  protected final FacetTermScoringFunctionFactory _scoringFunctionFactory;

  public FacetBasedBoostScorerBuilder(Map<String, Map<String, Float>> boostMaps) {
    this(boostMaps, new MultiplicativeFacetTermScoringFunctionFactory());
  }
View Full Code Here

TOP

Related Classes of com.browseengine.bobo.query.scoring.MultiplicativeFacetTermScoringFunctionFactory

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.