Package opennlp.tools.util.featuregen
Klasse WindowFeatureGenerator
java.lang.Object
opennlp.tools.util.featuregen.WindowFeatureGenerator
- Alle implementierten Schnittstellen:
AdaptiveFeatureGenerator
Generates previous (left-sided) and next (right-sided) features for a
given
AdaptiveFeatureGenerator. The window size can be specified.
Features:
- Current token is always included unchanged,
- Previous tokens are prefixed with
pdistance, - Next tokens are prefix with
ndistance.
- Siehe auch:
-
Feldübersicht
Felder -
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungWindowFeatureGenerator(int prevWindowSize, int nextWindowSize, AdaptiveFeatureGenerator... generators) Initializes aWindowFeatureGeneratorwith the given parameters.WindowFeatureGenerator(AdaptiveFeatureGenerator generator) Initializes aWindowFeatureGenerator.WindowFeatureGenerator(AdaptiveFeatureGenerator... generators) Initializes aWindowFeatureGenerator.WindowFeatureGenerator(AdaptiveFeatureGenerator generator, int prevWindowSize, int nextWindowSize) Initializes aWindowFeatureGeneratorwith the given parameters. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoidInforms a feature generator that the context of the adaptive data (typically a document) is no longer valid.voidcreateFeatures(List<String> features, String[] tokens, int index, String[] preds) Adds the appropriate features for the token at the specifiedindexwith the specified array ofpreviousOutcomesto the specified list of features.toString()voidupdateAdaptiveData(String[] tokens, String[] outcomes) Informs a feature generator that the specified tokens have been classified with the corresponding set of specifiedoutcomes.
-
Felddetails
-
PREV_PREFIX
- Siehe auch:
-
NEXT_PREFIX
- Siehe auch:
-
-
Konstruktordetails
-
WindowFeatureGenerator
public WindowFeatureGenerator(AdaptiveFeatureGenerator generator, int prevWindowSize, int nextWindowSize) Initializes aWindowFeatureGeneratorwith the given parameters.- Parameter:
generator- TheAdaptiveFeatureGeneratorto apply to the window.prevWindowSize- Size of the window to the left of the current token.nextWindowSize- Size of the window to the right of the current token.
-
WindowFeatureGenerator
public WindowFeatureGenerator(int prevWindowSize, int nextWindowSize, AdaptiveFeatureGenerator... generators) Initializes aWindowFeatureGeneratorwith the given parameters.- Parameter:
prevWindowSize- Size of the window to the left of the current token.nextWindowSize- Size of the window to the right of the current token.generators- One or moreAdaptiveFeatureGeneratorto apply to the window.
-
WindowFeatureGenerator
Initializes aWindowFeatureGenerator. The previous and next window size is 5.- Parameter:
generator- TheAdaptiveFeatureGeneratorto apply to the window.
-
WindowFeatureGenerator
Initializes aWindowFeatureGenerator. The previous and next window size is 5.- Parameter:
generators- One or moreAdaptiveFeatureGeneratorto apply to the window.
-
-
Methodendetails
-
createFeatures
Beschreibung aus Schnittstelle kopiert:AdaptiveFeatureGeneratorAdds the appropriate features for the token at the specifiedindexwith the specified array ofpreviousOutcomesto the specified list of features.- Angegeben von:
createFeaturesin SchnittstelleAdaptiveFeatureGenerator- Parameter:
features- The list of features to be added to.tokens- The tokens of the sentence or other text unit being processed.index- The index of the token which is currently being processed.preds- The outcomes for the tokens prior to the specified index.
-
updateAdaptiveData
Beschreibung aus Schnittstelle kopiert:AdaptiveFeatureGeneratorInforms a feature generator that the specified tokens have been classified with the corresponding set of specifiedoutcomes.- Angegeben von:
updateAdaptiveDatain SchnittstelleAdaptiveFeatureGenerator- Parameter:
tokens- The tokens of the sentence or other text unit which has been processed.outcomes- The outcomes associated with the specified tokens.
-
clearAdaptiveData
public void clearAdaptiveData()Beschreibung aus Schnittstelle kopiert:AdaptiveFeatureGeneratorInforms a feature generator that the context of the adaptive data (typically a document) is no longer valid.- Angegeben von:
clearAdaptiveDatain SchnittstelleAdaptiveFeatureGenerator
-
toString
-