Spaces:
Sleeping
Sleeping
don't display annotations in bullet point
Browse files
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 |
-
|
467 |
-
|
|
|
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 |
|