A B C D E F G H I J K L M N O P R S T U V W X Y 

P

pack(Graph<E>) - Static method in class edu.ucla.sspace.graph.Graphs
Creates a copy of the provided graph where all vertices are remapped to a contiguous range from 0 to g.order()-1.
Pair<T> - Class in edu.ucla.sspace.util
A utility class for holding two of the same type of object.
Pair(T, T) - Constructor for class edu.ucla.sspace.util.Pair
Creates a pair out of x and y
PairCounter<T> - Class in edu.ucla.sspace.util
A utility for counting unique instance of pairs of objects.
PairCounter() - Constructor for class edu.ucla.sspace.util.PairCounter
Creates an empty Counter.
PairCounter(Collection<? extends Pair<T>>) - Constructor for class edu.ucla.sspace.util.PairCounter
Creates a Counter whose initial state has counted all of the specified items.
PajekIO - Class in edu.ucla.sspace.graph.io
A class for reading and writing graphs in the Pajek format.
PajekIO() - Constructor for class edu.ucla.sspace.graph.io.PajekIO
 
PajekIO(Indexer<String>) - Constructor for class edu.ucla.sspace.graph.io.PajekIO
 
parsedDocument() - Method in class edu.ucla.sspace.text.LabeledParsedStringDocument
Returns the dependency tree of the next document as a sequence of DependencyTreeNode instances.
ParsedDocument - Interface in edu.ucla.sspace.text
An abstraction for a document that has been (or will be) dependency parsed to generate an accompanying parse tree of its contents.
parsedDocument() - Method in interface edu.ucla.sspace.text.ParsedDocument
Returns the dependency tree of the next document as a sequence of DependencyTreeNode instances.
parseDocumentsMultiThreaded(FixedDurationTemporalRandomIndexing, Iterator<TemporalDocument>, TimeSpan, int) - Method in class edu.ucla.sspace.mains.FixedDurationTemporalRandomIndexingMain
Calls processDocument once for every document in docIter using a the specified number thread to call processSpace on the TemporalSemanticSpace instance.
parseDocumentsMultiThreaded(SemanticSpace, Iterator<Document>, int) - Method in class edu.ucla.sspace.mains.GenericMain
Calls processDocument once for every document in docIter using a the specified number thread to call processSpace on the SemanticSpace instance.
parseDocumentsSingleThreaded(SemanticSpace, Iterator<Document>) - Method in class edu.ucla.sspace.mains.GenericMain
Calls processDocument once for every document in docIter using a single thread to interact with the SemanticSpace instance.
parseFile(File, boolean) - Method in class edu.ucla.sspace.tools.ChildesParser
Parses a single xml file.
parseOptions(String[]) - Method in class edu.ucla.sspace.common.ArgOptions
 
partitionHooks - Variable in class edu.ucla.sspace.tri.OrderedTemporalRandomIndexing
The collection of hooks that are to be run prior to every time this instances partitions its semantic space.
PartitioningNearestNeighborFinder - Class in edu.ucla.sspace.util
A class for finding the k-nearest neighbors of one or more words.
PartitioningNearestNeighborFinder(SemanticSpace) - Constructor for class edu.ucla.sspace.util.PartitioningNearestNeighborFinder
Creates a new NearestNeighborFinder for the SemanticSpace, using loge(|words|) principle vectors to efficiently search for neighbors.
PartitioningNearestNeighborFinder(SemanticSpace, int) - Constructor for class edu.ucla.sspace.util.PartitioningNearestNeighborFinder
Creates a new NearestNeighborFinder for the SemanticSpace, using the specified number of principle vectors to efficiently search for neighbors.
partitionRows(Matrix, int, HierarchicalAgglomerativeClustering.ClusterLinkage, Similarity.SimType) - Static method in class edu.ucla.sspace.clustering.HierarchicalAgglomerativeClustering
Clusters all rows in the matrix using the specified cluster similarity measure for comparison and stopping when the number of clusters is equal to the specified number.
PartOfSpeechDependencyContextGenerator - Class in edu.ucla.sspace.wordsi
A DependencyContextGenerator that marks each co-occurrence with part of speech information.
PartOfSpeechDependencyContextGenerator(BasisMapping<String, String>, int) - Constructor for class edu.ucla.sspace.wordsi.PartOfSpeechDependencyContextGenerator
PATH_ACCEPTOR_PROPERTY - Static variable in class edu.ucla.sspace.dv.DependencyVectorSpace
The property for setting the DependencyPathAcceptor.
PATH_WEIGHTING_PROPERTY - Static variable in class edu.ucla.sspace.dv.DependencyVectorSpace
The property for setting the DependencyPathWeight.
PathBasedBasisMapping - Class in edu.ucla.sspace.dv
A BasisMapping implementation where each unique path consisting of words and relations corresponds to a unique dimension.
PathBasedBasisMapping() - Constructor for class edu.ucla.sspace.dv.PathBasedBasisMapping
Creates an empty PathBasedBasisMapping.
PatPho - Class in edu.ucla.sspace.text
An implementation of the PatPho phonological representation system.
PatPho() - Constructor for class edu.ucla.sspace.text.PatPho
Creates a new PatPho instance with a six syllablic template.
PatPho(boolean) - Constructor for class edu.ucla.sspace.text.PatPho
Creates a new PatPho instance.
PearsonCorrelation - Class in edu.ucla.sspace.similarity
Returns the Pearson Correlation between any two Vectors.
PearsonCorrelation() - Constructor for class edu.ucla.sspace.similarity.PearsonCorrelation
 
peek(int) - Method in class edu.ucla.sspace.text.BufferedIterator
Returns an list of the next tokens in the stream based on the requested amount.
PennTags - Class in edu.ucla.sspace.dv
A class containing information on the Penn Treebank part of speech (POS) tag set.
PennTags() - Constructor for class edu.ucla.sspace.dv.PennTags
 
PERMUTATION_FUNCTION_PROPERTY - Static variable in class edu.ucla.sspace.isa.IncrementalSemanticAnalysis
The property to specify the fully qualified named of a PermutationFunction if using permutations is enabled.
PERMUTATION_FUNCTION_PROPERTY - Static variable in class edu.ucla.sspace.ri.RandomIndexing
The property to specify the fully qualified named of a PermutationFunction if using permutations is enabled.
PERMUTATION_FUNCTION_PROPERTY - Static variable in class edu.ucla.sspace.tri.OrderedTemporalRandomIndexing
The property to specify the fully qualified named of a edu.ucla.sspace.ri.PermutationFunction if using permutations is enabled.
PermutationFunction<T extends Vector> - Interface in edu.ucla.sspace.index
An interface for functions that permute the ordering of TernaryVectors.
permute(T, DependencyPath) - Method in class edu.ucla.sspace.dependency.DefaultDependencyPermutationFunction
Returns a permuted form of {code vector} based on the dependency path provided.
permute(T, DependencyPath) - Method in interface edu.ucla.sspace.dependency.DependencyPermutationFunction
Returns a permuted form of {code vector} based on the dependency path provided.
permute(T, DependencyPath) - Method in class edu.ucla.sspace.dependency.RelationPermutationFunction
Returns a permuted form of {code vector} based on the dependency path provided.
permute(T, DependencyPath) - Method in class edu.ucla.sspace.dependency.RelationSumPermutationFunction
Returns a permuted form of {code vector} based on the dependency path provided.
permute(Vector, int) - Method in class edu.ucla.sspace.index.DefaultPermutationFunction
Permutes the provided TernaryVector the specified number of times.
permute(T, int) - Method in interface edu.ucla.sspace.index.PermutationFunction
Permutes the provided TernaryVector the specified number of times.
permute(TernaryVector, int) - Method in class edu.ucla.sspace.index.TernaryPermutationFunction
An optimized instance of permute for TernaryVectors.
permute(Vector, int) - Method in class edu.ucla.sspace.index.WindowedPermutationFunction
Permutes the provided TernaryVector the specified number of times.
PK1_THRESHOLD - Static variable in class edu.ucla.sspace.clustering.AutomaticStopClustering
The number of clusters to stop clustering at.
PLSAMain - Class in edu.ucla.sspace.mains
 
PLSAMain() - Constructor for class edu.ucla.sspace.mains.PLSAMain
 
pointr - Variable in class ch.akuhn.edu.mit.tedlab.SMat
 
PointWiseCombinor - Class in edu.ucla.sspace.svs
Returns the point wise multiplication between two SparseDoubleVectors.
PointWiseCombinor() - Constructor for class edu.ucla.sspace.svs.PointWiseCombinor
 
PointwiseMutualInformationTest - Class in edu.ucla.sspace.common.statistics
 
PointwiseMutualInformationTest() - Constructor for class edu.ucla.sspace.common.statistics.PointwiseMutualInformationTest
 
PointWiseMutualInformationTransform - Class in edu.ucla.sspace.matrix
 
PointWiseMutualInformationTransform() - Constructor for class edu.ucla.sspace.matrix.PointWiseMutualInformationTransform
 
PointWiseMutualInformationTransform.PointWiseMutualInformationGlobalTransform - Class in edu.ucla.sspace.matrix
 
PointWiseMutualInformationTransform.PointWiseMutualInformationGlobalTransform(Matrix) - Constructor for class edu.ucla.sspace.matrix.PointWiseMutualInformationTransform.PointWiseMutualInformationGlobalTransform
Creates an instance of PointWiseMutualInformationTransform from a given Matrix.
PointWiseMutualInformationTransform.PointWiseMutualInformationGlobalTransform(File, MatrixIO.Format) - Constructor for class edu.ucla.sspace.matrix.PointWiseMutualInformationTransform.PointWiseMutualInformationGlobalTransform
Creates an instance of PointWiseMutualInformationTransform from a matrix File of format format.
PolynomialKernel - Class in edu.ucla.sspace.similarity
Returns the dot product of the two vectors raised to a specified power.
PolynomialKernel() - Constructor for class edu.ucla.sspace.similarity.PolynomialKernel
 
PorterStemmer - Class in edu.ucla.sspace.text
This is an implementation of the Porter stemmer in Java.
PorterStemmer() - Constructor for class edu.ucla.sspace.text.PorterStemmer
Creates a new PorterStemmer
porterStemmer - Class in org.tartarus.snowball.ext
This class was automatically generated by a Snowball to Java compiler It implements the stemming algorithm defined by a snowball script.
porterStemmer() - Constructor for class org.tartarus.snowball.ext.porterStemmer
 
portugueseStemmer - Class in org.tartarus.snowball.ext
This class was automatically generated by a Snowball to Java compiler It implements the stemming algorithm defined by a snowball script.
portugueseStemmer() - Constructor for class org.tartarus.snowball.ext.portugueseStemmer
 
pos() - Method in interface edu.ucla.sspace.dependency.DependencyTreeNode
Returns the part of speech tag for this node.
pos() - Method in class edu.ucla.sspace.dependency.SimpleDependencyTreeNode
Returns the part of speech tag for this node.
positiveDimensions - Variable in class edu.ucla.sspace.vector.TernaryVector
The indices which are all set to +1.
positiveDimensions() - Method in class edu.ucla.sspace.vector.TernaryVector
Returns the indices at which this vector is valued +1 in sorted order.
postProcessing() - Method in class edu.ucla.sspace.mains.BeagleMain
Allows subclasses to interact with the SemanticSpace after the space has finished processing all of the text.
postProcessing() - Method in class edu.ucla.sspace.mains.DependencyRandomIndexingMain
Allows subclasses to interact with the SemanticSpace after the space has finished processing all of the text.
postProcessing() - Method in class edu.ucla.sspace.mains.DVRIWordsiMain
Allows subclasses to interact with the SemanticSpace after the space has finished processing all of the text.
postProcessing() - Method in class edu.ucla.sspace.mains.DVWCWordsiMain
Allows subclasses to interact with the SemanticSpace after the space has finished processing all of the text.
postProcessing() - Method in class edu.ucla.sspace.mains.DVWordsiMain
Allows subclasses to interact with the SemanticSpace after the space has finished processing all of the text.
postProcessing() - Method in class edu.ucla.sspace.mains.GenericMain
Allows subclasses to interact with the SemanticSpace after the space has finished processing all of the text.
postProcessing() - Method in class edu.ucla.sspace.mains.IsaMain
If --saveVectors was specified, write the accumulated word-to-index vector mapping to file.
postProcessing() - Method in class edu.ucla.sspace.mains.LSAMain
 
postProcessing() - Method in class edu.ucla.sspace.mains.PLSAMain
 
postProcessing() - Method in class edu.ucla.sspace.mains.PreComputedWordsiMain
Saves the basis to disk.
postProcessing() - Method in class edu.ucla.sspace.mains.RandomIndexingMain
If --saveVectors was specified, write the accumulated word-to-index vector mapping to file.
postProcessing() - Method in class edu.ucla.sspace.mains.RIWordsiMain
Saves the index map to disk.
postProcessing() - Method in class edu.ucla.sspace.mains.WCWordsiMain
Saves the basis to disk.
PreComputedContextExtractor - Class in edu.ucla.sspace.wordsi
A ContextExtractor that assumes that the corpus has already been pre-processed and each document is a single line with the following format:
PreComputedContextExtractor() - Constructor for class edu.ucla.sspace.wordsi.PreComputedContextExtractor
PreComputedContextExtractor(BasisMapping<String, String>) - Constructor for class edu.ucla.sspace.wordsi.PreComputedContextExtractor
Constructs a new PreComputedContextExtractor using the given BasisMapping.
PreComputedWordsiMain - Class in edu.ucla.sspace.mains
An executiable class for running Wordsi with a PreComputedContextExtractor.
PreComputedWordsiMain() - Constructor for class edu.ucla.sspace.mains.PreComputedWordsiMain
 
predecessors(int) - Method in interface edu.ucla.sspace.graph.DirectedGraph
Returns the set of vertices that point to this vertex.
predecessors(int) - Method in class edu.ucla.sspace.graph.DirectedMultigraph
Returns the set of vertices that point to this vertex.
predecessors(int) - Method in class edu.ucla.sspace.graph.SparseDirectedGraph
Returns the set of vertices that point to this vertex.
predecessors() - Method in class edu.ucla.sspace.graph.SparseDirectedTypedEdgeSet
 
predecessors() - Method in class edu.ucla.sspace.graph.SparseWeightedDirectedTypedEdgeSet
 
predecessors(int) - Method in class edu.ucla.sspace.graph.WeightedDirectedMultigraph
Returns the set of vertices that point to this vertex.
preference(String) - Method in class edu.ucla.sspace.svs.SelectionalPreference
 
prepareRelationMap(File) - Static method in class edu.ucla.sspace.evaluation.OnePairPerLinePrimingTest
Returns a set of prime, target word pairs that are extracted from a text file.
prettyPrint() - Method in class edu.ucla.sspace.common.ArgOptions
Returns a pretty-print formated string describing all of the options and their arguments.
prettyPrintText() - Method in class edu.ucla.sspace.text.LabeledParsedStringDocument
Returns a pretty-printed version of the document's text without any of the parsing-related annotation and using heuristics to appropriately space punctuation, quotes, and contractions.
prettyPrintText() - Method in interface edu.ucla.sspace.text.ParsedDocument
Returns a pretty-printed version of the document's text without any of the parsing-related annotation and using heuristics to appropriately space punctuation, quotes, and contractions.
primeTargetPairs - Variable in class edu.ucla.sspace.evaluation.AbstractWordPrimingTest
A mapping from a word pair to the human association judgement for it
PrimitiveCollections - Class in edu.ucla.sspace.util.primitive
A collection of static utility methods for working with primitive collections.
PrimitiveCollections() - Constructor for class edu.ucla.sspace.util.primitive.PrimitiveCollections
 
printBigrams(PrintWriter, BigramExtractor.SignificanceTest, int) - Method in class edu.ucla.sspace.tools.BigramExtractor
Prints all of the known bigrams, where each token in the bigram must occur at least the number of specified time.
printTemporalSemanticSpace(TemporalSemanticSpace, String) - Static method in class edu.ucla.sspace.temporal.TemporalSemanticSpaceUtils
Writes the data contained in the TemporalSemanticSpace to the file with the provided name using the TemporalSemanticSpaceUtils.TSSpaceFormat.TEXT format.
printTemporalSemanticSpace(TemporalSemanticSpace, File) - Static method in class edu.ucla.sspace.temporal.TemporalSemanticSpaceUtils
Writes the data contained in the TemporalSemanticSpace to the provided file using the TemporalSemanticSpaceUtils.TSSpaceFormat.TEXT format.
printTemporalSemanticSpace(TemporalSemanticSpace, File, TemporalSemanticSpaceUtils.TSSpaceFormat) - Static method in class edu.ucla.sspace.temporal.TemporalSemanticSpaceUtils
Writes the data contained in the TemporalSemanticSpace to the provided file and format.
process(String) - Method in class edu.ucla.sspace.text.DocumentPreprocessor
Processes the provided document and returns the cleaned version of the document.
process(String, boolean) - Method in class edu.ucla.sspace.text.DocumentPreprocessor
Processes the provided document and returns the cleaned version of the document.
process(String) - Method in class edu.ucla.sspace.tools.BigramExtractor
Processes the tokens in the text to gather statistics for any bigrams contained therein
process(BufferedReader) - Method in class edu.ucla.sspace.tools.BigramExtractor
Processes the tokens in the reader to gather statistics for any bigrams contained therein
process(Iterator<String>) - Method in class edu.ucla.sspace.tools.BigramExtractor
Processes the tokens in the iterator to gather statistics for any bigrams contained therein
process(BufferedReader) - Method in class edu.ucla.sspace.tools.TokenCounter
Counts all of the tokens in the reader
process(String) - Method in class edu.ucla.sspace.tools.TokenCounter
Counts all of the tokens in the string
processDocument(BufferedReader) - Method in class edu.ucla.sspace.beagle.Beagle
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.coals.Coals
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.common.CachingOnDiskSemanticSpace
Not supported; throws an UnsupportedOperationException if called.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.common.GenericTermDocumentVectorSpace
Tokenizes the document using the IteratorFactory and updates the term-document frequency counts.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.common.OnDiskSemanticSpace
Not supported; throws an UnsupportedOperationException if called.
processDocument(BufferedReader) - Method in interface edu.ucla.sspace.common.SemanticSpace
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.common.StaticSemanticSpace
Not supported; throws an UnsupportedOperationException if called.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.common.VectorMapSemanticSpace
A no-op
processDocument(BufferedReader) - Method in class edu.ucla.sspace.dri.DependencyRandomIndexing
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.dv.DependencyVectorSpace
Extracts all the parsed sentences in the document and then updates the co-occurrence values for those paths matching the loaded set of templates, according to this instance's BasisFunction.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.grefenstette.Grefenstette
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.gws.GenericWordSpace
Updates the semantic vectors based on the words in the document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.hal.HyperspaceAnalogueToLanguage
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.isa.IncrementalSemanticAnalysis
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.nonlinear.LocalityPreservingCooccurrenceSpace
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.purandare.PurandareFirstOrder
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.ri.RandomIndexing
Updates the semantic vectors based on the words in the document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.rri.ReflectiveRandomIndexing
Updates the semantic vectors based on the words in the document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.svs.StructuredVectorSpace
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.temporal.FileBasedTemporalSemanticSpace
A noop.
processDocument(BufferedReader, long) - Method in class edu.ucla.sspace.temporal.FileBasedTemporalSemanticSpace
A noop.
processDocument(BufferedReader) - Method in interface edu.ucla.sspace.temporal.TemporalSemanticSpace
Processes the contents of the provided reader as a document, using the current time as the timestamp.
processDocument(BufferedReader, long) - Method in interface edu.ucla.sspace.temporal.TemporalSemanticSpace
Processes the contents of the provided buffer as a document, using the provided timestamp as the date when the document was written.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.tools.BasisMaker.OccurrenceCounter
Processes the contents of the provided file as a document.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.tools.DependencyBasisMaker.OccurrenceCounter
Processes the contents of the provided file as a document.
processDocument(WikipediaCleaner.WikiDoc) - Method in class edu.ucla.sspace.tools.WikipediaCleaner
Process the content of the given WikiDoc.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.tri.OrderedTemporalRandomIndexing
Processes the contents of the provided reader as a document, using the current time as the timestamp.
processDocument(BufferedReader, long) - Method in class edu.ucla.sspace.tri.OrderedTemporalRandomIndexing
Processes the contents of the provided buffer as a document, using the provided timestamp as the date when the document was written.
processDocument(BufferedReader) - Method in class edu.ucla.sspace.wordsi.BaseWordsi
Processes the contents of the provided file as a document.
processDocument(BufferedReader, Wordsi) - Method in interface edu.ucla.sspace.wordsi.ContextExtractor
Processes the content of document and calls Wordsi.handleContextVector(java.lang.String, java.lang.String, edu.ucla.sspace.vector.SparseDoubleVector) for each context vector that can be extracted from document.
processDocument(BufferedReader, Wordsi) - Method in class edu.ucla.sspace.wordsi.DependencyContextExtractor
Processes the content of document and calls Wordsi.handleContextVector(java.lang.String, java.lang.String, edu.ucla.sspace.vector.SparseDoubleVector) for each context vector that can be extracted from document.
processDocument(BufferedReader, Wordsi) - Method in class edu.ucla.sspace.wordsi.GeneralContextExtractor
Processes the content of document and calls Wordsi.handleContextVector(java.lang.String, java.lang.String, edu.ucla.sspace.vector.SparseDoubleVector) for each context vector that can be extracted from document.
processDocument(BufferedReader, Wordsi) - Method in class edu.ucla.sspace.wordsi.PreComputedContextExtractor
Processes the content of document and calls Wordsi.handleContextVector(java.lang.String, java.lang.String, edu.ucla.sspace.vector.SparseDoubleVector) for each context vector that can be extracted from document.
processDocument(BufferedReader, Wordsi) - Method in class edu.ucla.sspace.wordsi.psd.PseudoWordContextExtractor
Processes the content of document and calls Wordsi.handleContextVector(java.lang.String, java.lang.String, edu.ucla.sspace.vector.SparseDoubleVector) for each context vector that can be extracted from document.
processDocument(BufferedReader, Wordsi) - Method in class edu.ucla.sspace.wordsi.psd.PseudoWordDependencyContextExtractor
Processes the content of document and calls Wordsi.handleContextVector(java.lang.String, java.lang.String, edu.ucla.sspace.vector.SparseDoubleVector) for each context vector that can be extracted from document.
processDocument(BufferedReader, Wordsi) - Method in class edu.ucla.sspace.wordsi.semeval.SemEvalContextExtractor
Processes the content of document and calls Wordsi.handleContextVector(java.lang.String, java.lang.String, edu.ucla.sspace.vector.SparseDoubleVector) for each context vector that can be extracted from document.
processDocument(BufferedReader, Wordsi) - Method in class edu.ucla.sspace.wordsi.TopicModelContextExtractor
Processes the content of document and calls Wordsi.handleContextVector(java.lang.String, java.lang.String, edu.ucla.sspace.vector.SparseDoubleVector) for each context vector that can be extracted from document.
processDocumentsAndSpace(SemanticSpace, Iterator<Document>, int, Properties) - Method in class edu.ucla.sspace.mains.GenericMain
Processes all the documents held by the iterator and process the space.
processFile(File) - Method in class edu.ucla.sspace.tools.BlogPreProcessor
Given a blog file, read through each line and extract the content and updated date, printing these as one line to the result file.
processFile(String) - Method in class edu.ucla.sspace.tools.TokenCounter
Counts all of the tokens in the file with specified name
processFile(File) - Method in class edu.ucla.sspace.tools.TokenCounter
Counts all of the tokens in the file
processSpace(Properties) - Method in class edu.ucla.sspace.beagle.Beagle
No processing is performed on the holographs.
processSpace(Properties) - Method in class edu.ucla.sspace.coals.Coals
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.common.CachingOnDiskSemanticSpace
Not supported; throws an UnsupportedOperationException if called.
processSpace(Transform) - Method in class edu.ucla.sspace.common.GenericTermDocumentVectorSpace
Processes the GenericTermDocumentVectorSpace with the provided Transform if it is not null as a MatrixFile.
processSpace(Properties) - Method in class edu.ucla.sspace.common.OnDiskSemanticSpace
Not supported; throws an UnsupportedOperationException if called.
processSpace(Properties) - Method in interface edu.ucla.sspace.common.SemanticSpace
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.common.StaticSemanticSpace
Not supported; throws an UnsupportedOperationException if called.
processSpace(Properties) - Method in class edu.ucla.sspace.common.VectorMapSemanticSpace
A no-op
processSpace(Properties) - Method in class edu.ucla.sspace.dri.DependencyRandomIndexing
Does nothing.
processSpace(Properties) - Method in class edu.ucla.sspace.dv.DependencyVectorSpace
Does nothing.
processSpace(Properties) - Method in class edu.ucla.sspace.esa.ExplicitSemanticAnalysis
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.grefenstette.Grefenstette
Does nothing.
processSpace(Properties) - Method in class edu.ucla.sspace.gws.GenericWordSpace
Does nothing.
processSpace(Properties) - Method in class edu.ucla.sspace.hal.HyperspaceAnalogueToLanguage
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.isa.IncrementalSemanticAnalysis
Does nothing, as ISA in an incremental algorithm and no final processing needs to be performed on the space.
processSpace(Properties) - Method in class edu.ucla.sspace.lsa.LatentSemanticAnalysis
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.nonlinear.LocalityPreservingCooccurrenceSpace
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.nonlinear.LocalityPreservingSemanticAnalysis
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.purandare.PurandareFirstOrder
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.ri.RandomIndexing
Does nothing.
processSpace(Properties) - Method in class edu.ucla.sspace.rri.ReflectiveRandomIndexing
Computes the reflective semantic vectors for word meanings
processSpace(Properties) - Method in class edu.ucla.sspace.svs.StructuredVectorSpace
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.temporal.FileBasedTemporalSemanticSpace
A noop.
processSpace(Properties) - Method in class edu.ucla.sspace.tools.BasisMaker.OccurrenceCounter
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.tools.DependencyBasisMaker.OccurrenceCounter
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.tri.OrderedTemporalRandomIndexing
Does nothing.
processSpace(Properties) - Method in class edu.ucla.sspace.vsm.VectorSpaceModel
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.wordsi.EvaluationWordsi
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.wordsi.StreamingWordsi
Once all the documents have been processed, performs any post-processing steps on the data.
processSpace(Properties) - Method in class edu.ucla.sspace.wordsi.WaitingWordsi
Once all the documents have been processed, performs any post-processing steps on the data.
project(MatrixFile, MatrixFile, int) - Static method in class edu.ucla.sspace.matrix.LocalityPreservingProjection
Projects the rows of the input matrix into a lower dimensional subspace using the Locality Preserving Projection (LPP) algorithm and the affinity matrix as a guide to locality.
project(Matrix, MatrixFile, int) - Static method in class edu.ucla.sspace.matrix.LocalityPreservingProjection
Projects the rows of the input matrix into a lower dimensional subspace using the Locality Preserving Projection (LPP) algorithm and the affinity matrix as a guide to locality.
project(Matrix, Matrix, int) - Static method in class edu.ucla.sspace.matrix.LocalityPreservingProjection
Projects the rows of the input matrix into a lower dimensional subspace using the Locality Preserving Projection (LPP) algorithm and the affinity matrix as a guide to locality.
Properties - Class in edu.ucla.sspace.util
A simple wrapper around Properties that provides methods that interpret properties based on the type of the default value.
Properties() - Constructor for class edu.ucla.sspace.util.Properties
Creates a new Properties object from the system provided properties.
Properties(Properties) - Constructor for class edu.ucla.sspace.util.Properties
Creates a new Properties object from the provided properties.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.clustering.AutomaticStopClustering
A property prefix used for properties.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.clustering.CKVWSpectralClustering03
The proper prefix.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.clustering.CKVWSpectralClustering06
The proper prefix.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.clustering.ClutoClustering
A property prefix for specifiying options when using Cluto.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.clustering.DirectClustering
A property prefix for specifiying options when using DirectClustering.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.clustering.GapStatistic
A property prefix used for properties.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.clustering.HierarchicalAgglomerativeClustering
A prefix for specifying properties.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.clustering.LinkClustering
A prefix for specifying properties.
PROPERTY_PREFIX - Static variable in interface edu.ucla.sspace.clustering.OnlineClustering
 
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.coals.Coals
The property prefix for other settings.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.dri.DependencyRandomIndexing
The base prefix for all DependencyRandomIndexing properties.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.dv.DependencyVectorSpace
The base prefix for all DependencyVectorSpace properties.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.index.WindowedPermutationFunction
The prefix for naming public properties.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.matrix.factorization.NonNegativeMatrixFactorizationMultiplicative
The base property prefix.
PROPERTY_PREFIX - Static variable in class edu.ucla.sspace.matrix.factorization.NonNegativeMatrixFactorizationOPL
The base property prefix.
PseudoWordContextExtractor - Class in edu.ucla.sspace.wordsi.psd
A pseudo word based ContextExtractor.
PseudoWordContextExtractor(ContextGenerator, int, Map<String, String>) - Constructor for class edu.ucla.sspace.wordsi.psd.PseudoWordContextExtractor
Creates a new PseudoWordContextExtracto.
PseudoWordDependencyContextExtractor - Class in edu.ucla.sspace.wordsi.psd
A pseudo word based DependencyContextExtractor.
PseudoWordDependencyContextExtractor(DependencyExtractor, DependencyContextGenerator, Map<String, String>) - Constructor for class edu.ucla.sspace.wordsi.psd.PseudoWordDependencyContextExtractor
PseudoWordReporter - Class in edu.ucla.sspace.wordsi.psd
A AssignmentReporter that creates a PseudoWord answer key .
PseudoWordReporter(OutputStream) - Constructor for class edu.ucla.sspace.wordsi.psd.PseudoWordReporter
Creates a new PseudoWordReporter.
PsudoWordSelector - Class in edu.ucla.sspace.tools
A utility for selecting a set of pseudo words.
PsudoWordSelector() - Constructor for class edu.ucla.sspace.tools.PsudoWordSelector
 
pSum - Variable in class edu.ucla.sspace.clustering.BaseSpectralCut
The summation of the rho values.
PukWacCorpusReader - Class in edu.ucla.sspace.text.corpora
Reads full documents from a parsed UkWac or Wackypedia corpus.
PukWacCorpusReader() - Constructor for class edu.ucla.sspace.text.corpora.PukWacCorpusReader
 
PukWacCorpusReader.UkWacIterator - Class in edu.ucla.sspace.text.corpora
 
PukWacCorpusReader.UkWacIterator(BufferedReader) - Constructor for class edu.ucla.sspace.text.corpora.PukWacCorpusReader.UkWacIterator
 
PukWacDependencyCorpusReader - Class in edu.ucla.sspace.text.corpora
Reads dependency parsed sentence lines, which are expected to be a the CoNNL format, from a parsed UkWac or Wackypedia corpus.
PukWacDependencyCorpusReader() - Constructor for class edu.ucla.sspace.text.corpora.PukWacDependencyCorpusReader
 
PukWacDependencyCorpusReader.UkWacIterator - Class in edu.ucla.sspace.text.corpora
 
PukWacDependencyCorpusReader.UkWacIterator(BufferedReader) - Constructor for class edu.ucla.sspace.text.corpora.PukWacDependencyCorpusReader.UkWacIterator
 
PukWaCDocumentIterator - Class in edu.ucla.sspace.text
An iterator implementation that returns Document containg a single dependency parsed sentence given a file in the CoNLL Format which is contained in the XML format provided in the WaCkypedia corpus.
PukWaCDocumentIterator(String) - Constructor for class edu.ucla.sspace.text.PukWaCDocumentIterator
Creates an Iterator over the file where each document returned contains the sequence of dependency parsed words composing a sentence..
PUkWacSentenceStripper - Class in edu.ucla.sspace.tools
 
PUkWacSentenceStripper() - Constructor for class edu.ucla.sspace.tools.PUkWacSentenceStripper
 
PurandareFirstOrder - Class in edu.ucla.sspace.purandare
An implementation of the word sense induction algorithm described by Purandare and Pedersen.
PurandareFirstOrder() - Constructor for class edu.ucla.sspace.purandare.PurandareFirstOrder
Creates a new instance of PurandareFirstOrder using the system properties for configuration
PurandareFirstOrder(Properties) - Constructor for class edu.ucla.sspace.purandare.PurandareFirstOrder
Creates a new instance of PurandareFirstOrder using the provided properties for configuration
PurandareMain - Class in edu.ucla.sspace.mains
An executable class for running PurandareFirstOrder from the command line.
put(Integer, T) - Method in class edu.ucla.sspace.util.ArrayMap
 
put(K, V) - Method in class edu.ucla.sspace.util.BoundedSortedMap
Adds the key-value mapping to this map, and if the total number of mappings exceeds the bounds, removes either the currently lowest element, or if reversed, the currently highest element.
put(K, V) - Method in class edu.ucla.sspace.util.BoundedSortedMultiMap
Adds the key-value mapping to this map, and if the total number of mappings exceeds the bounds, removes either the currently lowest element, or if reversed, the currently highest element.
put(Character, V) - Method in class edu.ucla.sspace.util.CharMap
Adds the mapping from the provided key to the value.
put(char, V) - Method in class edu.ucla.sspace.util.CharMap
Adds the mapping from the provided key to the value.
put(String, T) - Method in class edu.ucla.sspace.util.GeneratorMap
Unsupported.
put(K, V) - Method in class edu.ucla.sspace.util.HashBiMap
put(K, V) - Method in class edu.ucla.sspace.util.HashMultiMap
Adds the specified value to the set of values associated with the specified key in this map.
put(Integer, V) - Method in class edu.ucla.sspace.util.IntegerMap
Adds the mapping from the provided key to the value.
put(K, V) - Method in interface edu.ucla.sspace.util.MultiMap
Adds the specified value to the set of values associated with the specified key in this map.
put(int, int) - Method in class edu.ucla.sspace.util.primitive.IntIntHashMultiMap
Adds the specified value to the set of values associated with the specified key in this map.
put(Integer, Integer) - Method in class edu.ucla.sspace.util.primitive.IntIntHashMultiMap
Adds the specified value to the set of values associated with the specified key in this map.
put(int, int) - Method in interface edu.ucla.sspace.util.primitive.IntIntMultiMap
Adds the specified value to the set of values associated with the specified key in this map.
put(K, V) - Method in class edu.ucla.sspace.util.TreeMultiMap
Adds the specified value to the set of values associated with the specified key in this map.
put(String, V) - Method in class edu.ucla.sspace.util.TrieMap
Adds the mapping from the provided key to the value.
putAll(Map<? extends K, ? extends V>) - Method in class edu.ucla.sspace.util.BoundedSortedMap
Adds all of the key-value mapping to this map, and if the total number of mappings exceeds the bounds, removes mappings until the size is within bounds.
putAll(Map<? extends K, ? extends V>) - Method in class edu.ucla.sspace.util.BoundedSortedMultiMap
Adds all of the key-value mapping to this map, and if the total number of mappings exceeds the bounds, removes either the currently lowest element, or if reversed, the currently highest element.
putAll(Map<? extends String, ? extends T>) - Method in class edu.ucla.sspace.util.GeneratorMap
Unsupported.
putAll(Map<? extends K, ? extends V>) - Method in class edu.ucla.sspace.util.HashBiMap
putAll(Map<? extends K, ? extends V>) - Method in class edu.ucla.sspace.util.HashMultiMap
Copies all of the mappings from the specified map to this mutli-map
putAll(MultiMap<? extends K, ? extends V>) - Method in class edu.ucla.sspace.util.HashMultiMap
Copies all of the mappings from the specified mulit-map to this mutli-map
putAll(Map<? extends K, ? extends V>) - Method in interface edu.ucla.sspace.util.MultiMap
Copies all of the mappings from the specified map to this mutli-map
putAll(MultiMap<? extends K, ? extends V>) - Method in interface edu.ucla.sspace.util.MultiMap
Copies all of the mappings from the specified mulit-map to this mutli-map
putAll(Map<? extends Integer, ? extends Integer>) - Method in class edu.ucla.sspace.util.primitive.IntIntHashMultiMap
Copies all of the mappings from the specified map to this mutli-map
putAll(MultiMap<? extends Integer, ? extends Integer>) - Method in class edu.ucla.sspace.util.primitive.IntIntHashMultiMap
Copies all of the mappings from the specified mulit-map to this mutli-map
putAll(IntIntMultiMap) - Method in class edu.ucla.sspace.util.primitive.IntIntHashMultiMap
Copies all of the mappings from the specified map to this mutli-map
putAll(IntIntMultiMap) - Method in interface edu.ucla.sspace.util.primitive.IntIntMultiMap
Copies all of the mappings from the specified map to this mutli-map
putAll(Map<? extends K, ? extends V>) - Method in class edu.ucla.sspace.util.TreeMultiMap
Copies all of the mappings from the specified map to this mutli-map
putAll(MultiMap<? extends K, ? extends V>) - Method in class edu.ucla.sspace.util.TreeMultiMap
Copies all of the mappings from the specified mulit-map to this mutli-map
putMany(K, Collection<V>) - Method in class edu.ucla.sspace.util.HashMultiMap
Adds all of the specified values to the set of values associated with the specified key in this map.
putMany(K, Collection<V>) - Method in interface edu.ucla.sspace.util.MultiMap
Adds all of the specified values to the set of values associated with the specified key in this map.
putMany(int, Collection<Integer>) - Method in class edu.ucla.sspace.util.primitive.IntIntHashMultiMap
Adds all of the specified values to the set of values associated with the specified key in this map.
putMany(Integer, Collection<Integer>) - Method in class edu.ucla.sspace.util.primitive.IntIntHashMultiMap
Adds all of the specified values to the set of values associated with the specified key in this map.
putMany(int, IntCollection) - Method in class edu.ucla.sspace.util.primitive.IntIntHashMultiMap
Adds all of the specified values to the set of values associated with the specified key in this map.
putMany(Integer, IntCollection) - Method in class edu.ucla.sspace.util.primitive.IntIntHashMultiMap
putMany(int, IntCollection) - Method in interface edu.ucla.sspace.util.primitive.IntIntMultiMap
Adds all of the specified values to the set of values associated with the specified key in this map.
putMany(int, Collection<Integer>) - Method in interface edu.ucla.sspace.util.primitive.IntIntMultiMap
Adds all of the specified values to the set of values associated with the specified key in this map.
putMany(K, Collection<V>) - Method in class edu.ucla.sspace.util.TreeMultiMap
Adds all of the specified values to the set of values associated with the specified key in this map.
putMulti(K, Collection<V>) - Method in class edu.ucla.sspace.util.BoundedSortedMultiMap
Adds all of the key-value mapping to this map, and if the total number of mappings exceeds the bounds, removes either the currently lowest element, or if reversed, the currently highest element.
A B C D E F G H I J K L M N O P R S T U V W X Y 

Copyright © 2012. All Rights Reserved.