Porjaz commited on
Commit
c57a3e7
·
verified ·
1 Parent(s): 3fc1cfe

Update custom_interface.py

Browse files
Files changed (1) hide show
  1. custom_interface.py +2 -0
custom_interface.py CHANGED
@@ -22,10 +22,12 @@ class ASR(Pretrained):
22
  predictions = self.hparams.test_search(encoded_outputs, self.wav_lens)[0]
23
  predicted_words = [self.hparams.tokenizer.decode_ids(prediction).split(" ") for prediction in predictions]
24
  prediction = []
 
25
  for sent in predicted_words:
26
  sent = self.filter_repetitions(sent, 3)
27
  prediction.append(sent)
28
  predicted_words = prediction
 
29
  return predicted_words
30
 
31
  def filter_repetitions(self, seq, max_repetition_length):
 
22
  predictions = self.hparams.test_search(encoded_outputs, self.wav_lens)[0]
23
  predicted_words = [self.hparams.tokenizer.decode_ids(prediction).split(" ") for prediction in predictions]
24
  prediction = []
25
+ print(predicted_words)
26
  for sent in predicted_words:
27
  sent = self.filter_repetitions(sent, 3)
28
  prediction.append(sent)
29
  predicted_words = prediction
30
+ print(predicted_words)
31
  return predicted_words
32
 
33
  def filter_repetitions(self, seq, max_repetition_length):