| Package | Description |
|---|---|
| edu.washington.cs.knowitall.extractor | |
| edu.washington.cs.knowitall.extractor.mapper |
| Modifier and Type | Method and Description |
|---|---|
void |
Extractor.addMapper(Mapper<T> mapper)
Adds a mapper to the end of the list of mappers.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AdjacentToRelationFilter
A filter that returns only arguments that are adjacent to the relation.
|
class |
BracketsRemover
Removes square brackets, curly braces, parentheses, and the contained text,
from strings.
|
class |
ChunkedBinaryExtractionStringLengthFilter
A mapper used to filter binary extractions by number of characters.
|
class |
ChunkedBinaryExtractionWordCountFilter
A mapper used to filter binary extractions by number of words.
|
class |
ClosestArgumentMapper
A mapper object for
NpChunkArgumentExtraction objects that
returns the object closest to the relation. |
class |
ConjunctionCommaArgumentFilter
An argument filter that filters out any arguments matching the following patterns:
ARG , REL
ARG and REL
ARG , and REL
|
class |
DeUnicoder
Converts some characters from unicode to ascii (such as directional
quotations)
|
class |
FilterMapper<T>
A type of mapper that filters each object in the stream independently.
|
class |
IndependentMapper<T>
A type of mapper that operates on each object in a stream independently.
|
class |
JunkRemover |
class |
MapperList<T>
A list of
Mapper objects. |
class |
MaxMapper<S extends Comparable<S>,T>
A mapper class that returns the first maximal element in the object stream according
to a function
doValueMap(T object). |
class |
MergeOverlappingMapper
Given a set of
ChunkedExtractions from the same sentence, merges
those extractions that are next to each other or overlapping. |
class |
NormalizedRelationDictionaryFilter
A class used to filter out any relations whose normalized form does not
appear in the given dictionary.
|
class |
OrdinalPreprocessor |
class |
PronounArgumentFilter
Used to filter out arguments that are pronouns.
|
class |
ReVerbArgument1Mappers
A list of mappers for
ReVerbExtractor's second arguments. |
class |
ReVerbArgument2Mappers
A list of mappers for
ReVerbExtractor's first arguments. |
class |
ReVerbRelationDictionaryFilter
Filters relations based on how many distinct arg2 values it takes in a large
corpus.
|
class |
ReVerbRelationMappers
A list of mappers for
ReVerbExtractor's relations. |
class |
SentenceEndFilter
Filters out sentences that do not end with a period, question mark, or
exclamation point, ignoring double quotes, single quotes, and whitespace at
the end.
|
class |
SentenceLengthFilter
A mapper used to filter sentences by number of words.
|
class |
SentenceStartFilter
Filters out sentences that do not start with a capital letter or number (ignoring single quotes, double
quotes, and whitespace).
|
class |
StopListFilter
A mapper that filters out any extractions containing a token or POS tag from a given set.
|
| Modifier and Type | Method and Description |
|---|---|
Iterable<Mapper<T>> |
MapperList.getMappers() |
| Modifier and Type | Method and Description |
|---|---|
void |
MapperList.addMapper(Mapper<T> mapper)
Adds a mapper to the end of the list.
|
| Constructor and Description |
|---|
MapperList(List<Mapper<T>> mappers)
Constructs a new list of mappers from the given list.
|
Copyright © 2010-2013 University of Washington CSE. All Rights Reserved.