cfedermann / Appraise

Appraise evaluation system for manual evaluation of machine translation output
http://www.appraise.cf/
BSD 3-Clause "New" or "Revised" License
73 stars 37 forks source link

Language status page should show system counts #39

Closed mjpost closed 9 years ago

mjpost commented 10 years ago

In ascertaining whether enough HITs have been collected, it would be really helpful if the Language pair status page listed the number of systems, e.g.,

English → Czech (X systems) 519 remaining 1481 completed

cfedermann commented 10 years ago

Interesting thought; we should be able to extract the number of unique systems from the imported XML system attributes, right?

On Wed, Apr 2, 2014 at 12:21 PM, Matt Post notifications@github.com wrote:

In ascertaining whether enough HITs have been collected, it would be really helpful if the Language pair status page listed the number of systems, e.g.,

English → Czech (X systems) 519 remaining 1481 completed

— Reply to this email directly or view it on GitHubhttps://github.com/cfedermann/Appraise/issues/39 .

mjpost commented 10 years ago

Yes. This command, for example, counts them from the CSV file:

grep "^German,English" export-2014-04-02-15-18.csv | cut -d, -f 8,10,12,14,16 | tr ',' '\n' | sort -u | wc -l
cfedermann commented 9 years ago

Added in dbe1e83, this resolves the issue.