From 8151031373c08ccd714a99f50783eafcb54d2010 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Wed, 10 Jun 2015 14:48:34 +0200 Subject: undo unfortunate variable naming: cfg -> conf! --- per_sentence_bleu | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'per_sentence_bleu') diff --git a/per_sentence_bleu b/per_sentence_bleu index 5bacd1a..402f364 100755 --- a/per_sentence_bleu +++ b/per_sentence_bleu @@ -4,23 +4,23 @@ require 'zipf' require 'trollop' def main - cfg = Trollop::options do + 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 cfg[:references] + refs = ReadFile.readlines_strip conf[:references] i = -1 - input = ReadFile.new cfg[:input] + 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], cfg[:n], cfg[:len_hack] + puts BLEU::per_sentence_bleu line.strip, refs[i], conf[:n], conf[:len_hack] end input.close end -- cgit v1.2.3