| Modifier and Type | Field and Description |
|---|---|
protected Extractor<ChunkedSentence,ChunkedExtraction> |
RelationFirstNpChunkExtractor.relExtr |
| Modifier and Type | Method and Description |
|---|---|
Extractor<ChunkedSentence,ChunkedExtraction> |
RelationFirstNpChunkExtractor.getRelationExtractor() |
| Modifier and Type | Method and Description |
|---|---|
protected Collection<SpanExtraction> |
RegexGroupExtractor.extractCandidates(ChunkedSentence sent) |
Collection<ChunkedExtraction> |
RegexExtractor.extractCandidates(ChunkedSentence sentence) |
protected Collection<ChunkedBinaryExtraction> |
RelationFirstNpChunkExtractor.extractCandidates(ChunkedSentence source) |
| Modifier and Type | Method and Description |
|---|---|
void |
RelationFirstNpChunkExtractor.setRelationExtractor(Extractor<ChunkedSentence,ChunkedExtraction> relExtr)
Sets the relation extractor.
|
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
ChunkFeature.testAtIndex(Integer index,
ChunkedSentence sentence) |
protected boolean |
VerbTokenFeature.testAtIndex(Integer index,
ChunkedSentence sentence) |
protected abstract boolean |
ExtractionFeature.testAtIndex(Integer index,
ChunkedSentence sentence) |
protected boolean |
TokenFeature.testAtIndex(Integer index,
ChunkedSentence sentence) |
protected boolean |
PosFeature.testAtIndex(Integer index,
ChunkedSentence sentence) |
| Modifier and Type | Field and Description |
|---|---|
ChunkedSentence |
ChunkedSentenceToken.ChunkedSentence |
| Modifier and Type | Method and Description |
|---|---|
ChunkedSentence |
SentenceChunker.chunkSentence(String sent) |
ChunkedSentence |
OpenNlpSentenceChunker.chunkSentence(String sent) |
ChunkedSentence |
ChunkedSentence.clone()
Returns a copy of this object.
|
protected ChunkedSentence |
ChunkedSentenceIterator.computeNext() |
ChunkedSentence |
ChunkedSentence.getSubSequence(int start,
int length)
Returns a new ChunkedSentence object that starts at the given start index
and has the given length.
|
ChunkedSentence |
ChunkedSentence.getSubSequence(edu.washington.cs.knowitall.commonlib.Range range)
Returns a new ChunkedSentence object that starts at the given range.
|
ChunkedSentence |
OpenNlpChunkedSentenceParser.parseSentence(String sent)
Converts sent into a
ChunkedSentence object. |
| Modifier and Type | Method and Description |
|---|---|
List<ChunkedSentence> |
ChunkedDocument.getSentences() |
Iterable<ChunkedSentence> |
ChunkedSentenceReader.getSentences() |
Iterator<ChunkedSentence> |
ChunkedDocument.iterator() |
Iterator<ChunkedSentence> |
PreChunkedSentenceReader.iterator() |
| Modifier and Type | Method and Description |
|---|---|
static List<edu.washington.cs.knowitall.commonlib.Range> |
OrdinalUtils.getOrdinalRanges(ChunkedSentence sent) |
static String[] |
OrdinalUtils.tagOrdinals(ChunkedSentence sent) |
static List<ChunkedSentenceToken> |
ChunkedSentenceToken.tokenize(ChunkedSentence sentence) |
static List<ChunkedSentenceToken> |
ChunkedSentenceToken.tokenize(ChunkedSentence sentence,
edu.washington.cs.knowitall.commonlib.Range range) |
| Modifier and Type | Method and Description |
|---|---|
void |
ChunkedSentenceIterator.addFilter(com.google.common.base.Predicate<ChunkedSentence> filter)
If a chunked sentence is filtered, it will not be returned.
|
void |
ChunkedSentenceReader.addFilter(com.google.common.base.Predicate<ChunkedSentence> filter)
This filter is used for sentences AFTER they have been chunked.
|
| Constructor and Description |
|---|
ChunkedSentence(ChunkedSentence sent)
Constructs a new instance using the given tokens, POS tags, and NP chunk
tags, each of which must have the same length.
|
ChunkedSentenceToken(ChunkedSentence ChunkedSentence,
int index) |
| Constructor and Description |
|---|
ChunkedDocument(String id,
Iterable<ChunkedSentence> sents)
Constructs a new ChunkedDocument with the given identifier and sentences.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ChunkedArgumentExtraction
A class representing a noun phrase argument of a relation.
|
class |
ChunkedExtraction
An extraction object that represents a contiguous subsequence of a
ChunkedSentence object. |
| Modifier and Type | Method and Description |
|---|---|
ChunkedSentence |
ChunkedExtraction.getSentence() |
ChunkedSentence |
SpanExtraction.getSentence() |
| Constructor and Description |
|---|
ChunkedArgumentExtraction(ChunkedSentence sent,
edu.washington.cs.knowitall.commonlib.Range range,
ChunkedExtraction relation)
Constructs a new
NpChunkArgumentExtraction from
sent for relation. |
ChunkedArgumentExtraction(ChunkedSentence sent,
edu.washington.cs.knowitall.commonlib.Range range,
ChunkedExtraction relation,
double confidence) |
ChunkedArgumentExtraction(ChunkedSentence sent,
edu.washington.cs.knowitall.commonlib.Range range,
ChunkedExtraction relation,
String string) |
ChunkedExtraction(ChunkedSentence sent,
edu.washington.cs.knowitall.commonlib.Range range)
Constructs a new
ChunkedExtraction object representing range in
the sentence sent. |
ChunkedExtraction(ChunkedSentence sent,
edu.washington.cs.knowitall.commonlib.Range range,
String string)
Constructs a new
NpChunkedExtraction object representing
range in the sentence sent. |
SpanExtraction(ChunkedSentence sent,
List<edu.washington.cs.knowitall.commonlib.Range> fieldRanges)
Constructs a new extraction from the given sentence, with fields defined
by the given ranges.
|
SpanExtraction(ChunkedSentence sent,
List<edu.washington.cs.knowitall.commonlib.Range> fieldRanges,
List<String> fieldNames)
Constructs a new extraction from the given sentence, with fields defined
by the given ranges and names.
|
Copyright © 2010-2013 University of Washington CSE. All Rights Reserved.