Serialized Form


Package edu.stanford.nlp.trees

Class edu.stanford.nlp.trees.Category extends StringLabel implements Serializable

Class edu.stanford.nlp.trees.CategoryWordTag extends StringLabel implements Serializable

Serialized Fields

word

String word

tag

String tag

Class edu.stanford.nlp.trees.ChineseTreebankLanguagePack extends AbstractTreebankLanguagePack implements Serializable

serialVersionUID: 5757403475523638802l

Class edu.stanford.nlp.trees.LabeledScoredTreeLeaf extends Tree implements Serializable

Serialized Fields

label

Label label
The string representing the word that is the yield of the parse tree.


score

double score
The score for the leaf

Class edu.stanford.nlp.trees.LabeledScoredTreeNode extends Tree implements Serializable

Serialized Fields

label

Label label
Label of the parse tree.


score

double score
Score of TreeNode


daughterTrees

Tree[] daughterTrees
Daughters of the parse tree.

Class edu.stanford.nlp.trees.NullLabel extends AbstractLabel implements Serializable

Class edu.stanford.nlp.trees.PennTreebankLanguagePack extends AbstractTreebankLanguagePack implements Serializable

serialVersionUID: 9081305982861675328l

Class edu.stanford.nlp.trees.Sentence extends ArrayList implements Serializable

Class edu.stanford.nlp.trees.SimpleTree extends Tree implements Serializable

Serialized Fields

daughterTrees

Tree[] daughterTrees
Daughters of the parse tree.

Class edu.stanford.nlp.trees.StringLabel extends AbstractLabel implements Serializable

Serialized Fields

str

String str

Class edu.stanford.nlp.trees.Tag extends StringLabel implements Serializable

Class edu.stanford.nlp.trees.TaggedWord extends Word implements Serializable

Serialized Fields

tag

String tag

Class edu.stanford.nlp.trees.TagMapper extends HashMap implements Serializable

Serialized Fields

tagMap

HashMap tagMap

Class edu.stanford.nlp.trees.Tree extends AbstractCollection implements Serializable

Class edu.stanford.nlp.trees.WeightedFollowedTaggedWord extends TaggedWord implements Serializable

Serialized Fields

follow

String follow

weight

double weight

Class edu.stanford.nlp.trees.Word extends StringLabel implements Serializable

Class edu.stanford.nlp.trees.WordTag extends Object implements Serializable

Serialized Fields

word

String word

tag

String tag


Package edu.stanford.nlp.trees.international.negra

Class edu.stanford.nlp.trees.international.negra.NegraLabel extends Category implements Serializable

Serialized Fields

edge

String edge

features

Map features

Class edu.stanford.nlp.trees.international.negra.NegraPennLanguagePack extends AbstractTreebankLanguagePack implements Serializable

serialVersionUID: 9081305982861675328l


Package edu.stanford.nlp.parser.lexparser

Class edu.stanford.nlp.parser.lexparser.AbstractTreebankParserParams extends Object implements Serializable

Serialized Fields

inputEncoding

String inputEncoding

outputEncoding

String outputEncoding

tlp

TreebankLanguagePack tlp

Class edu.stanford.nlp.parser.lexparser.BinaryGrammar extends Object implements Serializable

serialVersionUID: 1l

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
                 throws IOException,
                        ClassNotFoundException
Serialized Fields

stateSpace

String stateSpace

numStates

int numStates

allRules

List allRules

stateNumberer

Numberer stateNumberer

synthetic

boolean[] synthetic

Class edu.stanford.nlp.parser.lexparser.BinaryRule extends Rule implements Serializable

serialVersionUID: 1l

Serialized Fields

leftChild

int leftChild

rightChild

int rightChild

Class edu.stanford.nlp.parser.lexparser.ChineseTreebankParserParams extends AbstractTreebankParserParams implements Serializable

Serialized Fields

ctlp

ChineseTreebankLanguagePack ctlp

Class edu.stanford.nlp.parser.lexparser.ChineseUnknownWordModel extends Object implements Serializable

Serialized Fields

tagHash

Map tagHash

seenFirst

Set seenFirst

unknownGT

Map unknownGT

Class edu.stanford.nlp.parser.lexparser.DependencyGrammar extends Object implements Serializable

serialVersionUID: 1l

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
                 throws IOException,
                        ClassNotFoundException
Serialized Fields

tagProjection

TagProjection tagProjection

numWords

int numWords

numTags

int numTags

numTagBins

int numTagBins

tagBin

int[] tagBin

coreDependencies

Counter coreDependencies

smooth

double[] smooth

interp

double[] interp

distanceDecay

double distanceDecay

d

Dependency d

Class edu.stanford.nlp.parser.lexparser.EnglishTreebankParserParams extends Object implements Serializable

Serialized Fields

tlp

TreebankLanguagePack tlp

inputEncoding

String inputEncoding

outputEncoding

String outputEncoding

Class edu.stanford.nlp.parser.lexparser.GermanUnknownWordModel extends Object implements Serializable

Serialized Fields

tagHash

Map tagHash

seenEnd

Set seenEnd

unknownGT

Map unknownGT

Class edu.stanford.nlp.parser.lexparser.IntTaggedWord extends Object implements Serializable

serialVersionUID: 1l

Serialized Fields

word

int word

tag

short tag

Class edu.stanford.nlp.parser.lexparser.Lexicon extends Object implements Serializable

serialVersionUID: 5873l

Serialization Methods

readObject

protected void readObject(ObjectInputStream stream)
                   throws IOException,
                          ClassNotFoundException
Serialized Fields

seenCounter

Counter seenCounter

unSeenCounter

Counter unSeenCounter

smooth

double[] smooth

Class edu.stanford.nlp.parser.lexparser.NegraPennTreebankParserParams extends AbstractTreebankParserParams implements Serializable

Serialized Fields

treeNormalizerLeaveGF

boolean treeNormalizerLeaveGF

nplp

NegraPennLanguagePack nplp

selectiveSplitLevel

int selectiveSplitLevel

Class edu.stanford.nlp.parser.lexparser.Options extends Object implements Serializable

serialVersionUID: 2l

Serialized Fields

numWords

int numWords

numTags

int numTags

numStates

int numStates

useUnknownWordSignatures

int useUnknownWordSignatures
Use suffix and capitalization information for unknowns. 0 means a single unknown token. 1 uses suffix, and capitalization. 2 uses a variant (richer) form of signature. Good. Use this one. Using the richer signatures in versions 3 or 4 seems to have very marginal or no positive value. 3 uses a richer form of signature that mimics the NER word type patterns. 4 is a variant of 2. 5 is another with more English specific morphology (good for English unknowns!)


SMOOTH_IN_UNKNOWNS_THRESHOLD

int SMOOTH_IN_UNKNOWNS_THRESHOLD
Words more common than this are tagged with MLE P(t|w). Default 100. The smoothing is sufficiently slight that changing this has little effect.


tlpParams

TreebankLangParserParams tlpParams
The treebank-specific parser parameters to use.


smartMutation

boolean smartMutation
Smarter smoothing for rare words.


forceCNF

boolean forceCNF
Forces parsing with strictly CNF grammar -- unary chains are converted to XP&YP symbols and back


doPCFG

boolean doPCFG
Do a PCFG parse of the sentence. If both variables are on, also do a combined parse of the sentence.


doDep

boolean doDep
Do a dependency parse of the sentence.


freeDependencies

boolean freeDependencies
if true, any child can be the head (seems rather bad!)


directional

boolean directional
Whether dependency grammar considers left/right direction. Good.


genStop

boolean genStop

distance

boolean distance
Use distance bins in the dependency calculations


coarseDistance

boolean coarseDistance
Use coarser distance (4 bins) in dependency calculations


flexiTag

boolean flexiTag

dcTags

boolean dcTags
"double count" tags rewrites as word in PCFG and Dep parser. Good for combined parsing only (it used to not kick in for PCFG parsing). This option is only used at Test time, but it is now in Options, so the correct choice for a grammar is recorded by a serialized parser.

Class edu.stanford.nlp.parser.lexparser.ParserData extends Object implements Serializable

serialVersionUID: 1l

Serialized Fields

lex

Lexicon lex

bg

BinaryGrammar bg

ug

UnaryGrammar ug

dg

DependencyGrammar dg

numbs

Map numbs

pt

Options pt

Class edu.stanford.nlp.parser.lexparser.Rule extends Object implements Serializable

serialVersionUID: 1l

Serialized Fields

parent

int parent

score

double score

Class edu.stanford.nlp.parser.lexparser.UnaryGrammar extends Object implements Serializable

serialVersionUID: 1l

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
                 throws IOException,
                        ClassNotFoundException
Serialized Fields

numStates

int numStates

stateSpace

String stateSpace

coreRules

Map coreRules

Class edu.stanford.nlp.parser.lexparser.UnaryRule extends Rule implements Serializable

serialVersionUID: 1l

Serialized Fields

child

int child


Package edu.stanford.nlp.parser.ui

Class edu.stanford.nlp.parser.ui.Parser extends JFrame implements Serializable

Serialized Fields

parserPanel

ParserPanel parserPanel

untokEngItem

JCheckBoxMenuItem untokEngItem

jMenu2

JMenu jMenu2

loadParserItem

JMenuItem loadParserItem

loadDataItem

JMenuItem loadDataItem

jSeparator1

JSeparator jSeparator1

tokOtherItem

JCheckBoxMenuItem tokOtherItem

jMenu1

JMenu jMenu1

exitItem

JMenuItem exitItem

jMenuBar1

JMenuBar jMenuBar1

Class edu.stanford.nlp.parser.ui.ParserPanel extends JPanel implements Serializable

Serialized Fields

jfc

JFileChooser jfc

pageDialog

OpenPageDialog pageDialog

normalStyle

SimpleAttributeSet normalStyle

highlightStyle

SimpleAttributeSet highlightStyle

startIndex

int startIndex

endIndex

int endIndex

treePanel

TreeJPanel treePanel

parser

ViterbiParser parser

tokenizerFactory

TokenizerFactory tokenizerFactory

lpThread

edu.stanford.nlp.parser.ui.ParserPanel.LoadParserThread lpThread

parseThread

edu.stanford.nlp.parser.ui.ParserPanel.ParseThread parseThread

timer

Timer timer

count

int count

glassPane

Component glassPane

scrollWhenDone

boolean scrollWhenDone

dataFileLabel

JLabel dataFileLabel

treeContainer

JPanel treeContainer

topPanel

JPanel topPanel

textScrollPane

JScrollPane textScrollPane

backButton

JButton backButton

statusLabel

JLabel statusLabel

loadFileButton

JButton loadFileButton

loadButtonPanel

JPanel loadButtonPanel

buttonsAndFilePanel

JPanel buttonsAndFilePanel

parseButton

JButton parseButton

parseNextButton

JButton parseNextButton

forwardButton

JButton forwardButton

parserFileLabel

JLabel parserFileLabel

clearButton

JButton clearButton

splitPane

JSplitPane splitPane

statusPanel

JPanel statusPanel

dataFilePanel

JPanel dataFilePanel

buttonPanel

JPanel buttonPanel

textPane

JTextPane textPane

progressBar

JProgressBar progressBar

parserFilePanel

JPanel parserFilePanel

loadParserButton

JButton loadParserButton

Class edu.stanford.nlp.parser.ui.TreeJPanel extends JPanel implements Serializable

Serialized Fields

VERTICAL_ALIGN

int VERTICAL_ALIGN

HORIZONTAL_ALIGN

int HORIZONTAL_ALIGN

maxFontSize

int maxFontSize

minFontSize

int minFontSize

preferredX

int preferredX

preferredY

int preferredY

sisterSkip

double sisterSkip

parentSkip

double parentSkip

belowLineSkip

double belowLineSkip

aboveLineSkip

double aboveLineSkip

tree

Tree tree

wr

TreeJPanel.WidthResult wr


Package edu.stanford.nlp.util

Class edu.stanford.nlp.util.CompositionMap extends Object implements Serializable

Serialized Fields

map

Map map

Class edu.stanford.nlp.util.Counter extends Object implements Serializable

serialVersionUID: 4l

Serialized Fields

map

Map map

mapFactory

MapFactory mapFactory

Class edu.stanford.nlp.util.DeltaCounter extends Counter implements Serializable

Class edu.stanford.nlp.util.Distribution extends Object implements Serializable

serialVersionUID: 6707148234288637809l

Serialized Fields

numberOfKeys

int numberOfKeys

reservedMass

double reservedMass

counter

Counter counter

Class edu.stanford.nlp.util.Index extends AbstractList implements Serializable

serialVersionUID: 5398562825928375260l

Serialized Fields

objects

List objects

indexes

Map indexes

locked

boolean locked

Class edu.stanford.nlp.util.MapFactory extends Object implements Serializable

Class edu.stanford.nlp.util.MapFactory.HashMapFactory extends MapFactory implements Serializable

Class edu.stanford.nlp.util.MapFactory.IdentityHashMapFactory extends MapFactory implements Serializable

Class edu.stanford.nlp.util.MapFactory.TreeMapFactory extends MapFactory implements Serializable

Class edu.stanford.nlp.util.MapFactory.WeakHashMapFactory extends MapFactory implements Serializable

Class edu.stanford.nlp.util.MutableDouble extends Number implements Serializable

serialVersionUID: 624465615824626762l

Serialized Fields

d

double d

Class edu.stanford.nlp.util.MutableInteger extends Number implements Serializable

serialVersionUID: 624465615824626762l

Serialized Fields

i

int i

Class edu.stanford.nlp.util.Numberer extends Object implements Serializable

serialVersionUID: 1l

Serialized Fields

total

int total

intToObject

Map intToObject

objectToInt

Map objectToInt

tempInt

MutableInteger tempInt

locked

boolean locked

Class edu.stanford.nlp.util.Pair extends Object implements Serializable

serialVersionUID: 1360822168806852920l

Serialization Methods

readResolve

private Object readResolve()
                    throws ObjectStreamException
Serialized Fields

first

Object first
Direct access is deprecated. Use first().

 

second

Object second
Direct access is deprecated. Use second().

 

intern

boolean intern

Class edu.stanford.nlp.util.ScoredPair extends Pair implements Serializable

Serialized Fields

score

double score

Class edu.stanford.nlp.util.UnorderedPair extends Pair implements Serializable


Package edu.stanford.nlp.io

Class edu.stanford.nlp.io.FileArrayList extends ArrayList implements Serializable

Class edu.stanford.nlp.io.RuntimeIOException extends RuntimeException implements Serializable


Package edu.stanford.nlp.io.ui

Class edu.stanford.nlp.io.ui.OpenPageDialog extends JDialog implements Serializable

Serialized Fields

jfc

JFileChooser jfc

status

int status

urlTextField

JTextField urlTextField

openButton

JButton openButton

jLabel1

JLabel jLabel1

jPanel3

JPanel jPanel3

jLabel2

JLabel jLabel2

jPanel2

JPanel jPanel2

cancelButton

JButton cancelButton

browseButton

JButton browseButton

jPanel1

JPanel jPanel1


Package edu.stanford.nlp.process

Class edu.stanford.nlp.process.CapitalFeature extends Object implements Serializable

Serialized Fields

CAPITALIZED

CapitalFeatureValue CAPITALIZED
A word that has at least two letters, such that one is word initial and capitalized, and the other is lowercase


ALLCAPS

CapitalFeatureValue ALLCAPS
A word that has at least one letter and all letters are uppercase


LOWERCASE

CapitalFeatureValue LOWERCASE
A word that has at least one letter and all letters are lowercase


MIXEDCASE

CapitalFeatureValue MIXEDCASE
A word that has at least one letter but is not one of the above


NONLETTERS

CapitalFeatureValue NONLETTERS
A word with no letters


allValues

CapitalFeatureValue[] allValues
Returns each possible feature in an array. Not for external use.

Class edu.stanford.nlp.process.NumAndCapFeature extends Object implements Serializable

Serialized Fields

allValues

NumAndCapFeatureValue[] allValues

cf

CapitalFeature cf

nf

NumberFeature nf

Class edu.stanford.nlp.process.NumberFeature extends Object implements Serializable

Serialized Fields

CARDINAL

NumberFeatureValue CARDINAL
Is a positive integer: [0-9]+


NUMBER

NumberFeatureValue NUMBER
Other number: has a digit, and other stuff is . , and/or leading -


HASNUMBER

NumberFeatureValue HASNUMBER
There is a digit in the word, but not one of the above two


NONUMBER

NumberFeatureValue NONUMBER
There is no digit in the word


allValues

NumberFeatureValue[] allValues
Returns each possible feature in an array. Not for external use.


Package edu.stanford.nlp.dbm

Class edu.stanford.nlp.dbm.BasicDocument extends ArrayList implements Serializable

Serialized Fields

title

String title
title of this document (never null).


originalText

String originalText
original text of this document (may be null).


labels

List labels
Label(s) for this document.


tokenizerFactory

TokenizerFactory tokenizerFactory
TokenizerFactory used to convert the text into words inside BasicDocument.parse(String).

Class edu.stanford.nlp.dbm.SentenceDocument extends ArrayList implements Serializable

Serialized Fields

title

String title
title of this document (never null).



Stanford NLP Group