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