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

T

tailMap(K) - Method in interface edu.ucla.sspace.util.SortedMultiMap
Returns a view of the portion of this map whose keys are greater than or equal to fromKey.
tailMap(K) - Method in class edu.ucla.sspace.util.TreeMultiMap
Returns a view of the portion of this map whose keys are greater than or equal to fromKey.
tanimotoCoefficient(double[], double[]) - Static method in class edu.ucla.sspace.common.Similarity
Returns the Tanimoto coefficient of the two double array instances.
tanimotoCoefficient(int[], int[]) - Static method in class edu.ucla.sspace.common.Similarity
Returns the Tanimoto coefficient of the two int array instances.
tanimotoCoefficient(Vector, Vector) - Static method in class edu.ucla.sspace.common.Similarity
Returns the Tanimoto coefficient of the two Vector instances.
tanimotoCoefficient(DoubleVector, DoubleVector) - Static method in class edu.ucla.sspace.common.Similarity
Returns the Tanimoto coefficient of the two DoubleVector instances.
tanimotoCoefficient(IntegerVector, IntegerVector) - Static method in class edu.ucla.sspace.common.Similarity
Returns the Tanimoto Coefficient of the two IntegerVector instances
TanimotoCoefficient - Class in edu.ucla.sspace.similarity
Returns the Tanimoto Coefficient between any two Vectors.
TanimotoCoefficient() - Constructor for class edu.ucla.sspace.similarity.TanimotoCoefficient
 
TemporalBloglinesCorpusReader - Class in edu.ucla.sspace.text.corpora
 
TemporalBloglinesCorpusReader() - Constructor for class edu.ucla.sspace.text.corpora.TemporalBloglinesCorpusReader
Constructs a new TemporalBloglinesCorpusReader that uses no preprocessing before documents are returned.
TemporalBloglinesCorpusReader(DocumentPreprocessor) - Constructor for class edu.ucla.sspace.text.corpora.TemporalBloglinesCorpusReader
Constructs a new TemporalBloglinesCorpusReader that uses preprocessor to clean documents before they are returned.
TemporalBloglinesCorpusReader - Class in edu.ucla.sspace.text
A subclass of BloglinesCorpusReader that always includes timestamps.
TemporalBloglinesCorpusReader() - Constructor for class edu.ucla.sspace.text.TemporalBloglinesCorpusReader
Creates a BloglinesCorpusReader that will always include timestamps.
TemporalBloglinesCorpusReader.BloglinesIterator - Class in edu.ucla.sspace.text.corpora
 
TemporalBloglinesCorpusReader.BloglinesIterator(Iterator<File>) - Constructor for class edu.ucla.sspace.text.corpora.TemporalBloglinesCorpusReader.BloglinesIterator
 
TemporalDocument - Interface in edu.ucla.sspace.text
An abstraction for a document that allows document processors to access time-annotated text in a uniform manner.
TemporalEdge - Interface in edu.ucla.sspace.graph
An interface for representing a edge in a DynamicGraph, where each edge is associated with a specific time.
TemporalFileDocument - Class in edu.ucla.sspace.text
A TemporalDocument implementation backed by a File whose contents are used for the document text.
TemporalFileDocument(String) - Constructor for class edu.ucla.sspace.text.TemporalFileDocument
Constructs a TemporalDocument using the contents of the provided file, using the lastModified time as its creation time.
TemporalFileDocument(File) - Constructor for class edu.ucla.sspace.text.TemporalFileDocument
Constructs a TemporalDocument using the contents of the provided file, using the lastModified time as its creation time.
TemporalFileDocument(String, long) - Constructor for class edu.ucla.sspace.text.TemporalFileDocument
Constructs a TemporalDocument using the contents of the provided file, which was created at the specified time.
TemporalFileDocument(File, long) - Constructor for class edu.ucla.sspace.text.TemporalFileDocument
Constructs a TemporalDocument using the contents of the provided file, which was created at the specified time.
TemporalSemanticSpace - Interface in edu.ucla.sspace.temporal
A common interface for interacting with semantic space models of meaning that include time information in their word representation.
TemporalSemanticSpaceUtils - Class in edu.ucla.sspace.temporal
A collection of utility methods for interacting with TemporalSemanticSpace instances.
TemporalSemanticSpaceUtils.TSSpaceFormat - Enum in edu.ucla.sspace.temporal
The type of formatting to use when writing a semantic space to a file.
TemporalStringDocument - Class in edu.ucla.sspace.text
A TemporalDocument implementation backed by a String whose contents are used for the document text.
TemporalStringDocument(String, long) - Constructor for class edu.ucla.sspace.text.TemporalStringDocument
Constructs a Document using the provided string as the document text
TemporalUsenetCorpusReader - Class in edu.ucla.sspace.text.corpora
A DirectoryCorpusReader for the Usenet corpus provided by the Westbury Lab.
TemporalUsenetCorpusReader() - Constructor for class edu.ucla.sspace.text.corpora.TemporalUsenetCorpusReader
 
TemporalUsenetCorpusReader(DocumentPreprocessor) - Constructor for class edu.ucla.sspace.text.corpora.TemporalUsenetCorpusReader
 
TemporalUsenetCorpusReader - Class in edu.ucla.sspace.text
A subclass of UsenetCorpusReader that always includes timestamps.
TemporalUsenetCorpusReader() - Constructor for class edu.ucla.sspace.text.TemporalUsenetCorpusReader
 
TemporalUsenetCorpusReader.UseNetIterator - Class in edu.ucla.sspace.text.corpora
 
TemporalUsenetCorpusReader.UseNetIterator(Iterator<File>) - Constructor for class edu.ucla.sspace.text.corpora.TemporalUsenetCorpusReader.UseNetIterator
 
TermAssociationFinder - Class in edu.ucla.sspace.text
 
TermAssociationFinder(SignificanceTest) - Constructor for class edu.ucla.sspace.text.TermAssociationFinder
Creates a new TermAssociationFinder using the specified test, which will only record associations between all terms that appear together in the same context.
TermAssociationFinder(SignificanceTest, Set<String>, Set<String>) - Constructor for class edu.ucla.sspace.text.TermAssociationFinder
Creates a new TermAssociationFinder using the specified test, which will only record associations between two terms t1 and t2 if leftTerms.contains(t1) and rightTerms.contains(t2) or the commutative equivalent.
TernaryPermutationFunction - Class in edu.ucla.sspace.index
A permutation function that is optimized for TernaryVector instances.
TernaryPermutationFunction() - Constructor for class edu.ucla.sspace.index.TernaryPermutationFunction
Creates an empty DefaultPermutationFunction.
TernaryVector - Class in edu.ucla.sspace.vector
An unmodifiable vector with ternary (+1, 0, -1) values.
TernaryVector(int, int[], int[]) - Constructor for class edu.ucla.sspace.vector.TernaryVector
Create an TernaryVector with the specified length, and postive and negative dimensions.
text() - Method in class edu.ucla.sspace.text.LabeledParsedStringDocument
Returns the text of the parsed document without any of the parsing-related annotation, with each parsed token separated by whitespace.
text() - Method in interface edu.ucla.sspace.text.ParsedDocument
Returns the text of the parsed document without any of the parsing-related annotation, with each parsed token separated by whitespace.
TfIdfDocStripedTransform - Class in edu.ucla.sspace.matrix
Tranforms a matrix according to the Term frequency-Inverse Document Frequency weighting.
TfIdfDocStripedTransform() - Constructor for class edu.ucla.sspace.matrix.TfIdfDocStripedTransform
 
TfIdfDocStripedTransform.TfIdfGlobalTransform - Class in edu.ucla.sspace.matrix
 
TfIdfDocStripedTransform.TfIdfGlobalTransform(Matrix) - Constructor for class edu.ucla.sspace.matrix.TfIdfDocStripedTransform.TfIdfGlobalTransform
Creates an instance of TfIdfGlobalTransform from a Matrix.
TfIdfDocStripedTransform.TfIdfGlobalTransform(File, MatrixIO.Format) - Constructor for class edu.ucla.sspace.matrix.TfIdfDocStripedTransform.TfIdfGlobalTransform
Creates an instance of TfIdfGlobalTransform from a File in the format MatrixIO.Format.
TfIdfTransform - Class in edu.ucla.sspace.matrix
Tranforms a matrix according to the Term frequency-Inverse Document Frequency weighting.
TfIdfTransform() - Constructor for class edu.ucla.sspace.matrix.TfIdfTransform
 
TfIdfTransform.TfIdfGlobalTransform - Class in edu.ucla.sspace.matrix
 
TfIdfTransform.TfIdfGlobalTransform(Matrix) - Constructor for class edu.ucla.sspace.matrix.TfIdfTransform.TfIdfGlobalTransform
Creates an instance of TfIdfGlobalTransform from a Matrix.
TfIdfTransform.TfIdfGlobalTransform(File, MatrixIO.Format) - Constructor for class edu.ucla.sspace.matrix.TfIdfTransform.TfIdfGlobalTransform
Creates an instance of TfIdfGlobalTransform from a File in the format MatrixIO.Format.
time() - Method in interface edu.ucla.sspace.graph.TemporalEdge
Returns milliseconds since the epoch when this edge occurrend.
TimeSpan - Class in edu.ucla.sspace.util
A utility class for representing a span of time.
TimeSpan(String) - Constructor for class edu.ucla.sspace.util.TimeSpan
Creates a time span using the date string to specify the time units and amounts.
TimeSpan(int, int, int, int, int) - Constructor for class edu.ucla.sspace.util.TimeSpan
Creates a time span for the specified duration.
timeStamp() - Method in interface edu.ucla.sspace.text.TemporalDocument
Returns the time at which this document was created.
timeStamp() - Method in class edu.ucla.sspace.text.TemporalFileDocument
Returns the time at which this document was created.
timeStamp() - Method in class edu.ucla.sspace.text.TemporalStringDocument
Returns the time at which this document was created.
to - Variable in class edu.ucla.sspace.clustering.LinkClustering.Edge
 
to() - Method in interface edu.ucla.sspace.graph.Edge
Returns the index of the head vertex
to() - Method in class edu.ucla.sspace.graph.LabeledEdge
 
to() - Method in class edu.ucla.sspace.graph.SimpleDirectedEdge
Returns the index of the head vertex
to() - Method in class edu.ucla.sspace.graph.SimpleDirectedTypedEdge
Returns the index of the head vertex
to() - Method in class edu.ucla.sspace.graph.SimpleEdge
Returns the index of the head vertex
to() - Method in class edu.ucla.sspace.graph.SimpleTypedEdge
Returns the index of the head vertex
to() - Method in class edu.ucla.sspace.graph.SimpleWeightedDirectedTypedEdge
Returns the index of the head vertex
to() - Method in class edu.ucla.sspace.graph.SimpleWeightedEdge
Returns the index of the head vertex
to() - Method in class edu.ucla.sspace.graph.SimpleWeightedTypedEdge
Returns the index of the head vertex
toAdjacencyMatrixString(Graph<?>) - Static method in class edu.ucla.sspace.graph.Graphs
Returns a pretty-print string version of the graph as an adjacency matrix where a 1 indicates an edge and a 0 indicates no edge.
toArray(E[]) - Method in class edu.ucla.sspace.util.IntegerMap
Fills the provided array with the values contained in this array that fit within the length of the provided array.
toArray() - Method in class edu.ucla.sspace.util.SetDecorator
 
toArray(E[]) - Method in class edu.ucla.sspace.util.SetDecorator
 
toArray(E[]) - Method in interface edu.ucla.sspace.util.SparseArray
Fills the provided array with the values contained in this array that fit within the length of the provided array.
toArray(E[]) - Method in class edu.ucla.sspace.util.SparseDoubleArray
Fills the provided array with the values contained in this array that fit within the length of the provided array.
toArray(E[]) - Method in class edu.ucla.sspace.util.SparseHashArray
Fills the provided array with the values contained in this array that fit within the length of the provided array.
toArray(E[]) - Method in class edu.ucla.sspace.util.SparseIntArray
Fills the provided array with the values contained in this array that fit within the length of the provided array.
toArray(E[]) - Method in class edu.ucla.sspace.util.SparseIntHashArray
Fills the provided array with the values contained in this array that fit within the length of the provided array.
toArray(E[]) - Method in class edu.ucla.sspace.util.SparseLongArray
Fills the provided array with the values contained in this array that fit within the length of the provided array.
toArray() - Method in class edu.ucla.sspace.vector.AbstractDoubleVector
Returns a double array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.AbstractIntegerVector
Returns an int array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.AmortizedSparseVector
Returns a double array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.AtomicSparseVector
Returns a double array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.AtomicVector
Returns a double array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.CompactSparseVector
Returns a double array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.DenseDynamicMagnitudeVector
Returns a double array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.DenseVector
Returns a double array representing this vector.
toArray() - Method in interface edu.ucla.sspace.vector.DoubleVector
Returns a double array representing this vector.
toArray() - Method in interface edu.ucla.sspace.vector.IntegerVector
Returns an int array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.MaskedDoubleVectorView
Returns a double array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.ScaledDoubleVector
Returns a double array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.SparseHashDoubleVector
Returns a double array representing this vector.
toArray() - Method in class edu.ucla.sspace.vector.TernaryVector
Returns an int array representing this vector.
toDenseArray() - Method in class edu.ucla.sspace.matrix.AbstractMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.ArrayMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.AtomicGrowingMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.AtomicGrowingSparseHashMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.AtomicGrowingSparseMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.CellMaskedMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.DiagonalMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.GrowingSparseMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in interface edu.ucla.sspace.matrix.Matrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.OnDiskMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.RowMaskedMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.RowScaledMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.SynchronizedMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.SynchronizedSparseMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.TransposedMatrix
Converts the Matrix to a two dimensional array.
toDenseArray() - Method in class edu.ucla.sspace.matrix.YaleSparseMatrix
Converts the Matrix to a two dimensional array.
ToeflSynonymEvaluation - Class in edu.ucla.sspace.evaluation
A test of eighty synonym questions gathered from the Test of English as a Foreign Langauge (TOEFL) exam gathered by Thomas Landauer.
ToeflSynonymEvaluation(String, String) - Constructor for class edu.ucla.sspace.evaluation.ToeflSynonymEvaluation
Constructs this evaluation test using the TOEFL test question file refered to by the provided name.
ToeflSynonymEvaluation(File, File) - Constructor for class edu.ucla.sspace.evaluation.ToeflSynonymEvaluation
Constructs this evaluation test using the TOEFL test question file.
TOKEN_COUNT_LIMIT_PROPERTY - Static variable in class edu.ucla.sspace.text.IteratorFactory
Specifices an upper limit on the number of tokens each iterator can return.
TOKEN_FILTER_DESCRIPTION - Static variable in class edu.ucla.sspace.mains.OptionDescriptions
A description of the use of a TokenFilter.
TOKEN_FILTER_PROPERTY - Static variable in class edu.ucla.sspace.text.IteratorFactory
Specifies the TokenFilter to apply to all iterators generated by this factory
TOKEN_REPLACEMENT_FILE_PROPERTY - Static variable in class edu.ucla.sspace.text.IteratorFactory
Specifies the name of a file which contains term replacement mappings for a WordReplacementIterator.
TOKEN_STEMMING_DESCRIPTION - Static variable in class edu.ucla.sspace.mains.OptionDescriptions
A description of the use of a Stemmer.
TokenCounter - Class in edu.ucla.sspace.tools
A utility class for counting tokens in one or more files.
TokenCounter() - Constructor for class edu.ucla.sspace.tools.TokenCounter
Creates a new token counter
TokenCounter(boolean) - Constructor for class edu.ucla.sspace.tools.TokenCounter
Creates a new token counter that optionally lower cases tokens
TokenFilter - Class in edu.ucla.sspace.text
A utility for asserting what tokens are valid and invalid within a stream of tokens.
TokenFilter(Set<String>) - Constructor for class edu.ucla.sspace.text.TokenFilter
Constructs a filter that accepts only those tokens present in tokens.
TokenFilter(Set<String>, boolean) - Constructor for class edu.ucla.sspace.text.TokenFilter
Constructs a filter using tokens that if excludeTokens is false will accept those in tokens, or if excludeTokens is true, will accept those that are not in tokens.
TokenFilter(Set<String>, boolean, TokenFilter) - Constructor for class edu.ucla.sspace.text.TokenFilter
Constructs a chained filter that accepts the subset of what the parent accepts after applying its own filter to any tokens that the parent accepts.
tokenize(BufferedReader) - Static method in class edu.ucla.sspace.text.IteratorFactory
Tokenizes the contents of the reader according to the system configuration and returns an iterator over all the tokens, excluding those that were removed by any configured TokenFilter.
tokenize(String) - Static method in class edu.ucla.sspace.text.IteratorFactory
Tokenizes the contents of the string according to the system configuration and returns an iterator over all the tokens, excluding those that were removed by any configured TokenFilter.
tokenizeOrdered(BufferedReader) - Static method in class edu.ucla.sspace.text.IteratorFactory
Tokenizes the contents of the reader according to the system configuration and returns an iterator over all the tokens where any removed tokens have been replaced with the IteratorFactory.EMPTY_TOKEN value.
tokenizeOrdered(String) - Static method in class edu.ucla.sspace.text.IteratorFactory
Tokenizes the contents of the string according to the system configuration and returns an iterator over all the tokens where any removed tokens have been replaced with the IteratorFactory.EMPTY_TOKEN value.
tokenizeOrderedWithReplacement(BufferedReader) - Static method in class edu.ucla.sspace.text.IteratorFactory
Wraps an iterator returned by tokenizeOrdered to also include term replacement of tokens.
toLineGraph(G) - Static method in class edu.ucla.sspace.graph.Graphs
Converts the provided graph into a line graph, where each edge is mapped to a vertex and edges that share vertices are connected by an edge in the line graph.
toLineGraph(G, Indexer<E>) - Static method in class edu.ucla.sspace.graph.Graphs
Converts the provided graph into a line graph, where each edge is mapped to a vertex and edges that share vertices are connected by an edge in the line graph, using edgeIndices to specify the mapping between edges in the input graph and their corresponding vertices in the line graph.
TopicModelContextExtractor - Class in edu.ucla.sspace.wordsi
A ContextExtractor for processing documents with topic signatures for contexts as computed by the Mallet framework.
TopicModelContextExtractor() - Constructor for class edu.ucla.sspace.wordsi.TopicModelContextExtractor
 
TopicWordsiMain - Class in edu.ucla.sspace.mains
A main for running a wordsi model over topic signatures for documents.
TopicWordsiMain() - Constructor for class edu.ucla.sspace.mains.TopicWordsiMain
 
toPrimitiveArray() - Method in class edu.ucla.sspace.util.primitive.AbstractIntSet
 
toPrimitiveArray() - Method in interface edu.ucla.sspace.util.primitive.IntCollection
 
toPrimitiveArray() - Method in interface edu.ucla.sspace.util.primitive.IntSet
 
toPrimitiveArray(double[]) - Method in class edu.ucla.sspace.util.SparseDoubleArray
Sets the values of the provided array using the contents of this array.
toPrimitiveArray(int[]) - Method in class edu.ucla.sspace.util.SparseIntArray
Sets the values of the provided array using the contents of this array.
toPrimitiveArray(long[]) - Method in class edu.ucla.sspace.util.SparseLongArray
Sets the values of the provided array using the contents of this array.
toString() - Method in class edu.ucla.sspace.clustering.BisectingKMeans
 
toString() - Method in class edu.ucla.sspace.clustering.CKVWSpectralClustering03
 
toString() - Method in class edu.ucla.sspace.clustering.CKVWSpectralClustering06
 
toString() - Method in class edu.ucla.sspace.clustering.DirectClustering
 
toString() - Method in class edu.ucla.sspace.clustering.LinkClustering.Edge
 
toString() - Method in class edu.ucla.sspace.clustering.Merge
 
toString() - Method in class edu.ucla.sspace.clustering.OnlineKMeans.OnlineKMeansClustering
Returns a string describing this ClusterMap.
toString() - Method in class edu.ucla.sspace.clustering.OnlineKMeans
 
toString() - Method in class edu.ucla.sspace.clustering.SoftAssignment
 
toString() - Method in class edu.ucla.sspace.clustering.StreamingKMeans.StreamingKMeansClustering
Returns a string describing this ClusterMap.
toString() - Method in class edu.ucla.sspace.clustering.StreamingKMeans
Returns "StreamingKMeans"
toString() - Method in class edu.ucla.sspace.common.ArgOptions
Returns a string description of the options that are currently set and their values.
toString() - Method in class edu.ucla.sspace.dependency.SimpleDependencyPath
Returns the path in order with words and relations space delimited.
toString() - Method in class edu.ucla.sspace.dependency.SimpleDependencyRelation
 
toString() - Method in class edu.ucla.sspace.dependency.SimpleDependencyTreeNode
Returns "word:pos".
toString() - Method in class edu.ucla.sspace.evaluation.AbstractNormedWordPrimingTest.SimpleNormedWordPrimingReport
 
toString() - Method in class edu.ucla.sspace.evaluation.AbstractWordPrimingTest.SimpleWordPrimingReport
 
toString() - Method in class edu.ucla.sspace.evaluation.ESLSynonymEvaluation
 
toString() - Method in class edu.ucla.sspace.evaluation.FinkelsteinEtAl353WordSimilarityEvaluation
 
toString() - Method in class edu.ucla.sspace.evaluation.OnePairPerLinePrimingTest
 
toString() - Method in class edu.ucla.sspace.evaluation.RubensteinGoodenoughWordSimilarityEvaluation
 
toString() - Method in class edu.ucla.sspace.evaluation.SimpleMultipleChoiceQuestion
Returns a human-readable form of the question.
toString() - Method in class edu.ucla.sspace.evaluation.SimpleWordAssociationReport
Returns a string describing the three values represented by this report
toString() - Method in class edu.ucla.sspace.evaluation.ToeflSynonymEvaluation
 
toString() - Method in class edu.ucla.sspace.graph.AbstractGraph.Subgraph
 
toString() - Method in class edu.ucla.sspace.graph.AbstractGraph
Returns a description of the graph as the sequence of its edges.
toString() - Method in class edu.ucla.sspace.graph.DirectedMultigraph
Returns a description of the graph as the sequence of its edges.
toString() - Method in class edu.ucla.sspace.graph.GraphAdaptor
toString() - Method in class edu.ucla.sspace.graph.isomorphism.TypedIsomorphicGraphCounter
 
toString() - Method in class edu.ucla.sspace.graph.LabeledEdge
 
toString() - Method in class edu.ucla.sspace.graph.LabeledGraph
 
toString() - Method in class edu.ucla.sspace.graph.SimpleDirectedEdge
toString() - Method in class edu.ucla.sspace.graph.SimpleDirectedTypedEdge
 
toString() - Method in class edu.ucla.sspace.graph.SimpleEdge
toString() - Method in class edu.ucla.sspace.graph.SimpleTypedEdge
 
toString() - Method in class edu.ucla.sspace.graph.SimpleWeightedDirectedTypedEdge
 
toString() - Method in class edu.ucla.sspace.graph.SimpleWeightedEdge
toString() - Method in class edu.ucla.sspace.graph.SimpleWeightedTypedEdge
 
toString() - Method in class edu.ucla.sspace.graph.UndirectedMultigraph
Returns a description of the graph as the sequence of its edges.
toString() - Method in class edu.ucla.sspace.graph.WeightedDirectedMultigraph
Returns a description of the graph as the sequence of its edges.
toString() - Method in class edu.ucla.sspace.index.DefaultPermutationFunction
Returns the name of this class
toString() - Method in class edu.ucla.sspace.index.TernaryPermutationFunction
Returns the name of this class
toString() - Method in class edu.ucla.sspace.matrix.CorrelationTransform
Returns the name of this transform.
toString() - Method in class edu.ucla.sspace.matrix.LogEntropyTransform
Returns the name of this transform.
toString() - Method in class edu.ucla.sspace.matrix.LogLikelihoodTransform
Returns the name of this transform.
toString() - Method in class edu.ucla.sspace.matrix.MatrixFile
 
toString() - Method in class edu.ucla.sspace.matrix.NoTransform
toString() - Method in class edu.ucla.sspace.matrix.PointWiseMutualInformationTransform
Returns the name of this transform.
toString() - Method in class edu.ucla.sspace.matrix.RowMagnitudeTransform
Returns the name of this transform.
toString() - Method in class edu.ucla.sspace.matrix.TfIdfDocStripedTransform
Returns the name of this transform.
toString() - Method in class edu.ucla.sspace.matrix.TfIdfTransform
Returns the name of this transform.
toString() - Method in class edu.ucla.sspace.text.StringDocument
Returns the entire document
toString() - Method in class edu.ucla.sspace.util.Duple
 
toString() - Method in class edu.ucla.sspace.util.HashBiMap
Returns a string description of the mappings.
toString() - Method in class edu.ucla.sspace.util.HashIndexer
toString() - Method in class edu.ucla.sspace.util.HashMultiMap
Returns the string form of this multi-map
toString() - Method in class edu.ucla.sspace.util.IndexedCounter
 
toString() - Method in class edu.ucla.sspace.util.ObjectCounter
 
toString() - Method in class edu.ucla.sspace.util.ObjectIndexer
toString() - Method in class edu.ucla.sspace.util.Pair
 
toString() - Method in class edu.ucla.sspace.util.PairCounter
 
toString() - Method in class edu.ucla.sspace.util.primitive.IntIntHashMultiMap
Returns the string form of this multi-map
toString() - Method in class edu.ucla.sspace.util.primitive.IntPair
 
toString() - Method in class edu.ucla.sspace.util.SetDecorator
 
toString() - Method in class edu.ucla.sspace.util.SparseDoubleArray
 
toString() - Method in class edu.ucla.sspace.util.SparseIntArray
 
toString() - Method in class edu.ucla.sspace.util.TimeSpan
 
toString() - Method in class edu.ucla.sspace.util.TreeMultiMap
Returns the string form of this multi-map
toString() - Method in class edu.ucla.sspace.util.TrieSet
 
toString() - Method in class edu.ucla.sspace.vector.AbstractDoubleVector
Returns a string description of the full contents of this vector
toString() - Method in class edu.ucla.sspace.vector.AbstractIntegerVector
Returns a string description of the full contents of this vector
toString() - Method in class edu.ucla.sspace.vector.AbstractVector
Returns a string description of the full contents of this vector
toString(Vector) - Static method in class edu.ucla.sspace.vector.VectorIO
Convert a Vector to a String where values are separated by spaces.
toString(double[]) - Static method in class edu.ucla.sspace.vector.VectorIO
Convert a double array to a String where values are separated by spaces.
toString(int[]) - Static method in class edu.ucla.sspace.vector.VectorIO
Convert a integer array to a String where values are separated by spaces.
toWraparoundOrder(double[]) - Method in class jnt.FFT.ComplexDouble2DFFT
Return data in wraparound order.
toWraparoundOrder(double[], int) - Method in class jnt.FFT.ComplexDouble2DFFT
Return data in wraparound order.
toWraparoundOrder(double[]) - Method in class jnt.FFT.ComplexDoubleFFT
Return data in wraparound order.
toWraparoundOrder(double[], int, int) - Method in class jnt.FFT.ComplexDoubleFFT
Return data in wraparound order.
toWraparoundOrder(float[]) - Method in class jnt.FFT.ComplexFloat2DFFT
Return data in wraparound order.
toWraparoundOrder(float[], int) - Method in class jnt.FFT.ComplexFloat2DFFT
Return data in wraparound order.
toWraparoundOrder(float[]) - Method in class jnt.FFT.ComplexFloatFFT
Return data in wraparound order.
toWraparoundOrder(float[], int, int) - Method in class jnt.FFT.ComplexFloatFFT
Return data in wraparound order.
toWraparoundOrder(double[]) - Method in class jnt.FFT.RealDoubleFFT
Return data in wraparound order.
toWraparoundOrder(double[], int, int) - Method in class jnt.FFT.RealDoubleFFT
Return data in wraparound order.
toWraparoundOrder(double[]) - Method in class jnt.FFT.RealDoubleFFT_Even
Return data in wraparound order.
toWraparoundOrder(double[], int, int) - Method in class jnt.FFT.RealDoubleFFT_Even
Return data in wraparound order.
toWraparoundOrder(double[]) - Method in class jnt.FFT.RealDoubleFFT_Radix2
Return data in wraparound order.
toWraparoundOrder(double[], int, int) - Method in class jnt.FFT.RealDoubleFFT_Radix2
Return data in wraparound order.
toWraparoundOrder(float[], int) - Method in class jnt.FFT.RealFloat2DFFT_Even
Return data in wraparound order.
toWraparoundOrder(float[]) - Method in class jnt.FFT.RealFloatFFT
Return data in wraparound order.
toWraparoundOrder(float[], int, int) - Method in class jnt.FFT.RealFloatFFT
Return data in wraparound order.
toWraparoundOrder(float[]) - Method in class jnt.FFT.RealFloatFFT_Radix2
Return data in wraparound order.
toWraparoundOrder(float[], int, int) - Method in class jnt.FFT.RealFloatFFT_Radix2
Return data in wraparound order.
transform(DependencyTreeNode[]) - Method in class edu.ucla.sspace.dependency.ConjunctionTransform
Transforms the DependencyRelation links within a series of DependencyTreeNodes.
transform(DependencyTreeNode[]) - Method in interface edu.ucla.sspace.dependency.DependencyTreeTransform
Transforms the DependencyRelation links within a series of DependencyTreeNodes.
transform(DoubleVector) - Static method in class edu.ucla.sspace.fft.FastFourierTransform
Compute the Fast Fourier Transform of data leaving the result in data.
transform(File, MatrixIO.Format) - Method in class edu.ucla.sspace.matrix.BaseTransform
Transforms the matrix in the file using the an implemented method and returns a temporary file containing the result.
transform(File, MatrixIO.Format, File) - Method in class edu.ucla.sspace.matrix.BaseTransform
Transforms the input matrix using the implemented method and writes the result to the file for the output matrix.
transform(Matrix) - Method in class edu.ucla.sspace.matrix.BaseTransform
Returns a transformed matrix based on the given matrix.
transform(Matrix, Matrix) - Method in class edu.ucla.sspace.matrix.BaseTransform
Returns a transformed matrix based on the given matrix.
transform(int, int, double) - Method in class edu.ucla.sspace.matrix.CorrelationTransform.CorrelationGlobalTransform
Computes the correlation, scaled using the square root, between item row and feature column where value specifies the number of occurances.
transform(File, File, GlobalTransform) - Method in interface edu.ucla.sspace.matrix.FileTransformer
Transforms a given matrix file into a new matrix file using the provided GlobalTransform method provided.
transform(int, int, double) - Method in interface edu.ucla.sspace.matrix.GlobalTransform
Returns the transformed value for a given matrix entry.
transform(int, int, double) - Method in class edu.ucla.sspace.matrix.LogEntropyTransform.LogEntropyGlobalTransform
Calculates the entropy (information gain) where value is the number of occurances of item row with feature column.
transform(int, int, double) - Method in class edu.ucla.sspace.matrix.LogLikelihoodTransform.LogLikelihoodGlobalTransform
Computes the Log Likelihood information between the row and col with value specifying the number of occurances of row with col.
transform(File, File, GlobalTransform) - Method in class edu.ucla.sspace.matrix.MatlabSparseFileTransformer
Transforms a given matrix file into a new matrix file using the provided GlobalTransform method provided.
transform(File, MatrixIO.Format) - Method in class edu.ucla.sspace.matrix.NoTransform
Transforms the matrix in the file using the an implemented method and returns a temporary file containing the result.
transform(File, MatrixIO.Format, File) - Method in class edu.ucla.sspace.matrix.NoTransform
Transforms the input matrix using the implemented method and writes the result to the file for the output matrix.
transform(Matrix) - Method in class edu.ucla.sspace.matrix.NoTransform
Returns a transformed matrix based on the given matrix.
transform(Matrix, Matrix) - Method in class edu.ucla.sspace.matrix.NoTransform
Returns a transformed matrix based on the given matrix.
transform(int, int, double) - Method in class edu.ucla.sspace.matrix.PointWiseMutualInformationTransform.PointWiseMutualInformationGlobalTransform
Computes the point wise-mutual information between the row and col with value specifying the number of occurances of row with col.
transform(int, int, double) - Method in class edu.ucla.sspace.matrix.RowMagnitudeTransform.RowMagnitudeGlobalTransform
Computes the Term Frequency-Inverse Document Frequency for a given value where value is the observed frequency of term row in document column.
transform(int, int, double) - Method in class edu.ucla.sspace.matrix.TfIdfDocStripedTransform.TfIdfGlobalTransform
Computes the Term Frequency-Inverse Document Frequency for a given value where value is the observed frequency of term row in document column.
transform(int, int, double) - Method in class edu.ucla.sspace.matrix.TfIdfTransform.TfIdfGlobalTransform
Computes the Term Frequency-Inverse Document Frequency for a given value where value is the observed frequency of term row in document column.
Transform - Interface in edu.ucla.sspace.matrix
An interface for Matrix transformations.
transform(File, MatrixIO.Format) - Method in interface edu.ucla.sspace.matrix.Transform
Transforms the matrix in the file using the an implemented method and returns a temporary file containing the result.
transform(File, MatrixIO.Format, File) - Method in interface edu.ucla.sspace.matrix.Transform
Transforms the input matrix using the implemented method and writes the result to the file for the output matrix.
transform(Matrix) - Method in interface edu.ucla.sspace.matrix.Transform
Returns a transformed matrix based on the given matrix.
transform(Matrix, Matrix) - Method in interface edu.ucla.sspace.matrix.Transform
Returns a transformed matrix based on the given matrix.
transform(double[]) - Method in class jnt.FFT.ComplexDouble2DFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(double[], int) - Method in class jnt.FFT.ComplexDouble2DFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(double[]) - Method in class jnt.FFT.ComplexDoubleFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(double[], int, int) - Method in class jnt.FFT.ComplexDoubleFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(double[], int, int) - Method in class jnt.FFT.ComplexDoubleFFT_Mixed
 
transform(double[], int, int) - Method in class jnt.FFT.ComplexDoubleFFT_Radix2
 
transform(float[]) - Method in class jnt.FFT.ComplexFloat2DFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(float[], int) - Method in class jnt.FFT.ComplexFloat2DFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(float[]) - Method in class jnt.FFT.ComplexFloatFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(float[], int, int) - Method in class jnt.FFT.ComplexFloatFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(float[], int, int) - Method in class jnt.FFT.ComplexFloatFFT_Mixed
 
transform(float[], int, int) - Method in class jnt.FFT.ComplexFloatFFT_Radix2
 
transform(double[]) - Method in class jnt.FFT.RealDoubleFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(double[], int, int) - Method in class jnt.FFT.RealDoubleFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(double[]) - Method in class jnt.FFT.RealDoubleFFT_Even
Compute the Fast Fourier Transform of data leaving the result in data.
transform(double[], int, int) - Method in class jnt.FFT.RealDoubleFFT_Even
Compute the Fast Fourier Transform of data leaving the result in data.
transform(double[], int, int) - Method in class jnt.FFT.RealDoubleFFT_Radix2
Compute the Fast Fourier Transform of data leaving the result in data.
transform(float[]) - Method in class jnt.FFT.RealFloat2DFFT_Even
Compute the Fast Fourier Transform of data leaving the result in data.
transform(float[], int) - Method in class jnt.FFT.RealFloat2DFFT_Even
Compute the Fast Fourier Transform of data leaving the result in data.
transform(float[]) - Method in class jnt.FFT.RealFloatFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(float[], int, int) - Method in class jnt.FFT.RealFloatFFT
Compute the Fast Fourier Transform of data leaving the result in data.
transform(float[], int, int) - Method in class jnt.FFT.RealFloatFFT_Radix2
Compute the Fast Fourier Transform of data leaving the result in data.
TransformStatistics - Class in edu.ucla.sspace.matrix
A static utility class used for gather statistics that are frequently used in matrix Transform implementations.
TransformStatistics() - Constructor for class edu.ucla.sspace.matrix.TransformStatistics
 
TransformStatistics.MatrixStatistics - Class in edu.ucla.sspace.matrix
A struct recording the row, column, and matrix summations as doubles.
TransformStatistics.MatrixStatistics(double[], double[], double) - Constructor for class edu.ucla.sspace.matrix.TransformStatistics.MatrixStatistics
Creates a new TransformStatistics.MatrixStatistics instance using the given double values.
transpose(Matrix) - Static method in class edu.ucla.sspace.matrix.Matrices
Returns the transpose of the input matrix, i.e.
TransposedMatrix - Class in edu.ucla.sspace.matrix
A Matrix decorator class that tranposes the data in the backing matrix.
TransposedMatrix(Matrix) - Constructor for class edu.ucla.sspace.matrix.TransposedMatrix
Creates a Matrix that provides a transposed view of the original matrix.
TreeMultiMap<K,V> - Class in edu.ucla.sspace.util
A Red-Black tree SortedMultiMap implementation.
TreeMultiMap() - Constructor for class edu.ucla.sspace.util.TreeMultiMap
Constructs this map using the natural ordering of the keys.
TreeMultiMap(Comparator<? super K>) - Constructor for class edu.ucla.sspace.util.TreeMultiMap
Constructs this map where keys will be sorted according to the provided comparator.
TreeMultiMap(Map<? extends K, ? extends V>) - Constructor for class edu.ucla.sspace.util.TreeMultiMap
Constructs this map using the natural ordering of the keys, adding all of the provided mappings to this map.
TrieMap<V> - Class in edu.ucla.sspace.util
A trie-based Map implementation that uses String instances as keys.
TrieMap() - Constructor for class edu.ucla.sspace.util.TrieMap
Constructs an empty trie
TrieMap(Map<String, ? extends V>) - Constructor for class edu.ucla.sspace.util.TrieMap
Constructs this trie, adding all of the provided mappings
TrieSet - Class in edu.ucla.sspace.util
A space-efficient set of String instances.
TrieSet() - Constructor for class edu.ucla.sspace.util.TrieSet
Creates an empty set of strings.
TrieSet(Collection<String>) - Constructor for class edu.ucla.sspace.util.TrieSet
Creates a set of the strings contained in the collection.
TroveIntSet - Class in edu.ucla.sspace.util.primitive
 
TroveIntSet() - Constructor for class edu.ucla.sspace.util.primitive.TroveIntSet
Creates a new, empty TroveIntSet with the default capacity (4).
TroveIntSet(int) - Constructor for class edu.ucla.sspace.util.primitive.TroveIntSet
Creates a new empty TroveIntSet with the specified capacity.
TroveIntSet(Collection<? extends Integer>) - Constructor for class edu.ucla.sspace.util.primitive.TroveIntSet
Creates a new TroveIntSet containing all the integers in the provided collection
TroveIntSet(IntSet) - Constructor for class edu.ucla.sspace.util.primitive.TroveIntSet
Creates a new TroveIntSet containing all the integers in the provided set.
turkishStemmer - 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.
turkishStemmer() - Constructor for class org.tartarus.snowball.ext.turkishStemmer
 
TwentyNewsGroupsCleaner - Class in edu.ucla.sspace.tools
An informal tool which cleans the 20 NewsGroups corpus.
TwentyNewsGroupsCleaner() - Constructor for class edu.ucla.sspace.tools.TwentyNewsGroupsCleaner
 
TypedEdge<T> - Interface in edu.ucla.sspace.graph
An interface for edges in multigraphs.
TypedIsomorphicGraphCounter<T,G extends Multigraph<T,? extends TypedEdge<T>>> - Class in edu.ucla.sspace.graph.isomorphism
A special-purpose Counter that counts multigraphs based on typed isomorphism, rather than object equivalence (which may take into account vertex labeling, etc.).
TypedIsomorphicGraphCounter() - Constructor for class edu.ucla.sspace.graph.isomorphism.TypedIsomorphicGraphCounter
Creates a new MotifCounter with the default isomorphism tester.
TypedIsomorphicGraphCounter(IsomorphismTester) - Constructor for class edu.ucla.sspace.graph.isomorphism.TypedIsomorphicGraphCounter
Creates a new MotifCounter with the specified isomorphism tester.
TypedIsomorphicGraphIndexer<T,G extends Multigraph<T,? extends TypedEdge<T>>> - Class in edu.ucla.sspace.graph.isomorphism
An indexer that records only indices for non-isomorphic Multigraph instances.
TypedIsomorphicGraphIndexer() - Constructor for class edu.ucla.sspace.graph.isomorphism.TypedIsomorphicGraphIndexer
 
TypedIsomorphicGraphIndexer(Collection<? extends G>) - Constructor for class edu.ucla.sspace.graph.isomorphism.TypedIsomorphicGraphIndexer
 
TypedVF2IsomorphismTester - Class in edu.ucla.sspace.graph.isomorphism
An extension of the VF2 algorithm for detecting isomorphic graphs that tests for edge type equivalance.
TypedVF2IsomorphismTester() - Constructor for class edu.ucla.sspace.graph.isomorphism.TypedVF2IsomorphismTester
Creates a new TypedVF2IsomorphismTester instance
TypedVF2State - Class in edu.ucla.sspace.graph.isomorphism
A State implementation for testing isomorphism using the VF2 algorithm's logic with type constraints on the edges.
TypedVF2State(Graph<? extends Edge>, Graph<? extends Edge>) - Constructor for class edu.ucla.sspace.graph.isomorphism.TypedVF2State
Creates a new TypedVF2State with an empty mapping between the two graphs.
TypedVF2State(TypedVF2State) - Constructor for class edu.ucla.sspace.graph.isomorphism.TypedVF2State
Creates a new TypedVF2State with a copy of the provided state's data.
types() - Method in class edu.ucla.sspace.graph.SparseDirectedTypedEdgeSet
Returns the set of types contained within this set
types() - Method in class edu.ucla.sspace.graph.SparseTypedEdgeSet
Returns the set of types contained within this set
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.