Spaces:
Runtime error
Runtime error
Commit
·
dd3fce2
1
Parent(s):
9e43ccb
Update app.py
Browse files
app.py
CHANGED
|
@@ -68,7 +68,10 @@ iface = gr.Interface(
|
|
| 68 |
],
|
| 69 |
title = "PDF's Abstract Summarization & Audio Speech Processor",
|
| 70 |
description = "App that generates a one-line summary of the abstract & a speech audio of this summarization -- requirements: app only accepts PDFs which include an ABSTRACT section",
|
| 71 |
-
examples = [os.path.join(os.path.dirname(__file__), 'Hidden_Technical_Debt.pdf')
|
|
|
|
|
|
|
|
|
|
| 72 |
)
|
| 73 |
|
| 74 |
iface.launch()
|
|
|
|
| 68 |
],
|
| 69 |
title = "PDF's Abstract Summarization & Audio Speech Processor",
|
| 70 |
description = "App that generates a one-line summary of the abstract & a speech audio of this summarization -- requirements: app only accepts PDFs which include an ABSTRACT section",
|
| 71 |
+
examples = [os.path.join(os.path.dirname(__file__), 'Hidden_Technical_Debt.pdf'),
|
| 72 |
+
os.path.join(os.path.dirname(__file__), 'Semiconductors.pdf'),
|
| 73 |
+
os.path.join(os.path.dirname(__file__), 'Efficient_Estimation_of_Word_Representations.pdf')
|
| 74 |
+
]
|
| 75 |
)
|
| 76 |
|
| 77 |
iface.launch()
|