nlpblogs commited on
Commit
4214e19
·
verified ·
1 Parent(s): 50bd6e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -179,11 +179,12 @@ if st.button("Results"):
179
  data={
180
  'Column Name': ['word', 'entity_group','score', 'start', 'end'],
181
  'Description': [
182
- 'entity extracted from your text data',
183
- 'label (tag) assigned to a given extracted entity',
184
- 'accuracy score; how accurately a tag has been assigned to a given entity',
185
- 'index of the start of the corresponding entity',
186
- 'index of the end of the corresponding entity',
 
187
  ]
188
  }
189
  )
 
179
  data={
180
  'Column Name': ['word', 'entity_group','score', 'start', 'end'],
181
  'Description': [
182
+ 'text': 'entity extracted from your text data',
183
+ 'score': 'accuracy score; how accurately a tag has been assigned to a given entity',
184
+ 'label': 'label (tag) assigned to a given extracted entity',
185
+ 'category': 'the high-level category for the label',
186
+ 'start': 'index of the start of the corresponding entity',
187
+ 'end': 'index of the end of the corresponding entity'
188
  ]
189
  }
190
  )