Instructions to use 5p33ch3xpr/XLS-R-with-LM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use 5p33ch3xpr/XLS-R-with-LM with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="5p33ch3xpr/XLS-R-with-LM")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("5p33ch3xpr/XLS-R-with-LM") model = AutoModelForCTC.from_pretrained("5p33ch3xpr/XLS-R-with-LM") - Notebooks
- Google Colab
- Kaggle
Commit ·
708db26
1
Parent(s): d0ac8f0
Removed special chars
Browse files- tokenizer_config.json +2 -2
tokenizer_config.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
-
"bos_token":
|
| 3 |
"do_lower_case": false,
|
| 4 |
-
"eos_token":
|
| 5 |
"name_or_path": "5p33ch3xpr/XLS-R_Finetuned",
|
| 6 |
"pad_token": "[PAD]",
|
| 7 |
"processor_class": "Wav2Vec2ProcessorWithLM",
|
|
|
|
| 1 |
{
|
| 2 |
+
"bos_token": null,
|
| 3 |
"do_lower_case": false,
|
| 4 |
+
"eos_token": null,
|
| 5 |
"name_or_path": "5p33ch3xpr/XLS-R_Finetuned",
|
| 6 |
"pad_token": "[PAD]",
|
| 7 |
"processor_class": "Wav2Vec2ProcessorWithLM",
|