Update README.md
Browse files
README.md
CHANGED
@@ -61,7 +61,7 @@ with torch.no_grad():
|
|
61 |
logits = asr_model(features).logits
|
62 |
|
63 |
predicted_ids = torch.argmax(logits, dim=-1)
|
64 |
-
predictions = processor.batch_decode(predicted_ids)
|
65 |
```
|
66 |
|
67 |
## Training Hyperparameters
|
|
|
61 |
logits = asr_model(features).logits
|
62 |
|
63 |
predicted_ids = torch.argmax(logits, dim=-1)
|
64 |
+
predictions = processor.batch_decode(predicted_ids, skip_special_tokens=True)
|
65 |
```
|
66 |
|
67 |
## Training Hyperparameters
|