Update app.py
Browse files
app.py
CHANGED
@@ -91,9 +91,13 @@ if st.button("Results"):
|
|
91 |
with st.expander("See Glossary of tags"):
|
92 |
st.write('''
|
93 |
'**text**': ['entity extracted from your text data']
|
|
|
94 |
'**score**': ['accuracy score; how accurately a tag has been assigned to a given entity']
|
|
|
95 |
'**label**': ['label (tag) assigned to a given extracted entity']
|
|
|
96 |
'**start**': ['index of the start of the corresponding entity']
|
|
|
97 |
'**end**': ['index of the end of the corresponding entity']
|
98 |
''')
|
99 |
|
|
|
91 |
with st.expander("See Glossary of tags"):
|
92 |
st.write('''
|
93 |
'**text**': ['entity extracted from your text data']
|
94 |
+
|
95 |
'**score**': ['accuracy score; how accurately a tag has been assigned to a given entity']
|
96 |
+
|
97 |
'**label**': ['label (tag) assigned to a given extracted entity']
|
98 |
+
|
99 |
'**start**': ['index of the start of the corresponding entity']
|
100 |
+
|
101 |
'**end**': ['index of the end of the corresponding entity']
|
102 |
''')
|
103 |
|