Package org.sf.mustru.search

Examples of org.sf.mustru.search.SearchQuestion.buildQuery()


   SearchQuestion qp = new SearchQuestion();
   String question = "What did Richard Feynman say upon hearing he would receive the Nobel Prize in Physics?";

  // String question = "what is the capital of california?";
   System.out.println("Question: " + question);
   try { System.out.println("Generated query: " + qp.buildQuery(question)); }
   catch (IOException ie) { System.out.println("IO Error: " + ie.getMessage()); }
 
   System.out.println("Ended testBuildQuery");
  }
 
View Full Code Here


     String text = Files.readFromFile(new File("/big/trec/data/trec4/part5/data/FT941-4782.txt"));
     text = StringTools.filterChars(text);
     SearchQuestion sq = new SearchQuestion();
     String question = " How much did Mercury spend on advertising in 1993?";
     sq.buildQuery(question);
     String bestPassage[] = SearchTools.bestPassages(text, sq.getNouns(), sq.getVerbs(), sq.getAdjectives(), sq.getBigrams(), sq.getEntities() );
     System.out.println("Best: " + bestPassage[0]);
     System.out.println("Second best: " + bestPassage[1]);
   }
   catch (IOException ie) { System.err.println("File Error: " + fileName + " " + ie.getMessage()); }
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.