Package ch.akuhn.hapax.linalg

Examples of ch.akuhn.hapax.linalg.SVD


    public LatentSemanticIndex createIndex() {
        return this.createIndex(DEFAULT_DIMENSIONS);
    }

    public LatentSemanticIndex createIndex(int dimensions) {
        return new LatentSemanticIndex(terms, documents, new SVD(matrix, dimensions))
                .initializeGlobalWeightings(globalWeightings)
                .initializeDocumentLength(lengthArray.asIntArray());
    }
View Full Code Here

TOP

Related Classes of ch.akuhn.hapax.linalg.SVD

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.