AIEcosystem commited on
Commit
b530bb0
·
verified ·
1 Parent(s): c54fe43

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -3
src/streamlit_app.py CHANGED
@@ -240,7 +240,6 @@ if st.button("Results"):
240
  - **text**: ['entity extracted from your text data']
241
  - **score**: ['accuracy score; how accurately a tag has been assigned to a given entity']
242
  - **label**: ['label (tag) assigned to a given extracted entity']
243
- - **category**: ['the high-level category for the label']
244
  - **start**: ['index of the start of the corresponding entity']
245
  - **end**: ['index of the end of the corresponding entity']
246
  ''')
@@ -297,14 +296,14 @@ if st.button("Results"):
297
 
298
  dfa = pd.DataFrame(
299
  data={
300
- 'Column Name': ['text', 'label', 'score', 'start', 'end', 'category'],
301
  'Description': [
302
  'entity extracted from your text data',
303
  'label (tag) assigned to a given extracted entity',
304
  'accuracy score; how accurately a tag has been assigned to a given entity',
305
  'index of the start of the corresponding entity',
306
  'index of the end of the corresponding entity',
307
- 'the broader category the entity belongs to',
308
  ]
309
  }
310
  )
 
240
  - **text**: ['entity extracted from your text data']
241
  - **score**: ['accuracy score; how accurately a tag has been assigned to a given entity']
242
  - **label**: ['label (tag) assigned to a given extracted entity']
 
243
  - **start**: ['index of the start of the corresponding entity']
244
  - **end**: ['index of the end of the corresponding entity']
245
  ''')
 
296
 
297
  dfa = pd.DataFrame(
298
  data={
299
+ 'Column Name': ['text', 'label', 'score', 'start', 'end'],
300
  'Description': [
301
  'entity extracted from your text data',
302
  'label (tag) assigned to a given extracted entity',
303
  'accuracy score; how accurately a tag has been assigned to a given entity',
304
  'index of the start of the corresponding entity',
305
  'index of the end of the corresponding entity',
306
+
307
  ]
308
  }
309
  )