From 68acbb9a0c7967cb90a7e3756fc94fdd8a73d154 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Wed, 29 Jan 2014 19:14:08 +0100 Subject: make use of nlp_ruby, LICENSE --- moses_1best | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'moses_1best') diff --git a/moses_1best b/moses_1best index 5c6bf9d..1a0805d 100755 --- a/moses_1best +++ b/moses_1best @@ -1,13 +1,13 @@ #!/usr/bin/env ruby -STDIN.set_encoding 'utf-8' -STDOUT.set_encoding 'utf-8' +require 'nlp_ruby' + prev_idx = nil while line = STDIN.gets line.strip! - idx = line.split('|||')[0].to_i - if idx != prev_idx + idx = splitpipe(line)[0].to_i + if idx != prev_idx puts line prev_idx = idx end -- cgit v1.2.3