Lab10_630510654 / app.py
Aomsin's picture
Update app.py
760945c
raw
history blame
517 Bytes
import streamlit as st
from transformers import pipeline
classifier = pipeline("text-classification", model="thai_toxicity_tweet",use_auth_token=True)
def main():
st.title("Thai language in twitter")
with st.form("text_field"):
text = st.text_area('enter some text :')
# clicked==True only when the button is clicked
clicked = st.form_submit_button("Submit")
if clicked:
results = classifier([text])
st.json(results)
if __name__ == "__main__":
main()