Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
@@ -276,14 +276,14 @@ if st.button("Results"):
|
|
276 |
|
277 |
dfa = pd.DataFrame(
|
278 |
data={
|
279 |
-
'Column Name': ['text', 'label', 'score', 'start', 'end'
|
280 |
'Description': [
|
281 |
'entity extracted from your text data',
|
282 |
'label (tag) assigned to a given extracted entity',
|
283 |
'accuracy score; how accurately a tag has been assigned to a given entity',
|
284 |
'index of the start of the corresponding entity',
|
285 |
'index of the end of the corresponding entity',
|
286 |
-
|
287 |
]
|
288 |
}
|
289 |
)
|
|
|
276 |
|
277 |
dfa = pd.DataFrame(
|
278 |
data={
|
279 |
+
'Column Name': ['text', 'label', 'score', 'start', 'end'],
|
280 |
'Description': [
|
281 |
'entity extracted from your text data',
|
282 |
'label (tag) assigned to a given extracted entity',
|
283 |
'accuracy score; how accurately a tag has been assigned to a given entity',
|
284 |
'index of the start of the corresponding entity',
|
285 |
'index of the end of the corresponding entity',
|
286 |
+
|
287 |
]
|
288 |
}
|
289 |
)
|