sanchit-gandhi HF staff commited on
Commit
9c2d9a5
1 Parent(s): 51c1a74

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -6
app.py CHANGED
@@ -66,9 +66,11 @@ mf_transcribe = gr.Interface(
66
  theme="huggingface",
67
  title="Whisper Speaker Diarization: Transcribe Audio",
68
  description=(
69
- "Transcribe audio files with speaker diarization using 🤗 Speechbox. Demo uses the pre-trained checkpoint"
70
- f" [Whisper Tiny](https://huggingface.co/openai/whisper-tiny) for the ASR transcriptions and"
71
- f" [PyAnnote Audio](https://huggingface.co/pyannote/speaker-diarization) to label the speakers."
 
 
72
  ),
73
  examples=[
74
  ["./processed.wav", True],
@@ -88,9 +90,11 @@ yt_transcribe = gr.Interface(
88
  theme="huggingface",
89
  title="Whisper Speaker Diarization: Transcribe YouTube",
90
  description=(
91
- "Transcribe YouTube videos with speaker diarization using 🤗 Speechbox. Demo uses the pre-trained checkpoint"
92
- f" [Whisper Tiny](https://huggingface.co/openai/whisper-tiny) for the ASR transcriptions and"
93
- f" [PyAnnote Audio](https://huggingface.co/pyannote/speaker-diarization) to label the speakers."
 
 
94
  ),
95
  examples=[
96
  ["https://www.youtube.com/watch?v=9dAWIPixYxc", True],
 
66
  theme="huggingface",
67
  title="Whisper Speaker Diarization: Transcribe Audio",
68
  description=(
69
+ "Transcribe audio files with speaker diarization using [🤗 Speechbox](https://github.com/huggingface/speechbox/). "
70
+ "Demo uses the pre-trained checkpoint [Whisper Tiny](https://huggingface.co/openai/whisper-tiny) for the ASR "
71
+ "transcriptions and [pyannote.audio](https://huggingface.co/pyannote/speaker-diarization) to label the speakers."
72
+ "\n\n"
73
+ "Check out the repo here: https://github.com/huggingface/speechbox/"
74
  ),
75
  examples=[
76
  ["./processed.wav", True],
 
90
  theme="huggingface",
91
  title="Whisper Speaker Diarization: Transcribe YouTube",
92
  description=(
93
+ "Transcribe YouTube videos with speaker diarization using [🤗 Speechbox](https://github.com/huggingface/speechbox/). "
94
+ "Demo uses the pre-trained checkpoint [Whisper Tiny](https://huggingface.co/openai/whisper-tiny) for the ASR "
95
+ "transcriptions and [pyannote.audio](https://huggingface.co/pyannote/speaker-diarization) to label the speakers."
96
+ "\n\n"
97
+ "Check out the repo here: https://github.com/huggingface/speechbox/"
98
  ),
99
  examples=[
100
  ["https://www.youtube.com/watch?v=9dAWIPixYxc", True],