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

Update app.py

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