Serialized Form


Package edu.stanford.nlp.classify

Class edu.stanford.nlp.classify.ClassifiedDatum extends BasicDatum implements Serializable

Serialized Fields

predictedLabel

Object predictedLabel

Class edu.stanford.nlp.classify.GradientDiscountedLogLinearClassifier extends Object implements Serializable

Serialized Fields

inner

LinearClassifier inner

alpha

double alpha

classification

boolean classification

Class edu.stanford.nlp.classify.HandWeightedRVFClassifier extends Object implements Serializable

Serialized Fields

weights

Counter<E> weights

threshold

double threshold

Class edu.stanford.nlp.classify.LinearClassifier extends Object implements Serializable

serialVersionUID: 8499574525453275255L

Serialized Fields

weights

double[][] weights
Classifier weights. First index is the featureIndex value and second index is the labelIndex value.


labelIndex

Index<E> labelIndex

featureIndex

Index<E> featureIndex

intern

boolean intern

thresholds

double[] thresholds

Class edu.stanford.nlp.classify.LogisticClassifier extends Object implements Serializable

Serialized Fields

weights

double[] weights

featureIndex

Index<E> featureIndex

classes

Object[] classes

prior

LogPrior prior

biased

boolean biased

Class edu.stanford.nlp.classify.LogPrior extends Object implements Serializable

Serialized Fields

means

double[] means

otherPrior

LogPrior otherPrior

type

LogPrior.LogPriorType type

sigma

double sigma

sigmaSq

double sigmaSq

sigmaQu

double sigmaQu

epsilon

double epsilon

Class edu.stanford.nlp.classify.NaiveBayesClassifier extends Object implements Serializable

Serialized Fields

weights

Counter<E> weights

priors

Counter<E> priors

features

Set<E> features

addZeroValued

boolean addZeroValued

priorZero

Counter<E> priorZero

labels

Set<E> labels

zero

Integer zero

Class edu.stanford.nlp.classify.NaiveBayesClassifierFactory extends Object implements Serializable

Serialized Fields

kind

int kind

alphaClass

double alphaClass

alphaFeature

double alphaFeature

sigma

double sigma

prior

int prior

labelIndex

Index<E> labelIndex

featureIndex

Index<E> featureIndex

Class edu.stanford.nlp.classify.SVMClassifier extends Object implements Serializable

Serialized Fields

labelIndex

Index<E> labelIndex

featureIndex

Index<E> featureIndex

Class edu.stanford.nlp.classify.SVMLightClassifier extends LinearClassifier implements Serializable

Serialized Fields

platt

LinearClassifier platt

Class edu.stanford.nlp.classify.WekaClassifier extends Object implements Serializable

Serialized Fields

attIndex

Map<K,V> attIndex

classifierType

int classifierType

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.ling

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

serialVersionUID: -980833749513621054L

Serialized Fields

map

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


mapFactory

MapFactory<K,V> mapFactory
The MapFactory which will be used to make new Maps in this AbstractMapLabel.

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

Serialized Fields

features

List<E> features

name

String name

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

serialVersionUID: -4857004070061779966L

Serialized Fields

features

Collection<E> features
features for this Datum


labels

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

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

Serialized Fields

title

String title

originalText

String originalText

labels

List<E> labels

tokenizerFactory

edu.stanford.nlp.objectbank.TokenizerFactory<T> tokenizerFactory

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

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

serialVersionUID: -745085381666943254L

Serialized Fields

word

String word

tag

String tag

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

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

serialVersionUID: 19L

Serialized Fields

features

Collection<E> features

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

Serialized Fields

parsedText

String parsedText

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

serialVersionUID: 1L

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

serialVersionUID: -7252006452127051085L

Serialized Fields

tag

Label tag

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

serialVersionUID: 1289283452485202162L

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

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

serialVersionUID: -255312811814660438L

Serialized Fields

features

Counter<E> features
features for this Datum


label

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

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

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

Serialized Fields

title

String title

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

serialVersionUID: -4153619273767524247L

Serialized Fields

str

String str

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

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

serialVersionUID: -7252006452127051085L

Serialized Fields

tag

String tag

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

Serialized Fields

type

int type

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

serialVersionUID: -1413303679077285530L

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

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

Serialized Fields

word

String word

lemma

String lemma

tag

String tag

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

Serialized Fields

word

String word

tag

String tag

Package edu.stanford.nlp.optimization

Class edu.stanford.nlp.optimization.SGDToQNMinimizer extends Object implements Serializable

Serialized Fields

k

int k

bSize

int bSize

quiet

boolean quiet

outputIterationsToFile

boolean outputIterationsToFile

outputFrequency

int outputFrequency

gain

double gain

gradList

List<E> gradList

yList

List<E> yList

sList

List<E> sList

tmpYList

List<E> tmpYList

tmpSList

List<E> tmpSList

memory

int memory

SGDPasses

int SGDPasses

QNPasses

int QNPasses

hessSampleSize

int hessSampleSize

QNMem

int QNMem

toTest

boolean toTest

Package edu.stanford.nlp.process

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

Serialized Fields

capitalizeTimex

boolean capitalizeTimex

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

Serialized Fields

oldRegex

String[] oldRegex

pattern

Pattern[] pattern

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

Serialized Fields

CAPITALIZED

edu.stanford.nlp.process.CapitalFeature.CapitalFeatureValue CAPITALIZED

ALLCAPS

edu.stanford.nlp.process.CapitalFeature.CapitalFeatureValue ALLCAPS

LOWERCASE

edu.stanford.nlp.process.CapitalFeature.CapitalFeatureValue LOWERCASE

MIXEDCASE

edu.stanford.nlp.process.CapitalFeature.CapitalFeatureValue MIXEDCASE

NONLETTERS

edu.stanford.nlp.process.CapitalFeature.CapitalFeatureValue NONLETTERS

allValues

edu.stanford.nlp.process.CapitalFeature.CapitalFeatureValue[] allValues

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

serialVersionUID: -5772396359064803302L

Serialized Fields

val

int val

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

Serialized Fields

encoding

String encoding

Class edu.stanford.nlp.process.Functions$1 extends Object implements Serializable

Class edu.stanford.nlp.process.LowercaseProcessor.LowercaseFunction extends Object implements Serializable

serialVersionUID: 1L

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

serialVersionUID: 2L

Serialized Fields

lexer

edu.stanford.nlp.process.Morpha lexer

Class edu.stanford.nlp.process.NumAndCapFeature extends 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 Object implements Serializable

Serialized Fields

CARDINAL

edu.stanford.nlp.process.NumberFeatureValue CARDINAL

NUMBER

edu.stanford.nlp.process.NumberFeatureValue NUMBER

HASNUMBER

edu.stanford.nlp.process.NumberFeatureValue HASNUMBER

NONUMBER

edu.stanford.nlp.process.NumberFeatureValue NONUMBER

allValues

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

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

Serialized Fields

stringSubs

Map<K,V> stringSubs

oldChars

char[] oldChars

fixQuotes

boolean fixQuotes

Class edu.stanford.nlp.process.Stemmer extends 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 Object implements Serializable

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

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

Serialized Fields

classifierToUse

int classifierToUse

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

Serialized Fields

markLineBreaks

boolean markLineBreaks

Package edu.stanford.nlp.sequences

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

Serialized Fields

flags

SeqClassifierFlags flags

fileNum

int fileNum

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

serialVersionUID: -8109637472035159453L

Serialization Methods

readResolve

public Object readResolve()
Serialized Fields

relativeIndices

int[] relativeIndices

hashCode

int hashCode

Class edu.stanford.nlp.sequences.CliqueDataset extends Object implements Serializable

serialVersionUID: -2162643681374762273L

Serialized Fields

features

edu.stanford.nlp.sequences.CliqueDatum[] features

labels

int[] labels

possibleLabels

int[][] possibleLabels

maxCliqueLabels

edu.stanford.nlp.sequences.LabeledClique[] maxCliqueLabels

timitMap

Map<K,V> timitMap

a

int a

b

int b

cacheMaxCliqueLabels

boolean cacheMaxCliqueLabels

maxCliqueLabelsCache

List<E> maxCliqueLabelsCache

maxCliqueConditionalLabelsCache

Map<K,V> maxCliqueConditionalLabelsCache

Class edu.stanford.nlp.sequences.CMMFactory extends Object implements Serializable

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

Serialized Fields

flags

SeqClassifierFlags flags

predModel

edu.stanford.nlp.sequences.SequenceClassifier predModel

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

serialVersionUID: 3806263423697973704L

Serialized Fields

flags

SeqClassifierFlags flags

map

String[] map

factory

edu.stanford.nlp.objectbank.IteratorFromReaderFactory<T> factory

num

int num

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

Serialized Fields

flags

SeqClassifierFlags flags

Class edu.stanford.nlp.sequences.CRF extends edu.stanford.nlp.sequences.AbstractQueriableSequenceModel implements Serializable

Serialized Fields

weights

double[] weights

factors

double[][] factors

cliqueLabels

Index<E>[] cliqueLabels

messageFromLeft

int[][] messageFromLeft

messageFromRight

int[][] messageFromRight

toPassMessagesRight

int[][][] toPassMessagesRight

toPassMessagesLeft

int[][][] toPassMessagesLeft

messageLabels

Index<E>[] messageLabels

condProbs

double[][] condProbs

memorySave

boolean memorySave

Class edu.stanford.nlp.sequences.CRFFactory extends Object implements Serializable

serialVersionUID: -7596221713774004331L

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

serialVersionUID: 3837195914761840458L

Serialized Fields

labelIndex

Index<E> labelIndex

featureIndex

Index<E> featureIndex

backgroundIndex

int backgroundIndex

featureFactory

edu.stanford.nlp.sequences.Type2FeatureFactory featureFactory

maxClique

edu.stanford.nlp.sequences.Clique maxClique

allowedSequences

Collection<E> allowedSequences

fm

edu.stanford.nlp.sequences.FeatureMap fm

featureIndexFile

File featureIndexFile

numFeatures

int numFeatures

locked

boolean locked

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

Serialized Fields

wordsToIgnore

Set<E> wordsToIgnore

Class edu.stanford.nlp.sequences.DistributedCRFFactory extends Object implements Serializable

Class edu.stanford.nlp.sequences.DistributedCRFObjectiveFunction extends edu.stanford.nlp.distributed.DistributedComputation implements Serializable

Serialized Fields

func

edu.stanford.nlp.sequences.CRFObjectiveFunction func

globalParams

edu.stanford.nlp.sequences.GlobalDatasetParams globalParams

value

double value

derivative

double[] derivative

lastX

double[] lastX

loadedFiles

HashMap<K,V> loadedFiles

fakeDatasets

edu.stanford.nlp.sequences.MultiDocumentCliqueDataset fakeDatasets

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

serialVersionUID: 7249250071983091694L

Serialized Fields

flags

SeqClassifierFlags flags

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

serialVersionUID: -2370420062000889441L

Serialized Fields

wrapped

edu.stanford.nlp.sequences.FeatureFactory wrapped

cache

Map<K,V> cache

position

int position

Class edu.stanford.nlp.sequences.FeatureFactoryWrapper.ImmutablePairOfImmutables extends Pair<F,S> implements Serializable

serialVersionUID: 3145321753043003608L

Serialization Methods

readResolve

public Object readResolve()
Serialized Fields

hashCode

int hashCode

Class edu.stanford.nlp.sequences.FeatureMap extends Object implements Serializable

serialVersionUID: 3160710775400396861L

Serialized Fields

metaInfo

edu.stanford.nlp.sequences.DatasetMetaInfo metaInfo

slowMap

List<E> slowMap

lcIndex

Index<E> lcIndex

fastMap

int[][] fastMap

keySet

Set<E> keySet

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

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException
Serialized Fields

gazMap

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

gazNames

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.GlobalDatasetParams extends Object implements Serializable

Serialized Fields

metaInfo

edu.stanford.nlp.sequences.DatasetMetaInfo metaInfo

flags

SeqClassifierFlags flags

timitFeatureMap

Map<K,V> timitFeatureMap

Ehat

double[] Ehat

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

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

serialVersionUID: -893284903284932084L

Serialized Fields

wrapped

edu.stanford.nlp.sequences.FeatureFactory wrapped

cache

Map<K,V> cache

labelToString

Map<K,V> labelToString

position

int position

Class edu.stanford.nlp.sequences.IOBFeatureFactoryWrapper.ImmutablePairOfImmutables extends Pair<F,S> implements Serializable

Serialized Fields

hashCode

int hashCode

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

serialVersionUID: -311125697888954061L

Serialization Methods

readResolve

public Object readResolve()
Serialized Fields

clique

edu.stanford.nlp.sequences.Clique clique

labels

int[] labels

leftMessage

edu.stanford.nlp.sequences.LabeledClique leftMessage

rightMessage

edu.stanford.nlp.sequences.LabeledClique rightMessage

hashCode

int hashCode

Class edu.stanford.nlp.sequences.LibSVMReaderAndWriter extends Object implements Serializable

Serialized Fields

flags

SeqClassifierFlags flags

factory

edu.stanford.nlp.objectbank.IteratorFromReaderFactory<T> factory

num

int num

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

Class edu.stanford.nlp.sequences.MUCDocumentReaderAndWriter extends Object implements Serializable

Serialized Fields

flags

SeqClassifierFlags flags

factory

edu.stanford.nlp.objectbank.IteratorFromReaderFactory<T> factory

Class edu.stanford.nlp.sequences.ObjectBankWrapper extends edu.stanford.nlp.objectbank.ObjectBank<List<FeatureLabel>> implements Serializable

Serialized Fields

flags

SeqClassifierFlags flags

wrapped

edu.stanford.nlp.objectbank.ObjectBank<E> wrapped

knownLCWords

Set<E> knownLCWords

monthDayPattern

Pattern monthDayPattern

Class edu.stanford.nlp.sequences.OCRDocumentReaderAndWriter extends Object implements Serializable

Serialized Fields

fold

String fold

train

boolean train

Class edu.stanford.nlp.sequences.PlainTextDocumentReaderAndWriter extends Object implements Serializable

Serialized Fields

flags

SeqClassifierFlags flags

Class edu.stanford.nlp.sequences.QueriableSequenceModelFactory extends Object implements Serializable

serialVersionUID: 2218714006594152967L

Serialized Fields

provider

edu.stanford.nlp.sequences.QueriableSequenceModelFactory.QueriableSequenceModelFactoryDataProvider provider

metaInfo

edu.stanford.nlp.sequences.DatasetMetaInfo metaInfo

flags

SeqClassifierFlags flags

weights

double[] weights

featureFactory

edu.stanford.nlp.sequences.Type2FeatureFactory featureFactory

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

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

serialVersionUID: -7076671761070232567L

Serialized Fields

stringRep

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

entitySubclassification

String entitySubclassification

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

String printFeatures

useSymTags

boolean useSymTags

useSymWordPairs

boolean useSymWordPairs
useSymWordPairs Has a small negative effect.


printClassifier

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

maxIterations

int maxIterations

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

priorType

String priorType

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

deleteBlankLines

boolean deleteBlankLines

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

useMoreTags

boolean useMoreTags

useChunks

boolean useChunks

useChunkySequences

boolean useChunkySequences

usePrevVB

boolean usePrevVB

useNextVB

boolean useNextVB

useVB

boolean useVB

subCWGaz

boolean subCWGaz

documentReader

String documentReader

map

String map

useWideDisjunctive

boolean useWideDisjunctive

wideDisjunctionWidth

int wideDisjunctionWidth

useRadical

boolean useRadical

useBigramInTwoClique

boolean useBigramInTwoClique

morphFeatureFile

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

useOutDict2

boolean useOutDict2

outDict2

String outDict2

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
Keep the whitespaces between English words in testFile when printing out answers. Doesn't really change the content of the FeatureLabels. (For Chinese segmentation.)


keepAllWhitespaces

boolean keepAllWhitespaces
Keep all the whitespaces words in testFile when printing out answers. Doesn't really change the content of the FeatureLabels. (For Chinese segmentation.)


sighanPostProcessing

boolean sighanPostProcessing

useChPos

boolean useChPos
use POS information (an "open" feature for Chinese segmentation)


normalizationTable

String normalizationTable

normTableEncoding

String normTableEncoding

sighanCorporaDict

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


useWordShapeGaz

boolean useWordShapeGaz

wordShapeGaz

String wordShapeGaz

splitDocuments

boolean splitDocuments

printXML

boolean printXML

useSeenFeaturesOnly

boolean useSeenFeaturesOnly

lastNameList

String lastNameList

maleNameList

String maleNameList

femaleNameList

String femaleNameList

inputEncoding

String inputEncoding

bioSubmitOutput

boolean bioSubmitOutput

numRuns

int numRuns

answerFile

String answerFile

altAnswerFile

String altAnswerFile

dropGaz

String dropGaz

printGazFeatures

String printGazFeatures

numStartLayers

int numStartLayers

dump

boolean dump

mergeTags

boolean mergeTags

splitOnHead

boolean splitOnHead

featureCountThreshold

int featureCountThreshold

featureWeightThreshold

double featureWeightThreshold

featureFactory

String featureFactory

backgroundSymbol

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

String annealingType

loadProcessedData

String loadProcessedData

initViterbi

boolean initViterbi

useUnknown

boolean useUnknown

checkNameList

boolean checkNameList

useSemPrior

boolean useSemPrior

useFirstWord

boolean useFirstWord

useNumberFeature

boolean useNumberFeature

ocrFold

int ocrFold

classifierType

String classifierType

svmModelFile

String svmModelFile

inferenceType

String inferenceType

useLemmaAsWord

boolean useLemmaAsWord

type

String type

readerAndWriter

String readerAndWriter

comboProps

List<E> comboProps

usePrediction

boolean usePrediction

useAltGazFeatures

boolean useAltGazFeatures

gazFilesFile

String gazFilesFile

usePrediction2

boolean usePrediction2

baseTrainDir

String baseTrainDir

baseTestDir

String baseTestDir

trainFiles

String trainFiles

testFiles

String testFiles

trainDirs

String trainDirs

testDirs

String testDirs

useOnlySeenWeights

boolean useOnlySeenWeights

predProp

String predProp

pad

FeatureLabel pad

useObservedFeaturesOnly

boolean useObservedFeaturesOnly

distSimLexicon

String distSimLexicon

useDistSim

boolean useDistSim

removeTopN

int removeTopN

numTimesRemoveTopN

int numTimesRemoveTopN

randomizedRatio

double randomizedRatio

removeTopNPercent

double removeTopNPercent

purgeFeatures

int purgeFeatures

booleanFeatures

boolean booleanFeatures

iobWrapper

boolean iobWrapper

iobTags

boolean iobTags

useSegmentation

boolean useSegmentation

memoryThrift

boolean memoryThrift

timitDatum

boolean timitDatum

serializeDatasetsDir

String serializeDatasetsDir

loadDatasetsDir

String loadDatasetsDir

pushDir

String pushDir

purgeDatasets

boolean purgeDatasets

keepOBInMemory

boolean keepOBInMemory

fakeDataset

boolean fakeDataset

restrictTransitionsTimit

boolean restrictTransitionsTimit

numDatasetsPerFile

int numDatasetsPerFile

useTitle

boolean useTitle

lowerNewgeneThreshold

boolean lowerNewgeneThreshold

useEitherSideWord

boolean useEitherSideWord

useEitherSideDisjunctive

boolean useEitherSideDisjunctive

twoStage

boolean twoStage

crfType

String crfType

featureThreshold

int featureThreshold

featThreshFile

String featThreshFile

featureDiffThresh

double featureDiffThresh

numTimesPruneFeatures

int numTimesPruneFeatures

newgeneThreshold

double newgeneThreshold

doAdaptation

boolean doAdaptation

useInternal

boolean useInternal

useExternal

boolean useExternal

selfTrainConfidenceThreshold

double selfTrainConfidenceThreshold

selfTrainIterations

int selfTrainIterations

selfTrainWindowSize

int selfTrainWindowSize

useHuber

boolean useHuber

useQuartic

boolean useQuartic

adaptSigma

double adaptSigma

numFolds

int numFolds

startFold

int startFold

endFold

int endFold

cacheNGrams

boolean cacheNGrams
for Sighan bakeoff 2005, the path to the dictionary of bigrams appeared in corpus


outputFormat

String outputFormat

useSMD

boolean useSMD

useSGDtoQN

boolean useSGDtoQN

useStochasticQN

boolean useStochasticQN

SGDPasses

int SGDPasses

QNPasses

int QNPasses

stochasticMethod

StochasticCalculateMethods stochasticMethod

initialGain

double initialGain

stochasticBatchSize

int stochasticBatchSize

useSGD

boolean useSGD

gainSGD

double gainSGD

useHybrid

boolean useHybrid

hybridCutoffIteration

int hybridCutoffIteration

outputIterationsToFile

boolean outputIterationsToFile

testObjFunction

boolean testObjFunction

testVariance

boolean testVariance

SGD2QNhessSamples

int SGD2QNhessSamples

testHessSamples

boolean testHessSamples

CRForder

int CRForder

CRFwindow

int CRFwindow

estimateInitial

boolean estimateInitial

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

Class edu.stanford.nlp.sequences.TIMITCliqueDatum extends Object implements Serializable

Serialized Fields

keySet

Set<E> keySet

values

float[] values

Class edu.stanford.nlp.sequences.TrueCasingDocumentReaderAndWriter extends Object implements Serializable

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

Serialized Fields

flags

SeqClassifierFlags flags

maxClique

edu.stanford.nlp.sequences.Clique maxClique



Stanford NLP Group