Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,25 @@
|
|
1 |
import gradio as gr
|
2 |
|
|
|
3 |
|
4 |
-
def greet(name):
|
5 |
-
return "Hello " + name + "!!"
|
6 |
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
from src.TextSummarizer.pipeline.prediction import PredictionPipeline
|
4 |
|
|
|
|
|
5 |
|
6 |
+
def predict(document):
|
7 |
+
"""
|
8 |
+
Method will take the document and summarize it.
|
9 |
+
"""
|
10 |
+
|
11 |
+
# predict the summary using my own pre-trained model.
|
12 |
+
summary = PredictionPipeline().predict(document)
|
13 |
+
return summary
|
14 |
+
|
15 |
+
|
16 |
+
# Create the frontend.
|
17 |
+
input_interfaces: list = []
|
18 |
+
|
19 |
+
with gr.Blocks(theme=gr.theme.Soft()) as app:
|
20 |
+
with gr.Row():
|
21 |
+
title = "Text Summarizer..."
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
app.launch()
|