File size: 729 Bytes
1b39c6e
5f36283
30efcab
5f36283
4959f77
5f36283
30efcab
5f36283
 
30efcab
13dcfc4
 
5f36283
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import torch
import streamlit as st
from transformers import pipeline, AutoTokenizer,AutoModelForTokenClassification

classifier = pipeline("token-classification", model="KoichiYasuoka/bert-base-japanese-upos")
def main():
    st.title("POS-tagging for Japanese texts")

    with st.form("text_field"):
        text = st.text_area('enter some Japanese texts:')
        st.text('e.g. 私はタイ人です。 = I am Thai')
        st.text('e.g. 私は自分の国が嫌いだ! = I hate my country!')
        # 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()