ShynBui's picture
first
3ae2dd1
raw
history blame
268 Bytes
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()