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 vocab.json
Browse files- vocab.json +1 -1
vocab.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"'": 27,
|
| 3 |
-
"<
|
| 4 |
"<pad>": 0,
|
| 5 |
"<s>": 1,
|
| 6 |
"<unk>": 3,
|
|
|
|
| 1 |
{
|
| 2 |
"'": 27,
|
| 3 |
+
"</s>": 2,
|
| 4 |
"<pad>": 0,
|
| 5 |
"<s>": 1,
|
| 6 |
"<unk>": 3,
|