How to use cxlrd/revix_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="cxlrd/revix_classifier")
# Load model directly from transformers import AutoFeatureExtractor, AutoModelForAudioClassification extractor = AutoFeatureExtractor.from_pretrained("cxlrd/revix_classifier") model = AutoModelForAudioClassification.from_pretrained("cxlrd/revix_classifier")
The community tab is the place to discuss and collaborate with the HF community!