Wootang01 commited on
Commit
e1bcc63
1 Parent(s): 5c1dd23

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -32,7 +32,7 @@ def getAnnotatedFromPOS(texts, labels):
32
 
33
  def main():
34
 
35
- st.title("🥖 French Part-Of-Speech Tagging")
36
 
37
  checkpoint = st.selectbox("Choose model", checkpoints)
38
  model = get_model(checkpoint)
@@ -44,9 +44,9 @@ def main():
44
  )
45
 
46
  start = None
47
- if st.button("🧠 Compute"):
48
  start = time.time()
49
- with st.spinner("Search for Part-Of-Speech Tags 🔍"):
50
 
51
 
52
  # Build Sentence
 
32
 
33
  def main():
34
 
35
+ st.title("Part of Speech Categorizer")
36
 
37
  checkpoint = st.selectbox("Choose model", checkpoints)
38
  model = get_model(checkpoint)
 
44
  )
45
 
46
  start = None
47
+ if st.button("Submit"):
48
  start = time.time()
49
+ with st.spinner("Computing"):
50
 
51
 
52
  # Build Sentence