Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,23 @@ def greet(name):
|
|
6 |
#iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
#iface.launch()
|
8 |
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
#https://mercury-docs.readthedocs.io/en/latest/deploy/hugging-face-spaces/
|
13 |
#https://huggingface.co/spaces/pplonski/deploy-mercury
|
|
|
6 |
#iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
#iface.launch()
|
8 |
|
9 |
+
from datasets import load_dataset
|
10 |
+
ds = load_dataset("language-and-voice-lab/samromur_asr")
|
11 |
+
|
12 |
+
#iface = gr.Interface.load("models/carlosdanielhernandezmena/wav2vec2-large-xlsr-53-icelandic-ep10-1000h")
|
13 |
+
#iface.launch()
|
14 |
+
|
15 |
+
def show_ex(exnum):
|
16 |
+
return(ds[exnum])
|
17 |
+
|
18 |
+
|
19 |
+
bl = gr.Blocks()
|
20 |
+
with bl:
|
21 |
+
text_button = gr.Button("Run")
|
22 |
+
text_output = gr.Textbox()
|
23 |
+
|
24 |
+
text_button.click(show_ex, inputs=2503, outputs=text_output)
|
25 |
+
|
26 |
|
27 |
#https://mercury-docs.readthedocs.io/en/latest/deploy/hugging-face-spaces/
|
28 |
#https://huggingface.co/spaces/pplonski/deploy-mercury
|