aikitty commited on
Commit
e792387
·
verified ·
1 Parent(s): 5133334

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from huggingsound import SpeechRecognitionModel
2
+
3
+ model = SpeechRecognitionModel("jonatasgrosman/wav2vec2-large-xlsr-53-chinese-zh-cn")
4
+ audio_paths = ["/path/to/file.mp3", "/path/to/another_file.wav"]
5
+
6
+ transcriptions = model.transcribe(audio_paths)