From 2b1d7f881c19c4d4b5afae194e02d3300c7675d0 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Tue, 5 Jul 2016 11:01:46 +0200 Subject: mv --- per-sentence-bleu | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 per-sentence-bleu (limited to 'per-sentence-bleu') 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 + -- cgit v1.2.3