edu.stanford.nlp.parser.lexparser
Class ParserData
java.lang.Object
edu.stanford.nlp.parser.lexparser.ParserData
- All Implemented Interfaces:
- java.io.Serializable
public class ParserData
- extends java.lang.Object
- implements java.io.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
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
lex
public Lexicon lex
bg
public BinaryGrammar bg
ug
public UnaryGrammar ug
dg
public DependencyGrammar dg
numbs
public java.util.Map<java.lang.String,Numberer> numbs
pt
public Options pt
ParserData
public ParserData(Lexicon lex,
BinaryGrammar bg,
UnaryGrammar ug,
DependencyGrammar dg,
java.util.Map<java.lang.String,Numberer> numbs,
Options pt)
Stanford NLP Group