micknikolic commited on
Commit
a1dac91
1 Parent(s): efdb3e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -166,7 +166,11 @@ iface = gr.Interface(
166
  gr.Textbox(label="Bert F1-Score")
167
  ],
168
  title="PDF Abstract Summarizer and Audio Converter",
169
- description="Upload a PDF file to extract and summarize its 'abstract' section. The best summary sentence based on its Bert F1-score will be converted into speech and the score's interpretation will be displayed. (A PDF file needs to contain the Abstract section.)"
 
 
 
 
170
  )
171
 
172
  iface.launch()
 
166
  gr.Textbox(label="Bert F1-Score")
167
  ],
168
  title="PDF Abstract Summarizer and Audio Converter",
169
+ description="Upload a PDF file to extract and summarize its 'abstract' section. The best summary sentence based on its Bert F1-score will be converted into speech and the score's interpretation will be displayed. (A PDF file needs to contain the Abstract section.)",
170
+ examples=[
171
+ "Hidden Technical Debt in Machine Learning Systems.pdf",
172
+ "On the Cross-Entropy Method.pdf"
173
+ ]
174
  )
175
 
176
  iface.launch()