Uses of Class
edu.washington.cs.knowitall.extractor.Extractor

Packages that use Extractor
edu.washington.cs.knowitall.argumentidentifier   
edu.washington.cs.knowitall.extractor   
 

Uses of Extractor in edu.washington.cs.knowitall.argumentidentifier
 

Subclasses of Extractor in edu.washington.cs.knowitall.argumentidentifier
 class ArgLearner
          ArgLearner main class.
 

Uses of Extractor in edu.washington.cs.knowitall.extractor
 

Subclasses of Extractor in edu.washington.cs.knowitall.extractor
 class ChunkedArgumentExtractor
          An Extractor class for extracting noun phrase arguments, given a relation extraction.
 class ExtractorComposition<R,S,T>
          A class used to represent the composition of two Extractor objects.
 class ExtractorUnion<S,T>
          Takes the union of the output of multiple extractors.
 class HtmlSentenceExtractor
          An Extractor class for extracting NpChunkedSentence objects from a String containing HTML.
 class R2A2
           
 class RegexExtractor
          An extractor that uses a regular expression pattern relations from NP-chunked sentences.
 class RegexGroupExtractor
           
 class RelationFirstNpChunkExtractor
           Extracts ChunkedBinaryExtraction objects by first extracting relations, and then for each relation, extracting a pair of arguments.
 class ReVerbExtractor
           
 class ReVerbRelationExtractor
           
 class SentenceExtractor
          An Extractor object that extracts String sentences from a String.
 

Fields in edu.washington.cs.knowitall.extractor declared as Extractor
protected  Extractor<ChunkedExtraction,ChunkedArgumentExtraction> RelationFirstNpChunkExtractor.arg1Extr
           
protected  Extractor<ChunkedExtraction,ChunkedArgumentExtraction> RelationFirstNpChunkExtractor.arg2Extr
           
protected  Extractor<ChunkedSentence,ChunkedExtraction> RelationFirstNpChunkExtractor.relExtr
           
 

Methods in edu.washington.cs.knowitall.extractor that return Extractor
static
<R,S,T> Extractor<R,T>
Extractor.compose(Extractor<R,S> rsExtractor, Extractor<S,T> stExtractor)
          Composes a R->S extractor with a S->T extractor to create a R->T extractor.
 Extractor<ChunkedExtraction,ChunkedArgumentExtraction> RelationFirstNpChunkExtractor.getArgument1Extractor()
           
 Extractor<ChunkedExtraction,ChunkedArgumentExtraction> RelationFirstNpChunkExtractor.getArgument2Extractor()
           
 Extractor<ChunkedSentence,ChunkedExtraction> RelationFirstNpChunkExtractor.getRelationExtractor()
           
 

Methods in edu.washington.cs.knowitall.extractor with parameters of type Extractor
 void ExtractorUnion.addExtractor(Extractor<S,T> extractor)
          Adds the given extractor to the union.
static
<R,S,T> Extractor<R,T>
Extractor.compose(Extractor<R,S> rsExtractor, Extractor<S,T> stExtractor)
          Composes a R->S extractor with a S->T extractor to create a R->T extractor.
static
<R,S,T> Extractor<R,T>
Extractor.compose(Extractor<R,S> rsExtractor, Extractor<S,T> stExtractor)
          Composes a R->S extractor with a S->T extractor to create a R->T extractor.
 void RelationFirstNpChunkExtractor.setArgument1Extractor(Extractor<ChunkedExtraction,ChunkedArgumentExtraction> arg1Extr)
          Sets the argument1 extractor.
 void RelationFirstNpChunkExtractor.setArgument2Extractor(Extractor<ChunkedExtraction,ChunkedArgumentExtraction> arg2Extr)
          Sets the argument2 extractor.
 void RelationFirstNpChunkExtractor.setRelationExtractor(Extractor<ChunkedSentence,ChunkedExtraction> relExtr)
          Sets the relation extractor.
 

Constructors in edu.washington.cs.knowitall.extractor with parameters of type Extractor
ExtractorComposition(Extractor<R,S> rsExtractor, Extractor<S,T> stExtractor)
          Constructs a new extractor that is the composition of the given extractors.
ExtractorComposition(Extractor<R,S> rsExtractor, Extractor<S,T> stExtractor)
          Constructs a new extractor that is the composition of the given extractors.
 

Constructor parameters in edu.washington.cs.knowitall.extractor with type arguments of type Extractor
ExtractorUnion(List<Extractor<S,T>> extractors)
          Constructs a new extractor that returns the union of the output from each of the given extractors.
 



Copyright © 2010-2012 University of Washington CSE. All Rights Reserved.