AIEcosystem commited on
Commit
cbf1321
·
verified ·
1 Parent(s): 9a09d37

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -283,14 +283,14 @@ if st.button("Results"):
283
 
284
  dfa = pd.DataFrame(
285
  data={
286
- 'Column Name': ['text', 'label', 'score', 'start', 'end', 'category'],
287
  'Description': [
288
  'entity extracted from your text data',
289
  'label (tag) assigned to a given extracted entity',
290
  'accuracy score; how accurately a tag has been assigned to a given entity',
291
  'index of the start of the corresponding entity',
292
  'index of the end of the corresponding entity',
293
- 'the broader category the entity belongs to',
294
  ]
295
  }
296
  )
 
283
 
284
  dfa = pd.DataFrame(
285
  data={
286
+ 'Column Name': ['text', 'label', 'score', 'start', 'end'],
287
  'Description': [
288
  'entity extracted from your text data',
289
  'label (tag) assigned to a given extracted entity',
290
  'accuracy score; how accurately a tag has been assigned to a given entity',
291
  'index of the start of the corresponding entity',
292
  'index of the end of the corresponding entity',
293
+
294
  ]
295
  }
296
  )