Package org.carrot2.math.matrix
Interface MatrixFactorization
-
- All Known Subinterfaces:
IterativeMatrixFactorization
- All Known Implementing Classes:
KMeansMatrixFactorization,LocalNonnegativeMatrixFactorization,NonnegativeMatrixFactorizationED,NonnegativeMatrixFactorizationKL,PartialSingularValueDecomposition
public interface MatrixFactorizationFor an m × n matrix A and given k, computes an m × k matrix U and k × n matrix V' such that A ~= UV'.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.carrot2.math.mahout.matrix.DoubleMatrix2DgetU()Returns the U matrix (base vectors matrix).org.carrot2.math.mahout.matrix.DoubleMatrix2DgetV()Returns the V matrix (coefficient matrix)
-