Spaces:
Sleeping
Sleeping
Commit
·
930ae9b
1
Parent(s):
c5457cf
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ embedding_model = PretrainedSpeakerEmbedding(
|
|
25 |
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
26 |
)
|
27 |
|
28 |
-
|
29 |
######################################################
|
30 |
def audio_to_text(audio, num_speakers):
|
31 |
path, error = convert_to_wav(audio)
|
@@ -46,7 +46,8 @@ def audio_to_text(audio, num_speakers):
|
|
46 |
else:
|
47 |
embeddings = make_embeddings(path, segments, duration)
|
48 |
add_speaker_labels(segments, embeddings, num_speakers)
|
49 |
-
global output
|
|
|
50 |
#short_sum=text_to_short_summary(str(output))
|
51 |
return output
|
52 |
|
|
|
25 |
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
26 |
)
|
27 |
|
28 |
+
output=""
|
29 |
######################################################
|
30 |
def audio_to_text(audio, num_speakers):
|
31 |
path, error = convert_to_wav(audio)
|
|
|
46 |
else:
|
47 |
embeddings = make_embeddings(path, segments, duration)
|
48 |
add_speaker_labels(segments, embeddings, num_speakers)
|
49 |
+
global output
|
50 |
+
output = get_output(segments)
|
51 |
#short_sum=text_to_short_summary(str(output))
|
52 |
return output
|
53 |
|