nlpblogs commited on
Commit
e0fce61
·
verified ·
1 Parent(s): 6d6f24b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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