Transformers How to use mispeech/ced-tiny with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="mispeech/ced-tiny", trust_remote_code=True) # Load model directly
from transformers import AutoModelForAudioClassification
model = AutoModelForAudioClassification.from_pretrained("mispeech/ced-tiny", trust_remote_code=True, dtype="auto")