AIEcosystem commited on
Commit
01ecc8c
·
verified ·
1 Parent(s): f80b7d8

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -254,14 +254,14 @@ if st.button("Results"):
254
 
255
  dfa = pd.DataFrame(
256
  data={
257
- 'Column Name': ['text', 'label', 'score', 'start', 'end', 'category'],
258
  'Description': [
259
  'entity extracted from your text data',
260
  'label (tag) assigned to a given extracted entity',
261
  'accuracy score; how accurately a tag has been assigned to a given entity',
262
  'index of the start of the corresponding entity',
263
  'index of the end of the corresponding entity',
264
- 'the broader category the entity belongs to',
265
  ]
266
  }
267
  )
 
254
 
255
  dfa = pd.DataFrame(
256
  data={
257
+ 'Column Name': ['text', 'label', 'score', 'start', 'end'],
258
  'Description': [
259
  'entity extracted from your text data',
260
  'label (tag) assigned to a given extracted entity',
261
  'accuracy score; how accurately a tag has been assigned to a given entity',
262
  'index of the start of the corresponding entity',
263
  'index of the end of the corresponding entity',
264
+
265
  ]
266
  }
267
  )