AIEcosystem commited on
Commit
868bd0f
·
verified ·
1 Parent(s): deefbc4

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +5 -9
src/streamlit_app.py CHANGED
@@ -164,15 +164,11 @@ if st.button("Results"):
164
  st.dataframe(df, use_container_width=True)
165
  with st.expander("See Glossary of tags"):
166
  st.write('''
167
- **word**: ['keyphrase extracted from your text data']
168
-
169
- **score**: ['accuracy score; how accurately a tag has been assigned']
170
-
171
- **label**: ['label (tag) assigned to a given extracted keyphrase']
172
-
173
- **start**: ['index of the start of the corresponding entity']
174
-
175
- **end**: ['index of the end of the corresponding entity']
176
  ''')
177
  # --- Most Frequent Keyphrases ---
178
  st.subheader("Most Frequent Keyphrases", divider="rainbow")
 
164
  st.dataframe(df, use_container_width=True)
165
  with st.expander("See Glossary of tags"):
166
  st.write('''
167
+ - **text**: ['entity extracted from your text data']
168
+ - **score**: ['accuracy score; how accurately a tag has been assigned to a given entity']
169
+ - **label**: ['label (tag) assigned to a given extracted entity']
170
+ - **start**: ['index of the start of the corresponding entity']
171
+ - **end**: ['index of the end of the corresponding entity']
 
 
 
 
172
  ''')
173
  # --- Most Frequent Keyphrases ---
174
  st.subheader("Most Frequent Keyphrases", divider="rainbow")