t5-paraphrasing / app.py
Ceshine Lee
Try loading the paraphrasing model
46ff5db
raw
history blame
336 Bytes
import gradio as gr
interface = gr.Interface.load(
"huggingface/ceshine/t5-paraphrase-quora-paws",
description="Paraphrasing model trained on PAWS and Quora datasets",
examples=[
["I bought a ticket from London to New York."],
["Weh Seun spends 14 hours a week doing housework."]
]
)
interface.launch()