nityathakkar commited on
Commit
1f784b0
·
verified ·
1 Parent(s): fcf1518

don't display annotations in bullet point

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -463,8 +463,9 @@ if user_input:
463
  if annotations.loc[(annotations['submission_id'] == paper_id), 'annotation_label'].item() == 1:
464
  sentences = annotations.loc[(annotations['submission_id'] == paper_id), 'annotation_sentences'].item()
465
  sentences = ast.literal_eval(sentences)
466
- for s in sentences:
467
- st.write(f"- {s}")
 
468
  else:
469
  st.write("No human feedback on this review")
470
 
 
463
  if annotations.loc[(annotations['submission_id'] == paper_id), 'annotation_label'].item() == 1:
464
  sentences = annotations.loc[(annotations['submission_id'] == paper_id), 'annotation_sentences'].item()
465
  sentences = ast.literal_eval(sentences)
466
+ st.write(sentences)
467
+ # for s in sentences:
468
+ # st.write(f"- {s}")
469
  else:
470
  st.write("No human feedback on this review")
471