Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -255,7 +255,7 @@ with gr.Blocks() as demo:
|
|
| 255 |
with gr.Column():
|
| 256 |
id = gr.Number(label="Transcript")
|
| 257 |
with gr.Column(scale=3):
|
| 258 |
-
sentence_transcript = gr.Dropdown(label="Sentence", choices = dataset["train"][0]["transcript"].split("."), interactive = True)
|
| 259 |
with gr.Tab("Type sentence"):
|
| 260 |
with gr.Row():
|
| 261 |
sentence_typed = gr.Textbox(label="Sentence", interactive = True)
|
|
|
|
| 255 |
with gr.Column():
|
| 256 |
id = gr.Number(label="Transcript")
|
| 257 |
with gr.Column(scale=3):
|
| 258 |
+
sentence_transcript = gr.Dropdown(label="Sentence", choices = dataset["train"][0]["transcript"].split(".")[1:], interactive = True)
|
| 259 |
with gr.Tab("Type sentence"):
|
| 260 |
with gr.Row():
|
| 261 |
sentence_typed = gr.Textbox(label="Sentence", interactive = True)
|