nornorr commited on
Commit
b310357
1 Parent(s): 04633f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -6,7 +6,8 @@ def main():
6
  st.title("Token classification")
7
 
8
  with st.form("text_field"):
9
- text = st.text_area('enter some tex \n example :My name is JJ I live in Thailand')
 
10
  # clicked==True only when the button is clicked
11
  clicked = st.form_submit_button("Compute")
12
  if clicked:
 
6
  st.title("Token classification")
7
 
8
  with st.form("text_field"):
9
+ text = st.text_area('enter some text: \
10
+ example: My name is JJ I live in Thailand.')
11
  # clicked==True only when the button is clicked
12
  clicked = st.form_submit_button("Compute")
13
  if clicked: