Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -80,13 +80,13 @@ if text is not None and len(tokens) > number:
|
|
80 |
st.stop()
|
81 |
|
82 |
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
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 |
|