Package edu.ucla.sspace.dependency

Examples of edu.ucla.sspace.dependency.UniversalRelationAcceptor


        String acceptorProp =
            properties.getProperty(DEPENDENCY_ACCEPTOR_PROPERTY);
        acceptor = (acceptorProp != null)
            ? (DependencyRelationAcceptor)
                ReflectionUtil.getObjectInstance(acceptorProp)
            : new UniversalRelationAcceptor();

        // Set up the generator vector maps.
        RandomIndexVectorGenerator indexVectorGenerator =
            new RandomIndexVectorGenerator(vectorLength, properties);
        indexMap = new GeneratorMap<TernaryVector>(indexVectorGenerator);
View Full Code Here

TOP

Related Classes of edu.ucla.sspace.dependency.UniversalRelationAcceptor

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.