Uses of Class
opennlp.tools.parser.ParserModel
-
Packages that use ParserModel Package Description opennlp.tools.cmdline.parser opennlp.tools.parser Package containing common code for performing full syntactic parsing.opennlp.tools.parser.chunking Package containing code for performing full syntactic parsing using shift/reduce-style decisions.opennlp.tools.parser.treeinsert Package containing experimental code for performing full syntactic parsing using attachment decisions. -
-
Uses of ParserModel in opennlp.tools.cmdline.parser
Methods in opennlp.tools.cmdline.parser that return ParserModel Modifier and Type Method Description protected ParserModelParserModelLoader. loadModel(InputStream modelIn)protected ParserModelBuildModelUpdaterTool. trainAndUpdate(ParserModel originalModel, ObjectStream<Parse> parseSamples, opennlp.tools.cmdline.parser.ModelUpdaterTool.ModelUpdaterParams parameters)protected ParserModelCheckModelUpdaterTool. trainAndUpdate(ParserModel originalModel, ObjectStream<Parse> parseSamples, opennlp.tools.cmdline.parser.ModelUpdaterTool.ModelUpdaterParams parameters)Methods in opennlp.tools.cmdline.parser with parameters of type ParserModel Modifier and Type Method Description protected ParserModelBuildModelUpdaterTool. trainAndUpdate(ParserModel originalModel, ObjectStream<Parse> parseSamples, opennlp.tools.cmdline.parser.ModelUpdaterTool.ModelUpdaterParams parameters)protected ParserModelCheckModelUpdaterTool. trainAndUpdate(ParserModel originalModel, ObjectStream<Parse> parseSamples, opennlp.tools.cmdline.parser.ModelUpdaterTool.ModelUpdaterParams parameters) -
Uses of ParserModel in opennlp.tools.parser
Methods in opennlp.tools.parser that return ParserModel Modifier and Type Method Description ParserModelParserModel. updateBuildModel(MaxentModel buildModel)Instantiates a newParserModelinstance from the existing configuration with the specifiedbuildModelfor exchange.ParserModelParserModel. updateCheckModel(MaxentModel checkModel)Instantiates a newParserModelinstance from the existing configuration with the specifiedcheckModelfor exchange.ParserModelParserModel. updateChunkerModel(ChunkerModel chunkModel)Instantiates a newParserModelinstance from the existing configuration with the specifiedchunkModelfor exchange.ParserModelParserModel. updateTaggerModel(POSModel taggerModel)Instantiates a newParserModelinstance from the existing configuration with the specifiedtaggerModelfor exchange.Methods in opennlp.tools.parser with parameters of type ParserModel Modifier and Type Method Description static ParserParserFactory. create(ParserModel model)Instantiates aParservia a givenmodeland default configuration parameters (see:AbstractBottomUpParser).static ParserParserFactory. create(ParserModel model, int beamSize, double advancePercentage)Instantiates aParservia a givenmodeland other configuration parameters. -
Uses of ParserModel in opennlp.tools.parser.chunking
Methods in opennlp.tools.parser.chunking that return ParserModel Modifier and Type Method Description static ParserModelParser. train(String languageCode, ObjectStream<Parse> parseSamples, HeadRules rules, TrainingParameters mlParams)Starts a training of aParserModel.Constructors in opennlp.tools.parser.chunking with parameters of type ParserModel Constructor Description Parser(ParserModel model)Instantiates aParservia a givenmodel.Parser(ParserModel model, int beamSize, double advancePercentage)Instantiates aParservia a givenmodeland other configuration parameters. -
Uses of ParserModel in opennlp.tools.parser.treeinsert
Methods in opennlp.tools.parser.treeinsert that return ParserModel Modifier and Type Method Description static ParserModelParser. train(String languageCode, ObjectStream<Parse> parseSamples, HeadRules rules, int iterations, int cutoff)Starts a training of aParserModel.static ParserModelParser. train(String languageCode, ObjectStream<Parse> parseSamples, HeadRules rules, TrainingParameters mlParams)Starts a training of aParserModel.Constructors in opennlp.tools.parser.treeinsert with parameters of type ParserModel Constructor Description Parser(ParserModel model)Instantiates aParservia a givenmodel.Parser(ParserModel model, int beamSize, double advancePercentage)Instantiates aParservia a givenmodeland other configuration parameters.
-