Sha256: 0bd040a2f5d9b8ef3477189393c364962e5bd9c79b90b48287229774d0697bef
Contents?: true
Size: 493 Bytes
Versions: 45
Compression:
Stored size: 493 Bytes
Contents
package lingscope.drivers; import lingscope.algorithms.AnnotationComparer; /** * Compares annotations between a gold and test file * @author shashank */ public class AnnotationComparerDriver { /** * * @param args * 0 - gold file * 1 - test file */ public static void main(String[] args) { AnnotationComparer comparer = new AnnotationComparer(10); comparer.compareAnnotationFiles(args[0], args[1]); comparer.printStats(); } }
Version data entries
45 entries across 45 versions & 1 rubygems