Update app.py
Browse files
app.py
CHANGED
@@ -114,61 +114,7 @@ block = gr.Blocks(css=css)
|
|
114 |
|
115 |
|
116 |
with block:
|
117 |
-
gr.
|
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):
|
|
|
114 |
|
115 |
|
116 |
with block:
|
117 |
+
gr.Markdown("# Whisper Speech Recognition")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
with gr.Group():
|
119 |
with gr.Box():
|
120 |
with gr.Row().style(mobile_collapse=False, equal_height=True):
|