Uses of Class
lingscope.structures.AnnotatedSentence

Packages that use AnnotatedSentence
lingscope.algorithms   
lingscope.drivers   
lingscope.io   
 

Uses of AnnotatedSentence in lingscope.algorithms
 

Methods in lingscope.algorithms that return AnnotatedSentence
abstract  AnnotatedSentence Annotator.annotateSentence(java.lang.String sentence, boolean isTokenized)
           
 AnnotatedSentence BaselineCueAnnotator.annotateSentence(java.lang.String sentence, boolean isTokenized)
           
 AnnotatedSentence BaselineScopeAnnotator.annotateSentence(java.lang.String sentence, boolean isTokenized)
           
 AnnotatedSentence CrfAnnotator.annotateSentence(java.lang.String sentence, boolean isTokenized)
           
 AnnotatedSentence NegexCueAnnotator.annotateSentence(java.lang.String sentence, boolean isTokenized)
           
 AnnotatedSentence NegexScopeAnnotator.annotateSentence(java.lang.String sentence, boolean isTokenized)
           
 

Methods in lingscope.algorithms with parameters of type AnnotatedSentence
 void AnnotationComparer.compareAnnotations(AnnotatedSentence goldSentence, AnnotatedSentence testSentence)
           
 

Uses of AnnotatedSentence in lingscope.drivers
 

Methods in lingscope.drivers that return AnnotatedSentence
static AnnotatedSentence AnnotatedFilesMerger.merge(AnnotatedSentence wordsSentence, AnnotatedSentence tagsSentence)
          Merges the given wordsSentence and the given tagsSentence
static AnnotatedSentence CueAndPosFilesMerger.merge(AnnotatedSentence cueSentence, java.lang.String posSentence, boolean replaceTags)
           
static AnnotatedSentence SentenceTagger.tag(Annotator annotator, java.lang.String sentence, boolean isTokenized)
          Tags the given sentence with the given annotator
 

Methods in lingscope.drivers that return types with arguments of type AnnotatedSentence
static java.util.List<AnnotatedSentence> SentenceTagger.annotateSentences(Annotator annotator, java.util.List<java.lang.String> inputSentences, boolean isTokenized)
           
static java.util.List<AnnotatedSentence> CueAndPosFilesMerger.merge(java.util.List<AnnotatedSentence> cueSentences, java.util.List<java.lang.String> posSentences, boolean replaceTags)
          Merges the cueSentences and posSentences
 

Methods in lingscope.drivers with parameters of type AnnotatedSentence
static AnnotatedSentence AnnotatedFilesMerger.merge(AnnotatedSentence wordsSentence, AnnotatedSentence tagsSentence)
          Merges the given wordsSentence and the given tagsSentence
static AnnotatedSentence CueAndPosFilesMerger.merge(AnnotatedSentence cueSentence, java.lang.String posSentence, boolean replaceTags)
           
 

Method parameters in lingscope.drivers with type arguments of type AnnotatedSentence
static java.util.List<java.lang.String> SentenceTagger.getStringListFromAnnotatedSentences(java.util.List<AnnotatedSentence> annotatedSentences)
          Given a list of annotated sentences, return a list where the annotated sentences are replaced with strings
static java.util.List<AnnotatedSentence> CueAndPosFilesMerger.merge(java.util.List<AnnotatedSentence> cueSentences, java.util.List<java.lang.String> posSentences, boolean replaceTags)
          Merges the cueSentences and posSentences
 

Uses of AnnotatedSentence in lingscope.io
 

Methods in lingscope.io that return types with arguments of type AnnotatedSentence
static java.util.List<AnnotatedSentence> AnnotatedSentencesIO.read(java.lang.String fileToRead)
          Reads and returns the list of AnnotatedSentence from the given file
 

Method parameters in lingscope.io with type arguments of type AnnotatedSentence
static void AnnotatedSentencesIO.write(java.lang.String fileToWrite, java.util.List<AnnotatedSentence> annotatedSentences)
          Writes the given list of annotated sentences to the given fileToWrite