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