Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -74,23 +74,23 @@ with gr.Blocks() as app:
|
|
74 |
gr.ClearButton([context_input,question_input])
|
75 |
with gr.Column():
|
76 |
with gr.Row():
|
77 |
-
with gr.Column(scale=
|
78 |
-
distilbert_base_uncased_output = gr.Textbox(lines=
|
79 |
with gr.Column(scale=2):
|
80 |
distilbert_base_uncased_score = gr.Number(label="Distil BERT Base Uncased Score")
|
81 |
with gr.Row():
|
82 |
-
with gr.Column(scale=
|
83 |
-
bert_base_uncased_output = gr.Textbox(lines=
|
84 |
with gr.Column(scale=2):
|
85 |
bert_base_uncased_score = gr.Number(label="BERT Base Uncased Score")
|
86 |
with gr.Row():
|
87 |
-
with gr.Column(scale=
|
88 |
-
roberta_base_output = gr.Textbox(lines=
|
89 |
with gr.Column(scale=2):
|
90 |
roberta_base_score = gr.Number(label="RoBERTa Base Score")
|
91 |
with gr.Row():
|
92 |
-
with gr.Column(scale=
|
93 |
-
longformer_base_output = gr.Textbox(lines=
|
94 |
with gr.Column(scale=2):
|
95 |
longformer_base_score = gr.Number(label="Longformer Base Score")
|
96 |
|
|
|
74 |
gr.ClearButton([context_input,question_input])
|
75 |
with gr.Column():
|
76 |
with gr.Row():
|
77 |
+
with gr.Column(scale=6):
|
78 |
+
distilbert_base_uncased_output = gr.Textbox(lines=2, label="Distil BERT Base Uncased")
|
79 |
with gr.Column(scale=2):
|
80 |
distilbert_base_uncased_score = gr.Number(label="Distil BERT Base Uncased Score")
|
81 |
with gr.Row():
|
82 |
+
with gr.Column(scale=6):
|
83 |
+
bert_base_uncased_output = gr.Textbox(lines=2, label="BERT Base Uncased")
|
84 |
with gr.Column(scale=2):
|
85 |
bert_base_uncased_score = gr.Number(label="BERT Base Uncased Score")
|
86 |
with gr.Row():
|
87 |
+
with gr.Column(scale=6):
|
88 |
+
roberta_base_output = gr.Textbox(lines=2, label="RoBERTa Base")
|
89 |
with gr.Column(scale=2):
|
90 |
roberta_base_score = gr.Number(label="RoBERTa Base Score")
|
91 |
with gr.Row():
|
92 |
+
with gr.Column(scale=6):
|
93 |
+
longformer_base_output = gr.Textbox(lines=2, label="Longformer Base")
|
94 |
with gr.Column(scale=2):
|
95 |
longformer_base_score = gr.Number(label="Longformer Base Score")
|
96 |
|