AIEcosystem commited on
Commit
7195ed6
·
verified ·
1 Parent(s): 0b5f772

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. 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', 'category'], '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', 'the broader category the entity belongs to']})
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))