Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import pipeline
|
2 |
+
import gradio as gr
|
3 |
+
summarizer = pipeline("summarization", model = "t5-base",tokenizer="t5-small",truncation=True,framework="tf")
|
4 |
+
def translate(text):
|
5 |
+
text=text.replace('"','"')
|
6 |
+
text=text.replace(''',"'")
|
7 |
+
text=text.replace('&',"&")
|
8 |
+
result = summarizer (text, min_length=180, truncation=True)
|
9 |
+
return result[0]['summary_text']
|
10 |
+
|
11 |
+
iface=gr.Interface(
|
12 |
+
fn=translate,
|
13 |
+
inputs=gr.inputs.Textbox(lines=10,placeholder="Enter text to summarize ..."),
|
14 |
+
outputs="text"
|
15 |
+
)
|
16 |
+
|
17 |
+
iface.launch()
|