Spaces:
Runtime error
Runtime error
salmanmapkar
commited on
Commit
•
f20220f
1
Parent(s):
65e44dc
Update app.py
Browse files
app.py
CHANGED
@@ -103,7 +103,7 @@ def Transcribe_V1(NumberOfSpeakers, SpeakerNames="", audio="temp_audio.wav"):
|
|
103 |
return f"dz_{audio}.wav", dzList, segments
|
104 |
|
105 |
def transcribe(dz_audio):
|
106 |
-
model = whisper.load_model("
|
107 |
result = model.transcribe(dz_audio)
|
108 |
# for _ in result['segments']:
|
109 |
# print(_['start'], _['end'], _['text'])
|
@@ -138,7 +138,7 @@ def Transcribe_V1(NumberOfSpeakers, SpeakerNames="", audio="temp_audio.wav"):
|
|
138 |
|
139 |
|
140 |
def Transcribe_V2(num_speakers, speaker_names, audio="temp_audio.wav"):
|
141 |
-
model = whisper.load_model("
|
142 |
embedding_model = PretrainedSpeakerEmbedding(
|
143 |
"speechbrain/spkrec-ecapa-voxceleb",
|
144 |
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
|
|
103 |
return f"dz_{audio}.wav", dzList, segments
|
104 |
|
105 |
def transcribe(dz_audio):
|
106 |
+
model = whisper.load_model("large-v2")
|
107 |
result = model.transcribe(dz_audio)
|
108 |
# for _ in result['segments']:
|
109 |
# print(_['start'], _['end'], _['text'])
|
|
|
138 |
|
139 |
|
140 |
def Transcribe_V2(num_speakers, speaker_names, audio="temp_audio.wav"):
|
141 |
+
model = whisper.load_model("large-v2")
|
142 |
embedding_model = PretrainedSpeakerEmbedding(
|
143 |
"speechbrain/spkrec-ecapa-voxceleb",
|
144 |
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|