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 special_tokens_map.json
Browse files- special_tokens_map.json +2 -2
special_tokens_map.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
-
"bos_token":
|
| 3 |
-
"eos_token":
|
| 4 |
"pad_token": "<pad>",
|
| 5 |
"unk_token": "<unk>"
|
| 6 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"bos_token": null,
|
| 3 |
+
"eos_token": null,
|
| 4 |
"pad_token": "<pad>",
|
| 5 |
"unk_token": "<unk>"
|
| 6 |
}
|