Spaces:
Sleeping
Sleeping
import gradio as gr | |
import spaces | |
from transformers import pipeline | |
pipe = pipeline("summarization", model="ShynBui/Bartpho_spelling_correction") | |
def greet(text): | |
return pipe(text) | |
demo = gr.Interface(fn=greet, inputs=gr.Text(), outputs=gr.Text()) | |
demo.launch() |