From 1b76936d1a9d01cf99a086a3718060a64329afaa Mon Sep 17 00:00:00 2001 From: Manuel Romero Date: Tue, 8 Sep 2020 10:22:57 +0200 Subject: [PATCH] Fix typo (#6994) --- examples/distillation/lm_seqs_dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/distillation/lm_seqs_dataset.py b/examples/distillation/lm_seqs_dataset.py index 8f444f4e0e..0c793942c6 100644 --- a/examples/distillation/lm_seqs_dataset.py +++ b/examples/distillation/lm_seqs_dataset.py @@ -101,7 +101,7 @@ class LmSeqsDataset(Dataset): def remove_empty_sequences(self): """ - Too short sequences are simply removed. This could be tunedd. + Too short sequences are simply removed. This could be tuned. """ init_size = len(self) indices = self.lengths > 11