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