increased size of outputs box
Browse files
app.py
CHANGED
|
@@ -58,7 +58,7 @@ def summarize_text(text):
|
|
| 58 |
interface = gr.Interface(
|
| 59 |
fn=summarize_text,
|
| 60 |
inputs=gr.Textbox(lines=10, placeholder="Enter Indonesian text here...", label="Input Text"),
|
| 61 |
-
outputs=gr.Textbox(label="Generated Summary"),
|
| 62 |
title="Indonesian Text Summarization",
|
| 63 |
description="Enter Indonesian text to generate a summary using T5 model with PEFT adapters",
|
| 64 |
)
|
|
|
|
| 58 |
interface = gr.Interface(
|
| 59 |
fn=summarize_text,
|
| 60 |
inputs=gr.Textbox(lines=10, placeholder="Enter Indonesian text here...", label="Input Text"),
|
| 61 |
+
outputs=gr.Textbox(lines=5, label="Generated Summary"),
|
| 62 |
title="Indonesian Text Summarization",
|
| 63 |
description="Enter Indonesian text to generate a summary using T5 model with PEFT adapters",
|
| 64 |
)
|