Ahsen Khaliq
Update app.py
45285d9
raw
history blame
621 Bytes
import gradio as gr
title = "Distilbart-CNN"
description = "Gradio Demo for DistilBart. 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://huggingface.co/sshleifer/distilbart-cnn-12-6' target='_blank'>Huggingface Model</a></p>"
examples = [
['The tower is 324 metres (1,063 ft) tall,']
]
gr.Interface.load("huggingface/sshleifer/distilbart-cnn-12-6", inputs=gr.inputs.Textbox(lines=5, label="Input Text"),title=title,description=description,article=article, examples=examples,enable_queue=True).launch()