Spaces:
Running
on
Zero
Running
on
Zero
Test
#108
by
osanseviero
- opened
- README.md +2 -2
- app.py +193 -99
- packages.txt +0 -1
- requirements.txt +1 -3
README.md
CHANGED
|
@@ -4,9 +4,9 @@ emoji: π
|
|
| 4 |
colorFrom: pink
|
| 5 |
colorTo: yellow
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 4 |
colorFrom: pink
|
| 5 |
colorTo: yellow
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 3.41.2
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
CHANGED
|
@@ -1,108 +1,202 @@
|
|
| 1 |
-
import torch
|
| 2 |
-
|
| 3 |
-
import spaces
|
| 4 |
-
import gradio as gr
|
| 5 |
-
import yt_dlp as youtube_dl
|
| 6 |
-
from transformers import pipeline
|
| 7 |
-
from transformers.pipelines.audio_utils import ffmpeg_read
|
| 8 |
-
|
| 9 |
-
import tempfile
|
| 10 |
import os
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
-
|
| 13 |
-
BATCH_SIZE = 8
|
| 14 |
-
FILE_LIMIT_MB = 1000
|
| 15 |
-
YT_LENGTH_LIMIT_S = 3600 # limit to 1 hour YouTube files
|
| 16 |
-
|
| 17 |
-
device = 0 if torch.cuda.is_available() else "cpu"
|
| 18 |
-
|
| 19 |
-
pipe = pipeline(
|
| 20 |
-
task="automatic-speech-recognition",
|
| 21 |
-
model=MODEL_NAME,
|
| 22 |
-
chunk_length_s=30,
|
| 23 |
-
device=device,
|
| 24 |
-
)
|
| 25 |
-
|
| 26 |
-
@spaces.GPU
|
| 27 |
-
def transcribe(inputs, task):
|
| 28 |
-
if inputs is None:
|
| 29 |
-
raise gr.Error("No audio file submitted! Please upload or record an audio file before submitting your request.")
|
| 30 |
-
|
| 31 |
-
text = pipe(inputs, batch_size=BATCH_SIZE, generate_kwargs={"task": task}, return_timestamps=True)["text"]
|
| 32 |
-
return text
|
| 33 |
|
|
|
|
| 34 |
|
| 35 |
-
def _return_yt_html_embed(yt_url):
|
| 36 |
-
video_id = yt_url.split("?v=")[-1]
|
| 37 |
-
HTML_str = (
|
| 38 |
-
f'<center> <iframe width="500" height="320" src="https://www.youtube.com/embed/{video_id}"> </iframe>'
|
| 39 |
-
" </center>"
|
| 40 |
-
)
|
| 41 |
-
return HTML_str
|
| 42 |
|
| 43 |
-
|
| 44 |
-
|
|
|
|
|
|
|
| 45 |
|
| 46 |
-
|
| 47 |
-
info = info_loader.extract_info(yt_url, download=False)
|
| 48 |
-
except youtube_dl.utils.DownloadError as err:
|
| 49 |
-
raise gr.Error(str(err))
|
| 50 |
|
| 51 |
-
|
| 52 |
-
file_h_m_s = file_length.split(":")
|
| 53 |
-
file_h_m_s = [int(sub_length) for sub_length in file_h_m_s]
|
| 54 |
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
if len(file_h_m_s) == 2:
|
| 58 |
-
file_h_m_s.insert(0, 0)
|
| 59 |
-
file_length_s = file_h_m_s[0] * 3600 + file_h_m_s[1] * 60 + file_h_m_s[2]
|
| 60 |
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import os
|
| 2 |
+
os.system("pip install git+https://github.com/openai/whisper.git")
|
| 3 |
+
import gradio as gr
|
| 4 |
+
import whisper
|
| 5 |
|
| 6 |
+
from share_btn import community_icon_html, loading_icon_html, share_js
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
+
model = whisper.load_model("small")
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
+
|
| 12 |
+
def inference(audio):
|
| 13 |
+
audio = whisper.load_audio(audio)
|
| 14 |
+
audio = whisper.pad_or_trim(audio)
|
| 15 |
|
| 16 |
+
mel = whisper.log_mel_spectrogram(audio).to(model.device)
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
+
_, probs = model.detect_language(mel)
|
|
|
|
|
|
|
| 19 |
|
| 20 |
+
options = whisper.DecodingOptions(fp16 = False)
|
| 21 |
+
result = whisper.decode(model, mel, options)
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
+
print(result.text)
|
| 24 |
+
return result.text, gr.update(visible=True), gr.update(visible=True), gr.update(visible=True)
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
css = """
|
| 30 |
+
.gradio-container {
|
| 31 |
+
font-family: 'IBM Plex Sans', sans-serif;
|
| 32 |
+
}
|
| 33 |
+
.gr-button {
|
| 34 |
+
color: white;
|
| 35 |
+
border-color: black;
|
| 36 |
+
background: black;
|
| 37 |
+
}
|
| 38 |
+
input[type='range'] {
|
| 39 |
+
accent-color: black;
|
| 40 |
+
}
|
| 41 |
+
.dark input[type='range'] {
|
| 42 |
+
accent-color: #dfdfdf;
|
| 43 |
+
}
|
| 44 |
+
.container {
|
| 45 |
+
max-width: 730px;
|
| 46 |
+
margin: auto;
|
| 47 |
+
padding-top: 1.5rem;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
.details:hover {
|
| 51 |
+
text-decoration: underline;
|
| 52 |
+
}
|
| 53 |
+
.gr-button {
|
| 54 |
+
white-space: nowrap;
|
| 55 |
+
}
|
| 56 |
+
.gr-button:focus {
|
| 57 |
+
border-color: rgb(147 197 253 / var(--tw-border-opacity));
|
| 58 |
+
outline: none;
|
| 59 |
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
| 60 |
+
--tw-border-opacity: 1;
|
| 61 |
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
| 62 |
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px var(--tw-ring-offset-width)) var(--tw-ring-color);
|
| 63 |
+
--tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity));
|
| 64 |
+
--tw-ring-opacity: .5;
|
| 65 |
+
}
|
| 66 |
+
.footer {
|
| 67 |
+
margin-bottom: 45px;
|
| 68 |
+
margin-top: 35px;
|
| 69 |
+
text-align: center;
|
| 70 |
+
border-bottom: 1px solid #e5e5e5;
|
| 71 |
+
}
|
| 72 |
+
.footer>p {
|
| 73 |
+
font-size: .8rem;
|
| 74 |
+
display: inline-block;
|
| 75 |
+
padding: 0 10px;
|
| 76 |
+
transform: translateY(10px);
|
| 77 |
+
background: white;
|
| 78 |
+
}
|
| 79 |
+
.dark .footer {
|
| 80 |
+
border-color: #303030;
|
| 81 |
+
}
|
| 82 |
+
.dark .footer>p {
|
| 83 |
+
background: #0b0f19;
|
| 84 |
+
}
|
| 85 |
+
.prompt h4{
|
| 86 |
+
margin: 1.25em 0 .25em 0;
|
| 87 |
+
font-weight: bold;
|
| 88 |
+
font-size: 115%;
|
| 89 |
+
}
|
| 90 |
+
.animate-spin {
|
| 91 |
+
animation: spin 1s linear infinite;
|
| 92 |
+
}
|
| 93 |
+
@keyframes spin {
|
| 94 |
+
from {
|
| 95 |
+
transform: rotate(0deg);
|
| 96 |
+
}
|
| 97 |
+
to {
|
| 98 |
+
transform: rotate(360deg);
|
| 99 |
+
}
|
| 100 |
+
}
|
| 101 |
+
#share-btn-container {
|
| 102 |
+
display: flex; margin-top: 1.5rem !important; padding-left: 0.5rem !important; padding-right: 0.5rem !important; background-color: #000000; justify-content: center; align-items: center; border-radius: 9999px !important; width: 13rem;
|
| 103 |
+
}
|
| 104 |
+
#share-btn {
|
| 105 |
+
all: initial; color: #ffffff;font-weight: 600; cursor:pointer; font-family: 'IBM Plex Sans', sans-serif; margin-left: 0.5rem !important; padding-top: 0.25rem !important; padding-bottom: 0.25rem !important;
|
| 106 |
+
}
|
| 107 |
+
#share-btn * {
|
| 108 |
+
all: unset;
|
| 109 |
+
}
|
| 110 |
+
"""
|
| 111 |
+
|
| 112 |
+
block = gr.Blocks(css=css)
|
| 113 |
+
|
| 114 |
+
|
| 115 |
+
|
| 116 |
+
with block:
|
| 117 |
+
gr.HTML(
|
| 118 |
+
"""
|
| 119 |
+
<div style="text-align: center; max-width: 650px; margin: 0 auto;">
|
| 120 |
+
<div
|
| 121 |
+
style="
|
| 122 |
+
display: inline-flex;
|
| 123 |
+
align-items: center;
|
| 124 |
+
gap: 0.8rem;
|
| 125 |
+
font-size: 1.75rem;
|
| 126 |
+
"
|
| 127 |
+
>
|
| 128 |
+
<svg
|
| 129 |
+
width="0.65em"
|
| 130 |
+
height="0.65em"
|
| 131 |
+
viewBox="0 0 115 115"
|
| 132 |
+
fill="none"
|
| 133 |
+
xmlns="http://www.w3.org/2000/svg"
|
| 134 |
+
>
|
| 135 |
+
<rect width="23" height="23" fill="white"></rect>
|
| 136 |
+
<rect y="69" width="23" height="23" fill="white"></rect>
|
| 137 |
+
<rect x="23" width="23" height="23" fill="#AEAEAE"></rect>
|
| 138 |
+
<rect x="23" y="69" width="23" height="23" fill="#AEAEAE"></rect>
|
| 139 |
+
<rect x="46" width="23" height="23" fill="white"></rect>
|
| 140 |
+
<rect x="46" y="69" width="23" height="23" fill="white"></rect>
|
| 141 |
+
<rect x="69" width="23" height="23" fill="black"></rect>
|
| 142 |
+
<rect x="69" y="69" width="23" height="23" fill="black"></rect>
|
| 143 |
+
<rect x="92" width="23" height="23" fill="#D9D9D9"></rect>
|
| 144 |
+
<rect x="92" y="69" width="23" height="23" fill="#AEAEAE"></rect>
|
| 145 |
+
<rect x="115" y="46" width="23" height="23" fill="white"></rect>
|
| 146 |
+
<rect x="115" y="115" width="23" height="23" fill="white"></rect>
|
| 147 |
+
<rect x="115" y="69" width="23" height="23" fill="#D9D9D9"></rect>
|
| 148 |
+
<rect x="92" y="46" width="23" height="23" fill="#AEAEAE"></rect>
|
| 149 |
+
<rect x="92" y="115" width="23" height="23" fill="#AEAEAE"></rect>
|
| 150 |
+
<rect x="92" y="69" width="23" height="23" fill="white"></rect>
|
| 151 |
+
<rect x="69" y="46" width="23" height="23" fill="white"></rect>
|
| 152 |
+
<rect x="69" y="115" width="23" height="23" fill="white"></rect>
|
| 153 |
+
<rect x="69" y="69" width="23" height="23" fill="#D9D9D9"></rect>
|
| 154 |
+
<rect x="46" y="46" width="23" height="23" fill="black"></rect>
|
| 155 |
+
<rect x="46" y="115" width="23" height="23" fill="black"></rect>
|
| 156 |
+
<rect x="46" y="69" width="23" height="23" fill="black"></rect>
|
| 157 |
+
<rect x="23" y="46" width="23" height="23" fill="#D9D9D9"></rect>
|
| 158 |
+
<rect x="23" y="115" width="23" height="23" fill="#AEAEAE"></rect>
|
| 159 |
+
<rect x="23" y="69" width="23" height="23" fill="black"></rect>
|
| 160 |
+
</svg>
|
| 161 |
+
<h1 style="font-weight: 900; margin-bottom: 7px;">
|
| 162 |
+
Whisper
|
| 163 |
+
</h1>
|
| 164 |
+
</div>
|
| 165 |
+
<p style="margin-bottom: 10px; font-size: 94%">
|
| 166 |
+
Whisper is a general-purpose speech recognition model. It is trained on a large dataset of diverse audio and is also a multi-task model that can perform multilingual speech recognition as well as speech translation and language identification. This demo cuts audio after around 30 secs.
|
| 167 |
+
</p>
|
| 168 |
+
<p>You can skip the queue by using google colab for the space: <a href="https://colab.research.google.com/drive/1WJ98KHgZxFGrHiMm4TyWZllSew_Af_ff?usp=sharing"><img data-canonical-src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab" src="https://camo.githubusercontent.com/84f0493939e0c4de4e6dbe113251b4bfb5353e57134ffd9fcab6b8714514d4d1/68747470733a2f2f636f6c61622e72657365617263682e676f6f676c652e636f6d2f6173736574732f636f6c61622d62616467652e737667"></a></p>
|
| 169 |
+
</div>
|
| 170 |
+
"""
|
| 171 |
+
)
|
| 172 |
+
with gr.Group():
|
| 173 |
+
with gr.Box():
|
| 174 |
+
with gr.Row().style(mobile_collapse=False, equal_height=True):
|
| 175 |
+
audio = gr.Audio(
|
| 176 |
+
label="Input Audio",
|
| 177 |
+
show_label=False,
|
| 178 |
+
source="microphone",
|
| 179 |
+
type="filepath"
|
| 180 |
+
)
|
| 181 |
+
|
| 182 |
+
btn = gr.Button("Transcribe")
|
| 183 |
+
text = gr.Textbox(show_label=False, elem_id="result-textarea")
|
| 184 |
+
with gr.Group(elem_id="share-btn-container"):
|
| 185 |
+
community_icon = gr.HTML(community_icon_html, visible=False)
|
| 186 |
+
loading_icon = gr.HTML(loading_icon_html, visible=False)
|
| 187 |
+
share_button = gr.Button("Share to community", elem_id="share-btn", visible=False)
|
| 188 |
+
|
| 189 |
+
|
| 190 |
+
|
| 191 |
+
|
| 192 |
+
btn.click(inference, inputs=[audio], outputs=[text, community_icon, loading_icon, share_button])
|
| 193 |
+
share_button.click(None, [], [], _js=share_js)
|
| 194 |
+
|
| 195 |
+
gr.HTML('''
|
| 196 |
+
<div class="footer">
|
| 197 |
+
<p>Model by <a href="https://github.com/openai/whisper" style="text-decoration: underline;" target="_blank">OpenAI</a> - Gradio Demo by π€ Hugging Face
|
| 198 |
+
</p>
|
| 199 |
+
</div>
|
| 200 |
+
''')
|
| 201 |
+
|
| 202 |
+
block.launch()
|
packages.txt
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
ffmpeg
|
|
|
|
|
|
requirements.txt
CHANGED
|
@@ -1,3 +1 @@
|
|
| 1 |
-
|
| 2 |
-
torch
|
| 3 |
-
yt-dlp
|
|
|
|
| 1 |
+
transformers
|
|
|
|
|
|