Ahsen Khaliq
Update app.py
329d193
raw history blame
No virus
693 Bytes
import gradio as gr
title = "Pegasus"
description = "Gradio Demo for Pegasus. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/1912.08777' target='_blank'>PEGASUS: Pre-training with Extracted Gap-sentences for Abstractive Summarization</a></p>"
examples = [
['The ultimate test of your knowledge is your capacity to convey it to another.']
]
gr.Interface.load("huggingface/tuner007/pegasus_paraphrase", inputs=gr.inputs.Textbox(lines=5, label="Input Text"),title=title,description=description,article=article, examples=examples).launch(enable_queue=True)