edu.stanford.nlp.parser.lexparser
Class ParserData

java.lang.Object
  extended by edu.stanford.nlp.parser.lexparser.ParserData
All Implemented Interfaces:
Serializable

public class ParserData
extends Object
implements Serializable

Stores the serialized material representing the grammar and lexicon of a parser, and an Options that specifies things like how unknown words were handled and how distances were binned that will also be needed to parse with the grammar.

Author:
Dan Klein, Christopher Manning
See Also:
Serialized Form

Constructor Summary
ParserData(Lexicon lex, BinaryGrammar bg, UnaryGrammar ug, DependencyGrammar dg, Map numbs, Options pt)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ParserData

public ParserData(Lexicon lex,
                  BinaryGrammar bg,
                  UnaryGrammar ug,
                  DependencyGrammar dg,
                  Map numbs,
                  Options pt)


Stanford NLP Group