How to use TheRamsay/hubert-large-cs-colab with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="TheRamsay/hubert-large-cs-colab")
# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("TheRamsay/hubert-large-cs-colab") model = AutoModelForCTC.from_pretrained("TheRamsay/hubert-large-cs-colab")
How to fix it?