AIEcosystem commited on
Commit
bfe06ea
·
verified ·
1 Parent(s): 96bcf94

Update src/streamlit_app.py

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