Spaces:
Runtime error
Runtime error
Commit
·
8ddf014
1
Parent(s):
d327f28
Update app.py
Browse files
app.py
CHANGED
|
@@ -20,9 +20,9 @@ summarizer = gr.Interface.load("huggingface/facebook/bart-large-cnn")
|
|
| 20 |
|
| 21 |
gradio_ui = Series(transcriber, summarizer,
|
| 22 |
inputs = gr.inputs.Textbox(label = "Enter the Youtube URL below:"),
|
| 23 |
-
outputs = "
|
| 24 |
-
title = "Youtube
|
| 25 |
-
theme = "grass",
|
| 26 |
description = "This application uses facebook/bart-large-cnn to summarize a Youtube video based on its transcript. ")
|
| 27 |
|
| 28 |
gradio_ui.launch()
|
|
|
|
| 20 |
|
| 21 |
gradio_ui = Series(transcriber, summarizer,
|
| 22 |
inputs = gr.inputs.Textbox(label = "Enter the Youtube URL below:"),
|
| 23 |
+
outputs = gr.outputs.Textbox(label = "Transcript Summary"),
|
| 24 |
+
title = "Youtube Transcript Summarizer",
|
| 25 |
+
theme = "dark-grass",
|
| 26 |
description = "This application uses facebook/bart-large-cnn to summarize a Youtube video based on its transcript. ")
|
| 27 |
|
| 28 |
gradio_ui.launch()
|