From 54e52cf3e385abb32985f6f41c7658769cbc914c Mon Sep 17 00:00:00 2001 From: Kyunghyun Cho Date: Wed, 25 Nov 2015 19:01:39 -0500 Subject: [PATCH] removed debug --- apply_bpe.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apply_bpe.py b/apply_bpe.py index 840efb0..736e822 100755 --- a/apply_bpe.py +++ b/apply_bpe.py @@ -46,10 +46,6 @@ class BPE(object): for item in new_word[:-1]: output.append(item + self.separator) output.append(new_word[-1]) - print '!!!!!!!!!!!!!!' - print sentence - print output - print '!!!!!!!!!!!!!!' return ' '.join(output)