Instructions to use cchoi1022/test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cchoi1022/test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="cchoi1022/test")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("cchoi1022/test") model = AutoModelForCTC.from_pretrained("cchoi1022/test") - Notebooks
- Google Colab
- Kaggle
Update tokenizer_config.json
Browse files- tokenizer_config.json +2 -2
tokenizer_config.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
-
"bos_token":
|
| 3 |
"do_lower_case": true,
|
| 4 |
"do_normalize": true,
|
| 5 |
-
"eos_token":
|
| 6 |
"name_or_path": "facebook/wav2vec2-large-960h-lv60-self",
|
| 7 |
"pad_token": "<pad>",
|
| 8 |
"processor_class": "Wav2Vec2ProcessorWithLM",
|
|
|
|
| 1 |
{
|
| 2 |
+
"bos_token": null,
|
| 3 |
"do_lower_case": true,
|
| 4 |
"do_normalize": true,
|
| 5 |
+
"eos_token": null,
|
| 6 |
"name_or_path": "facebook/wav2vec2-large-960h-lv60-self",
|
| 7 |
"pad_token": "<pad>",
|
| 8 |
"processor_class": "Wav2Vec2ProcessorWithLM",
|