Spaces:
Runtime error
Runtime error
Update src/streamlit_app.py
Browse files- 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 |
-
**
|
| 168 |
-
|
| 169 |
-
**
|
| 170 |
-
|
| 171 |
-
**
|
| 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")
|