Package edu.ucla.sspace.evaluation

Source Code of edu.ucla.sspace.evaluation.DeeseEvaluator

package edu.ucla.sspace.evaluation;

import edu.ucla.sspace.common.SemanticSpace;
import edu.ucla.sspace.common.SemanticSpaceIO;


public class DeeseEvaluator {
    public static void main(String[] args) throws Exception {
        DeeseAntonymEvaluation  evaluator = new DeeseAntonymEvaluation();
        for (String file : args) {
            SemanticSpace sspace = SemanticSpaceIO.load(file);
            WordAssociationReport report = evaluator.evaluate(sspace);
            System.out.printf("%s: %.3f\n", file, report.correlation());
        }
    }
}
TOP

Related Classes of edu.ucla.sspace.evaluation.DeeseEvaluator

TOP
Copyright © 2018 www.massapi.com. 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.