Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -45,6 +45,32 @@ with st.sidebar:
|
|
45 |
misc = st.checkbox("MISC")
|
46 |
if misc:
|
47 |
st.write("Miscellaneous")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
|
50 |
|
|
|
45 |
misc = st.checkbox("MISC")
|
46 |
if misc:
|
47 |
st.write("Miscellaneous")
|
48 |
+
|
49 |
+
with st.expander("entity_group"):
|
50 |
+
st.write('''
|
51 |
+
This is the tag that has been assigned to an entity.
|
52 |
+
''')
|
53 |
+
|
54 |
+
with st.expander("score"):
|
55 |
+
st.write('''
|
56 |
+
This indicates the confidence level that a tag has been assigned to an entity.
|
57 |
+
''')
|
58 |
+
|
59 |
+
with st.expander("word"):
|
60 |
+
st.write('''
|
61 |
+
This is the entity that has been extracted from your text data.
|
62 |
+
''')
|
63 |
+
|
64 |
+
with st.expander("start-end"):
|
65 |
+
st.write('''
|
66 |
+
This indicates the postiion of the entity in your text data.
|
67 |
+
''')
|
68 |
+
|
69 |
+
with st.expander("Limitations and Bias"):
|
70 |
+
st.write('''
|
71 |
+
The Named Entity Recognition (NER) model used in this demo app is limited by its training dataset of entity-annotated news articles from a specific span of time. This means that it might not perform excellent for all use cases in different domains. Furthermore, the model may occassionally split words into different parts.
|
72 |
+
''')
|
73 |
+
|
74 |
|
75 |
|
76 |
|