use of infoeval.main.Analysis.AwardsQuery in project Info-Evaluation by TechnionYP5777.
the class AwardsQueryTest method test1.
@Test
public void test1() throws IOException {
WikiParsing wiki = new WikiParsing("https://en.wikipedia.org/wiki/Taylor_Swift");
wiki.Parse("awarded");
System.out.print(wiki.getText());
infoeval.main.Analysis.AwardsQuery aw = new AwardsQuery(wiki.getParagraphs());
aw.analyze();
for (final String ¢ : aw.getInformation()) System.out.println(¢);
}
Aggregations