zaafirriaz commited on
Commit
387773c
·
verified ·
1 Parent(s): 6a8fbd4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -14,8 +14,8 @@ def summarize_text(text):
14
 
15
  gr_interface = gr.Interface(
16
  fn=summarize_text,
17
- inputs=gr.inputs.Textbox(lines=5, placeholder="Enter text to summarize here..."),
18
- outputs="text",
19
  title="Text Summarization with Fine-Tuned Model",
20
  description="Enter text to generate a summary using the fine-tuned summarization model."
21
  )
 
14
 
15
  gr_interface = gr.Interface(
16
  fn=summarize_text,
17
+ inputs=gr.Textbox(lines=5, placeholder="Enter text to summarize here..."),
18
+ outputs=gr.Textbox(),
19
  title="Text Summarization with Fine-Tuned Model",
20
  description="Enter text to generate a summary using the fine-tuned summarization model."
21
  )