gr.demokritos.iit.summarization.selection
Interface ISentenceSelector


public interface ISentenceSelector

Performs sentence selection in various ways. A sentence is considered to be a list of tokens. The subclasses should implement different selection methodologies.


Method Summary
 java.util.List selectFromSentences(java.util.Set Sentences)
          Selects a sentence subset of a given sentence set.
 boolean selectSentence(java.util.List tokens)
          Returns whether the given sentence (token list) should be selected.
 double sentenceSelectionConfidence(java.util.List tokens)
          Returns a confidence measure of whether the given sentence (token list) should be selected.
 

Method Detail

selectFromSentences

java.util.List selectFromSentences(java.util.Set Sentences)
Selects a sentence subset of a given sentence set.


selectSentence

boolean selectSentence(java.util.List tokens)
Returns whether the given sentence (token list) should be selected.


sentenceSelectionConfidence

double sentenceSelectionConfidence(java.util.List tokens)
Returns a confidence measure of whether the given sentence (token list) should be selected.