Package edu.ucla.sspace.matrix.factorization

Examples of edu.ucla.sspace.matrix.factorization.NonNegativeMatrixFactorizationMultiplicative


            if (argOptions.hasOption("preprocess"))
                transform = ReflectionUtil.getObjectInstance(
                        argOptions.getStringOption("preprocess"));
            String algName = argOptions.getStringOption("svdAlgorithm", "ANY");
            MatrixFactorization factorization =
                new NonNegativeMatrixFactorizationMultiplicative();
            basis = new StringBasisMapping();

            throw new IOException("Not sure what to do");
//             return new LatentSemanticAnalysis(
//                 true, dimensions, transform, factorization, false, basis);
View Full Code Here


        int dimensions = options.getIntOption('r');
        MatrixFactorization reducer = null;
        Format format = null;
        if (options.getStringOption('a').equals("NMF")) {
            reducer = new NonNegativeMatrixFactorizationMultiplicative();
            format = Format.MATLAB_SPARSE;
        } else if (options.getStringOption('a').equals("SVD")) {
            reducer = SVD.getFastestAvailableFactorization();
            format = Format.SVDLIBC_SPARSE_BINARY;
        } else
View Full Code Here

TOP

Related Classes of edu.ucla.sspace.matrix.factorization.NonNegativeMatrixFactorizationMultiplicative

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.