AIEcosystem commited on
Commit
f89b757
·
verified ·
1 Parent(s): beafc64

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -3
src/streamlit_app.py CHANGED
@@ -662,14 +662,13 @@ if st.session_state.show_results and not st.session_state.results_df.empty:
662
 
663
  st.markdown("## Entity Counts by Category and Entity")
664
  st.dataframe(grouped_entity_table.sort_values(by=['Category', 'Count'], ascending=[True, False]), use_container_width=True)
665
- with st.expander("See Glossary of tags"):
666
- st.write('''
667
  - **start**: ['index of the start of the corresponding entity']
668
  - **end**: ['index of the end of the corresponding entity']
669
  - **text**: ['entity extracted from your text data']
670
  - **label**: ['label (tag) assigned to a given extracted entity']
671
  - **score**: ['accuracy score; how accurately a tag has been assigned to a given entity']
672
-
673
  ''')
674
 
675
 
 
662
 
663
  st.markdown("## Entity Counts by Category and Entity")
664
  st.dataframe(grouped_entity_table.sort_values(by=['Category', 'Count'], ascending=[True, False]), use_container_width=True)
665
+ with st.expander("See Glossary of tags"):
666
+ st.write('''
667
  - **start**: ['index of the start of the corresponding entity']
668
  - **end**: ['index of the end of the corresponding entity']
669
  - **text**: ['entity extracted from your text data']
670
  - **label**: ['label (tag) assigned to a given extracted entity']
671
  - **score**: ['accuracy score; how accurately a tag has been assigned to a given entity']
 
672
  ''')
673
 
674