Update README.md
Browse files
README.md
CHANGED
|
@@ -59,10 +59,10 @@ accelerate launch student-teacher-distillation-streaming.py --freeze_encoder --k
|
|
| 59 |
>>> predicted_ids = model.generate(input_features)
|
| 60 |
>>> # decode token ids to text
|
| 61 |
>>> transcription = processor.batch_decode(predicted_ids, skip_special_tokens=False)
|
| 62 |
-
['<|startoftranscript|><|en|><|transcribe|><|notimestamps|>
|
| 63 |
|
| 64 |
>>> transcription = processor.batch_decode(predicted_ids, skip_special_tokens=True)
|
| 65 |
-
['
|
| 66 |
```
|
| 67 |
|
| 68 |
## Limitations
|
|
|
|
| 59 |
>>> predicted_ids = model.generate(input_features)
|
| 60 |
>>> # decode token ids to text
|
| 61 |
>>> transcription = processor.batch_decode(predicted_ids, skip_special_tokens=False)
|
| 62 |
+
['<|startoftranscript|><|en|><|transcribe|><|notimestamps|> Mr. Quilter is the apostle of the middle classes and we are glad to welcome his gospel.<|endoftext|>']
|
| 63 |
|
| 64 |
>>> transcription = processor.batch_decode(predicted_ids, skip_special_tokens=True)
|
| 65 |
+
[' Mr. Quilter is the apostle of the middle classes and we are glad to welcome his gospel.']
|
| 66 |
```
|
| 67 |
|
| 68 |
## Limitations
|