Instructions to use cchoi1022/test11 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cchoi1022/test11 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="cchoi1022/test11")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("cchoi1022/test11") model = AutoModelForCTC.from_pretrained("cchoi1022/test11") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("cchoi1022/test11")
model = AutoModelForCTC.from_pretrained("cchoi1022/test11")Quick Links
No model card
- Downloads last month
- 2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="cchoi1022/test11")