Uses of Interface
opennlp.tools.parser.HeadRules

Packages that use HeadRules
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.lang.en   
opennlp.tools.parser.treeinsert Package containing experimental code for performing full syntactic parsing using attachment decisions. 
 

Uses of HeadRules in opennlp.tools.parser
 

Fields in opennlp.tools.parser declared as HeadRules
protected  HeadRules AbstractBottomUpParser.headRules
          The head rules for the parser.
protected  HeadRules AbstractParserEventStream.rules
           
 

Methods in opennlp.tools.parser with parameters of type HeadRules
 void Parse.add(Parse daughter, HeadRules rules)
           
 Parse Parse.adjoin(Parse sister, HeadRules rules)
          Sister adjoins this node's last child and the specified sister node and returns their new parent node.
 Parse Parse.adjoinRoot(Parse node, HeadRules rules, int parseIndex)
           
static Dictionary AbstractBottomUpParser.buildDictionary(ObjectStream<Parse> data, HeadRules rules, int cutoff)
          Creates a n-gram dictionary from the specified data stream using the specified head rule and specified cut-off.
 void Parse.updateHeads(HeadRules rules)
          Computes the head parses for this parse and its sub-parses and stores this information in the parse data structure.
 

Constructors in opennlp.tools.parser with parameters of type HeadRules
AbstractBottomUpParser(POSTagger tagger, Chunker chunker, HeadRules headRules, int beamSize, double advancePercentage)
           
AbstractParserEventStream(ObjectStream<Parse> d, HeadRules rules, ParserEventTypeEnum etype)
           
AbstractParserEventStream(ObjectStream<Parse> d, HeadRules rules, ParserEventTypeEnum etype, Dictionary dict)
           
 

Uses of HeadRules in opennlp.tools.parser.chunking
 

Methods in opennlp.tools.parser.chunking with parameters of type HeadRules
static ParserModel Parser.train(String languageCode, ObjectStream<Parse> parseSamples, HeadRules rules, int iterations, int cut)
           
 

Constructors in opennlp.tools.parser.chunking with parameters of type HeadRules
Parser(opennlp.model.MaxentModel buildModel, opennlp.model.MaxentModel checkModel, POSTagger tagger, Chunker chunker, HeadRules headRules)
          Deprecated. 
Parser(opennlp.model.MaxentModel buildModel, opennlp.model.MaxentModel checkModel, POSTagger tagger, Chunker chunker, HeadRules headRules, int beamSize, double advancePercentage)
          Deprecated. 
ParserEventStream(ObjectStream<Parse> d, HeadRules rules, ParserEventTypeEnum etype)
           
ParserEventStream(ObjectStream<Parse> d, HeadRules rules, ParserEventTypeEnum etype, Dictionary dict)
          Create an event stream based on the specified data stream of the specified type using the specified head rules.
 

Uses of HeadRules in opennlp.tools.parser.lang.en
 

Classes in opennlp.tools.parser.lang.en that implement HeadRules
 class HeadRules
          Class for storing the English head rules associated with parsing.
 

Uses of HeadRules in opennlp.tools.parser.treeinsert
 

Methods in opennlp.tools.parser.treeinsert with parameters of type HeadRules
static ParserModel Parser.train(String languageCode, ObjectStream<Parse> parseSamples, HeadRules rules, int iterations, int cut)
           
 

Constructors in opennlp.tools.parser.treeinsert with parameters of type HeadRules
Parser(opennlp.model.AbstractModel buildModel, opennlp.model.AbstractModel attachModel, opennlp.model.AbstractModel checkModel, POSTagger tagger, Chunker chunker, HeadRules headRules)
          Deprecated. 
Parser(opennlp.model.AbstractModel buildModel, opennlp.model.AbstractModel attachModel, opennlp.model.AbstractModel checkModel, POSTagger tagger, Chunker chunker, HeadRules headRules, int beamSize, double advancePercentage)
          Deprecated. 
ParserEventStream(ObjectStream<Parse> d, HeadRules rules, ParserEventTypeEnum etype)
           
ParserEventStream(ObjectStream<Parse> d, HeadRules rules, ParserEventTypeEnum etype, Dictionary dict)
           
 



Copyright © 2010. All Rights Reserved.