summaryrefslogtreecommitdiff
path: root/per-sentence-bleu
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-07-05 11:01:46 +0200
committerPatrick Simianer <p@simianer.de>2016-07-05 11:01:46 +0200
commit2b1d7f881c19c4d4b5afae194e02d3300c7675d0 (patch)
tree5a06ee7de98640a39244b57bb369697176b44ebf /per-sentence-bleu
parent69949dda35c3ea21d8e926e5f0a596a0a0f61c6a (diff)
mv
Diffstat (limited to 'per-sentence-bleu')
-rwxr-xr-xper-sentence-bleu29
1 files changed, 29 insertions, 0 deletions
diff --git a/per-sentence-bleu b/per-sentence-bleu
new file mode 100755
index 0000000..402f364
--- /dev/null
+++ b/per-sentence-bleu
@@ -0,0 +1,29 @@
+#!/usr/bin/env ruby
+
+require 'zipf'
+require 'trollop'
+
+def main
+ conf = Trollop::options do
+ opt :input, "input", :type => :string, :default => '-'
+ opt :references, "references", :type => :string, :required => true
+ opt :len_hack, "hack of Nakov et al", :type => :int, :default => 0
+ opt :n, "N", :default => 4
+ end
+
+ refs = ReadFile.readlines_strip conf[:references]
+ i = -1
+ input = ReadFile.new conf[:input]
+ while line = input.gets
+ i += 1
+ if line.strip == ''
+ puts 0.0
+ next
+ end
+ puts BLEU::per_sentence_bleu line.strip, refs[i], conf[:n], conf[:len_hack]
+ end
+ input.close
+end
+
+main
+