Spaces:
Runtime error
Runtime error
File size: 368 Bytes
9e43625 3ece66a 9e43625 |
1 2 3 4 5 6 7 8 |
from subprocess import Popen
from transformers import AutoProcessor, AutoModelForPreTraining
processor = AutoProcessor.from_pretrained("patrickvonplaten/mms-1b")
model = AutoModelForPreTraining.from_pretrained("patrickvonplaten/mms-1b")
Popen('python mms_infer.py --model "/path/to/asr/model" --lang lang_code --audio "/path/to/audio_1.wav" "/path/to/audio_1.wav"') |