update
Browse files
app.py
CHANGED
|
@@ -26,10 +26,10 @@ with gr.Blocks() as demo:
|
|
| 26 |
# gr.Textbox(placeholder="Have you ever seen a tiramisu ?", label="Hypothesis")
|
| 27 |
|
| 28 |
with gr.Row():
|
| 29 |
-
with gr.Column(scale=
|
| 30 |
text1 = gr.Textbox(placeholder="Have you ever seen a tsunami ?", label="Source")
|
| 31 |
text2 = gr.Textbox(placeholder="Have you ever seen a tiramisu ?", label="Hypothesis")
|
| 32 |
-
with gr.Column(scale=
|
| 33 |
btn1 = gr.Button("Compute")
|
| 34 |
score = gr.Textbox(label="Score")
|
| 35 |
demo.launch()
|
|
|
|
| 26 |
# gr.Textbox(placeholder="Have you ever seen a tiramisu ?", label="Hypothesis")
|
| 27 |
|
| 28 |
with gr.Row():
|
| 29 |
+
with gr.Column(scale=3):
|
| 30 |
text1 = gr.Textbox(placeholder="Have you ever seen a tsunami ?", label="Source")
|
| 31 |
text2 = gr.Textbox(placeholder="Have you ever seen a tiramisu ?", label="Hypothesis")
|
| 32 |
+
with gr.Column(scale=1):
|
| 33 |
btn1 = gr.Button("Compute")
|
| 34 |
score = gr.Textbox(label="Score")
|
| 35 |
demo.launch()
|