Spaces:
Runtime error
Runtime error
Commit
·
e2afe6d
1
Parent(s):
20ee1f0
changed the font of title
Browse files
app.py
CHANGED
|
@@ -41,7 +41,14 @@ def rt_transcribe(audio, state=""):
|
|
| 41 |
demo = gr.Blocks()
|
| 42 |
examples=[["examples/example1.mp3"], ["examples/example2.mp3"],["examples/example3.mp3"]]
|
| 43 |
|
|
|
|
| 44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
|
| 47 |
description = """
|
|
@@ -63,7 +70,7 @@ mf_transcribe = gr.Interface(
|
|
| 63 |
],
|
| 64 |
outputs="text",
|
| 65 |
theme="huggingface",
|
| 66 |
-
title=
|
| 67 |
description= description ,
|
| 68 |
allow_flagging="never",
|
| 69 |
examples=examples,
|
|
@@ -78,7 +85,7 @@ rt_transcribe = gr.Interface(
|
|
| 78 |
outputs=[ "textbox",
|
| 79 |
"state"],
|
| 80 |
theme="huggingface",
|
| 81 |
-
title=
|
| 82 |
description= description ,
|
| 83 |
allow_flagging="never",
|
| 84 |
live=True,
|
|
|
|
| 41 |
demo = gr.Blocks()
|
| 42 |
examples=[["examples/example1.mp3"], ["examples/example2.mp3"],["examples/example3.mp3"]]
|
| 43 |
|
| 44 |
+
title ="""
|
| 45 |
|
| 46 |
+
<p style="font-family: 'Tilt Neon', sans-serif; font-size: 38px; font-weight: bold;">
|
| 47 |
+
<center>
|
| 48 |
+
HindiSpeechPro: WAV2VEC-Powered ASR Interface
|
| 49 |
+
</center>
|
| 50 |
+
</p>
|
| 51 |
+
"""
|
| 52 |
|
| 53 |
|
| 54 |
description = """
|
|
|
|
| 70 |
],
|
| 71 |
outputs="text",
|
| 72 |
theme="huggingface",
|
| 73 |
+
title=title,
|
| 74 |
description= description ,
|
| 75 |
allow_flagging="never",
|
| 76 |
examples=examples,
|
|
|
|
| 85 |
outputs=[ "textbox",
|
| 86 |
"state"],
|
| 87 |
theme="huggingface",
|
| 88 |
+
title=title,
|
| 89 |
description= description ,
|
| 90 |
allow_flagging="never",
|
| 91 |
live=True,
|