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)