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