Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -257,7 +257,7 @@ with tab1:
|
|
| 257 |
|
| 258 |
st.divider()
|
| 259 |
|
| 260 |
-
dfa = pd.DataFrame(data={'Column Name': ['text', 'label', 'score', 'start', 'end'
|
| 261 |
buf = io.BytesIO()
|
| 262 |
with zipfile.ZipFile(buf, "w") as myzip:
|
| 263 |
myzip.writestr("Summary of the results.csv", df.to_csv(index=False))
|
|
|
|
| 257 |
|
| 258 |
st.divider()
|
| 259 |
|
| 260 |
+
dfa = pd.DataFrame(data={'Column Name': ['text', 'label', 'score', 'start', 'end'], 'Description': ['entity extracted from your text data', 'label (tag) assigned to a given extracted entity', 'accuracy score; how accurately a tag has been assigned to a given entity', 'index of the start of the corresponding entity', 'index of the end of the corresponding entity']})
|
| 261 |
buf = io.BytesIO()
|
| 262 |
with zipfile.ZipFile(buf, "w") as myzip:
|
| 263 |
myzip.writestr("Summary of the results.csv", df.to_csv(index=False))
|