nlpblogs commited on
Commit
99bdd8b
·
verified ·
1 Parent(s): 10d2c06

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -80,13 +80,13 @@ if text is not None and len(tokens) > number:
80
  st.stop()
81
 
82
 
83
-
84
- if text is not None:
85
- token_classifier = pipeline(model="xlm-roberta-large-finetuned-conll03-english", aggregation_strategy="simple")
86
-
87
- tokens = token_classifier(text)
88
-
89
- df = pd.DataFrame(tokens)
90
 
91
 
92
 
 
80
  st.stop()
81
 
82
 
83
+ import time
84
+ with st.spinner('Wait for it...'):
85
+ time.sleep(5)
86
+ if text is not None:
87
+ token_classifier = pipeline(model="xlm-roberta-large-finetuned-conll03-english", aggregation_strategy="simple")
88
+ tokens = token_classifier(text)
89
+ df = pd.DataFrame(tokens)
90
 
91
 
92