How to use Thienpkae/test-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="Thienpkae/test-model")
# Load model directly from transformers import AutoProcessor, AutoModelForAudioClassification processor = AutoProcessor.from_pretrained("Thienpkae/test-model") model = AutoModelForAudioClassification.from_pretrained("Thienpkae/test-model")
How to fix it?