CMDF-NER / app.py
weerayut's picture
Update app.py
45d273f verified
raw
history blame contribute delete
416 Bytes
# from transformers import pipeline
import gradio as gr
from pythainlp.tokenize import subword_tokenize
# model = pipeline(
# "summarization",
# )
def predict(prompt):
# summary = model(prompt)[0]["summary_text"]
summary = subword_tokenize(prompt, engine='tcc')
return summary
# create an interface for the model
with gr.Interface(predict, "textbox", "text") as interface:
interface.launch()