Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -84,7 +84,7 @@ import time
|
|
84 |
with st.spinner('Wait for it...'):
|
85 |
time.sleep(5)
|
86 |
if text is not None:
|
87 |
-
token_classifier = pipeline(model="dslim/bert-
|
88 |
tokens = token_classifier(text)
|
89 |
df = pd.DataFrame(tokens)
|
90 |
|
|
|
84 |
with st.spinner('Wait for it...'):
|
85 |
time.sleep(5)
|
86 |
if text is not None:
|
87 |
+
token_classifier = pipeline(model="dslim/bert-base-NER", aggregation_strategy="simple")
|
88 |
tokens = token_classifier(text)
|
89 |
df = pd.DataFrame(tokens)
|
90 |
|