MLDemo / app.py
zbin1234's picture
Update app.py
a7a6b50 verified
raw
history blame
493 Bytes
from transformers import pipeline
import gradio as gr
summarizer = pipeline("summarization")
def translate(text):
text = text.replace(""",'"').replace("'","'").replace("&","&")
result = summarizer(text, max_length=45, clean_up_tokenization_spaces=True)
return result[0]["summary_text"]
iface = gr.Interface(fn=translate,
inputs = gr.Textbox(lines=10,placeholder="Enter text to summarize..."),
outputs="text")
iface.launch()