Serialized Form


Package edu.stanford.nlp.io

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

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


Package edu.stanford.nlp.ling

Class edu.stanford.nlp.ling.AbstractMapLabel extends java.lang.Object implements Serializable

serialVersionUID: -980833749513621054L

Serialized Fields

map

java.util.Map<K,V> map
The Map which stores all of the attributes for this label, and the label value itself.


mapFactory

MapFactory mapFactory
The MapFactory which will be used to make new Maps in this AbstractMapLabel.

Class edu.stanford.nlp.ling.BasicDataCollection extends java.util.ArrayList implements Serializable

Serialized Fields

features

java.util.List<E> features

name

java.lang.String name

Class edu.stanford.nlp.ling.BasicDatum extends java.lang.Object implements Serializable

serialVersionUID: -4857004070061779966L

Serialized Fields

features

java.util.Collection<E> features
features for this Datum


labels

java.util.List<E> labels
labels for this Datum. Invariant: always non-null

Class edu.stanford.nlp.ling.BasicDocument extends java.util.ArrayList implements Serializable

Serialized Fields

title

java.lang.String title
title of this document (never null).


originalText

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


labels

java.util.List<E> labels
Label(s) for this document.


tokenizerFactory

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

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

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

Serialized Fields

word

java.lang.String word

tag

java.lang.String tag

Class edu.stanford.nlp.ling.DocumentCollection extends edu.stanford.nlp.ling.BasicDataCollection implements Serializable

Class edu.stanford.nlp.ling.FeatureLabel extends edu.stanford.nlp.ling.AbstractMapLabel implements Serializable

serialVersionUID: 19L

Serialized Fields

features

java.util.Collection<E> features

Class edu.stanford.nlp.ling.HTMLDocument extends BasicDocument implements Serializable

Serialized Fields

parsedText

java.lang.String parsedText

Class edu.stanford.nlp.ling.IndexedFeatureLabel extends edu.stanford.nlp.ling.FeatureLabel implements Serializable

Class edu.stanford.nlp.ling.MapLabel extends edu.stanford.nlp.ling.AbstractMapLabel implements Serializable

serialVersionUID: 1289283452485202162L

Class edu.stanford.nlp.ling.NullLabel extends ValueLabel implements Serializable

Class edu.stanford.nlp.ling.RVFDatum extends java.lang.Object implements Serializable

Serialized Fields

features

Counter<E> features
features for this Datum


label

java.lang.Object label
labels for this Datum. Invariant: always non-null

Class edu.stanford.nlp.ling.Sentence extends java.util.ArrayList<HasWord> implements Serializable

Class edu.stanford.nlp.ling.SentenceDocument extends java.util.ArrayList implements Serializable

Serialized Fields

title

java.lang.String title
title of this document (never null).

Class edu.stanford.nlp.ling.StringLabel extends ValueLabel implements Serializable

Serialized Fields

str

java.lang.String str

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

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

Serialized Fields

tag

java.lang.String tag

Class edu.stanford.nlp.ling.TypedTaggedWord extends TaggedWord implements Serializable

Serialized Fields

type

int type

Class edu.stanford.nlp.ling.ValueLabel extends java.lang.Object implements Serializable

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

Class edu.stanford.nlp.ling.WordLemmaTag extends java.lang.Object implements Serializable

Serialized Fields

word

java.lang.String word

lemma

java.lang.String lemma

tag

java.lang.String tag

Class edu.stanford.nlp.ling.WordTag extends java.lang.Object implements Serializable

Serialized Fields

word

java.lang.String word

tag

java.lang.String tag

Package edu.stanford.nlp.math

Class edu.stanford.nlp.math.ScientificNotationDouble extends java.lang.Number implements Serializable

Serialized Fields

base

double base

exponent

int exponent

Package edu.stanford.nlp.maxent

Class edu.stanford.nlp.maxent.LinearType2Classifier extends java.lang.Object implements Serializable

Serialized Fields

weights

Counter<E> weights

Package edu.stanford.nlp.objectbank

Class edu.stanford.nlp.objectbank.IdentityFunction extends java.lang.Object implements Serializable


Package edu.stanford.nlp.process

Class edu.stanford.nlp.process.Americanize extends java.lang.Object implements Serializable

Serialized Fields

capitalizeTimex

boolean capitalizeTimex

Class edu.stanford.nlp.process.BadPunctuationTokenizationFixer extends java.lang.Object implements Serializable

Serialized Fields

oldRegex

java.lang.String[] oldRegex

pattern

java.util.regex.Pattern[] pattern

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

Serialized Fields

CAPITALIZED

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


ALLCAPS

edu.stanford.nlp.process.CapitalFeatureValue ALLCAPS
A word that has at least one letter and all letters are uppercase


LOWERCASE

edu.stanford.nlp.process.CapitalFeatureValue LOWERCASE
A word that has at least one letter and all letters are lowercase


MIXEDCASE

edu.stanford.nlp.process.CapitalFeatureValue MIXEDCASE
A word that has at least one letter but is not one of the above


NONLETTERS

edu.stanford.nlp.process.CapitalFeatureValue NONLETTERS
A word with no letters


allValues

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

Class edu.stanford.nlp.process.Morphology extends java.lang.Object implements Serializable

serialVersionUID: 2L

Serialized Fields

lexer

edu.stanford.nlp.process.Morpha lexer

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

Serialized Fields

allValues

edu.stanford.nlp.process.NumAndCapFeatureValue[] allValues

cf

edu.stanford.nlp.process.CapitalFeature cf

nf

edu.stanford.nlp.process.NumberFeature nf

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

Serialized Fields

CARDINAL

edu.stanford.nlp.process.NumberFeatureValue CARDINAL
Is a positive integer: [0-9]+


NUMBER

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


HASNUMBER

edu.stanford.nlp.process.NumberFeatureValue HASNUMBER
There is a digit in the word, but not one of the above two


NONUMBER

edu.stanford.nlp.process.NumberFeatureValue NONUMBER
There is no digit in the word


allValues

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

Class edu.stanford.nlp.process.PTBEscapingProcessor extends AbstractListProcessor implements Serializable

Serialized Fields

stringSubs

java.util.Map<K,V> stringSubs

oldChars

char[] oldChars

fixQuotes

boolean fixQuotes

Class edu.stanford.nlp.process.Stemmer extends java.lang.Object implements Serializable

Serialized Fields

b

char[] b

i

int i

i_end

int i_end

j

int j

k

int k

Class edu.stanford.nlp.process.TreeToSentenceFunction extends java.lang.Object implements Serializable

Class edu.stanford.nlp.process.WNComboFilter extends java.lang.Object implements Serializable

Serialized Fields

filters

danbikel.wordnet.Filter[] filters

Class edu.stanford.nlp.process.WordExtractor extends java.lang.Object implements Serializable

Class edu.stanford.nlp.process.WordShapeFunction extends java.lang.Object implements Serializable

Serialized Fields

classifierToUse

int classifierToUse

Class edu.stanford.nlp.process.XMLTagStripper extends java.lang.Object implements Serializable

Serialized Fields

markLineBreaks

boolean markLineBreaks
Whether to insert "\n" words after ending block tags.


Package edu.stanford.nlp.sequences

Class edu.stanford.nlp.sequences.BBNReaderAndWriter extends edu.stanford.nlp.sequences.DocumentReaderAndWriter implements Serializable

Serialized Fields

fileNum

int fileNum

Class edu.stanford.nlp.sequences.Clique extends java.lang.Object implements Serializable

Serialization Methods

readResolve

public java.lang.Object readResolve()
Serialized Fields

relativeIndices

int[] relativeIndices

Class edu.stanford.nlp.sequences.CMMQueriableSequenceModelTrainerAndFactory extends edu.stanford.nlp.sequences.QueriableSequenceModelTrainerAndFactory implements Serializable

Class edu.stanford.nlp.sequences.CMUSeminarDataReaderAndWriter extends edu.stanford.nlp.sequences.DocumentReaderAndWriter implements Serializable

Serialized Fields

columnPattern

java.util.regex.Pattern columnPattern

predModel

edu.stanford.nlp.sequences.SequenceClassifier predModel

modelFile

java.lang.String modelFile

tagger

MaxentTagger tagger

Class edu.stanford.nlp.sequences.ColumnDocumentReaderAndWriter extends edu.stanford.nlp.sequences.DocumentReaderAndWriter implements Serializable

Serialized Fields

map

java.lang.String[] map

Class edu.stanford.nlp.sequences.ComboFeatureFactory extends edu.stanford.nlp.sequences.RVFFeatureFactory implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

leftWindow

int leftWindow

rightWindow

int rightWindow

classifiers

java.util.List<E> classifiers

currentDoc

edu.stanford.nlp.util.PaddedList<E> currentDoc

models

java.util.List<E> models

Class edu.stanford.nlp.sequences.ComboNERFeatureFactory extends edu.stanford.nlp.sequences.RVFFeatureFactory implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

otherFeatureFactory

edu.stanford.nlp.sequences.FeatureFactory otherFeatureFactory

leftWindow

int leftWindow

rightWindow

int rightWindow

classifiers

java.util.List<E> classifiers

currentDoc

edu.stanford.nlp.util.PaddedList<E> currentDoc

models

java.util.List<E> models

Class edu.stanford.nlp.sequences.CoNLLDocumentReaderAndWriter extends edu.stanford.nlp.sequences.DocumentReaderAndWriter implements Serializable

Serialized Fields

q

java.util.regex.Pattern q

q2

java.util.regex.Pattern q2

Class edu.stanford.nlp.sequences.CRFQueriableSequenceModelTrainerAndFactory extends edu.stanford.nlp.sequences.QueriableSequenceModelTrainerAndFactory implements Serializable

Class edu.stanford.nlp.sequences.DatasetMetaInfo extends java.lang.Object implements Serializable

Serialized Fields

labelIndex

Index<E> labelIndex

featureIndex

Index<E> featureIndex

cliqueIndices

java.util.Map<K,V> cliqueIndices

cliques

Index<E> cliques

backgroundIndex

int backgroundIndex

featureFactory

edu.stanford.nlp.sequences.FeatureFactory featureFactory

leftWindow

int leftWindow

rightWindow

int rightWindow

locked

boolean locked

info

edu.stanford.nlp.sequences.DatasetMetaInfo.ConvenienceInfo info

Class edu.stanford.nlp.sequences.DocumentReaderAndWriter extends java.lang.Object implements Serializable

Serialized Fields

flags

edu.stanford.nlp.sequences.SeqClassifierFlags flags

knownLCWords

java.util.Set<E> knownLCWords

Class edu.stanford.nlp.sequences.Feature extends java.lang.Object implements Serializable

Serialized Fields

value

java.lang.Object value

clique

edu.stanford.nlp.sequences.Clique clique

Class edu.stanford.nlp.sequences.FeatureFactory extends java.lang.Object implements Serializable

Serialized Fields

pad

edu.stanford.nlp.ling.FeatureLabel pad

flags

edu.stanford.nlp.sequences.SeqClassifierFlags flags

Class edu.stanford.nlp.sequences.FeatureFactoryWrapper extends edu.stanford.nlp.sequences.Type2FeatureFactory implements Serializable

Serialized Fields

wrapped

edu.stanford.nlp.sequences.FeatureFactory wrapped

Class edu.stanford.nlp.sequences.GazFeatureFactory extends edu.stanford.nlp.sequences.FeatureFactory implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

gazMap

edu.stanford.nlp.util.CollectionValuedMap<K,V> gazMap

gazNames

java.util.Collection<E> gazNames

Class edu.stanford.nlp.sequences.GazNERFeatureFactory extends edu.stanford.nlp.sequences.RVFFeatureFactory implements Serializable

Serialized Fields

otherFeatureFactory

edu.stanford.nlp.sequences.FeatureFactory otherFeatureFactory

Class edu.stanford.nlp.sequences.IncludeAllFeatureFactory extends edu.stanford.nlp.sequences.RVFFeatureFactory implements Serializable

Class edu.stanford.nlp.sequences.LabeledClique extends java.lang.Object implements Serializable

Serialization Methods

readResolve

public java.lang.Object readResolve()
Serialized Fields

clique

edu.stanford.nlp.sequences.Clique clique

labels

int[] labels

Class edu.stanford.nlp.sequences.MFCCFeatureFactory extends edu.stanford.nlp.sequences.RVFFeatureFactory implements Serializable

Class edu.stanford.nlp.sequences.NERFeatureFactory extends edu.stanford.nlp.sequences.FeatureFactory implements Serializable

serialVersionUID: 12321154532123L

Serialized Fields

gazFeatureFactory

edu.stanford.nlp.sequences.GazFeatureFactory gazFeatureFactory

wordToSubstrings

java.util.Map<K,V> wordToSubstrings

wordToGazetteEntries

java.util.Map<K,V> wordToGazetteEntries

wordToGazetteInfos

java.util.Map<K,V> wordToGazetteInfos

lastNames

java.util.HashSet<E> lastNames

maleNames

java.util.HashSet<E> maleNames

femaleNames

java.util.HashSet<E> femaleNames

Class edu.stanford.nlp.sequences.QueriableSequenceModelTrainerAndFactory extends java.lang.Object implements Serializable

Serialized Fields

metaInfo

edu.stanford.nlp.sequences.DatasetMetaInfo metaInfo

flags

edu.stanford.nlp.sequences.SeqClassifierFlags flags

weights

double[][] weights

Class edu.stanford.nlp.sequences.RVFFeatureFactory extends edu.stanford.nlp.sequences.FeatureFactory implements Serializable

Serialized Fields

pList

edu.stanford.nlp.util.PaddedList<E> pList

list

java.util.List<E> list

Class edu.stanford.nlp.sequences.SeqClassifierFlags extends java.lang.Object implements Serializable

serialVersionUID: -7076671761070232567L

Serialized Fields

stringRep

java.lang.String stringRep

useNGrams

boolean useNGrams

conjoinShapeNGrams

boolean conjoinShapeNGrams

lowercaseNGrams

boolean lowercaseNGrams

dehyphenateNGrams

boolean dehyphenateNGrams

usePrev

boolean usePrev

useNext

boolean useNext

useTags

boolean useTags

useWordPairs

boolean useWordPairs

useGazettes

boolean useGazettes

useSequences

boolean useSequences

usePrevSequences

boolean usePrevSequences

useNextSequences

boolean useNextSequences

useLongSequences

boolean useLongSequences

useBoundarySequences

boolean useBoundarySequences

useTaggySequences

boolean useTaggySequences

useExtraTaggySequences

boolean useExtraTaggySequences

dontExtendTaggy

boolean dontExtendTaggy

useTaggySequencesShapeInteraction

boolean useTaggySequencesShapeInteraction

strictlyZeroethOrder

boolean strictlyZeroethOrder

strictlyFirstOrder

boolean strictlyFirstOrder

strictlySecondOrder

boolean strictlySecondOrder

strictlyThirdOrder

boolean strictlyThirdOrder

useFourWayEntitySubclassification

boolean useFourWayEntitySubclassification

useIOB2Subclassification

boolean useIOB2Subclassification

retainEntitySubclassification

boolean retainEntitySubclassification

useGazettePhrases

boolean useGazettePhrases

makeConsistent

boolean makeConsistent

useWordLabelCounts

boolean useWordLabelCounts

useViterbi

boolean useViterbi

binnedLengths

int[] binnedLengths

useSum

boolean useSum

tolerance

double tolerance

printFeatures

java.lang.String printFeatures

useSymTags

boolean useSymTags

useSymWordPairs

boolean useSymWordPairs
useSymWordPairs Has a small negative effect.


printClassifier

java.lang.String printClassifier

printClassifierParam

int printClassifierParam

intern

boolean intern

intern2

boolean intern2

selfTest

boolean selfTest

sloppyGazette

boolean sloppyGazette

cleanGazette

boolean cleanGazette

noMidNGrams

boolean noMidNGrams

maxNGramLeng

int maxNGramLeng

useReverse

boolean useReverse

greekifyNGrams

boolean greekifyNGrams

useParenMatching

boolean useParenMatching

useLemmas

boolean useLemmas

usePrevNextLemmas

boolean usePrevNextLemmas

normalizeTerms

boolean normalizeTerms

normalizeTimex

boolean normalizeTimex

useNB

boolean useNB

useQN

boolean useQN

useFloat

boolean useFloat

QNsize

int QNsize

QNsize2

int QNsize2

wordShape

int wordShape

useShapeStrings

boolean useShapeStrings

useTypeSeqs

boolean useTypeSeqs

useTypeSeqs2

boolean useTypeSeqs2

useTypeSeqs3

boolean useTypeSeqs3

useDisjunctive

boolean useDisjunctive

disjunctionWidth

int disjunctionWidth

useDisjunctiveShapeInteraction

boolean useDisjunctiveShapeInteraction

useDisjShape

boolean useDisjShape

useWord

boolean useWord

useClassFeature

boolean useClassFeature

useShapeConjunctions

boolean useShapeConjunctions

useWordTag

boolean useWordTag

useNPHead

boolean useNPHead

useNPGovernor

boolean useNPGovernor

useHeadGov

boolean useHeadGov

useLastRealWord

boolean useLastRealWord

useNextRealWord

boolean useNextRealWord

useOccurrencePatterns

boolean useOccurrencePatterns

useTypeySequences

boolean useTypeySequences

justify

boolean justify

normalize

boolean normalize

useHuber

boolean useHuber

useQuartic

boolean useQuartic

sigma

double sigma

epsilon

double epsilon

beamSize

int beamSize

maxLeft

int maxLeft

maxRight

int maxRight

usePosition

boolean usePosition

useBeginSent

boolean useBeginSent

useGazFeatures

boolean useGazFeatures

useMoreGazFeatures

boolean useMoreGazFeatures

useAbbr

boolean useAbbr

useMinimalAbbr

boolean useMinimalAbbr

useAbbr1

boolean useAbbr1

useMinimalAbbr1

boolean useMinimalAbbr1

useMoreAbbr

boolean useMoreAbbr

useGENIA

boolean useGENIA

useTOK

boolean useTOK

useABSTR

boolean useABSTR

useABSTRFreqDict

boolean useABSTRFreqDict

useABSTRFreq

boolean useABSTRFreq

useFREQ

boolean useFREQ

useABGENE

boolean useABGENE

useWEB

boolean useWEB

useWEBFreqDict

boolean useWEBFreqDict

useIsURL

boolean useIsURL

useURLSequences

boolean useURLSequences

useIsDateRange

boolean useIsDateRange

useEntityTypes

boolean useEntityTypes

useEntityTypeSequences

boolean useEntityTypeSequences

useEntityRule

boolean useEntityRule

useOrdinal

boolean useOrdinal

useACR

boolean useACR

useANTE

boolean useANTE

firstPass

boolean firstPass

useMoreTags

boolean useMoreTags

dropFeatures

java.lang.String dropFeatures

numSlices

int numSlices

numLayers

int numLayers

randSeed

long randSeed

rareThreshold

int rareThreshold

useChunks

boolean useChunks

useChunkySequences

boolean useChunkySequences

usePrevVB

boolean usePrevVB

useNextVB

boolean useNextVB

useVB

boolean useVB

subCWGaz

boolean subCWGaz

documentReader

java.lang.String documentReader

trainMap

java.lang.String trainMap

testMap

java.lang.String testMap

useWideDisjunctive

boolean useWideDisjunctive

wideDisjunctionWidth

int wideDisjunctionWidth

lowerNewgeneThreshold

boolean lowerNewgeneThreshold

newgeneThreshold

double newgeneThreshold

useRadical

boolean useRadical

useBigramInTwoClique

boolean useBigramInTwoClique

morphFeatureFile

java.lang.String morphFeatureFile

useReverseAffix

boolean useReverseAffix

charHalfWindow

int charHalfWindow

useWord1

boolean useWord1

useWord2

boolean useWord2

useWord3

boolean useWord3

useWord4

boolean useWord4

useRad1

boolean useRad1

useRad2

boolean useRad2

useWordn

boolean useWordn

useCTBPre1

boolean useCTBPre1

useCTBSuf1

boolean useCTBSuf1

useASBCPre1

boolean useASBCPre1

useASBCSuf1

boolean useASBCSuf1

usePKPre1

boolean usePKPre1

usePKSuf1

boolean usePKSuf1

useHKPre1

boolean useHKPre1

useHKSuf1

boolean useHKSuf1

useCTBChar2

boolean useCTBChar2

useASBCChar2

boolean useASBCChar2

useHKChar2

boolean useHKChar2

usePKChar2

boolean usePKChar2

useRule2

boolean useRule2

useDict2

boolean useDict2

useDictleng

boolean useDictleng

useDictCTB2

boolean useDictCTB2

useDictASBC2

boolean useDictASBC2

useDictPK2

boolean useDictPK2

useDictHK2

boolean useDictHK2

useBig5

boolean useBig5

useNegDict2

boolean useNegDict2

useNegDict3

boolean useNegDict3

useNegDict4

boolean useNegDict4

useNegCTBDict2

boolean useNegCTBDict2

useNegCTBDict3

boolean useNegCTBDict3

useNegCTBDict4

boolean useNegCTBDict4

useNegASBCDict2

boolean useNegASBCDict2

useNegASBCDict3

boolean useNegASBCDict3

useNegASBCDict4

boolean useNegASBCDict4

useNegHKDict2

boolean useNegHKDict2

useNegHKDict3

boolean useNegHKDict3

useNegHKDict4

boolean useNegHKDict4

useNegPKDict2

boolean useNegPKDict2

useNegPKDict3

boolean useNegPKDict3

useNegPKDict4

boolean useNegPKDict4

usePre

boolean usePre

useSuf

boolean useSuf

useRule

boolean useRule

useHk

boolean useHk

useMsr

boolean useMsr

useMSRChar2

boolean useMSRChar2

usePk

boolean usePk

useAs

boolean useAs

useFilter

boolean useFilter

largeChSegFile

boolean largeChSegFile

keepEnglishWhitespaces

boolean keepEnglishWhitespaces

keepAllWhitespaces

boolean keepAllWhitespaces

sighanPostProcessing

boolean sighanPostProcessing

normalizationTable

java.lang.String normalizationTable

sighanCorporaDict

java.lang.String sighanCorporaDict
for Sighan bakeoff 2005, the path to the dictionary of bigrams appeared in corpus


useWordShapeGaz

boolean useWordShapeGaz

wordShapeGaz

java.lang.String wordShapeGaz

splitDocuments

boolean splitDocuments

printXML

boolean printXML

selfTrainConfidenceThreshold

double selfTrainConfidenceThreshold

selfTrainIterations

int selfTrainIterations

selfTrainWindowSize

int selfTrainWindowSize

crfType

java.lang.String crfType

inputEncoding

java.lang.String inputEncoding

bioSubmitOutput

boolean bioSubmitOutput

numRuns

int numRuns

answerFile

java.lang.String answerFile

altAnswerFile

java.lang.String altAnswerFile

dropGaz

java.lang.String dropGaz

printGazFeatures

java.lang.String printGazFeatures

numStartLayers

int numStartLayers

dump

boolean dump

mergeTags

boolean mergeTags

splitOnHead

boolean splitOnHead

numFolds

int numFolds

startFold

int startFold

endFold

int endFold

featureThreshold

int featureThreshold

featThreshFile

java.lang.String featThreshFile

featureDiffThresh

double featureDiffThresh

numTimesPruneFeatures

int numTimesPruneFeatures

featureFactory

java.lang.String featureFactory

backgroundSymbol

java.lang.String backgroundSymbol

useObservedSequencesOnly

boolean useObservedSequencesOnly

maxDocSize

int maxDocSize

printProbs

boolean printProbs

printFirstOrderProbs

boolean printFirstOrderProbs

saveFeatureIndexToDisk

boolean saveFeatureIndexToDisk

removeBackgroundSingletonFeatures

boolean removeBackgroundSingletonFeatures

doGibbs

boolean doGibbs

numSamples

int numSamples

useNERPrior

boolean useNERPrior

useAcqPrior

boolean useAcqPrior

useMUCFeatures

boolean useMUCFeatures

annealingRate

double annealingRate

annealingType

java.lang.String annealingType

loadProcessedData

java.lang.String loadProcessedData

initViterbi

boolean initViterbi

useUnknown

boolean useUnknown

checkNameList

boolean checkNameList

useSemPrior

boolean useSemPrior

useFirstWord

boolean useFirstWord

useNumberFeature

boolean useNumberFeature

ocrFold

int ocrFold

classifierType

java.lang.String classifierType

svmModelFile

java.lang.String svmModelFile

inferenceType

java.lang.String inferenceType

useLemmaAsWord

boolean useLemmaAsWord

type

java.lang.String type

readerAndWriter

java.lang.String readerAndWriter

useAllLabelSequences

boolean useAllLabelSequences

weightsToLearn

int weightsToLearn

comboProps

java.util.List<E> comboProps

usePrediction

boolean usePrediction

useAltGazFeatures

boolean useAltGazFeatures

gazFilesFile

java.lang.String gazFilesFile

usePrediction2

boolean usePrediction2

baseTrainDir

java.lang.String baseTrainDir

baseTestDir

java.lang.String baseTestDir

trainFiles

java.lang.String trainFiles

testFiles

java.lang.String testFiles

useOnlySeenWeights

boolean useOnlySeenWeights

predProp

java.lang.String predProp

Class edu.stanford.nlp.sequences.SuperSimpleFeatureFactory extends edu.stanford.nlp.sequences.FeatureFactory implements Serializable

Class edu.stanford.nlp.sequences.Type2FeatureFactory extends java.lang.Object implements Serializable

Serialized Fields

pad

edu.stanford.nlp.ling.FeatureLabel pad

flags

edu.stanford.nlp.sequences.SeqClassifierFlags flags

Package edu.stanford.nlp.stats

Class edu.stanford.nlp.stats.Counter extends java.lang.Object implements Serializable

serialVersionUID: 4L

Serialized Fields

map

java.util.Map<K,V> map

mapFactory

MapFactory mapFactory

totalCount

double totalCount

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

Class edu.stanford.nlp.stats.Distribution extends java.lang.Object implements Serializable

serialVersionUID: 6707148234288637809L

Serialized Fields

numberOfKeys

int numberOfKeys

reservedMass

double reservedMass

counter

Counter<E> counter

Class edu.stanford.nlp.stats.IntCounter extends java.lang.Object implements Serializable

serialVersionUID: 4L

Serialized Fields

map

java.util.Map<K,V> map

mapFactory

MapFactory mapFactory

Package edu.stanford.nlp.tagger.maxent

Class edu.stanford.nlp.tagger.maxent.Extractor extends java.lang.Object implements Serializable

serialVersionUID: -4694133872973560083L

Serialized Fields

position

int position

isTag

boolean isTag

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

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

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

Serialized Fields

nextXWord

Extractor nextXWord

num

int num

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

serialVersionUID: -16619310062224383L

Serialized Fields

bound

int bound

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

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

Serialized Fields

num

int num

t1

int t1

t2

int t2

tag1

java.lang.String tag1

tag2

java.lang.String tag2

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

Serialized Fields

num

int num

position

int position

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

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

serialVersionUID: 2631506606864457451L

Serialized Fields

bound

int bound

s

java.util.HashSet<E> s

forms

java.util.HashMap<K,V> forms

Class edu.stanford.nlp.tagger.maxent.Extractors extends java.lang.Object implements Serializable

serialVersionUID: -4777107742414749890L

Serialized Fields

v

Extractor[] v

Class edu.stanford.nlp.tagger.maxent.MaxentTagger extends java.lang.Object implements Serializable

Class edu.stanford.nlp.tagger.maxent.MaxentTaggerGUI extends javax.swing.JFrame implements Serializable

Serialized Fields

borderLayout1

java.awt.BorderLayout borderLayout1

jPanel1

javax.swing.JPanel jPanel1

gridLayout1

java.awt.GridLayout gridLayout1

jTextArea1

javax.swing.JTextArea jTextArea1

jTextArea2

javax.swing.JTextArea jTextArea2

jPanel2

javax.swing.JPanel jPanel2

jButton1

javax.swing.JButton jButton1

titledBorder1

javax.swing.border.TitledBorder titledBorder1

titledBorder2

javax.swing.border.TitledBorder titledBorder2

pf

PrintFile pf

Package edu.stanford.nlp.util

Class edu.stanford.nlp.util.CacheMap extends java.util.LinkedHashMap<K,V> implements Serializable

Serialized Fields

backingFile

java.lang.String backingFile

CACHE_ENTRIES

int CACHE_ENTRIES

entriesSinceLastWritten

int entriesSinceLastWritten

frequencyToWrite

int frequencyToWrite

hits

int hits

misses

int misses

puts

int puts

Class edu.stanford.nlp.util.CollectionFactory extends java.lang.Object implements Serializable

Class edu.stanford.nlp.util.CollectionFactory.ArrayListFactory extends edu.stanford.nlp.util.CollectionFactory implements Serializable

Class edu.stanford.nlp.util.CollectionFactory.HashSetFactory extends edu.stanford.nlp.util.CollectionFactory implements Serializable

Class edu.stanford.nlp.util.CollectionValuedMap extends java.lang.Object implements Serializable

Serialized Fields

map

java.util.Map<K,V> map

cf

edu.stanford.nlp.util.CollectionFactory cf

treatCollectionsAsImmutable

boolean treatCollectionsAsImmutable

mf

MapFactory mf

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

Serialized Fields

map

java.util.Map<K,V> map

Class edu.stanford.nlp.util.DeltaCollectionValuedMap extends edu.stanford.nlp.util.CollectionValuedMap implements Serializable

Serialized Fields

originalMap

edu.stanford.nlp.util.CollectionValuedMap<K,V> originalMap

deltaMap

java.util.Map<K,V> deltaMap

cf

edu.stanford.nlp.util.CollectionFactory cf

Class edu.stanford.nlp.util.FixedPrioritiesPriorityQueue extends java.util.AbstractSet<E> implements Serializable

Serialized Fields

size

int size

capacity

int capacity

elements

java.util.List<E> elements

priorities

double[] priorities

Class edu.stanford.nlp.util.IdentityHashSet extends java.util.AbstractSet<E> implements Serializable

serialVersionUID: -5024744406713321676L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserialize this Object in a manner which is binary-compatible with the JDK.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Serialize this Object in a manner which is binary-compatible with the JDK.

Throws:
java.io.IOException

Class edu.stanford.nlp.util.Index extends java.util.AbstractCollection<E> implements Serializable

serialVersionUID: 5398562825928375260L

Serialized Fields

objects

java.util.List<E> objects

indexes

java.util.Map<K,V> indexes

locked

boolean locked

Class edu.stanford.nlp.util.IntArrayIndex extends Index<int[]> implements Serializable

serialVersionUID: 1234567890L

Class edu.stanford.nlp.util.IntPair extends IntTuple implements Serializable

Class edu.stanford.nlp.util.IntQuadruple extends IntTuple implements Serializable

Class edu.stanford.nlp.util.IntTriple extends IntTuple implements Serializable

Class edu.stanford.nlp.util.IntTuple extends java.lang.Object implements Serializable

Serialized Fields

elements

int[] elements

numElements

int numElements

Class edu.stanford.nlp.util.IntUni extends IntTuple implements Serializable

Class edu.stanford.nlp.util.LispyTreeParser.ParserException extends java.lang.RuntimeException implements Serializable

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

serialVersionUID: 4529666940763477360L

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

serialVersionUID: 624465615824626762L

Serialized Fields

d

double d

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

serialVersionUID: 624465615824626762L

Serialized Fields

i

int i

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

serialVersionUID: 1L

Serialized Fields

total

int total

intToObject

java.util.Map<K,V> intToObject

objectToInt

java.util.Map<K,V> objectToInt

tempInt

edu.stanford.nlp.util.MutableInteger tempInt

locked

boolean locked

Class edu.stanford.nlp.util.PaddedList extends java.util.AbstractList<E> implements Serializable

Serialized Fields

l

java.util.List<E> l

padding

java.lang.Object padding

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

serialVersionUID: 1360822168806852921L

Serialized Fields

first

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

 

second

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

 

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

Serialized Fields

score

double score

Class edu.stanford.nlp.util.StringParsingTask.ParserException extends java.lang.RuntimeException implements Serializable

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