Serialized Form


Package edu.stanford.nlp.annotation

Class edu.stanford.nlp.annotation.Annotator implements Serializable

Serialized Fields

fc

JFileChooser fc

colorChooser

JColorChooser colorChooser

SuppressWarnings

boolean SuppressWarnings

warningsMenuItem

JMenuItem warningsMenuItem

doc

DefaultStyledDocument doc

tp

JTextPane tp

toolbar

JToolBar toolbar

tagsMenu

JMenu tagsMenu

viewMenu

JMenu viewMenu

scrollPane

JScrollPane scrollPane

colorMaps

Hashtable colorMaps

tags

Vector tags

buttons

Vector buttons

defaultColors

Vector defaultColors

tagsChanged

boolean tagsChanged

defaultColorIndex

int defaultColorIndex

hideHtml

boolean hideHtml

invisible

SimpleAttributeSet invisible

cache

String cache

actor

ActionListener actor

Class edu.stanford.nlp.annotation.ParseException implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

String eol
The end of line string for this machine.

Class edu.stanford.nlp.annotation.TokenMgrError implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package edu.stanford.nlp.cluster

Class edu.stanford.nlp.cluster.AbstractSimpleClusters implements Serializable

Serialized Fields

score

double score

Class edu.stanford.nlp.cluster.MatrixDecompositionClusters implements Serializable

Serialized Fields

U

Matrix U

S

Matrix S

V

Matrix V

Class edu.stanford.nlp.cluster.VectorClusters implements Serializable

Serialized Fields

clusters

Vector clusters


Package edu.stanford.nlp.dbm

Class edu.stanford.nlp.dbm.BasicDatum implements Serializable

Serialized Fields

features

Collection features
features for this Datum


labels

List labels
labels for this Datum. Invariant: always non-null

Class edu.stanford.nlp.dbm.BasicDocument 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.

Class edu.stanford.nlp.dbm.Context implements Serializable

Serialized Fields

label

String label

doc

String doc

Class edu.stanford.nlp.dbm.CranDocument implements Serializable

Class edu.stanford.nlp.dbm.HTMLDocument implements Serializable

Serialized Fields

parsedText

String parsedText

Class edu.stanford.nlp.dbm.LocusLinkDocument implements Serializable

Serialized Fields

state

String state

Class edu.stanford.nlp.dbm.MedlineDocument implements Serializable

Serialized Fields

MeSH

Vector MeSH

abstractText

String abstractText

Class edu.stanford.nlp.dbm.OhsumedDocument implements Serializable

Serialized Fields

uid

String uid

abstractText

String abstractText

Class edu.stanford.nlp.dbm.USPDIDocument implements Serializable

Serialized Fields

name

String name


Package edu.stanford.nlp.ie.desc

Class edu.stanford.nlp.ie.desc.DescExtractor implements Serializable

Serialized Fields

description

String description
description of the extractor

 
See Also:
Constant Field Values

words

String[] words

tsr

TaggedStreamTokenizer tsr

lookedAhead

boolean lookedAhead

lookAheadToken

String lookAheadToken

lookAheadType

int lookAheadType

initialized

boolean initialized

Class edu.stanford.nlp.ie.desc.ParseException implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

String eol
The end of line string for this machine.

Class edu.stanford.nlp.ie.desc.TokenMgrError implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package edu.stanford.nlp.ie

Class edu.stanford.nlp.ie.AbstractFieldExtractor implements Serializable

Class edu.stanford.nlp.ie.ExtractDemo implements Serializable

Serialized Fields

conceptValues

JPanel conceptValues

topPanel

JPanel topPanel

ontologyLabel

JTextField ontologyLabel

directoryLabel

JTextField directoryLabel

searchField

JTextField searchField

urlField

JTextField urlField

conceptField

JTextField conceptField

relationFields

JTextField[] relationFields

fromURLField

JLabel fromURLField

mergerLabel

JTextField mergerLabel

merger

InstanceMerger merger

extractors

FieldExtractor[] extractors

ontology

edu.unika.aifb.kaon.Ontology ontology

concept

edu.unika.aifb.kaon.Concept concept

searcher

WebSearch searcher

instances

edu.unika.aifb.kaon.Instance[] instances

confidences

Confidence[] confidences

currInstance

int currInstance

searchURLs

String[] searchURLs

next

JButton next

prev

JButton prev

fc

JFileChooser fc

finishSem

int finishSem
semaphore for knowing when the extractions have finished

Class edu.stanford.nlp.ie.SingleFieldExtractor implements Serializable


Package edu.stanford.nlp.ie.hmm

Class edu.stanford.nlp.ie.hmm.HMM implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serialized Fields

calcEmitStates

int calcEmitStates
Number of states to iterate over. End states and dummy target states don't need to be recalculated. We make the restriction that all regular (background) states precede special states in the states array. Since we have start and end states, the Emit states are 2 = State.BKGRNDIDX .. State.BKGRNDIDX + calcEmitStates - 1.

states

State[] states
The array of states. There are states.length states. This includes a special start state and an end state.

targetFields

String[] targetFields
names of fields being extracted

zeroTable

HashMap zeroTable

vocab

HashMap vocab
maps words to how many times they appeared in training


uniform

PlainEmitMap uniform

targetParents

PlainEmitMap[] targetParents
Shrinked emissions for union of all states of a particular type. The background parent is targetParents[0].


hmmType

int hmmType

print

boolean print

Class edu.stanford.nlp.ie.hmm.HMMSingleFieldExtractor implements Serializable

Serialized Fields

relation

String relation
The name of the relation that this extractor extracts


hmm

HMM hmm
The HMM that extracts this field

Class edu.stanford.nlp.ie.hmm.MultiStructure implements Serializable

Serialized Fields

states

int states

Class edu.stanford.nlp.ie.hmm.State implements Serializable

Serialized Fields

type

int type
An integer type for a state, giving equivalence classes of states. Types run from -2 to (num_types - 1). -2 is end state (no emissions). -1 is start state (no emissions). In general, types < 0 have no emissions and special transitions. In the IE world, type 0 is the background state, types >= 1 are target types, and types after the end of target types are other special non-target types. This is a classification of states not a numbering. It is used for the restricted EM used in the HMM module. If this feature is not desired, one can simply give all tokens and states the same type, and then regular EM will be done (give them a type between 0 and 1000 inclusive to avoid warning messages!).


emit

EmitMap emit

transition

double[] transition

Class edu.stanford.nlp.ie.hmm.Structure implements Serializable

Serialized Fields

transitions

List transitions

stateTypes

List stateTypes

prefixes

List prefixes

suffixes

List suffixes

targets

List targets

Class edu.stanford.nlp.ie.hmm.TypedTaggedDocument implements Serializable


Package edu.stanford.nlp.ie.merge

Class edu.stanford.nlp.ie.merge.AbstractInstanceMerger implements Serializable

Class edu.stanford.nlp.ie.merge.GenericMerger implements Serializable

Serialized Fields

conflictPenalty

double conflictPenalty
Assessed when two fields conflict


vacuousMergePenalty

double vacuousMergePenalty
Assessed when a merge doesn't affect any of the relevant fields.


mergePenalty

double mergePenalty
assessed every time there is a merge


ignoredFields

HashMap ignoredFields
stores the names of fields that don't participate in the merge


ignoredPenalties

HashMap ignoredPenalties
stores the names of fields that are allowed to conflict

Class edu.stanford.nlp.ie.merge.UnscoredMerger implements Serializable

Serialized Fields

PRESENCE_SCORE

double PRESENCE_SCORE
score for a field being filled

Class edu.stanford.nlp.ie.merge.WebSearchMerger implements Serializable


Package edu.stanford.nlp.ie.pnp

Class edu.stanford.nlp.ie.pnp.ConfusionMatrixPlotter implements Serializable

Serialized Fields

values

int[][] values

maxSize

double maxSize
See Also:
Constant Field Values

parent

JFrame parent

Class edu.stanford.nlp.ie.pnp.ConfusionMatrixPlotter.CellPlotter implements Serializable

Serialized Fields

bimg

BufferedImage bimg

value

int value

labelShowing

boolean labelShowing

Class edu.stanford.nlp.ie.pnp.PnpClassifier implements Serializable

Serialized Fields

DEBUG

boolean DEBUG

PRINT_SCORES

boolean PRINT_SCORES

PRINT_RUNNING_SCORES

boolean PRINT_RUNNING_SCORES

numCategories

int numCategories

numExamples

int numExamples

priorBoost

double priorBoost

lengthNormalization

double lengthNormalization

heldOutPercent

int heldOutPercent
See Also:
Constant Field Values

heldOutExamples

List[] heldOutExamples

charConvergenceMargin

double charConvergenceMargin
See Also:
Constant Field Values

lengthConvergenceMargin

double lengthConvergenceMargin
See Also:
Constant Field Values

numCharWordSteps

int numCharWordSteps
See Also:
Constant Field Values

maxPriorBoost

int maxPriorBoost
See Also:
Constant Field Values

categoryCounts

int[] categoryCounts

lengthSequenceCounts

HashMap[] lengthSequenceCounts

lengthInterpolationConstants

double[][][] lengthInterpolationConstants

wordTotalCounts

int[] wordTotalCounts

charSequenceCounts

HashMap[] charSequenceCounts

charInterpolationConstants

double[][][] charInterpolationConstants

charSequenceTotalsByLength

HashMap[] charSequenceTotalsByLength

charTotalCounts

int[] charTotalCounts

wordCountsByLength

HashMap[] wordCountsByLength

wordTotalsByLength

HashMap[] wordTotalsByLength

charWordInterpolationConstants

HashMap[] charWordInterpolationConstants

lengthNormalizations

double[] lengthNormalizations


Package edu.stanford.nlp.ie.regexp

Class edu.stanford.nlp.ie.regexp.RegexpExtractor implements Serializable

Serialized Fields

fieldName

String fieldName
name of relation (field) extracted

 

re

Pattern re
regular expression to extract text

 

description

String description
description of this RegexpExtractor

 

regexp

String regexp

Class edu.stanford.nlp.ie.regexp.RegexpsFieldExtractor implements Serializable

Serialized Fields

conceptNames

String[] conceptNames
names of concepts extracted from

 

fieldNames

String[] fieldNames
names of relations (fields) extracted

 

groups

int[] groups
group of regular expression to extract text from

 

regexps

org.apache.oro.text.regex.Pattern[] regexps
regular expressions to extract text

 

description

String description
description of this RegexpExtractor

 


Package edu.stanford.nlp.ie.pcfg

Class edu.stanford.nlp.ie.pcfg.PNPC implements Serializable

Serialized Fields

categoryNames

List categoryNames

DEBUG

boolean DEBUG

PRINT_SCORES

boolean PRINT_SCORES

PRINT_RUNNING_SCORES

boolean PRINT_RUNNING_SCORES

numCategories

int numCategories

numExamples

int numExamples

priorBoost

double priorBoost

lengthNormalization

double lengthNormalization

heldOutPercent

int heldOutPercent
See Also:
Constant Field Values

heldOutExamples

List[] heldOutExamples

charConvergenceMargin

double charConvergenceMargin
See Also:
Constant Field Values

lengthConvergenceMargin

double lengthConvergenceMargin
See Also:
Constant Field Values

numCharWordSteps

int numCharWordSteps
See Also:
Constant Field Values

maxPriorBoost

int maxPriorBoost
See Also:
Constant Field Values

categoryCounts

int[] categoryCounts

lengthSequenceCounts

HashMap[] lengthSequenceCounts

lengthInterpolationConstants

double[][][] lengthInterpolationConstants

wordTotalCounts

int[] wordTotalCounts

charSequenceCounts

HashMap[] charSequenceCounts

charInterpolationConstants

double[][][] charInterpolationConstants

charSequenceTotalsByLength

HashMap[] charSequenceTotalsByLength

charTotalCounts

int[] charTotalCounts

wordCountsByLength

HashMap[] wordCountsByLength

wordTotalsByLength

HashMap[] wordTotalsByLength

charWordInterpolationConstants

HashMap[] charWordInterpolationConstants

lengthNormalizations

double[] lengthNormalizations


Package edu.stanford.nlp.io

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


Package edu.stanford.nlp.linalg

Class edu.stanford.nlp.linalg.EAlgebra implements Serializable

Class edu.stanford.nlp.linalg.EDoubleFactory2D implements Serializable


Package edu.stanford.nlp.math

Class edu.stanford.nlp.math.ScientificNotationDouble implements Serializable

Serialized Fields

base

double base

exponent

int exponent


Package edu.stanford.nlp.tagger.maxent

Class edu.stanford.nlp.tagger.maxent.Extractor implements Serializable

Serialized Fields

position

int position

isTag

boolean isTag

Class edu.stanford.nlp.tagger.maxent.ExtractorAllTaggerOutputs implements Serializable

Class edu.stanford.nlp.tagger.maxent.ExtractorFollowing2WClass implements Serializable

Class edu.stanford.nlp.tagger.maxent.ExtractorFollowingWClass implements Serializable

Serialized Fields

nextXWord

Extractor nextXWord

num

int num

Class edu.stanford.nlp.tagger.maxent.ExtractorLastVerb implements Serializable

Class edu.stanford.nlp.tagger.maxent.ExtractorLVdist implements Serializable

Class edu.stanford.nlp.tagger.maxent.ExtractorMorpho implements Serializable

Serialized Fields

num

int num

t1

int t1

t2

int t2

tag1

String tag1

tag2

String tag2

Class edu.stanford.nlp.tagger.maxent.ExtractorOutputTag implements Serializable

Serialized Fields

num

int num

position

int position

Class edu.stanford.nlp.tagger.maxent.ExtractorParticles implements Serializable

Class edu.stanford.nlp.tagger.maxent.ExtractorParticlesChris implements Serializable

Serialized Fields

s

HashSet s

forms

HashMap forms

Class edu.stanford.nlp.tagger.maxent.Extractors implements Serializable

Serialized Fields

v

Extractor[] v

Class edu.stanford.nlp.tagger.maxent.MainFrame implements Serializable

Serialized Fields

borderLayout1

BorderLayout borderLayout1

jPanel1

JPanel jPanel1

gridLayout1

GridLayout gridLayout1

jTextArea1

JTextArea jTextArea1

jTextArea2

JTextArea jTextArea2

jPanel2

JPanel jPanel2

jButton1

JButton jButton1

titledBorder1

TitledBorder titledBorder1

titledBorder2

TitledBorder titledBorder2

pf

PrintFile pf


Package edu.stanford.nlp.trees

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


Package edu.stanford.nlp.util

Class edu.stanford.nlp.util.Beam implements Serializable

Serialized Fields

maxBeamSize

int maxBeamSize

Class edu.stanford.nlp.util.LikelihoodBeam implements Serializable

Serialized Fields

totalWeightSeen

double totalWeightSeen

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

Serialized Fields

i

int i

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

Serialized Fields

first

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

 

second

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

 

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

Serialized Fields

score

double score

Class edu.stanford.nlp.util.TopBeam implements Serializable

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

Class edu.stanford.nlp.util.XYPlotFrame implements Serializable

Serialized Fields

grid

Color[][] grid

xMax

int xMax

yMax

int yMax


Package edu.stanford.nlp.redwoods

Class edu.stanford.nlp.redwoods.IntTuple implements Serializable

Serialized Fields

numElements

int numElements

values

int[] values

Class edu.stanford.nlp.redwoods.ProbCountHolder implements Serializable

Serialized Fields

prob

double prob

count

double count

Class edu.stanford.nlp.redwoods.ProductionsTable implements Serializable

Serialized Fields

P_SMOOTH

double P_SMOOTH

tMap

HashMap tMap

Class edu.stanford.nlp.redwoods.RuleTable implements Serializable

Serialized Fields

rMap

HashMap rMap

PROB_SMOOTH

double PROB_SMOOTH

lambdarules

double lambdarules

lambdatags

double lambdatags

lambdatags2

double lambdatags2

smooth

boolean smooth

smoothmore

boolean smoothmore



Stanford NLP Group