Package | Description |
---|---|
edu.illinois.cs.cogcomp.edison.features | |
edu.illinois.cs.cogcomp.edison.features.factory |
Modifier and Type | Class and Description |
---|---|
class |
NgramFeatureExtractor |
class |
PrefixFeatureExtractor |
class |
SuffixFeatureExtractor |
Modifier and Type | Method and Description |
---|---|
static WordFeatureExtractor |
WordFeatureExtractor.convertToWordFeatureExtractor(FeatureExtractor fex) |
Modifier and Type | Method and Description |
---|---|
static NgramFeatureExtractor |
NgramFeatureExtractor.bigrams(WordFeatureExtractor base) |
static NgramFeatureExtractor |
NgramFeatureExtractor.trigrams(WordFeatureExtractor base) |
Constructor and Description |
---|
ContextFeatureExtractor(int contextSize,
boolean specifyIndex,
boolean ignoreConstituent,
WordFeatureExtractor... fex) |
NgramFeatureExtractor(WordFeatureExtractor base,
int n) |
Modifier and Type | Class and Description |
---|---|
class |
BrownClusterFeatureExtractor
A
WordFeatureExtractor that generates prefixes of brown cluster Ids for each word. |
class |
CorelexFeatureExtractor
Returns a set of features that are CoreLex's basic types of lemmas.
|
class |
VerbVoiceIndicator
Uses the parse tree to figure out whether a verb is an active or a passive voice.
|
class |
WordNetFeatureExtractor
This feature extractor generates the following WordNet based features from a word: synonyms,
synsets, hypernyms, hypernym-sets.
|
Modifier and Type | Field and Description |
---|---|
static WordFeatureExtractor |
WordFeatureExtractorFactory.capitalization
Adds the following two features: One with the word in its actual case, and the second, an
indicator for whether the word is captitalized
|
static WordFeatureExtractor |
WordFeatureExtractorFactory.conflatedPOS
The coarse POS tag (one of Noun, Verb, Adjective, Adverb, Punctuation, Pronoun and Other)
|
static WordFeatureExtractor |
WordFeatureExtractorFactory.dateMarker
An indicator for whether the token is a valid date.
|
static WordFeatureExtractor |
WordFeatureExtractorFactory.gerundMarker
An indicator for whether the word ends with an `-ing`.
|
static WordFeatureExtractor |
WordFeatureExtractorFactory.lemma
The lemma of the word, taken from the LEMMA view (that is,
ViewNames.LEMMA ) |
static WordFeatureExtractor |
WordFeatureExtractorFactory.nominalizationMarker
An indicator for whether the word is a nominalization
|
static WordFeatureExtractor |
WordFeatureExtractorFactory.numberNormalizer
An indicator for whether the word is a number
|
static WordFeatureExtractor |
WordFeatureExtractorFactory.pos
The part of speech tag of the word (taken from
ViewNames.POS ) |
static WordFeatureExtractor |
WordFeatureExtractorFactory.prefixSuffixes
The first and last two, three characters in the lower cased word
|
static WordFeatureExtractor |
WordFeatureExtractorFactory.word
The word, lower-cased.
|
static WordFeatureExtractor |
WordFeatureExtractorFactory.wordCase
The word, without changing the case.
|
Modifier and Type | Method and Description |
---|---|
static WordFeatureExtractor |
WordFeatureExtractorFactory.getBrownFeatureGenerator(String name,
String brownClustersFileName,
int[] brownClusterLengths) |
static WordFeatureExtractor |
WordFeatureExtractorFactory.getGazetteerFeatureExtractor(String name,
SimpleGazetteerAnnotator gazetteerViewGenerator) |
Copyright © 2017. All rights reserved.