diff options
author | Patrick Simianer <p@simianer.de> | 2016-06-03 13:34:18 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-06-03 13:34:18 +0200 |
commit | aeec004a2d99b595365e991d66d959adb010ae97 (patch) | |
tree | ff4270a1122bda0070f60a4561553a07070ac28e /views | |
parent | 1c3052dc103b8251c03c0cbabfd9bbf61da08708 (diff) |
NOGRAMMAR, summary, debug/admin, sessions, phrase2_extraction fix
Diffstat (limited to 'views')
-rw-r--r-- | views/summary.haml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/views/summary.haml b/views/summary.haml new file mode 100644 index 0000000..29dc0ad --- /dev/null +++ b/views/summary.haml @@ -0,0 +1,53 @@ +- require 'zipf' +!!! +%html + %head + %title Summary (Session #{session_key}) + %link(rel="stylesheet" type="text/css" href="debug.css") + %script{:src => "http://postedit.cl.uni-heidelberg.de/js/jquery.min.js"} + %script{:src => "http://postedit.cl.uni-heidelberg.de/js/jquery.tablesorter.min.js"} + %script{:src => "http://postedit.cl.uni-heidelberg.de/js/debug.js"} + %body + %h1 Summary + %p (Session #{session_key}) + %p Data is shown in the MT system's formatting. BLEU is calculated without smoothing. + %table + %tr + %td + #{"#"} + %td + %strong Source + %td + %strong + Post-Edit + %td + %strong + Reference + %td + %strong + BLEU + %td + %strong + TER + %td + %strong + Keystrokes + %td + %strong + Mouse actions + %td + %strong + Duration + - data["post_edits"].each_with_index do |pe,j| + %tr + %td.center #{j+1}. + %td #{data["source_segments"][j]} + %td #{pe} + %td #{data["references"][j]} + %td.center #{(BLEU::per_sentence_bleu(pe, [data["references"][j]], 4, 0)*100).round 2}% + %td.center #{ter_scores[j]} + %td.center #{data["count_kbd"][j]} + %td.center #{data["count_click"][j]} + %td.center #{(data["durations"][j]/1000).round 1}s + + |