Spaces:
Build error
Build error
File size: 336 Bytes
f70ff9e 46ff5db |
1 2 3 4 5 6 7 8 9 10 11 12 |
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()
|