Package edu.ucla.sspace.ri

Examples of edu.ucla.sspace.ri.RandomIndexing


            riProps.put(RandomIndexing.WINDOW_SIZE_PROPERTY, prop);

        if ((prop = props.getProperty(USE_SPARSE_SEMANTICS_PROPERTY)) != null)
            riProps.put(RandomIndexing.USE_SPARSE_SEMANTICS_PROPERTY, prop);

        currentSlice = new RandomIndexing(riProps);
    }
View Full Code Here


     * the word-to-{@link TernaryVector} mapping.
     */
    protected SemanticSpace getSpace() {
        // Once all the optional properties are known and set, create the
        // RandomIndexing algorithm using them
        ri = new RandomIndexing(props);

        // note that getSpace() is called after the arg options have been
        // parsed, so this call is safe.
        if (argOptions.hasOption("loadVectors")) {
            String fileName = argOptions.getStringOption("loadVectors");
View Full Code Here

TOP

Related Classes of edu.ucla.sspace.ri.RandomIndexing

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.