All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wikibrain.sr.evaluation.MonolingualSRFactory Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
package org.wikibrain.sr.evaluation;

import org.wikibrain.sr.SRMetric;

/**
 * @author Shilad Sen
 */
public interface MonolingualSRFactory {
    /**
     * Creates a new, uninitialized SR metric.
     * @return
     */
    SRMetric create();

    /**
     * Returns a string describing the disambig config. Used in the results output.
     */
    String describeDisambiguator();

    /**
     * Returns a string describing the sr config. Used in the results output.
     */
    String describeMetric();

    /**
     * Returns the name of the generated metric.
     * @return
     */
    String getName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy