pavithra-devi commited on
Commit
aee0ade
·
verified ·
1 Parent(s): e3583d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -4
app.py CHANGED
@@ -1,8 +1,25 @@
1
  import gradio as gr
2
 
 
3
 
4
- def greet(name):
5
- return "Hello " + name + "!!"
6
 
7
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
8
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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()