How to use molto/ft_kor_test_2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="molto/ft_kor_test_2")
# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("molto/ft_kor_test_2") model = AutoModelForCTC.from_pretrained("molto/ft_kor_test_2")