BlueberryChickenPie commited on
Commit
630298e
1 Parent(s): c4993ed

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -5,8 +5,8 @@ classifier = pipeline('token-classification', model='mrm8488/bert-base-german-fi
5
  def main():
6
  st.title("Token classifier for temporal tagging of plain text using German Gelectra model")
7
  with st.form("text_field"):
8
- text = st.text_area('enter some German text ')
9
- st.text('Naschkatze')
10
  # clicked==True only when the button is clicked
11
  clicked = st.form_submit_button("Submit")
12
  if clicked:
 
5
  def main():
6
  st.title("Token classifier for temporal tagging of plain text using German Gelectra model")
7
  with st.form("text_field"):
8
+ text = st.text_area('enter some text ')
9
+ st.text('ex.I live in chiangmai')
10
  # clicked==True only when the button is clicked
11
  clicked = st.form_submit_button("Submit")
12
  if clicked: