Examples of CLWordQueryGenerator


Examples of ivory.sqe.querygenerator.CLWordQueryGenerator

     
      ranker = new StructuredQueryRanker(conf.get(Constants.IndexPath), fs, 1000);
      mapping = ranker.getDocnoMapping();
      queries = parseQueries(conf.get(Constants.QueriesPath), fs);
      if (conf.get(Constants.QueryType).equals(Constants.CLIR)) {
        generator = new CLWordQueryGenerator();
      }else if (conf.get(Constants.QueryType).equals(Constants.MTN)) {
        generator = new MtNQueryGenerator();
      }else {
        generator = new DefaultBagOfWordQueryGenerator();
      }   
View Full Code Here

Examples of ivory.sqe.querygenerator.CLWordQueryGenerator

     
      ranker = new StructuredQueryRanker(conf.get(Constants.IndexPath), fs, 1000);
      mapping = ranker.getDocnoMapping();
      queries = parseQueries(conf.get(Constants.QueriesPath), fs);
      if (conf.get(Constants.QueryType).equals(Constants.CLIR)) {
        generator = new CLWordQueryGenerator();
      }else if (conf.get(Constants.QueryType).equals(Constants.MTN)) {
        generator = new MtNQueryGenerator();
      }else {
        generator = new DefaultBagOfWordQueryGenerator();
      }   
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.