Skip to content

Commit 2e97f81

Browse files
committed
This file should be in last check-in: 1. Renamed blanc_sys to blanc; 2. Removed BLANC_UNMODIFFIED; 3. Changed BLANC F-score to BLANC score.
1 parent 21339da commit 2e97f81

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

scorer.pl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ BEGIN
2020
ceafm: CEAF (Luo et al, 2005) using mention-based similarity
2121
ceafe: CEAF (Luo et al, 2005) using entity-based similarity
2222
blanc: BLANC
23-
blanc_sys: System BLANC
2423
all: uses all the metrics to score
2524
2625
keys_file: file with expected coreference chains in SemEval format
@@ -37,14 +36,14 @@ BEGIN
3736
}
3837

3938
my $metric = shift (@ARGV);
40-
if ($metric !~ /^(muc|bcub|ceafm|ceafe|blanc|blanc_sys|all)/i) {
39+
if ($metric !~ /^(muc|bcub|ceafm|ceafe|blanc|all)/i) {
4140
print "Invalid metric\n";
4241
exit;
4342
}
4443

4544

4645
if ($metric eq 'all') {
47-
foreach my $m ('muc', 'bcub', 'ceafm', 'ceafe', 'blanc', 'blanc_sys') {
46+
foreach my $m ('muc', 'bcub', 'ceafm', 'ceafe', 'blanc') {
4847
print "\nMETRIC $m:\n";
4948
&CorScorer::Score( $m, @ARGV );
5049
}

0 commit comments

Comments
 (0)