Uses of Interface
elki.data.SparseFeatureVector
-
Packages that use SparseFeatureVector Package Description elki.data Basic classes for different data types, database object types and label types.elki.itemsetmining Algorithms for frequent itemset mining such as APRIORI. -
-
Uses of SparseFeatureVector in elki.data
Subinterfaces of SparseFeatureVector in elki.data Modifier and Type Interface Description interfaceSparseNumberVectorCombines the SparseFeatureVector and NumberVector.Classes in elki.data that implement SparseFeatureVector Modifier and Type Class Description classBitVectorVector using a dense bit set encoding, based onlong[]storage.classSparseByteVectorSparse vector type, usingbyte[]for storing the values, andint[]for storing the indexes, approximately 5 bytes per non-zero value (limited to -128..+127).classSparseDoubleVectorSparse vector type, usingdouble[]for storing the values, andint[]for storing the indexes, approximately 12 bytes per non-zero value.classSparseFloatVectorSparse vector type, usingfloat[]for storing the values, andint[]for storing the indexes, approximately 8 bytes per non-zero value.classSparseIntegerVectorSparse vector type, usingint[]for storing the values, andint[]for storing the indexes, approximately 8 bytes per non-zero integer value.classSparseShortVectorSparse vector type, usingshort[]for storing the values, andint[]for storing the indexes, approximately 6 bytes per non-zero value. -
Uses of SparseFeatureVector in elki.itemsetmining
Method parameters in elki.itemsetmining with type arguments of type SparseFeatureVector Modifier and Type Method Description protected java.util.List<OneItemset>APRIORI. buildFrequentOneItemsets(Relation<? extends SparseFeatureVector<?>> relation, int dim, int needed)Build the 1-itemsets.
-