Serialized Form
Package edu.stanford.nlp.io |
Class edu.stanford.nlp.io.FileArrayList extends java.util.ArrayList implements Serializable |
Package edu.stanford.nlp.ling |
Class edu.stanford.nlp.ling.AbstractMapLabel extends java.lang.Object implements Serializable |
serialVersionUID: -980833749513621054L
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 |
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
features
java.util.Collection<E> features
- features for this Datum
labels
java.util.List<E> labels
- labels for this Datum. Invariant: always non-null
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 |
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
features
java.util.Collection<E> features
Class edu.stanford.nlp.ling.HTMLDocument extends BasicDocument implements Serializable |
parsedText
java.lang.String parsedText
Class edu.stanford.nlp.ling.IndexedFeatureLabel extends edu.stanford.nlp.ling.FeatureLabel implements Serializable |
serialVersionUID: 1L
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 |
serialVersionUID: -255312811814660438L
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.SentenceDocument extends java.util.ArrayList implements Serializable |
title
java.lang.String title
- title of this document (never null).
str
java.lang.String str
Class edu.stanford.nlp.ling.Tag extends StringLabel implements Serializable |
tag
java.lang.String tag
Class edu.stanford.nlp.ling.TypedTaggedWord extends TaggedWord implements Serializable |
type
int type
Class edu.stanford.nlp.ling.WordLemmaTag extends java.lang.Object implements Serializable |
word
java.lang.String word
lemma
java.lang.String lemma
tag
java.lang.String tag
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 |
base
double base
exponent
int exponent
Package edu.stanford.nlp.maxent |
Class edu.stanford.nlp.maxent.LinearType2Classifier extends java.lang.Object implements Serializable |
weights
Counter<E> weights
Package edu.stanford.nlp.objectbank |
Class edu.stanford.nlp.objectbank.DelimitRegExIterator.DelimitRegExIteratorFactory extends java.lang.Object implements Serializable |
delim
java.lang.String delim
op
Function<T1,T2> op
eolIsSignificant
boolean eolIsSignificant
Package edu.stanford.nlp.process |
capitalizeTimex
boolean capitalizeTimex
Class edu.stanford.nlp.process.BadPunctuationTokenizationFixer extends java.lang.Object implements Serializable |
oldRegex
java.lang.String[] oldRegex
pattern
java.util.regex.Pattern[] pattern
Class edu.stanford.nlp.process.CapitalFeature extends java.lang.Object implements Serializable |
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.ChineseDocumentToSentenceProcessor extends java.lang.Object implements Serializable |
normalizationTable
java.util.List<E> normalizationTable
encoding
java.lang.String encoding
Class edu.stanford.nlp.process.Morphology extends java.lang.Object implements Serializable |
serialVersionUID: 2L
lexer
edu.stanford.nlp.process.Morpha lexer
Class edu.stanford.nlp.process.NumAndCapFeature extends java.lang.Object implements Serializable |
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 |
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.
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 |
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 |
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 |
classifierToUse
int classifierToUse
Class edu.stanford.nlp.process.XMLTagStripper extends java.lang.Object implements Serializable |
markLineBreaks
boolean markLineBreaks
- Whether to insert "\n" words after ending block tags.
Package edu.stanford.nlp.sequences |
Class edu.stanford.nlp.sequences.BBNReaderAndWriter extends java.lang.Object implements Serializable |
flags
edu.stanford.nlp.sequences.SeqClassifierFlags flags
fileNum
int fileNum
Class edu.stanford.nlp.sequences.Clique extends java.lang.Object implements Serializable |
serialVersionUID: -8109637472035159453L
readResolve
public java.lang.Object readResolve()
relativeIndices
int[] relativeIndices
hashCode
int hashCode
Class edu.stanford.nlp.sequences.CliqueDataset extends java.lang.Object implements Serializable |
serialVersionUID: -2162643681374762273L
features
edu.stanford.nlp.sequences.CliqueDatum[] features
labels
int[] labels
possibleLabels
int[][] possibleLabels
maxCliqueLabels
edu.stanford.nlp.sequences.LabeledClique[] maxCliqueLabels
timitMap
java.util.Map<K,V> timitMap
a
int a
b
int b
cacheMaxCliqueLabels
boolean cacheMaxCliqueLabels
maxCliqueLabelsCache
java.util.List<E> maxCliqueLabelsCache
maxCliqueConditionalLabelsCache
java.util.Map<K,V> maxCliqueConditionalLabelsCache
Class edu.stanford.nlp.sequences.CMMFactory extends java.lang.Object implements Serializable |
Class edu.stanford.nlp.sequences.CMUSeminarDataReaderAndWriter extends java.lang.Object implements Serializable |
flags
edu.stanford.nlp.sequences.SeqClassifierFlags flags
predModel
edu.stanford.nlp.sequences.SequenceClassifier predModel
Class edu.stanford.nlp.sequences.ColumnDocumentReaderAndWriter extends java.lang.Object implements Serializable |
flags
edu.stanford.nlp.sequences.SeqClassifierFlags flags
map
java.lang.String[] map
factory
IteratorFromReaderFactory<T> factory
Class edu.stanford.nlp.sequences.CoNLLDocumentReaderAndWriter extends java.lang.Object implements Serializable |
flags
edu.stanford.nlp.sequences.SeqClassifierFlags flags
Class edu.stanford.nlp.sequences.CRF extends edu.stanford.nlp.sequences.AbstractQueriableSequenceModel implements Serializable |
weights
double[] weights
factors
double[][] factors
cliqueLabels
Index<E>[] cliqueLabels
messageFromLeft
int[][] messageFromLeft
messageFromRight
int[][] messageFromRight
toPassMessagesRight
int[][][] toPassMessagesRight
toPassMessagesLeft
int[][][] toPassMessagesLeft
messages
double[][] messages
messageLabels
Index<E>[] messageLabels
condProbs
double[][] condProbs
memorySave
boolean memorySave
Class edu.stanford.nlp.sequences.CRFFactory extends java.lang.Object implements Serializable |
serialVersionUID: -7596221713774004331L
Class edu.stanford.nlp.sequences.DatasetMetaInfo extends java.lang.Object implements Serializable |
serialVersionUID: 3837195914761840458L
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
java.util.Collection<E> allowedSequences
fm
edu.stanford.nlp.sequences.FeatureMap fm
featureIndexFile
java.io.File featureIndexFile
numFeatures
int numFeatures
locked
boolean locked
Class edu.stanford.nlp.sequences.DistributedCRFFactory extends java.lang.Object implements Serializable |
Class edu.stanford.nlp.sequences.DistributedCRFObjectiveFunction extends edu.stanford.nlp.distributed.DistributedComputation implements Serializable |
func
edu.stanford.nlp.sequences.CRFObjectiveFunction func
globalParams
edu.stanford.nlp.sequences.GlobalDatasetParams globalParams
value
double value
derivative
double[] derivative
lastX
double[] lastX
loadedFiles
java.util.HashMap<K,V> loadedFiles
fakeDatasets
edu.stanford.nlp.sequences.MultiDocumentCliqueDataset fakeDatasets
Class edu.stanford.nlp.sequences.FeatureFactory extends java.lang.Object implements Serializable |
serialVersionUID: 7249250071983091694L
flags
edu.stanford.nlp.sequences.SeqClassifierFlags flags
Class edu.stanford.nlp.sequences.FeatureFactoryWrapper extends edu.stanford.nlp.sequences.Type2FeatureFactory implements Serializable |
serialVersionUID: -2370420062000889441L
wrapped
edu.stanford.nlp.sequences.FeatureFactory wrapped
cache
java.util.Map<K,V> cache
position
int position
Class edu.stanford.nlp.sequences.FeatureFactoryWrapper.ImmutablePairOfImmutables extends Pair<F,S> implements Serializable |
serialVersionUID: 3145321753043003608L
readResolve
public java.lang.Object readResolve()
hashCode
int hashCode
Class edu.stanford.nlp.sequences.FeatureMap extends java.lang.Object implements Serializable |
serialVersionUID: 3160710775400396861L
metaInfo
edu.stanford.nlp.sequences.DatasetMetaInfo metaInfo
slowMap
java.util.List<E> slowMap
lcIndex
Index<E> lcIndex
fastMap
int[][] fastMap
keySet
java.util.Set<E> keySet
Class edu.stanford.nlp.sequences.GazFeatureFactory extends edu.stanford.nlp.sequences.FeatureFactory implements Serializable |
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
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 |
otherFeatureFactory
edu.stanford.nlp.sequences.FeatureFactory otherFeatureFactory
Class edu.stanford.nlp.sequences.GlobalDatasetParams extends java.lang.Object implements Serializable |
metaInfo
edu.stanford.nlp.sequences.DatasetMetaInfo metaInfo
flags
edu.stanford.nlp.sequences.SeqClassifierFlags flags
timitFeatureMap
java.util.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
wrapped
edu.stanford.nlp.sequences.FeatureFactory wrapped
cache
java.util.Map<K,V> cache
labelToString
java.util.Map<K,V> labelToString
position
int position
Class edu.stanford.nlp.sequences.IOBFeatureFactoryWrapper.ImmutablePairOfImmutables extends Pair<F,S> implements Serializable |
hashCode
int hashCode
Class edu.stanford.nlp.sequences.LabeledClique extends java.lang.Object implements Serializable |
serialVersionUID: -311125697888954061L
readResolve
public java.lang.Object readResolve()
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.MFCCFeatureFactory extends edu.stanford.nlp.sequences.RVFFeatureFactory implements Serializable |
Class edu.stanford.nlp.sequences.MUCDocumentReaderAndWriter extends java.lang.Object implements Serializable |
flags
edu.stanford.nlp.sequences.SeqClassifierFlags flags
factory
IteratorFromReaderFactory<T> factory
Class edu.stanford.nlp.sequences.OCRDocumentReaderAndWriter extends java.lang.Object implements Serializable |
fold
java.lang.String fold
train
boolean train
Class edu.stanford.nlp.sequences.PlainTextDocumentReaderAndWriter extends java.lang.Object implements Serializable |
flags
edu.stanford.nlp.sequences.SeqClassifierFlags flags
Class edu.stanford.nlp.sequences.QueriableSequenceModelFactory extends java.lang.Object implements Serializable |
serialVersionUID: 2218714006594152967L
provider
edu.stanford.nlp.sequences.QueriableSequenceModelFactory.QueriableSequenceModelFactoryDataProvider provider
metaInfo
edu.stanford.nlp.sequences.DatasetMetaInfo metaInfo
flags
edu.stanford.nlp.sequences.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 java.lang.Object implements Serializable |
serialVersionUID: -7076671761070232567L
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
entitySubclassification
java.lang.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
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
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
java.lang.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
java.lang.String documentReader
map
java.lang.String map
useWideDisjunctive
boolean useWideDisjunctive
wideDisjunctionWidth
int wideDisjunctionWidth
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
useOutDict2
boolean useOutDict2
outDict2
java.lang.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
java.lang.String normalizationTable
normTableEncoding
java.lang.String normTableEncoding
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
useSeenFeaturesOnly
boolean useSeenFeaturesOnly
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
featureCountThreshold
int featureCountThreshold
featureWeightThreshold
double featureWeightThreshold
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
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
pad
edu.stanford.nlp.ling.FeatureLabel pad
useObservedFeaturesOnly
boolean useObservedFeaturesOnly
distSimLexicon
java.lang.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
java.lang.String serializeDatasetsDir
loadDatasetsDir
java.lang.String loadDatasetsDir
pushDir
java.lang.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
java.lang.String crfType
featureThreshold
int featureThreshold
featThreshFile
java.lang.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
Class edu.stanford.nlp.sequences.SuperSimpleFeatureFactory extends edu.stanford.nlp.sequences.FeatureFactory implements Serializable |
Class edu.stanford.nlp.sequences.TIMITCliqueDatum extends java.lang.Object implements Serializable |
keySet
java.util.Set<E> keySet
values
float[] values
Class edu.stanford.nlp.sequences.TrueCasingDocumentReaderAndWriter extends java.lang.Object implements Serializable |
Class edu.stanford.nlp.sequences.Type2FeatureFactory extends java.lang.Object implements Serializable |
flags
edu.stanford.nlp.sequences.SeqClassifierFlags flags
maxClique
edu.stanford.nlp.sequences.Clique maxClique
Package edu.stanford.nlp.stats |
serialVersionUID: 4L
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
numberOfKeys
int numberOfKeys
reservedMass
double reservedMass
counter
Counter<E> counter
Class edu.stanford.nlp.stats.GeneralizedCounter extends java.lang.Object implements Serializable |
serialVersionUID: 1L
map
java.util.Map<K,V> map
depth
int depth
total
double total
serialVersionUID: 4L
map
java.util.Map<K,V> map
mapFactory
MapFactory mapFactory
Package edu.stanford.nlp.tagger.maxent |
serialVersionUID: -4694133872973560083L
position
int position
isTag
boolean isTag
nextXWord
Extractor nextXWord
num
int num
serialVersionUID: -16619310062224383L
bound
int bound
num
int num
t1
int t1
t2
int t2
tag1
java.lang.String tag1
tag2
java.lang.String tag2
num
int num
position
int position
Class edu.stanford.nlp.tagger.maxent.ExtractorParticles extends Extractor implements Serializable |
serialVersionUID: 2631506606864457451L
bound
int bound
s
java.util.HashSet<E> s
forms
java.util.HashMap<K,V> forms
serialVersionUID: -4777107742414749890L
v
Extractor[] v
Class edu.stanford.nlp.tagger.maxent.MaxentTaggerGUI extends javax.swing.JFrame implements Serializable |
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.Arguments.ArgumentException extends java.lang.RuntimeException implements Serializable |
serialVersionUID: 1L
parseErrors
java.util.List<E> parseErrors
- Errors while parsing arguments (possibly empty list)
Class edu.stanford.nlp.util.CacheMap extends java.util.LinkedHashMap<K,V> implements Serializable |
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 |
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 |
map
java.util.Map<K,V> map
Class edu.stanford.nlp.util.DeltaCollectionValuedMap extends edu.stanford.nlp.util.CollectionValuedMap implements Serializable |
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 |
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
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
serialVersionUID: 5398562825928375260L
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
serialVersionUID: 7154973101012473479L
serialVersionUID: 7266305463893511982L
elements
int[] elements
serialVersionUID: 4529666940763477360L
serialVersionUID: 624465615824626762L
d
double d
serialVersionUID: 624465615824626762L
i
int i
Class edu.stanford.nlp.util.Numberer extends java.lang.Object implements Serializable |
serialVersionUID: 1L
total
int total
intToObject
java.util.Map<K,V> intToObject
objectToInt
java.util.Map<K,V> objectToInt
tempInt
MutableInteger tempInt
locked
boolean locked
Class edu.stanford.nlp.util.PaddedList extends java.util.AbstractList<E> implements Serializable |
serialVersionUID: 2064775966439971729L
l
java.util.List<E> l
padding
java.lang.Object padding
serialVersionUID: 1360822168806852921L
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.ReversedList extends java.util.AbstractList<E> implements Serializable |
serialVersionUID: 206477596643954354L
l
java.util.List<E> l
Class edu.stanford.nlp.util.ScoredPair extends Pair implements Serializable |
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 |