Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -102,7 +102,8 @@ The extractive models for this app are using sentence-transformer models, which
|
|
102 |
with gr.Row():
|
103 |
with gr.Column(scale=4):
|
104 |
text_baseline_transformer= gr.TextArea(label="Input text to summarize", placeholder="Input summarization",)
|
105 |
-
|
|
|
106 |
with gr.Column(scale=3):
|
107 |
with gr.Row():
|
108 |
num_beams = gr.Slider(minimum=2, maximum=10, value=2, step=1, label="Number of Beams")
|
|
|
102 |
with gr.Row():
|
103 |
with gr.Column(scale=4):
|
104 |
text_baseline_transformer= gr.TextArea(label="Input text to summarize", placeholder="Input summarization",)
|
105 |
+
with gr.Column():
|
106 |
+
transformer_button = gr.Button("Summarize!")
|
107 |
with gr.Column(scale=3):
|
108 |
with gr.Row():
|
109 |
num_beams = gr.Slider(minimum=2, maximum=10, value=2, step=1, label="Number of Beams")
|