Package opennlp.tools.parser.chunking
Klasse Parser
java.lang.Object
opennlp.tools.parser.AbstractBottomUpParser
opennlp.tools.parser.chunking.Parser
- Alle implementierten Schnittstellen:
Parser
A shift reduce style
Parser
implementation
based on Adwait Ratnaparkhi's 1998 thesis.- Siehe auch:
-
Feldübersicht
Von Klasse geerbte Felder opennlp.tools.parser.AbstractBottomUpParser
COMPLETE, CONT, defaultAdvancePercentage, defaultBeamSize, INC_NODE, INCOMPLETE, OTHER, START, TOK_NODE, TOP_NODE
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungParser
(ParserModel model) Instantiates aParser
via a givenmodel
.Parser
(ParserModel model, int beamSize, double advancePercentage) Instantiates aParser
via a givenmodel
and other configuration parameters. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic void
static ParserModel
train
(String languageCode, ObjectStream<Parse> parseSamples, HeadRules rules, TrainingParameters mlParams) Starts a training of aParserModel
.Von Klasse geerbte Methoden opennlp.tools.parser.AbstractBottomUpParser
buildDictionary, buildDictionary, collapsePunctuation, parse, parse, setErrorReporting, setParents
-
Konstruktordetails
-
Parser
Instantiates aParser
via a givenmodel
and other configuration parameters. Uses the default implementations ofPOSTaggerME
andChunkerME
.- Parameter:
model
- TheParserModel
to use.beamSize
- The number of different parses kept during parsing.advancePercentage
- The minimal amount of probability mass which advanced outcomes must represent. Only outcomes which contribute to the topadvancePercentage
will be explored.- Löst aus:
IllegalStateException
- Thrown if theParserType
is not supported.- Siehe auch:
-
Parser
Instantiates aParser
via a givenmodel
. Uses the default implementations ofPOSTaggerME
andChunkerME
and default values forbeamSize
andadvancePercentage
.- Parameter:
model
- TheParserModel
to use.- Löst aus:
IllegalStateException
- Thrown if theParserType
is not supported.- Siehe auch:
-
-
Methodendetails
-
mergeReportIntoManifest
-
train
public static ParserModel train(String languageCode, ObjectStream<Parse> parseSamples, HeadRules rules, TrainingParameters mlParams) throws IOException Starts a training of aParserModel
.- Parameter:
languageCode
- An ISO conform language code.parseSamples
- Thesamples
as input.rules
- TheHeadRules
to use.mlParams
- Theparameters
for training.- Gibt zurück:
- A valid
ParserModel
. - Löst aus:
IOException
- Thrown if IO errors occurred during training.
-