Transformers How to use optimum/hubert-base-superb-ks with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="optimum/hubert-base-superb-ks") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("optimum/hubert-base-superb-ks")
model = AutoModelForAudioClassification.from_pretrained("optimum/hubert-base-superb-ks")