AIEcosystem commited on
Commit
2cb8794
·
verified ·
1 Parent(s): e1718ce

Update src/streamlit_app.py

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