Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- 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'
|
| 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 |
)
|
|
|
|
| 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 |
)
|