| Package | Description |
|---|---|
| edu.washington.cs.knowitall.argumentidentifier | |
| edu.washington.cs.knowitall.extractor |
| Modifier and Type | Class and Description |
|---|---|
class |
ArgLearner
ArgLearner main class.
|
| Modifier and Type | Class and Description |
|---|---|
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. |
| Modifier and Type | Field and Description |
|---|---|
protected Extractor<ChunkedExtraction,ChunkedArgumentExtraction> |
RelationFirstNpChunkExtractor.arg1Extr |
protected Extractor<ChunkedExtraction,ChunkedArgumentExtraction> |
RelationFirstNpChunkExtractor.arg2Extr |
protected Extractor<ChunkedSentence,ChunkedExtraction> |
RelationFirstNpChunkExtractor.relExtr |
| Modifier and Type | Method and Description |
|---|---|
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() |
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Constructor and Description |
|---|
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 and Description |
|---|
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-2013 University of Washington CSE. All Rights Reserved.